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

blockquote,body,dd,dl,figcaption,figure,h1,h2,h3,h4,li,ol,p,ul {
    margin: 0
}

body {
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    overflow-x: hidden
}

ol,ul {
    padding: 0;
    list-style: none
}

a {
    font-family: inherit;
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}

button {
    cursor: pointer;
    border: none
}

button,input,select,textarea {
    font-family: inherit;
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Regular.woff2) format("woff2"),url(../fonts/Montserrat-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Bold.woff2) format("woff2"),url(../fonts/Montserrat-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

* {
    font-family: Montserrat,sans-serif
}

:root {
    --container: 1140px;
    --transition: 250ms ease
}

* {
    outline: none;
    border: 0;
    margin: 0;
    padding: 0
}

html,body {
    overflow-x: hidden
}

html {
    font-size: 100%
}

html.lock {
    overflow-y: hidden
}

button {
    background-color: transparent;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

a,button {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

a *,button * {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

li {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

body {
    position: relative;
    min-width: 320px;
    /* background-color: #f9f9f9; */
    color: #4d4d4d;
    font-size: 20px;
    font-family: Montserrat,sans-serif
    line-height: 1.4;
    min-height: 100vh;
    background: url("../img/bg.png");
    background-size: cover;
}

@media(max-width: 992px) {
    body {
        font-size:12px
    }
}

.container {
    max-width: var(--container);
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media(max-width: 1200px) {
    .container {
        flex-direction: column;
        padding-right:20px;
        padding-left: 20px
    }
}

.overflow-hidden {
    overflow: hidden
}

.relative {
    position: relative
}

.w-8\/12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.w-7\/12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.w-6\/12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.w-5\/12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.w-4\/12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.w-full {
    width: 100%
}

.h-full {
    height: 100%
}

.block {
    display: block
}

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

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

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

.items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-left {
    text-align: left
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    overflow-y: auto;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease
}

.modal.active {
    z-index: 100;
    opacity: 1
}

.modal__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.25)
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 22px;
    background-color: #fff;
    border-radius: 16px;
    width: 640px
}

@media(max-width: 768px) {
    .modal__content {
        width:100%;
        min-height: 100%;
        border-radius: 0;
        padding: 52px 20px 20px 20px;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

.modal__content .close {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px
}

.modal__content .title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #189288;
}

@media(max-width: 768px) {
    .modal__content .title {
        font-size:18px
    }
}

.modal__content .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
}

.modal__content .form .field-set {
    margin-bottom: 20px
}

.field-set {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.field-set__label {
    margin-bottom: 10px;
    font-size: 18px;
    color: #626262
}

.field-set__input {
    width: 100%;
    border-radius: 16px;
    height: 52px;
    padding: 0 20px;
    border: 1px solid #dadada;
    background-color: #f9f9f9
}

.btn-form {
    background: linear-gradient(90.41deg, #ED1266 10.89%, #BE1354 90.66%, #CF135A 125.66%);
    border-radius: 34px;
    height: 50px;
    padding: 0 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff
}

.btn-blue {
    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;
    /* padding: 0 60px; */
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    /* Rectangle 2 */
    padding: 22px 78px;
    

/* res 01 */
    background: linear-gradient(90.41deg, #ED1266 10.89%, #BE1354 90.66%, #CF135A 125.66%);
    box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.35);
    border-radius: 60px;
}

.btn-blue:hover {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.25);
    box-shadow: 0 0 10px rgba(0,0,0,.25)
}

.title-h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 112%;
    color: #000;
}

@media(max-width: 540px) {
    .title-h2 {
        font-size:20px
    }
}

.text-block {
    font-size: 20px;
    font-weight: bold;
    text-align: center
}

@media(max-width: 540px) {
    .text-block {
        font-size:14px
    }
}

.item__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px;
    background-color: #e4f6fa;
    border-radius: 7px
}

.item__line:not(:last-of-type) {
    margin-bottom: 14px
}

.item__line.first {
    background-color: #fbf7d6
}

.item__line .icon {
    margin-right: 17px;
    background-color: #fff;
    border-radius: 7px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    max-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.item__line .text {
    font-size: 11px;
    line-height: 14px;
    font-weight: bold
}

.btn-border {
    border: 2px solid #fff;
    border-radius: 60px;
    height: 52px;
    padding: 0 30px;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    color: #fff;
}

.btn-border:hover {
    background-color: #ffffff;
    color: #000;
}

.cards {
    margin-bottom: 14px
}

.cards .container {
    max-width: 1020px
}

.cards .title-h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 82px;
    max-width: 734px
}

@media(max-width: 540px) {
    .cards .title-h2 {
        margin-bottom:14px
    }
}

.cards__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 48px
}

@media(max-width: 992px) {
    .cards__items {
        -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;
        margin-bottom: 20px
    }
}

.cards__items .item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    border-radius: 15px;
    max-width: 280px;
    padding: 20px 24px 26px 24px
}

@media(max-width: 992px) {
    .cards__items .item {
        max-width:100%;
        width: 100%;
        margin-bottom: 20px
    }
}

.cards__items .item.item1::before {
    content: "";
    position: absolute;
    background: url(../img/sect2/1.png) no-repeat;
    background-size: 100%;
    width: 300px;
    height: 228px;
    z-index: -1;
    top: -82px;
    left: -115px
}

@media(max-width: 540px) {
    .cards__items .item.item1::before {
        width:228px;
        height: 279px;
        right: -30px;
        left: auto;
        background: url(../img/sect2/1-sm.png) no-repeat;
        background-size: 100%
    }
}

.cards__items .item.item2::before {
    content: "";
    position: absolute;
    background: url(../img/sect2/2.png) no-repeat;
    background-size: 100%;
    width: 408px;
    height: 327px;
    z-index: -1;
    top: -44px;
    left: -137px
}

@media(max-width: 540px) {
    .cards__items .item.item2::before {
        width:262px;
        height: 327px;
        left: -30px;
        background: url(../img/sect2/2-sm.png) no-repeat;
        background-size: 100%
    }
}

.cards__items .item.item3::before {
    content: "";
    position: absolute;
    background: url(../img/sect2/3.png) no-repeat;
    background-size: 100%;
    width: 313px;
    height: 319px;
    z-index: -1;
    top: -58px;
    right: -105px
}

@media(max-width: 540px) {
    .cards__items .item.item3::before {
        width:177px;
        height: 319px;
        right: -30px;
        background: url(../img/sect2/3-sm.png) no-repeat;
        background-size: 100%
    }
}

.cards__items .item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.cards__items .item__top .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    max-width: 42px;
    margin-right: 18px
}

.cards__items .item__top .icon svg,.cards__items .item__top .icon img {
    width: 100%
}

.cards__items .item__top .title {
    font-size: 20px
}

.cards .text-block {
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto
}

.cards .btn-blue {
    margin-left: auto;
    margin-right: auto
}

.card_col {
    position: relative;
    padding-bottom: 105px
}

@media(max-width: 540px) {
    .card_col {
        padding-bottom:48px
    }
}

.card_col::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: url(../img/sect4-bg.png) no-repeat bottom center;
    background-size: cover;
    z-index: -2
}

.card_col::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), color-stop(19.06%, rgba(255, 255, 255, 0)), color-stop(75.31%, rgba(255, 255, 255, 0)), to(#F9F9F9)),-webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.85)));
    background: -o-linear-gradient(top, #F9F9F9 0%, rgba(255, 255, 255, 0) 19.06%, rgba(255, 255, 255, 0) 75.31%, #F9F9F9 100%),-o-linear-gradient(bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
    background: linear-gradient(180deg, #F9F9F9 0%, rgba(255, 255, 255, 0) 19.06%, rgba(255, 255, 255, 0) 75.31%, #F9F9F9 100%),linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
    z-index: -1;
    opacity: .8
}

.card_col .title-h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px
}

@media(max-width: 540px) {
    .card_col .title-h2 {
        margin-bottom:14px
    }
}

.card_col__row {
    margin-top: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 992px) {
    .card_col__row {
        margin-top:28px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.card_col__row .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 36px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    border-radius: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px)/2);
    flex: 0 0 calc((100% - 30px)/2);
    max-width: calc((100% - 30px)/2)
}

@media(max-width: 992px) {
    .card_col__row .item {
        -webkit-box-flex:0;
        -ms-flex: 0 0 calc((100% - 30px)/1.5);
        flex: 0 0 calc((100% - 30px)/1.5);
        max-width: calc((100% - 30px)/1.5);
        margin-bottom: 20px
    }
}

@media(max-width: 768px) {
    .card_col__row .item {
        -webkit-box-flex:0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 14px
    }
}

@media(max-width: 540px) {
    .card_col__row .item {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 22px
    }
}

.card_col__row .item__picture {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 210px;
    flex: 0 0 210px;
    max-width: 210px;
    margin-right: 32px
}

@media(max-width: 1200px) {
    .card_col__row .item__picture {
        -webkit-box-flex:0;
        -ms-flex: 0 0 160px;
        flex: 0 0 160px;
        max-width: 160px;
        margin-right: 14px
    }
}

@media(max-width: 540px) {
    .card_col__row .item__picture {
        -webkit-box-flex:0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 12px
    }
}

.card_col__row .item__picture img {
    width: 100%
}

.card_col__row .item__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.card_col__row .item__text .title {
    margin-bottom: 24px;
    background: -webkit-gradient(linear, left top, left bottom, from(#54AAD6), to(#3D7EBE));
    background: -o-linear-gradient(top, #54AAD6 0%, #3D7EBE 100%);
    background: linear-gradient(180deg, #54AAD6 0%, #3D7EBE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto
}

.card_col__row .item__text .item__line:not(:last-of-type) {
    margin-bottom: 7px
}

.card_col__row .item__text .btn-blue {
    height: 38px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0 35px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px
}

section.about{
    padding-top: 70px;
    padding-bottom: 20px;
}
.about h2{
    text-align: center;
}

header .about p {
    font-weight: 600;
    color: #000;
    font-size: 24px;
    margin-bottom: 50px;
}

.triger-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 38px;
    width: 100%;
}
.triger-item{
    display: flex;
    margin-bottom: 40px;
    width: 50%;
    text-align: justify;
    padding: 0 50px;
}

.triger-item img {
    height: 50px;
}

.triger-item small {
    padding-left: 29px;
    font-size: 18px;
    /* white-space: pre-line; */
}

@media(max-width: 768px) {
    .triger-item{
        width: 100%;
    }
}

.swiper-wrapper{
    margin-top: 50px;
}

.swiper-slide{
    padding: 20px 20px;
    display:flex;
    gap: 20px;
}

.swiper-slide .slide-img{
    width: 150px;
}

.swiper-slide .slide-img img{
    width: 150px;
    max-width: 150px;
}

.swiper-pagination{
    display: block;
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #1ba99d;
}

.swiper .swiper-pagination-bullet {
    width: 0.875rem;
    height: 0.875rem;
}

.countries{
    padding: 70px 0;
}
.countries h2{
    text-align: center;
}
.countries p{
    text-align: center;
    font-weight: bold;
    color: #000;
}
.country-list {
    -webkit-columns: 100px 5;
    -moz-columns: 100px 4;
    columns: 100px 5;
    column-gap: 30px;
    vertical-align: top;
    padding: 50px 0;
}

.country-list li img{
    width: 32px;
    margin: 0 7px 0 0;
    float: left;
}
.country-list li {display: flex;align-items: center;padding: 5px;font-size: 16px;color: #000;}

@media(max-width: 992px) {
.country-list {
    -webkit-columns: auto 2;
    -moz-columns: auto 2;
    columns: auto 2;
}
}
.client {
    margin-bottom: 82px
}

@media(max-width: 540px) {
    .client {
        margin-bottom:40px
    }
}

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

@media(max-width: 540px) {
    .client__top {
        margin-bottom:20px
    }
}

.client__top .picture {
    margin-right: 12px;
    margin-left: 28px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    max-width: 400px
}

@media(max-width: 992px) {
    .client__top .picture {
        display:none
    }
}

.client__top .picture img {
    width: 100%
}

.client__top .text p {
    font-weight: 300
}

.client__top .text p:not(:last-of-type) {
    margin-bottom: 30px
}

@media(max-width: 540px) {
    .client__top .text p:not(:last-of-type) {
        margin-bottom:10px
    }
}

.client__bottom {
    position: relative;
    padding: 30px 215px 30px 34px;
    background: -webkit-gradient(linear, left top, left bottom, from(#54AAD6), to(#3D7EBE));
    background: -o-linear-gradient(top, #54AAD6 0%, #3D7EBE 100%);
    background: linear-gradient(180deg, #54AAD6 0%, #3D7EBE 100%);
    -webkit-box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    border-radius: 15px
}

@media(max-width: 540px) {
    .client__bottom {
        padding:20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.client__bottom p {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold
}

@media(max-width: 992px) {
    .client__bottom p {
        font-size:18px
    }
}

@media(max-width: 540px) {
    .client__bottom p {
        font-size:14px;
        line-height: 18px
    }
}

.client__bottom img {
    position: absolute;
    bottom: -5px;
    right: 19px
}

@media(max-width: 540px) {
    .client__bottom img {
        position:relative;
        bottom: -23px;
        right: auto;
        max-width: 217px;
        margin-left: auto
    }
}

.footer {
    color: #fff;
    padding: 30px 0;/* Rectangle 9 */
    background: #189288;
}

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

@media(max-width: 768px) {
    .footer .container {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}
.footer__left p{
    padding: 5px 0;
    white-space: break-spaces;
}

@media(max-width: 768px) {
    .footer__left {
        margin-bottom:20px
    }
}

.footer__right {
    margin-right: 60px;
    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
}

@media(max-width: 768px) {
    .footer__right {
        margin-right:0
    }
}

.footer__right b {
    margin-bottom: 24px
}

.footer__right .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.footer__right .social a:not(:last-child) {
    margin-right: 14px
}

.header {
    position: relative;
    padding-top: 32px;
    /* padding-bottom: 168px; */
}

@media(max-width: 540px) {
    .header {
        padding-bottom:34px
    }
}

.header .container .head, .header .container .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .container .about {
    padding-bottom: 50px;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../img/header-bg.png) no-repeat left;
    background-size: cover
}

@media(max-width: 540px) {
    .header::before {
        /*display:none*/
    }
}

.header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(max-width: 540px) {
    .header__left {
        /* padding-top:290px; */
    }
}

.logo {
    margin-bottom: 42px;
    max-width: 200px;
}

@media(max-width: 540px) {
    .header__left .logo {
        margin-bottom:10px;
        max-width: 120px;
    }
}

.header__left .title {
    font-size: 44px;
    /* background:-webkit-gradient(linear, left top, left bottom, from(#54AAD6), to(#3D7EBE)); */
    background: -o-linear-gradient(top, #54AAD6 0%, #3D7EBE 100%);
    /* background:linear-gradient(180deg, #54AAD6 0%, #3D7EBE 100%); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color:transparent; */
    background-clip: text;
    max-width: 519px;
    line-height: 115%;
    margin-top: 45px;
    margin-bottom: 28px;
    color: #000;
}

@media(max-width: 750px) {
    header .container .about {
        flex-direction: column;
    }
    header .container .head {
    align-items: center;
    }
    .header__left .title {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
}

.header__left .text {
    max-width: 480px;
    margin-bottom: 45px
}

@media(max-width: 992px) {
    .header__left .text {
        margin-bottom:16px
    }
}

.header__left .btn-blue {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 100px;
}

.header__right img {
    /* position: absolute; */
    /* bottom: 0; */
    /* right: 150px; */
    /* z-index: -1; */
}
@media(max-width: 992px) {
    .header__right img {
        position: relative;
        right: 0;
    }
}

.header__right .phone {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -o-linear-gradient(top, #40FB48 0%, #2DCF34 100%);
    -webkit-box-shadow: 12px 12px 45px 1px rgba(0,0,0,.1);
    padding: 7px 30px 7px 20px;
    /* Rectangle 10 */
    background: linear-gradient(265.2deg, #1BA99D 0%, #189288 98.5%);
    /* opacity: 0.7; */
    border-radius: 11px;
    margin-right: 43px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}


.header__right .phone::after{
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.4835 3.51307C15.7965 -1.1725 8.19853 -1.17138 3.51295 3.51565C-1.17263 8.20268 -1.1715 15.8007 3.51553 20.4862C8.20256 25.1718 15.8005 25.1707 20.4861 20.4837C22.7364 18.2327 24.0002 15.1799 23.9995 11.9971C23.9989 8.81473 22.7341 5.76298 20.4835 3.51307ZM18.1731 16.7155C18.1726 16.716 18.1721 16.7166 18.1715 16.7171V16.7131L17.5635 17.3171C16.7772 18.1134 15.632 18.441 14.5435 18.1811C13.4468 17.8876 12.4043 17.4203 11.4555 16.7971C10.574 16.2337 9.75703 15.5751 9.0195 14.8331C8.34089 14.1595 7.73123 13.4198 7.19948 12.6251C6.61786 11.77 6.1575 10.8385 5.83148 9.85709C5.45775 8.70415 5.76745 7.43904 6.6315 6.58911L7.34348 5.87712C7.54143 5.67828 7.86309 5.67757 8.06189 5.87553C8.0624 5.87604 8.06297 5.87656 8.06348 5.87712L10.3115 8.12511C10.5103 8.32306 10.511 8.64472 10.3131 8.84351C10.3125 8.84403 10.312 8.84454 10.3115 8.84511L8.99147 10.1651C8.61271 10.5397 8.56509 11.135 8.87948 11.5651C9.3569 12.2203 9.88523 12.8369 10.4595 13.4091C11.0998 14.0522 11.7958 14.6371 12.5395 15.1572C12.9692 15.4569 13.5517 15.4063 13.9235 15.0372L15.1994 13.7412C15.3974 13.5423 15.7191 13.5416 15.9179 13.7396C15.9184 13.7401 15.9189 13.7406 15.9194 13.7412L18.1715 15.9972C18.3704 16.1951 18.3711 16.5167 18.1731 16.7155Z" fill="white" /></svg>');
    position: absolute;
    /* margin-right: -230px; */
    padding: 16px;
    width: 56px;
    height: 56px;
    right: -42px;
    border-radius: 100%;
    background: linear-gradient(265.2deg, #1BA99D 0%, #189288 98.5%);
}

.header__right .phone svg {
    margin-right: 12px
}

.header__right .phone span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.order_card {
    position: relative
}

@media(max-width: 768px) {
    .order_card::before {
        background:url(../img/footer-top-sm.png) no-repeat top center;
        background-size: 100%;
        height: 54px;
        bottom: 0
    }
}

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

@media(max-width: 768px) {
    .order_card__row {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.order_card__row .picture {
    display: flex;
    position: relative;
    /* z-index: -1; */
    align-items: end;
}

@media(max-width: 992px) {
    .order_card__row .picture {
    }
}

.order_card__row .picture img {
    display: block;
    width: 100%;
}

.order_card__row .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 2
}

.order_card__row .info .title-h2 {
    margin-bottom: 30px
}

@media(max-width: 992px) {
    .order_card__row .info .title-h2 {
        font-size:24px
    }
}

@media(max-width: 768px) {
    .order_card__row .info .title-h2 {
        font-size:20px;
        margin-bottom: 24px;
        /* text-align: center; */
    }
}

@media(max-width: 540px) {
    .header__right .phone {
        /* padding: 10px; */
    }
    .header__right .phone span{
        font-size: 14px;
    }
}

ul.info__items{
}

ul.info__items li{
    color: #000;
    font-size: 24px;
    list-style: inside;
}

.info p{
    padding: 20px 0;
    font-size: 24px;
    color: #000;
}

@media(max-width: 768px) {
    .info p, ul.info__items li{
        font-size: 18px;
    }
}

.info .btn-blue{
    display: block;
    width: fit-content;
    margin-bottom: 120px;
}

/*# sourceMappingURL=main.min.css.map */

.txt-pink{
    color: rgba(234, 15, 97, 1);
}
.txt-green{
    color: rgba(27, 169, 157, 1);
}

section .form{
    display: block;
    position: relative;
    width: 85%;
    margin: auto;
    margin-top: -80px;
    background: rgba(27, 169, 157, 0.8);
    mix-blend-mode: normal;
    border-radius: 10px;
    padding: 10px;
    z-index: 9;
    filter: drop-shadow(2px 8px 8px rgba(0, 0, 0, 0.35));
}

section .form-container{
    border: 1px solid #fff;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    padding: 50px 75px;
}

section .form-container small{
    display: block;
    color: #fff;
    font-weight: 200;
    text-align: center;
    font-size: 12px;
}

.select-form {
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 0px;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../img/select.png") 95% / 5% no-repeat;
    cursor: pointer;
    font-weight: 500;
}
.select-form option{
	color:#fff;
	background:#3baca3;
	cursor: pointer;
}

.input-form{
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 0px;
    width: 100%;
    font-weight: 500;
}
.input-form::placeholder {
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 0px;
    width: 100%;
}


.form-main{
    display: flex;
    border:1px solid #fff;
    border-radius: 10px;
}

.form-group{
    color: #fff;
    padding: 10px 15px;
}

.form-group label{
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
    letter-spacing: -0.13px;
    color: #E7E7F2;
}


section .form button{

/* Rectangle 3.8 */display: block;/* height: 67px; */background: #fff;border-radius: 10px;padding: 18px 50px;font-size: 18px;margin: 20px auto;font-weight: bold;color: #189288;}


@media(max-width: 768px) {
    section .form {
        width: 100%;
    }
    section .form-container{
        padding: 0;
        border: 0;
    }
    .form-main {
        display: flex;
        flex-direction: column;
    }
    .form-group{
        border-left: 0 !important;
    }
    .form-group:nth-child(2n),
    .form-group:nth-child(3n) {
        border-top: 1px solid #fff;
    }
}


section .form button {
    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;
    /* padding: 0 60px; */
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    white-space: break-spaces;/* Rectangle 2 */
    /*padding: 16px 78px;*/
    

/* res 01 */
    background: linear-gradient(90.41deg, #ED1266 10.89%, #BE1354 90.66%, #CF135A 125.66%);
    box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.35);
    /* border-radius: 60px; */
}

section .form button:hover {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.25);
    box-shadow: 0 0 10px rgba(0,0,0,.25)
}