@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans/GoogleSans-Regular.eot');
    src: local('Google Sans Regular'), local('GoogleSans-Regular'),
    url('fonts/GoogleSans/GoogleSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/GoogleSans/GoogleSans-Regular.woff2') format('woff2'),
    url('fonts/GoogleSans/GoogleSans-Regular.woff') format('woff'),
    url('fonts/GoogleSans/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans/GoogleSans-Bold.eot');
    src: local('Google Sans Bold'), local('GoogleSans-Bold'),
    url('fonts/GoogleSans/GoogleSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/GoogleSans/GoogleSans-Bold.woff2') format('woff2'),
    url('fonts/GoogleSans/GoogleSans-Bold.woff') format('woff'),
    url('fonts/GoogleSans/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root{
    --green:#007F95;
}
*, ul, li, p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html, body {
    font-family: 'Google Sans', sans-serif;
    color: #1B1B1B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    overflow-x: hidden;
}

html.no_scroll {
    overflow: hidden;
}
h2{
    font-size: clamp(32px,4vw,48px);
    font-weight: 400;
    margin-bottom: clamp(20px,3vw,30px);
}
img, svg {
    max-width: 100%;
    height: auto;
    flex:none;
}

[role="tab"] {
    cursor: pointer;
}

[role="tabpanel"]:not(.active) {
    display: none;
    visibility: hidden;
}

[role="button"] {
    cursor: pointer;
}

.no_scroll body {
    max-height: 100%;
    height: 100%;
    overflow: hidden;
}

input, textarea, button {
    outline: none;
    box-shadow: none;
    border: none;
    font-family: inherit;
}
button{
    background: none;
}
input:focus, textarea:focus, button:focus {
    outline: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input[type=file] {
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

a, a:not(.btn_m):focus, a:not(.btn_m):hover, a:not(.btn_m):active {
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

a[href^="tel:"] {
    white-space: nowrap;
}

.text-center {
    text-align: center !important;
}

.container {
    max-width: 1315px;
    padding: 0 1rem;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 50%;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.justify-content-between {
    justify-content: space-between !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.d-flex {
    display: flex;
}

.flex_between_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_align_center {
    display: flex;
    align-items: center;
}

.flex_wrap {
    flex-flow: wrap;
}

.text_block p:not(:last-child) {
    margin-bottom: 1rem;
}

.text_block {
    font-size: 16px;
}

.text_block h2 {
    margin-top: clamp(20px, 3vw, 48px);
    margin-bottom: clamp(14px, 3vw, 32px);
}

.text_block h3 {
    margin-top: clamp(16px, 3vw, 40px);
}

.text_block h4 {
    font-weight: 700;
    font-size: clamp(16px, 3vw, 18px);
    margin-top: clamp(16px, 3vw, 32px);
    margin-bottom: clamp(12px, 3vw, 20px);
}

.text_block ul {
    padding-left: 24px;

    li {
        list-style: disc;
        margin-bottom: 1rem;

        &::marker {
            color: var(--orange);
        }

    }

    &:not(:last-child) {
        margin-bottom: 16px;
    }
}

.text_block ol {
    padding-left: 24px;

    li {
        list-style: decimal;
        margin-bottom: 1rem;

        &::marker {
            font-weight: 600;
        }

    }

    &:not(:last-child) {
        margin-bottom: 16px;
    }
}
section:not(:last-child){
    margin-bottom: clamp(50px,8vw,100px);
}
.text_green{
    color:var(--green);
}
.font_15{
    font-size: 15px;
}
header{
    margin-bottom: 10px;
    .logo {
        width: clamp(120px, 12vw, 162px);
        flex: none;
    }
}
.container_header {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px clamp(16px,2vw,30px);
}
.head_menu_block{
    flex: auto;
    margin-left: clamp(20px, 4vw, 60px);
    .regions{
        font-size: 14px;
        text-decoration: underline;
        color:var(--green);
        gap: 5px;
    }
    .contacts_block {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 30px;
        .btn_green_gradient{
            font-weight: 700;
        }
    }
}
.top_menu ul{
    display: flex;
    gap: 15px;
    align-items: center;
    >li{
        >a{
            display: inline-block;
            padding: clamp(5px,1vw,15px);
            border-radius: 30px;
            &:hover{
                background: #77C5CB59;
                color:var(--green);
            }
        }
    }

}
.soc_block {
    display: flex;
    align-items: center;
    gap: 16px;
    >*{
        flex:none;
    }
}
.btn_block {
    display: flex;
    gap: 10px;
    flex-flow: wrap;
}
.btn_m{
    padding: 13px 29px 15px;
    border-radius: 50px;
    border:1px solid transparent;
    font-size: 16px;
    display: inline-block;
    text-align: center;
}
.btn_white {
    color: var(--green);
    border-color: var(--green);
}
.btn_green_gradient{
    background: linear-gradient(180deg, #007F95 0%, #77C5CB 100%);
    color:#fff;
    border: none;
    padding: 15px 30px;
    &:hover{
        background: var(--green);
    }
}
.btn_green{
    background: var(--green);
    color:#fff;
}
.wrap_img{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wrap_img_item{
    overflow: hidden;
    font-size: 0;
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;

    }
}
.main_banner_section .wrap_slider {
    margin-right: -15%;
}
.main_banner{
    width: 74.3%;
    .owl-stage-outer{
        margin-right: -40%;
    }
    .owl-nav {
        position: absolute;
        bottom: 0;
        display: flex;
        height: 0;
        align-items: center;
        gap: clamp(5px,1vw,10px);
        margin-left: clamp(20px, 4vw, 30px);
        button span{
            font-size: clamp(24px,5vw,30px);
            font-weight: 700;
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(42px,7vw,62px);
            height: clamp(42px,7vw,62px);
            line-height: 1;
            border-radius: 50%;
            background: #77C5CB59;
            backdrop-filter: blur(10px);
        }
    }
}
.main_banner__item {
    position: relative;
    height: clamp(180px, 30vw, 420px);
    border-radius: clamp(20px,3vw,30px);
    padding: clamp(20px,4vw,70px);
    overflow: hidden;
    background: #c7e7ea;
    img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content_banner {
        position: relative;
        z-index: 2;
        display: flex;
        height: 100%;
        &.right{
            justify-content: end;
        }
        &.right_align_center{
            justify-content: end;
            align-items: center;
        }
        &.left_align_center{
            align-items: center;
        }
    }
    h1,h2{
        font-size: clamp(18px, 4vw, 48px);
        font-weight: 700;
        color:var(--green);

    }
    .logo_banner {
        position: absolute;
        right: clamp(15px,4vw,30px);
        bottom: clamp(15px,4vw,30px);
        z-index: 2;
        width: clamp(72px, 11vw, 162px);
        &.left_top {
            bottom: unset;
            top: clamp(15px, 4vw, 50px);
            right: unset;
            left: clamp(20px, 4vw, 70px);
            +.content_banner{
                padding-top: 75px;
            }
        }
    }
}
.our_services__list {
    display: flex;
    gap: 13px;
    .our_services__item{
        width: 16.666%;
        border:1px solid #77C5CB;
        border-radius: 20px;
        overflow: hidden;
        .wrap_img_item{
            height: 165px;
        }
        .item_text {
            font-size: 15px;
            padding: 10px 15px 20px;
        }
    }
}
.page_form {
    background: #77C5CB59;
    padding: clamp(30px,3vw,50px) clamp(20px,3vw,50px);
    border-radius: 30px;
    >.row{
        justify-content: space-between;
        >*{
            max-width: 541px;
        }
    }
    .content_block{
        margin-bottom:clamp(20px,3vw,50px);
    }
    .submit_block{
        margin-top: 10px;
    }
}
.title_form{
    font-size: 24px;
    margin-bottom: 10px;
}
.block_input{
    label{
        display: block;
        position: relative;
        input,textarea{
            font-size: 15px;
            padding: 13px 29px 15px;
            width: 100%;
            background: #fff;
            border-radius: 50px;
            margin-bottom: 10px;
            border: 1px solid transparent;
            ::placeholder{
                color:#A4A4A4;
            }
        }
    }
}
.accept_check{
    padding-left: 4px;
    position: relative;
    input[type="checkbox"] {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }
    input[type=checkbox]:checked+.text_accept label [role="checkbox"]:before {
        content: '';
        position: absolute;
        top: 4px;
        left: 3px;
        width: 8px;
        height: 4px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-bottom: 2px solid var(--green);
        border-left: 2px solid var(--green);
    }
    label {
        line-height: 0;
        position: relative;
    }
    span[role=checkbox], .checkbox {
        cursor:pointer;
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid var(--green);
        border-radius: 50%;
        margin-right: 12px;
    }
    .text_accept {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 12px;
        a{
            color:var(--green);
            text-decoration: underline;
        }
    }
}
.errorField{
    input,span[role=checkbox], .checkbox{
        border-color: #FF0000 !important;
    }
}
.errorMessages{
    display: none !important;
}
.supplier_section__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(203px, 1fr));
    gap: clamp(10px,2vw,20px);
    max-width: 1095px;
    .supplier_section__item{
        border:1px solid #77C5CB59;
        border-radius: 20px;
        padding: 20px;
        color:var(--green);
        min-height: 100px;
        position: relative;
        z-index: 4;
        backdrop-filter: blur(10px);
    }
}
footer{
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}
.block_contacts_list {
    display: flex;
    flex-flow: wrap;
    max-width: 627px;
}
.block_contacts__item{
    &:first-child{
        width: 100%;
        margin-bottom: 20px;
    }
    .block_contacts__name {
        color:var(--green);
        margin-bottom: 10px;
    }
    .block_contacts__data_item{
        font-size: 20px;
    }
    a[href^="tel:"] {
        font-size: clamp(40px,4vw,48px);
        display: inline-block;
    }
}
address{
    font-style: normal;
}
.copywrite {
    color: #5F5F5F;
    font-size: 12px;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background: #fff;
}
/*.footer_wrapper_img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(334px, 35vw, 510px);
    height: clamp(334px, 35vw, 510px);
    &:before{
        content: '';
        position: absolute;
        top: 1%;
        left: -18%;
        width: 100%;
        height: 100%;
        border-radius: clamp(50px, 7vw, 107px);
        transform: rotate(45deg);
        background: linear-gradient(163.09deg, #77C5CB 5.13%, rgba(255, 255, 255, 0) 93.51%);
    }
    &:after{
        content: '';
        position: absolute;
        top: 1.2%;
        left: -17.6%;
        width: 99.5%;
        height: 99.5%;
        border-radius: clamp(50px, 7vw, 107px);
        transform: rotate(45deg);
        background: #fff;
    }
}
.footer_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(334px, 35vw, 510px);
    height: clamp(334px, 35vw, 510px);
    border-radius: 50px;
    overflow: hidden;
    transform: rotate(45deg);
    z-index: 2;
    img{
        position: absolute;
        top: -4%;
        left: -60%;
        width: 175%;
        max-width: unset;
        transform: rotate(-45deg);
    }
}*/
.footer_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(334px, 45vw, 644px);
    height: clamp(361px, 44vw, 580px);
    &:before{
        content: '';
        position: absolute;
        top: 3%;
        left: -13%;
        width: 95%;
        height: 95%;
        background: url(img/footer_img_border.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    img{
        position: relative;
        z-index: 2;
    }
}
footer .popup_block>*{
    display: none;
}
@media all and (min-width: 769px) {
    .d-md-none {
        display: none !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .d-md-block {
        display: block !important;
    }

    .col-md {
        flex: 1 0 0%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .mob {
        display: none !important;
    }
    .regions {
        margin-right: clamp(20px, 2vw, 50px);
    }
    .block_contacts__item{
        &:nth-child(2){
            width: 52.7%;
            margin-right: clamp(20px,3vw,50px);
        }
    }
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
@media all and (max-width: 991px){
    .desk{
        display: none !important;
    }
    .btn_m{
        width: 100%;
    }

    .container_header {
        justify-content: space-between;
    }
    .head_menu_block{
        position: fixed;
        top: 76px;
        left: -250%;
        transition: 0.4s;
        flex-direction: column;
        background: #FFFFFFE5;
        backdrop-filter: blur(10px);
        z-index: 9;
        margin: 0;
        padding: 30px 30px 60px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        box-shadow: 0 16px 16px 0 #00000026;
        overflow: auto;
        height: calc(100vh - 72px);
        max-height: 572px;
        .regions {
            font-size: 14px;
            text-decoration: underline;
            color: var(--green);
            gap: 5px;
            margin-bottom: 30px;
        }
        .contacts_block {
            gap: 30px;
            margin: 50px 0 0;
            flex-direction: column;
        }

    }
    .hamb {
        width: 40px;
        display: flex;
        flex-direction: column;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: var(--green);
        border-radius: 50%;
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
        &.open{
            background: #77C5CB;
        }
    }
    .hamb>* {
        display: block;
        width: 18px;
        border: 1px solid #fff;
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
    }
    .hamb>*:nth-child(2) {
        margin: 5px 0;
    }
    .hamb.open span:first-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 1px 1px;
        -ms-transform-origin: 1px 1px;
        transform-origin: 8px 1px;
    }
    .hamb.open span:nth-child(2) {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        position: absolute;
        opacity: 0;
        top: 45%;
    }
    .hamb.open span:last-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 15px 7px;
        -ms-transform-origin: 15px 7px;
        transform-origin: 8px 1px;
    }
    .btn_tel_mobile {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--green);
        font-size: 0;
    }
    header.open{
        .logo {
            order: 3;
        }
        .btn_tel_mobile{
            visibility: hidden;
            opacity: 0;
        }
        .head_menu_block{
            left: 0;
        }
    }
    .top_menu ul {
        flex-direction: column;
        gap: 30px;
        & > li {
            >a {
                padding: 15px;
            }
        }
    }
    .our_services__list {
        width: 59.2%;
        .owl-stage-outer{
            margin-right: -85%;
        }
        .owl-stage {
            display: flex;
        }
        .our_services__item {
            width: 100%;
            height: 100%;
        }
    }
    .block_nav_slider {
        position: relative;
        display: block;
        margin: 20px auto 0;
        width: max-content;
        .owl-nav {
            position: absolute;
            z-index: 1;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            height: 0;
            justify-content: space-between;
            width: 100%;
        }
        .owl-dots {
            padding: 0 105px;
            .owl-dot span {
                background: #77C5CB59;
                width: 8px;
                height: 8px;
                display: inline-block;
                border-radius: 50%;
                margin: 0 2px;
                transition: 0.3s;
            }
            .owl-dot.active span{
                width: 24px;
                background: var(--green);
                border-radius: 16px;
            }
        }
    }
    .supplier_section__items{
        grid-template-columns: repeat(2,1fr);
        .supplier_section__item {
            background: #77C5CB59;
        }
    }
    footer{
        >.container{
            background: #fff;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer_img {
            right: -60px;
            bottom: 60%;
            z-index: -1;
            &:before {
                top: -3%;
                left: -18%;
            }
        }
        .block_contacts_list {
            padding: 20px 4px 17px;
            .block_contacts__item{
                &:not(:last-child){
                    margin-bottom: 20px;
                }
            }
        }
    }
}
@media all and (max-width: 768px){

}