/* COLORS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-Light.eot");
  src: local("Gilroy Light"), local("Gilroy-Light"),
   url("assets/fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Light.woff") format("woff"),
     url("assets/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"),
   url("assets/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Regular.woff") format("woff"),
     url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"),
   url("assets/fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Medium.woff") format("woff"),
     url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-SemiBold.eot");
  src: local("Gilroy SemiBold"), local("Gilroy-SemiBold"),
   url("assets/fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-SemiBold.woff") format("woff"),
     url("assets/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"),
   url("assets/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Bold.woff") format("woff"),
     url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
  src: url("assets/fonts/Gilroy-Black.eot");
  src: local("Gilroy Black"), local("Gilroy-Black"),
   url("assets/fonts/Gilroy-Black.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Black.woff") format("woff"),
     url("assets/fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #575756;
    overflow-x: hidden;
    width: 100%;

}


*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    background: transparent;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

#gtx-trans { display: none !important;}  


.fadein {
    opacity: 1;
}

.container {
    max-width: 1260px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

.fade-in {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.btn {
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 40px;
    background: #0BAFF0;
    border: none;
    cursor: pointer;
    transition: all .4s ease-out;
}

.title {
    font-size: 40px;
    color: #0C0C0C;
    font-weight: 700;
    margin-bottom: 55px;
    margin-top: 0;
}

.title span {
    color: #0BAFF0;
}

@media (max-width: 1199px) {
    .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .title {
        font-size: 24px;
    }
}

.icon-plus {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fbed9e;
    opacity: 0;
    border: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
}

.form-input {
    border-radius: 10px;
    height: 55px;
    padding: 5px 25px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}

.owl-prev:hover,
.owl-next:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.owl-prev svg path,
.owl-next svg path {
    transition: 0.4s ease-out;
}
.owl-prev:hover svg path,
.owl-next:hover svg path {
    fill: #0BAFF0!important;
}

.owl-prev, .owl-next {
    transition: 0.4s ease-out;
}

.owl-nav{
    margin-top: 60px;
    text-align: right;
    margin-right: -5px;
}

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}



/* Blocks */
.header {
    padding: 7px 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 100%;
    z-index: 100;
    position: absolute;
}

.header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    max-width: 100%;
    background-color: #f8fafc;
    padding: 7px 0;
    -webkit-box-shadow: 0px 5px 5px rgba(190, 190, 190, 0.4);
    box-shadow: 0px 5px 5px rgba(190, 190, 190, 0.4);
}

.header-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header__logo-img {
    display: block;
    width: 48px;
    height: 74px;
}

.header__nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header__nav .menu-item {
    margin: 0 25px;
}

.header__nav .menu-item a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #575756;
    padding: 3px 0;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    border-bottom: 2px solid transparent;
}

.header__nav .menu-item a::after {
    content: ''; 
    position: absolute;
    bottom: -2px;
    width: 0;
    right: 0;
    height: 2px;
      transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    background: #0BAFF0;
}

.header__nav .menu-item a:hover::after {
    width: 100%;
    left: 0;
}

.header__nav .menu-item a.active {
    color: #0c0c0c;
    font-weight: 700;
    border-bottom: 2px solid #0BAFF0;
}

.header__contact {
    text-align: center;
}

.header__btn-call {
    color: #0BAFF0;
    border-bottom: 1px solid #0BAFF0;
    padding: 0 0 3px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: .4s;
}

.header__btn-call:hover {
    color: #1076ae;
    border-bottom: 1px solid #1076ae;
    transform: scale(1.03);
}

.header__btn-call:focus {
    outline: none;
}

.header.fixed .header__logo-img {
    width: 32px;
    height: 49px;
}

.header.fixed .header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .header__btn-call--fixed {
    display: none;
}

.header.fixed .header__btn-call {
    display: none;
}

.header.fixed .header__btn-call--fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: #FBED9E;
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.header.fixed .header__btn-call--fixed svg {
    fill: #575756;
    width: 24px;
    height: 24px;
    transition: .3s;
}

.header.fixed .header__btn-call--fixed:hover svg {
    transform: rotate(30deg);
}

.header.fixed .header__phone-number {
    color: #0BAFF0;
}

.header__lang-link {
    font-size: 14px;
    font-weight: 500;
    color: #575756;
}

.header__lang-link.active {
    font-weight: 700;
}

.header__phone {
    margin-bottom: 4px;
}

@media (max-width: 1199px) {
    .header__phone {
        margin-bottom: 0;
    }
}

.header__phone-number {
    color: #575756;
    font-size: 25px;
    font-weight: 800;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media (max-width: 1199px) {
    .header__phone-number {
        font-size: 22px;
    }
}

@media (min-width: 1200px) {
    .header-mobile, .header__menu {
        display: none;
    }
}

/* header mobile */
@media (max-width: 1200px) {
    .header {
        -webkit-box-shadow: 0 5px 5px rgba(140, 140, 140, 0.4);
        box-shadow: 0 5px 5px rgba(140, 140, 140, 0.4);
        z-index: 102;
        background-color: #fff;
    }

    .header__logo-img {
        width: 30px;
        height: 47px;
    }

    .header__lang, .header__nav {
        display: none;
    }

    .header-mobile {
        background-color: #f3f4f6;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 9999;
        height: 100vh;
        overflow-y: auto;
        padding: 10px 15px;
    }

    .header-mobile.is-active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        z-index: 3000000;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .header-mobile__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-mobile__body {
        margin-top: 7vh;
        padding-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header-mobile .btn {
        border-radius: 50px;
        background-image: -webkit-gradient(linear, left top, right top, from(#1dabe3), color-stop(#199dd6), color-stop(#1590c9), color-stop(#1383bb), to(#1076ae));
        background-image: -o-linear-gradient(left, #1dabe3, #199dd6, #1590c9, #1383bb, #1076ae);
        background-image: linear-gradient(to right, #1dabe3, #199dd6, #1590c9, #1383bb, #1076ae);
        display: block;
        margin: 0 auto;
    }

    .header-mobile__nav {
        width: 48%;
        background-color: #fff;
        -webkit-box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.36);
        box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.36);
        padding: 30px 10px 10px;
        border-radius: 15px;
    }

    .header-mobile__social {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .header-mobile__social .footer__social-link svg {
         border-radius: 100%;
    }

    .header-mobile__nav-title {
        text-align: center;
        font-size: 15px;
        font-weight: 800;
        color: #0BAFF0;
        margin-bottom: 25px;
    }

    .header-mobile__nav-title--yellow {
        color: #FBED9E;
    }

    .header-mobile__nav-list li {
        margin-bottom: 30px;
    }

    .header-mobile__nav-list li a {
        color: #575756;
        font-weight: 500;
        font-size: 13px;
        padding: 3px 0;
    }

    .header-mobile__nav-list li a.active {
        font-weight: 700;
        border-bottom: 2px solid #0BAFF0;
    }

    .header__lang--mobile {
        display: block;
    }

    .header-mobile__close {
        width: 28px;
        height: 28px;
        position: relative;
    }

    .header-mobile__logo {
        width: 40px;
        height: 61px;
    }

    .header-mobile__close::after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header-mobile__close::before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-mobile__close::before,
  .header-mobile__close::after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 3px;
        background-color: #8D8E8E;
    }

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        font-family: inherit;
        color: #575756;
        padding: 0;
    }

    .header__menu-text {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .header__menu-line {
        width: 25px;
        background-color: #575756;
        height: 2px;
        border-radius: 1px;
        margin-bottom: 4px;
    }

    .header__menu-line--big {
        width: 35px;
    }

    .header__phone-number {
        color: #0BAFF0;
    }

    .header__contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header__btn-call {
        display: none;
    }

    .header__btn-call--fixed {
        display: inline-flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-right: 10px;
        padding: 0;
        background-color: #FBED9E;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .header__btn-call--fixed svg {
        fill: #575756;
        width: 16px;
        height: 16px;
        display: block;
    }

}

.hero {
    position: relative;
    padding-top: 70px;
}


.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: transparent;
    left: -500px;
    top: -630px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 20px solid rgba(140, 140, 140, 0.05);
}


@media (max-width: 767px) {
    .hero::after {
        height: 350px;
        right: -17vw;
    }
}

.hero__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.hero__content {
    max-width: 540px;
}

@media (max-width: 991px) {
    .hero__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .hero__content {
        padding-top: 30px;
    }
}

.hero__title {
    font-size: 75px;
    font-weight: 700;
    color: #0C0C0C;
    margin-bottom: 40px;
    line-height: 1.1;
}

/*@media (min-width: 1025px) {
    .hero__title, .hero__text, .hero__btn, .hero__service {
        opacity: 0;
        transform: translateY(20px);
        transition: .8s;
    }
}
*/

.fade-up {
     transform: translateY(0);
     opacity: 1;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero__title {
        font-size: 52px;
    }
    .hero__text {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 45px;
    }
}

.hero__text {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #8c8c8c;
    font-weight: 300;
}

@media (max-width: 767px) {
    .hero__text {
        font-size: 16px;
    }
}

.hero__btn {
    background-image: -webkit-gradient(linear, left top, right top, from(#1dabe3), color-stop(#199dd6), color-stop(#1590c9), color-stop(#1383bb), to(#1076ae));
    background-image: -o-linear-gradient(left, #1dabe3, #199dd6, #1590c9, #1383bb, #1076ae);
    background-image: linear-gradient(to right, #1dabe3, #199dd6, #1590c9, #1383bb, #1076ae);
    -webkit-box-shadow: 5px 5px 9px rgba(42, 78, 176, 0.36);
    box-shadow: 5px 5px 9px rgba(42, 78, 176, 0.36);
    padding: 24px 70px;
    font-size: 18px;
    margin-bottom: 60px;
}

.hero__btn:hover {
    transform: translateY(-7px);
    box-shadow: 8px 8px 15px rgba(42, 78, 176, 0.36);
}

.hero__service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .hero__service {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .hero__btn {
        padding: 23px 50px;
    }
}

.hero__service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 100px;
    position: relative;
}

@media (max-width: 767px) {
    .hero__service-item {
        width: 50%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
    }
}

.hero__service-item:last-child {
    margin-right: 0;
}

.hero__service-item:first-child::after {
    content: "";
    position: absolute;
    right: -55px;
    width: 2px;
    height: 55px;
    background-color: #8C8C8C;
}

@media (max-width: 767px) {
    .hero__service-item:first-child::after {
        right: -5vw;
    }
}

.hero__service-icon {
    margin-right: 20px;
}

@media (max-width: 767px) {
    .hero__service-icon {
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero__service-icon svg {
        width: 80%;
    }
}

.hero__service-text {
    color: #575756;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hero__service-text {
        margin-top: 10px;
        text-align: center;
    }
}

.hero__picture {
    padding-top: 50px;
    position: relative;
}

.hero__picture::after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    right: -42vw;
    bottom: -10vw;
    height: 850px;
    width: 1200px;
    background-image: url(assets/img/bg-hero.svg);
    background-repeat: no-repeat;
    background-size: 1400px;

}
/*
@media (min-width: 1025px) {
    .hero__picture::after {
        transform: translate(100%, 100%);
        transition: .5s;
    }
}

.hero__picture.active::after {
   transform: translate(0, 0) scale(1.05);
}*/
/*
.hero__picture.active.scale::after {
    transform: translate(0, 0) scale(1);
    transition: 1s;
}*/

/*@media (min-width: 1025px) {
    .hero__picture img {
         opacity: 0;
        transition: .8s;
    }

    .hero__picture img.fadein {
        opacity: 1;
    }
}*/



.hero__picture img {
    display: block;
    max-width: 640px;
}

@media (max-width: 767px) {
    .hero__picture {
        padding-top: 20px;
    }
    .hero__picture img {
        max-width: 400px;
        width: 100%;
    }
    .hero__picture::after {
        right: -700px;
        bottom: -450px;
    }
}

@media (max-width: 991px) {
    .hero__picture img {
        max-width: 400px;
        width: 100%;
    }
    .hero__picture::after {
        right: -108vw;
        bottom: -65vw;
        background-size: 800px;
    }
}


@media (min-width: 1025px) {
    .hero {
        height: 100vh;
    }
    .hero__picture {
        height: 100vh;
        display: flex;
    }
    .hero__picture img {
        margin-top: auto;
        position: absolute;
        right: 0;
        bottom: 68px;
        width: 700px;
        max-width: inherit;
        transition: .5s;
    }
    .hero__content {
        padding-bottom: 8vh;
    }
}





@media (min-width: 992px) and (max-width: 1199px) {
    .hero__picture img {
        width: 550px;
    }
    .hero__picture::after {
        right: -69vw;
        bottom: -42vw;
        background-size: 800px;
    }
    .hero__service-item {
        flex-direction: column;
    }
    .hero__service-text {
        text-align: center;
    }
    .hero__service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (min-width: 1600px) {
    .hero__picture img {
        width: 700px;
        max-width: initial;
        position: absolute;
        right: -100px;
    }
    .hero__picture::after {
        right: -36vw;
        bottom: -10vw;
        background-size: 80vw;
        height: 100vh;
        width: 72vw;
    }
}

@media (min-width: 992px) and (max-height: 630px) {
    .hero, .hero__picture {
        height: auto;
    }
    .hero__picture img {
        position: relative;
        bottom: 0;
    }
    .hero__title {
        font-size: 50px;
    }
}


@media (min-width: 992px) and (max-height: 780px) {
   .hero__title {
        font-size: 55px;
    }
}

@media (min-width: 1600px) and (max-height: 780px) {
    .hero__picture img {
        width: 550px;
    }
}

@media (min-width:1200px) and (max-height: 780px) {
    .hero__picture img {
        width: 550px;
    }
    .hero__picture::after {

        right: -45vw;
        bottom: -20vw;
    }
}


@media (min-width: 1025px) and (min-height: 631px) and (max-height: 720px) {
    .hero__picture img {
        width: 525px;
    }
    .hero__picture::after {
            right: -51vw;
        bottom: -25vw;
        background-size: 900px;
    }
}

@media (min-width: 1900px) {
    .hero__picture img {
        width: 750px;
    }
    .hero__picture::after {
        right: -42vw;
        bottom: -10vw;
        background-size: 80vw;
        height: 100vh;
        width: 72vw;
    }
}

@media (max-width: 767px) {
    .hero__picture::after {
        right: -890px;
        bottom: -550px;
        background-size: 550px;
    }
}

.services {
    background-color: #F3F4F6;
    padding: 115px 0 100px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .services {
        padding: 70px 0;
    }
}

.services::after {
    content: "";
    position: absolute;
    z-index: 1;
    background-color: transparent;
    right: -400px;
    bottom: -380px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 20px solid rgba(140, 140, 140, 0.05);
}

.services__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .services__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.services__info {
    width: 55%;
}

@media (max-width: 1199px) {
    .services__info {
        width: 100%;
        margin-bottom: 50px;
    }
}

.services__info-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 55px;
    max-width: 615px;
}

@media (max-width: 1199px) {
    .services__info-text {
        max-width: 100%;
    }
}

.services__info ul {
    padding-left: 35px;
    margin-bottom: 65px;
    max-width: 630px;
}

.services__info ul li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    line-height: 1.6;
}

.services__info ul li::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 3px;
    width: 20px;
    height: 15px;
    background-image: url("assets/img/1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}

.services__info ul li:last-child {
    margin-bottom: 0;
}

.services__btn {
    border-radius: 50px;
    -webkit-box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.7);
    box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.7);
    transition: all .4s ease-out;
}

.services__btn:hover {
    transform: translateY(-7px);
    background-color: #1076ae;
}

.services__btn:focus {
    outline: none;
}

@media (max-width: 1199px) {
    .services__btn {
        margin: 0 auto;
        display: block;
    }
}

.services__items {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .services__items {
        width: 100%;
        max-width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.services__item {
    max-width: 235px;
    border-radius: 25px;
    background-color: #fff;
    padding: 35px 20px 30px;
    margin-bottom: 25px;
    text-align: center;
    -webkit-box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.36);
    box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.36);
}

@media (max-width: 767px) {
    .services__item {
        margin: 0 5px 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services__item {
        width: 50%;
        max-width: 270px;
        margin: 0 20px 50px;
    }
}

.services__item-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #C1E4F3;
    margin: 0 auto 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.services__item-icon img {
    width: 40px;
    height: 40px;
}

.services__item-title {
    font-size: 14px;
    font-weight: 700;
    color: #0C0C0C;
    margin-bottom: 25px;
}

.services__item-text {
    font-size: 13px;
    font-weight: 500;
    color: #575756;
    line-height: 1.5;
}

.about {
    padding: 70px 0 75px;
}

.about .title {
    text-align: center;
    margin-bottom: 80px;
}

.about__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
}

.about-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.about-item:nth-of-type(1n+3) {
    display: none;
}

.about-item.hidden {
    display: none;
}

.about-item.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about-item:not(:first-of-type) .about-item__info {
    padding-top: 85px;
}

.about-item:nth-of-type(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.about-item__title {
    margin-bottom: 40px;
    font-family: "Gilroy", sans-serif;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.about-item__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 165px;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#0baff0), color-stop(#0aa0df), color-stop(#0892ce), color-stop(#0584be), to(#0276ad));
    background-image: -o-linear-gradient(left, #0baff0, #0aa0df, #0892ce, #0584be, #0276ad);
    background-image: linear-gradient(to right, #0baff0, #0aa0df, #0892ce, #0584be, #0276ad);
}

.about-item ul {
    padding-left: 35px;
    margin-bottom: 35px;
}

.about-item ul li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.6;
}

.about-item ul li:last-child {
    margin-bottom: 0;
}

.about-item ul li::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 3px;
    width: 20px;
    height: 15px;
    background-image: url("assets/img/1.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 15px;
}

.about-item__btn {
    background: transparent;
    color: #0BAFF0;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 5px 0;
}

.about-item__btn:hover svg,
      .about-item__btn:focus svg {
    -webkit-transform: translateX(7px);
    -ms-transform: translateX(7px);
    transform: translateX(7px);
}

.about-item__btn span {
    padding-right: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.about-item__btn:focus {
    outline: none;
}

.about-item__btn svg {
    width: 14px;
    height: 7px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.about-item__btn svg path {
    fill: #0BAFF0;
}

.about-item__text {
    overflow: hidden;
    height: 290px;
    margin-bottom: 20px;
    transition: height 0.4s ease;
}

.about-item:nth-child(3) .about-item__text {
    height: 260px;
}

.about-item:nth-child(5) .about-item__text {
    height: 300px;
}

@media (max-width: 767px) {
    .about-item__text {
        height: 150px;
    }
    .about-item:nth-child(5) .about-item__text {
        height: 390px;
    }

    .ua .about-item:nth-child(1) .about-item__text {
        height: 165px;
    }
    .ua .about-item:nth-child(2) .about-item__text {
        height: 235px;
    }
}

@media (min-width: 400px) and (max-width: 767px) {
    .ua .about-item:nth-child(2) .about-item__text {
        height: 215px;
    }
    .ru .about-item:nth-child(2) .about-item__text {
        height: 180px;
    }
    .ua .about-item:nth-child(3) .about-item__text {
        height: 230px;
    }
    .ru .about-item:nth-child(3) .about-item__text {
         height: 230px;
    }
}

.about-item__text.is-active {
    height: auto!important;
}

.about-item-wrap {
    max-width: 550px;
}

.about-item__text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}

.about-item__text p:last-child {
    margin-bottom: 0;
}


.about-item__info {
    max-width: 550px;
}


@media (max-width: 767px) {
    .about-item__info {
        margin-bottom: 50px;
    }
}

.about-item__img {
    max-width: 570px;
    background: #F8FAFC;
    border-radius: 50%;
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .about-item__img {
        padding: 7vw 0;
    }
}

@media (min-width: 850px) and (max-width: 1024px) {
    .about-item__info {
        width: 45%;
    }
    .about-item__img {
        width: 50%;
    }
    .about-item__img {
        padding: 4vw 0;
    }
    .about-item {
        margin-bottom: 30px;
    }
}


.about-item__img img {
    max-width: 560px;
    width: 100%;
}


@media (min-width: 768px) and (max-width: 849px) {
    .about-item__info {
        max-width: 100%;
    }
    .about-item__img {
        margin: 0 auto;
    }
}


.about__btn-more {
    display: block;
    margin: 0 auto;
    padding: 18px 70px;
    -webkit-box-shadow: 2px 5px 9px rgba(75, 148, 221, 0.4);
    box-shadow: 2px 5px 9px rgba(75, 148, 221, 0.4);
}

.about__btn-more:hover {
    transform: translateY(-7px);
    background-color: #1076ae;
}

.about__btn-more.active {
    background-color: #0276ad;
}

.about__btn-more:focus {
    outline: none;
}

.why {
    padding: 65px 0 100px;
    background-color: #0BAFF0;
    background-image: url("assets/img/why-background-pattern.svg");
    background-repeat: no-repeat;
    background-size: 370px 200px;
    background-position: 78% 112%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.why::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -280px;
    bottom: -280px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 20px solid rgba(2, 118, 174, 0.05);
}

@media (max-width: 1024px) {
  .why::after {
        content: none;
    }
}

@media (max-width: 767px) {
    .why {
        background-size: 280px 180px;
        background-position: 50% 108%;
    }
    .why::after {
        content: none;
    }
}

.why .title {
    color: #fff;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .why .title {
        margin-top: 0;
    }
}

.why-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 991px) {
    .why-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.why__info {
    max-width: 500px;
}

@media (max-width: 991px) {
    .why__info {
        margin-bottom: 50px;
    }
}

.why__text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 90px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .why__text {
        margin-bottom: 50px;
    }
}

.why__btn {
    display: block;
    background: transparent;
    border-radius: 50px;
    border: 1px solid #fff;
}

.why__btn:hover {
    background-color: #fff;
    color: #0BAFF0;
}

@media (max-width: 767px) {
    .why__btn {
        margin: 0 auto;
    }
}

.why__pictures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.why__pictures-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.why__pictures-item {
    max-width: 263px;
    border-radius: 25px;
    padding: 40px 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    background-color: #F8FAFC;
    margin-right: 85px;
    line-height: 2;
    margin-bottom: 45px;
    position: relative;
    -webkit-box-shadow: 6px 6px 9px rgba(5, 93, 127, 0.43);
    box-shadow: 6px 6px 9px rgba(5, 93, 127, 0.43);
}

@media (max-width: 767px) {
    .why__pictures-item {
        margin-right: 20px;
        font-size: 12px;
        line-height: 1.6;
        padding: 25px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .why__pictures, .why__info {
        width: 50%;
    }
    .why__pictures-item {
        font-size: 13px;
    }
    .why__pictures-item {
        margin-right: 30px;
    }
}

.why__pictures-item::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 40px;
    border: 15px solid transparent;
    border-left: 15px solid #F8FAFC;
    border-top: 15px solid #F8FAFC;
}

.why__pictures-item:last-child {
    margin-right: 0;
}

.why__pictures-item:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.why__pictures-item--big {
    padding: 50px 15px;
}

.why__pictures-item--yellow {
    background-color: #FBED9E;
    margin: 0 auto 40px;
}

.why__pictures-item--yellow::after {
    border-left-color: #FBED9E;
    border-top-color: #FBED9E;
}

.goods {
    padding: 70px 0 90px;
}

.goods .title {
    text-align: center;
    margin-bottom: 25px;
}

.goods-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.goods-items {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .goods-items {
        margin-top: 60px;
    }
}

.goods-item {
    max-width: 300px;
    text-align: center;
    border-radius: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 40px 25px 20px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 10px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .goods-item {
        width: 290px;
    }
}

.goods-item:hover {
    background-color: #F8FAFC;
    -webkit-box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.3);
    box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.3);
}


.goods-item__icon {
    margin: 0 auto 35px;
}

.goods-item__icon img {
    width: 80px;
    height: 80px;
}

.goods-item__text {
    font-size: 20px;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 35px;
    line-height: 1.5;
}

.goods-item__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FBED9E;
    opacity: 0;
    border: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
}

.goods-item__btn svg {
    width: 20px;
    height: 20px;
}

.goods-item:hover {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.goods-item:hover .goods-item__btn {
    opacity: 1;
}


@media (max-width: 767px) {
    .goods-item .goods-item__btn {
        display: none;
    }
    .goods-item__text {
        margin-bottom: 0;
    }
    .goods-item:hover .goods-item__btn {
        display: block;
        margin-top: 35px;
    }
    .goods-item:hover {
        margin: 30px 0;
    }
}

.mission {
    background-color: #F8FAFC;
    padding: 75px 0;
    background-image: url("assets/img/mission.png");
    background-position: left bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .mission {
        padding: 60px 0 630px;
    }
}

@media (max-width: 767px) {
    .mission {
        background-size: 500px;
        padding: 70px 0 330px;
    }
}

.mission-wrapper {
    max-width: 570px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .mission-wrapper {
        max-width: 100%;
    }
}

.mission__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #8C8C8C;
}

.mission__text span {
    border-bottom: 1px solid #0BAFF0;  
}

.mission-wrapper ul {
    padding-left: 80px;
}

@media (max-width: 767px) {
    .mission-wrapper ul {
        padding-left: 65px;
    }
}

.mission-wrapper ul li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.6;
}

.mission-wrapper ul li::before {
    content: "";
    position: absolute;
    left: -65px;
    top: -6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c1e4f3;
    background-image: url("assets/img/1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .mission {
        padding: 75px 0 650px;
    }
    .mission-wrapper {
        max-width: 100%;
    }
}

.prices {
    padding: 75px 0 50px;
}

.prices .title {
    text-align: center;
    margin-bottom: 35px;
}

.prices__subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500;
}

.prices__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.prices__cards::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -175px;
    top: -155px;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    background-color: transparent;
    border: 20px solid rgba(140, 140, 140, 0.05);
}

.prices__cards::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -90px;
    bottom: -100px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: transparent;
    border: 10px solid rgba(140, 140, 140, 0.05);
}

@media screen and (max-width: 991px) {
    .prices__cards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.prices__card {
    max-width: 370px;
    margin: 0 10px;
    border-radius: 25px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .prices__card-secondary {
        margin-top: 50px;
    }
}

@media (max-width: 810px) {
    .prices__card {
       margin: 0 10px 50px;
    }
}

.prices__card-title {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    padding: 35px 10px 30px;
    color: #fff;
    background-color: #0BAFF0;
}

.prices__card-title--yellow {
    background-color: #FADB1F;
    color: #575756;
}

.prices__card-header {
    text-align: center;
    padding: 55px 10px 25px;
    background-color: #c1e4f3;
}

.prices__card-header--yellow {
    background-color: #FBED9E;
}

.prices__card-price {
    font-size: 40px;
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
}

.prices__card-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto 35px;
}

.prices__card-btn {
    border-radius: 50px;
    background-color: #fff;
    padding: 15px 75px;
    color: #0BAFF0;
    border: 2px solid #0BAFF0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.prices__card-btn:hover {
     background-color: #0BAFF0;
     transform: scale(1.06);
     color: #fff;
}

.prices__card-btn--yellow {
    border: 2px solid #FADB1F;
    color: #575756;
}

.prices__card-btn--yellow:hover {
   background-color: #FADB1F;
   color: #575756;
}

.prices__card-body {
    background-color: #F8FAFC;
    padding: 30px 15px 20px 30px;
}

.prices__card-body ul {
    padding-left: 45px;
}

.prices__card-body ul li {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.5;
}

.prices__card-body ul li.disable {
    color: #878787;
}

.prices__card-body ul li.hidden {
    display: none;
}

.prices__card-body ul li.show {
    display: block;
}

.prices__card-body ul li::before {
    content: "";
    position: absolute;
    left: -45px;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url("assets/img/icons/checked-2.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.prices__card-body ul li.disable::before {
    content: "";
    position: absolute;
    left: -45px;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url("assets/img/icons/cancel.svg");
     background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.prices__card-more {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #0BAFF0;
    cursor: pointer;
}

.prices__card-more.active svg{
    transform: rotate(180deg);
}

.prices__card-more svg {
    margin-left: 15px;
    fill: #0baff0;
    width: 6px;
    height: 15px;
    transition: 0.5s;
}

.interesting {
    padding: 100px 0;
}

@media (min-width: 992px) and (max-width: 1024px) {
    .interesting .title {
        max-width: 400px;
    }
}

.interesting-tabs {
    position: relative;
}

.tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #F8FAFC;
    border-radius: 50px;
    border: 2px solid #0BAFF0;
}

@media (max-width: 991px) {
    .tabs {
        position: relative;
        margin-bottom: 30px;
    }
}

.tab {
    padding: 15px 60px;
    text-transform: uppercase;
    color: #0BAFF0;
    border-radius: 50px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    background-color: #F8FAFC;
    cursor: pointer;
}

@media (max-width: 767px) {
    .tab {
        padding: 15px 30px;
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .tab {
        padding: 15px 25px;
        font-size: 16px;
    }
}

.tab.active {
    color: #fff;
    background-color: #0BAFF0;
}

.tab:focus {
    outline: none;
}

@media (max-width: 767px) {
    .tabs-wrapper {
        text-align: center;
    }
}

.tab-item {
    counter-reset: item;
}

.tab-item .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1800px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.tab-item__text {
    font-size: 14px;
    font-weight: 500;
    max-width: 580px;
    line-height: 1.5;
    margin-bottom: 60px;
}

.slider-item {
    width: 290px;
    height: 200px;
    background-color: #F8FAFC;
    padding: 20px 10px;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    -webkit-box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.25);
    box-shadow: 5px 5px 9px rgba(196, 196, 196, 0.25);
}

@media (max-width: 767px) {
    .slider-item {
        width: 250px;
        height: 220px;
    }
}

.slider-item::before {
    counter-increment: item;
    content: "0" counter(item);
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    font-family: "Gilroy", sans-serif;
    position: absolute;
    top: -15px;
    left: 10px;
    color: #575756;
    opacity: 0.05;
}

.owl-item:nth-of-type(1n+10) .slider-item::before {
    content: "" counter(item);
}



.slider-item:hover {
    background-color: #FBED9E;
    -webkit-box-shadow: 7px 7px 12px rgba(251, 237, 158, 0.72);
    box-shadow: 7px 7px 12px rgba(251, 237, 158, 0.72);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.slider-item__text {
    text-align: center;
    font-family: "Gilroy", sans-serif;
    font-size: 22px;
    font-weight: 700;
    z-index: 1;
    margin-bottom: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.slider-item__icon {
    position: absolute;
    bottom: 25px;
}

.slider-item__icon svg {
    width: 20px;
    height: 20px;
}

.slider-item:hover .slider-item__text {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}

.slider-item:hover .slider-item__icon {
    opacity: 1;
}

.slider-item .icon-plus {
    background-color: #0baff0;
}

.rates {
    padding: 75px 0 90px;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.rates::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -55px;
    top: 85px;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    background-color: transparent;
    border: 20px solid rgba(140, 140, 140, 0.05);
}

@media (max-width: 767px) {
    .rates::before {
        top: 170px;
    }
}

.rates::after {
    content: "";
    position: absolute;
    z-index: 1;
    background-color: transparent;
    right: -400px;
    bottom: -380px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 20px solid rgba(140, 140, 140, 0.05);
}

.rates .title {
    text-align: center;
    margin-bottom: 75px;
}

.rates-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -5px;
    position: relative;
    z-index: 2;
}


.rates__item {
    position: relative;
    z-index: 2;
    max-width: 290px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 5px 5px 11px rgba(196, 196, 196, 0.3);
    border: 1px solid transparent;
    margin: 0 5px;
}

@media (max-width: 1250px) {
    .rates-wrapper {
        justify-content: center;
    }

    .rates__item {
        margin: 0 60px 50px;
    }
}
@media (max-width: 1025px) {
    .rates-wrapper {
        justify-content: center;
    }

    .rates__item {
        margin: 0 25px 50px;
    }
}



.rates__item--active .rates__item-top {
    background-color: rgba(11,175,240,0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.rates__item--active {
    border: 1px solid #0BAFF0;
}

.rates__item--active .rates__btn {
    background-color: #0BAFF0;
    color: #fff;
}

.rates__item-top {
    padding: 30px 20px;
    position: relative;
}

.rates__item-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1F1F1;
}

.rates__price {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #575756;
    margin-bottom: 12px;
}

.rates__title {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #575756;
    margin-bottom: 20px;
}

.rates__text {
    font-size: 14px;
    color: #9E9E9E;
}

.rates__text strong {
    color: #0BAFF0;
    font-size: 14px;
    font-weight: 600;
}

.rates__item-bottom {
    padding: 30px 20px;
}

.rates__list ul {
    padding-left: 45px;
}

.rates__list {
    font-family: "Gilroy", sans-serif;
    font-size: 14px; 
    color: #575756;
}

.rates__list p {
    font-weight: 600;
    margin-bottom: 18px;
}

.rates__list ul li {
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.5;
}

.rates__list ul li::before {
    content: "";
    position: absolute; 
    left: -45px;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url('assets/img/icons/checked-2.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.rates__btn {
    display: inherit;
    background-color: #fff;
    border: 1px solid #0BAFF0;
    color: #0BAFF0;
    width: 100%;
    font-weight: 600;
    padding: 15px 20px;
    text-align: center;
    border-radius: 50px;
    margin-top: 35px;
    transition: .4s;
}

.rates__btn:hover {
    box-shadow: 2px 5px 9px rgba(75, 148, 221, 0.4);
    transform: translateY(-6px);
}


.callback {
    padding: 70px 0 50px;
    background-color: #0BAFF0;
    overflow: hidden;
    position: relative;
}

.callback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url("assets/img/icons/circle-ico.svg");
    background-repeat: no-repeat;
    background-position: -25vw -60vw;
    height: 650px;
    width: 150%;
}

@media (min-width: 992px) {
    .callback::before {
        content: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .callback::before {
        background-position: -38vw 0;
    }
}

.callback-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.callback .title {
    color: #fff;
}

.callback-info {
    max-width: 450px;
    margin: 0 auto 0 35px;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .callback-info {
        max-width: 100%;
        margin: 0 auto 50px;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .callback-info {
        width: 45%;
        margin: 0;
    }
}

.callback-info::before {
    content: "";
    position: absolute;
    top: -350px;
    left: -58%;
    z-index: -1;
    background-image: url("assets/img/icons/circle-ico.svg");
    background-repeat: no-repeat;
    width: 950px;
    height: 950px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .callback-info::before {
        left: -89%;
    }
}

@media (max-width: 991px) {
    .callback-info::before {
        content: none;
    }
}

.callback-info__text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

.callback-info__text:last-child {
    margin-bottom: 0;
}

.callback-form {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .callback-form {
        margin: 0 auto;
    }
}

.callback-form__title {
    color: #fff;
    font-weight: 500;
    font-size: 27px;
    margin-bottom: 45px;
    text-align: center;
}

.wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 991px) {
    .callback-form__title {
        font-size: 24px;
    }
    .callback-form .wpcf7-form {
        margin: 0 0 0 auto;
    }
    .callback-wrapper {
        justify-content: space-between;
    }
}


.form__btn {
    background-color: #FBED9E;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    color: #575756;
    border-radius: 50px;
    padding: 27px 30px;
    margin-top: 20px;
    transition: .3s;
    border: 2px solid transparent;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.form__btn:hover {
    transform: scale(1.04);
}

.form__btn:focus {
    outline: none;
    border: 2px solid #FADB1F;
}

.wpcf7-form .form-input {
    margin-bottom: 30px;
    width: 100%;
    background-color: #0276AD;
    color: #fff;
    transition: .3s;
    border: 1px solid transparent;
}

.wpcf7-form .form-input:focus {
    border: 1px solid #0BAFF0;
}


.wpcf7-form .ajax-loader {
    position: relative;
    top: -52px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    display: none;
}

.wpcf7-form.invalid .wpcf7-not-valid {
    border: 2px solid #bf0000;
}

.wpcf7-form.invalid .wpcf7-not-valid:focus {
    border: none;
}

.wpcf7-form label.error {
    position: absolute;
    color: #bf0000;
    font-weight: 500;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.3px;
    padding-left: 5px;
    left: 22px;
    bottom: -36px;
}

.wpcf7-form input.error {
    border: 2px solid #bf0000;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    position: absolute;
    background: #fff;
    color: inherit;
    bottom: 50px;
    font-size: 14px;
    border-radius: 5px;
    padding: 35px 15px 35px 55px;
    margin: 0;
    font-weight: 600;
    text-align: center;
    max-width: 360px;
    width: 103%;
}

.wpcf7 form.sent .wpcf7-response-output::before {
    content: "";
    position: absolute;
    left: 25px;
    margin: 0 auto;
    top: 27px;
    width: 30px;
    height: 30px;
    background-image: url(assets/img/icons/checked-2.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 30px;
}

.popup .wpcf7 form.sent .wpcf7-response-output {
    background-color: #F8FAFC;
    padding: 130px 15px 90px;
    bottom: auto;
    top: auto;
    font-size: 16px;
    border-radius: 20px;
}

.popup .wpcf7 form.sent .wpcf7-response-output::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 75px);
    width: 60px;
    height: 60px;
    background-image: url(assets/img/icons/checked-2.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60px;
}

.popup .wpcf7 form.sent .form__btn {
    text-shadow: none;
}


.wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    bottom: -37px;
    padding-left: 28px;
    width: 100%;
    color: #bf0000;
    font-weight: 500;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.3px;
}

/*.wpcf7-not-valid:focus + span {
    opacity: 0;
}*/

.wpcf7-form .form-input:focus {
    outline: none;
}

.wpcf7-form .form-input::-webkit-input-placeholder {
    color: #fff;
}

.wpcf7-form .form-input::-moz-placeholder {
    color: #fff;
}

.wpcf7-form .form-input:-ms-input-placeholder {
    color: #fff;
}

.wpcf7-form .form-input::-ms-input-placeholder {
    color: #fff;
}

.wpcf7-form .form-input::placeholder {
    color: #fff;
}

.callback-privacy {
    color: #fff;
    font-size: 9px;
    max-width: 390px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 359px) {
    .callback-privacy {
        font-size: 9px;
    }
}

.callback-privacy__btn {
    font-family: inherit;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 1px 0;
    cursor: pointer;
    font-weight: 500;
}

@media (max-width: 359px) {
    .callback-privacy__btn {
        font-size: 10px;
    }
}

.callback-privacy__checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #0276AD;
    margin-right: 10px;
    border-radius: 2px;
    border: 5px solid #E5E8EA;
    position: relative;
    top: 4px;
}

.clients {
    padding: 80px 0;
}

.clients .title {
    margin-bottom: 90px;
    text-align: center;
}

.clients-carousel__item {
    display: block;
    width: 320px;
    background-color: #F8FAFC;
    color: #575756;
    border-radius: 25px;
    padding: 70px 20px;
    -webkit-box-shadow: 5px 5px 11px rgba(196, 196, 196, 0.3);
    box-shadow: 5px 5px 11px rgba(196, 196, 196, 0.3);
    transition: 0.4s ease-out;
}

.clients-carousel__item:hover {
    transform: translateY(-10px);
}

@media (max-width: 767px) {
    .clients-carousel__item {
        width: 250px;
        padding: 30px 15px;
    }
}

.clients-carousel__img-wrapper {
    margin: 0 auto 60px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-carousel__img {
    display: block;
    max-width: 100%;
}

.clients-carousel__title {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.clients-carousel__title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85px;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#0baff0), color-stop(#0aa0df), color-stop(#0892ce), color-stop(#0584be), to(#0276ad));
    background-image: -o-linear-gradient(left, #0baff0, #0aa0df, #0892ce, #0584be, #0276ad);
    background-image: linear-gradient(90deg, #0baff0, #0aa0df, #0892ce, #0584be, #0276ad);
}

.clients-carousel__text {
    font-size: 14px;
    color: #8C8C8C;
    line-height: 1.5;
}

.reviews {
    padding: 80px 0;
    background-color: #F8FAFC;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -250px;
    bottom: -280px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 20px solid rgba(140, 140, 140, 0.05);
}

.reviews-carousel__item {
    width: 555px;
    padding: 50px 40px 40px 30px;
    background-color: #fff;
    border-radius: 25px;
    -webkit-box-shadow: 4px 4px 17px rgba(196, 196, 196, 0.25);
    box-shadow: 4px 4px 17px rgba(196, 196, 196, 0.25);
}


.reviews-carousel__text {
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 60px;
    height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-right: 10px;
}

.reviews-carousel__text::-webkit-scrollbar {
    width: 3px;
}

.reviews-carousel__text::-webkit-scrollbar-track {
  background: #F8FAFC;
}

.reviews-carousel__text::-webkit-scrollbar-thumb {
  background: #bbb;
}


@media (max-width: 767px) {
    .reviews-carousel__item {
        width: 280px;
        padding: 40px 15px;
    }

    .reviews-carousel__text {
        height: 290px;
    }
}

/*.reviews-carousel__text::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 30px;
    background-color: #fff;
    opacity: 0.7;
    width: 100%;
    z-index: 1;
}*/

.reviews-carousel__avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviews-carousel__client {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .reviews-carousel__client {
        flex-direction: column;
        align-items: center;
    }
    .reviews-carousel__avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .reviews-carousel__info {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .reviews-carousel__client {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDAuMSA5MCIgd2lkdGg9IjE0MHB4IiBoZWlnaHQ9IjkwcHgiIGZpbGw9IiNmOGZhZmMiPgogICA8cGF0aCBkPSJNMTA4LjUsMGEzMi4xLDMyLjEsMCwwLDAtMzIsMzIuNEEzMi41LDMyLjUsMCwwLDAsMTA5LDY0LjhoLjZhNDEsNDEsMCwwLDEtMjUuNyw5LDguMSw4LjEsMCwwLDAtOC4xLDguMWMwLDQuNSwyLjksOC4xLDcuNCw4LjEsMzEuNywwLDU2LjgtMjUuOCw1Ni44LTU3LjZoMEMxNDAuMSwxNC41LDEyNi4zLDAsMTA4LjUsMFoiLz4KICAgPHBhdGggZD0iTTMyLjYsMEEzMi4xLDMyLjEsMCwwLDAsLjYsMzIuNCwzMi41LDMyLjUsMCwwLDAsMzMuMSw2NC44aC42YTQxLDQxLDAsMCwxLTI1LjcsOUE4LjEsOC4xLDAsMCwwLDAsODEuOUMwLDg2LjMsMi45LDkwLDcuNCw5MGMzMS43LDAsNTYuOS0yNS44LDU2LjktNTcuNmgwQzY0LjMsMTQuNSw1MC41LDAsMzIuNiwwWiIvPgo8L3N2Zz4K");
        background-repeat: no-repeat;
        background-size: 140px 90px;
        background-position: right bottom;
    }
}

.reviews-carousel__name {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 7px;
}

.reviews-carousel__country {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.reviews-carousel__position {
    font-size: 14px;
    font-weight: 500;
    color: #8C8C8C;
    line-height: 1.5;
    margin-bottom: 7px;
}

.footer {
    background-color: #282828;
    padding: 80px 0 0;
    color: #fff;
    overflow: hidden;
}

.footer__logo {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .footer__logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer__logo-img {
    width: 47px;
    height: 72px;
    margin-right: 20px;
}

.footer__logo-text {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.footer__title {
    font-size: 18px;
    font-weight: 900;
    color: #8c8c8c;
    margin-bottom: 30px;
}

.footer__nav li {
    margin-bottom: 20px;
}

.footer__nav a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: 0.4s;
}

.footer__nav a:hover {
    color: #0BAFF0;
}

.footer__mail-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.footer__schedule {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .footer__mail-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer__mail-phone {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
}

@media (max-width: 991px) {
    .footer__mail-phone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .footer__mail-phone {
        font-size: 26px;
    }
}

.footer__copy {
    position: relative;
    background-color: #1C1C1C;
}

.footer__copy-wrapper {
    position: relative;
    z-index: 1;
    padding: 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .footer__copy-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__copy-left {
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .footer__copy-left {
        margin-bottom: 10px;
    }
}

.footer__copy-right {
    color: #444;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .footer__copy-right {
        font-size: 14px;
    }
}

.footer__copy-link {
    color: #282828;
}

.footer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 115px;
    position: relative;
    z-index: 1;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: transparent;
    right: 380px;
    top: -125px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 30px solid rgba(30, 30, 30, 0.5);
}

.footer-wrapper::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -235px;
    bottom: -340px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 85px solid rgba(30, 30, 30, 0.5);
}

@media (max-width: 991px) {
    .footer-wrapper {
        padding-bottom: 60px;
    }
}

.footer-col {
    width: 25%;
}

@media (max-width: 991px) {
    .footer-col {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .footer-col {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .footer-col:first-child {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .footer-col:first-child {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-col:first-child {
        width: 100%;
    }
}

.footer-col:not(:first-child) {
    padding-left: 90px;
    padding-top: 110px;
}

@media (max-width: 1280px) {
    .footer-col:not(:first-child) {
        padding-left: 50px;
    }
}

@media (max-width: 1100px) {
    .footer-col:not(:first-child) {
        padding-left: 0;
        width: 20%;
    }
}

@media (max-width: 991px) {
    .footer-col:not(:first-child) {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-col:not(:first-child) {
        padding-left: 0;
        padding-top: 50px;
        text-align: center;
        width: 100%;
    }
}

.footer__slogan {
    max-width: 280px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer__slogan {
        margin: 0 auto 40px;
    }
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__social-icons {
    margin-left: 20px;
}

@media (max-width: 991px) {
    .footer__social-icons {
        margin-top: 20px;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .footer__social {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer__social .footer__title {
    margin-bottom: 0;
}

.footer__social-link {
    display: inline-flex;
    transition: .4s;
}

.footer__social-link:hover {
    transform: scale(1.08);
}

.footer__social-link:not(:first-child) {
    margin-left: 10px;
}

.footer__bottom {
    position: relative;
    z-index: 1;
    background-color: #0BAFF0;
    border-radius: 40px;
    padding: 40px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
    -webkit-box-shadow: 0 6px 13px #282828;
    box-shadow: 0 6px 13px #282828;
}

@media (max-width: 1100px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .footer__bottom {
        padding: 25px 20px;
    }
}

.footer__bottom-text {
    font-size: 38px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer__bottom-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer__bottom-text {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 350px) {
    .footer__bottom-text {
        font-size: 18px;
    }
}

.footer__bottom-btn {
    color: #575756;
    background: #FBED9E;
    font-size: 18px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s ease-out;
}

.footer__bottom-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 350px) {
    .footer__bottom-btn {
        padding: 15px 20px;
    }
}


.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 630px;
    min-width: 330px;
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.popup.show {
    visibility: visible;
}

.popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.show ~ .popup-overlay {
    opacity: 1;
    visibility: visible;
}

.popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.show .popup__content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.popup__close-btn {
    position: absolute;
    right: -30px;
    top: -60px;
    cursor: pointer;
}

.popup__close-btn svg {
    fill: #B2B2B2;
}

.popup__close-btn:hover svg {
    fill: #8C8C8C;
    transition: all .5s ease-out;
}

.popup__title {
    font-size: 40px;
    font-weight: 700;
    color: #0C0C0C;
    margin-bottom: 60px;
}

.popup .form__btn {
    color: #282828;
    box-shadow: 0px 5px 20px #fbed9e;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.popup .wpcf7-not-valid-tip {
    color: #bf0000;
}

.popup .callback-privacy,
.popup .callback-privacy__btn {
    color: #B2B2B2;
}

.popup .callback-privacy__btn {
    border-bottom-color: #B2B2B2;
}

.popup .form-input {
    background-color: #0CAFF0;
    color: #575756;
}

.popup .form-input:focus,
.popup .form-input:active {
    background-color: #C0E3F1;
    border-color: transparent;
}

.popup .form-input:focus::placeholder,
.popup .form-input:active::placeholder  {
    color: #575756;
}


@media (max-width: 767px) {
    .popup__close-btn {
        right: -15px;
        top: -70px;
    }
    .popup__title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

@media (max-width: 359px) {
    .hero__title {
        font-size: 40px;
    }
    .header-mobile__nav-title {
        font-size: 13px;
    }
    .header__phone-number {
        font-size: 18px;
    }
    .popup {
        min-width: 290px;
    }
    .form__btn {
        padding: 15px 30px;
    }
    .wpcf7-form .form-input {
        margin-bottom: 20px;
    }
    .popup__close-btn {
        right: -5px;
    }
}

.error-block {
    padding: 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-wrapper {
    text-align: center;
}

.error__title {
    font-size: 200px;
    font-weight: 900;
    color: #0BAFF0;
}

.error__subtitle {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.error__text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 50px;
}

.error__btn {
    border-radius: 50px;
    transition: .4s;
    display: inline-flex;
    padding: 20px 30px;
}

.error__btn:hover {
    transform: translateY(-7px);
    box-shadow: 5px 5px 9px rgb(196 196 196 / 70%);
}

@media (max-width: 800px) {
    .error-block {
        padding: 100px 0;
    }
    .error__title {
        font-size: 120px;
        margin-bottom: 20px;
    }
    .error__subtitle {
        font-size: 20px;
    }
}

.telegram-icon {
    background-color: #0baff0;
}

.viber-icon {
    background-color: #533de0;
}



.popup-callme {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 340px;
    min-width: 300px;
    height: auto;
    z-index: 2001;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.popup-callme.show {
    visibility: visible;
}

.popup-callme-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(255,255,255, 0.9);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.show ~ .popup-callme-overlay {
    opacity: 1;
    visibility: visible;
}

.popup-callme__content {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0px 0px 15px 5px rgba(196, 196, 196, .35);
    border-radius: 30px;  
}

.popup-callme.show .popup-callme__content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    position: relative;
    z-index: 2500;
}

.popup-callme__close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -60px;
    top: -55px;
    cursor: pointer;
    background-color: #F3F4F6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.4s;
}

.popup-callme__close-btn svg {
    width: 20px;
    height: 20px;
}

.popup-callme__close-btn:hover svg {
    fill: #575756;
    transition: all .5s ease-out;
}

.popup-callme__wrapper {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 60px 20px 60px 40px;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
}

@media (max-width: 359px) {
    .popup-callme__wrapper {
        padding: 30px 20px;
    }
    .popup-callme {
        max-width: 300px;
    }
}

.popup-callme-item span {
    display: inline-flex;
    color: #575756;
    font-weight: 300;
    font-size: 30px;
    padding: 0 40px 0 30px;
    font-family: "Gilroy", sans-serif;
}

.popup-callme-item {
    border: 1px solid #0BAFF0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    height: 60px;
    transition: all 0.5s ease-out;
}

.popup-callme-item:hover {
    background-color: #0BAFF0;
    transform: scale(1.03);
}

.popup-callme-item:hover span {
    color: #fff;
}

.popup-callme-item:nth-of-type(2) {
    border-color: #533DE0;
}

.popup-callme-item:nth-of-type(2):hover {
  background-color: #533DE0;
}

.popup-callme-item:first-child {
    margin-bottom: 50px;
}

.popup-callme-item svg {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.popup-callme__title {
    font-size: 38px;
    line-height: 0.9;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    color: #fff;
    text-align: center;
    background-color: #0BAFF0;
    padding: 35px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

@media (max-width: 767px) {
    .popup-callme {
        max-width: 300px;
    }
    .popup-callme__close-btn {
        top: -60px;
        right: 0;
    }

    .popup-callme-item:first-child {
        margin-bottom: 30px;
    }
    .popup-callme__title {
        font-size: 30px;
        padding: 20px;
    }
    .popup-callme-item {
        height: 50px;
    }
    .popup-callme-item svg {
        width: 50px;
        height: 50px;
    }
    .popup-callme-item span {
        font-size: 24px;
    }
}

