html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
* {
    -webkit-tap-highlight-color: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

ul {
    list-style:none;
}

input, select {
    vertical-align:middle;
}
*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;   
}
a{
    color: inherit;
    text-decoration: none;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html,body{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    /*scroll-behavior: smooth;*/
    background: #fff;
    color: #485055;
}
html.home,
html.home body {
    scroll-behavior: smooth;
}


.body{
    min-width: 320px;
}
.body.no-scroll{
    overflow: hidden;
}
.container{
    max-width: 1250px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}


.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background-color: #fff;
    z-index: 99;
    /*height: 80px;*/
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}
.header__logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__menu-mob{
    display: none;
}
.header__menu{
    width: 100%;
    max-width: 770px;
}
.header__menu ul{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
.header__menu ul li{
    display: flex;
    align-items: center;
}
.header__link{
    font-style: normal;
    font-weight: 400;
    color: #485055;
    text-align: center;
    font-size: 16px;
    line-height: normal;
    border-bottom: 1px solid transparent;
    transition: color ease .3s, border-color ease .3s;
}

.header__link.is-active,
.header__link:hover{
    color: #00727F;
    border-color: #00727F;
}


.header__lang{
    display: flex;
    align-items: center;
    gap: 2px;
}
.header__language{
    width: 44px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #00727F;
    font-weight: 700;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.header__language.active{
    border: 1px solid #00727F;
}
.header__burder{
    display: none;
}
.main{
    margin-top: 80px;
    overflow: hidden;
}

.btn{
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 24px;
    background: #00727F;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .1s ease;
}
.btn:hover{
    background: #024a52;
}


.footer{
    background: #00727F;
    padding: 80px 0;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.footer__block{
    display: flex;
    flex-direction: column;
}
.footer__block-name{
    color: #66AAB2;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 20px;
}
.footer__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-bottom: 16px;
}
.footer__link {
    transition: opacity ease .3s, color ease .3s;
}
.footer__link,
.adress-text{
    color: #FFF;
    line-height: 140%; /* 25.2px */
}
.footer__link-privacy{
    margin-top: 24px;
}
.footer__link-block{
    display: flex;
    align-items: center;
    gap: 8px;
}
.adress-text{
    max-width: 194px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__link:hover{
    opacity: .7;
}
.footer__block:nth-of-type(2) .footer__link-block{
    align-items: start;
    text-decoration: none;
}
.footer__link-block +.footer__link-block{
    margin-top: 12px;
}

@media (max-width: 950px){

    .header__inner .header__lang{
        display: none;
    }
    .header__menu .header__lang{
        display: flex;
    }
    .header__menu{
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #00727F;
        z-index: 98;
        max-width: 100%;
        padding: 40px 15px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all .2s ease;
    }
    .header__menu.show{
        transform: translateX(0);
    }
    .header__menu ul{
        flex-direction: column;
        gap: 24px;
    }
    .header__link{
        color: #FFF;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 41.6px */
    }
    .header__link.is-active {
        border-color: #fff;
        color: #ffffff;
    }
    .header__link:hover{
        color: #fff;
        text-decoration: none;
    }

    .header__lang{
        margin-top: 40px;
    }
    .header__language{
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        border-radius: 0;
    }
    .header__language.active{
        border-color: #fff;
    }
    .header__menu-mob{
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 40px;
    }
    .header__menu-link{
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .header__burder{
        display: flex;
        align-items: center;
        gap: 12px;
        color: #000;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        outline: none;
        border: none;
        background-color: transparent;
    }
    .burder__open,
    .burder__close{
        display: none;
        align-items: center;
        justify-content: center;
    }
    .burder__open{
        display: flex;
    }
    .header__burder.active .burder__close{
        display: flex;
    }
    .header__burder.active .burder__open{
        display: none;
    }

    .footer__inner {
        display: flex;
        justify-content: start;
        gap: 40px 18px;
        flex-wrap: wrap;
    }
    .footer__block {
        display: flex;
        flex-direction: column;
        width: calc(33.33% - 12px);
    }
}
@media (max-width: 760px){
    .footer__block {
        width: calc(50% - 9px);
    }
}
@media (max-width: 540px){
    html,body{
        font-size: 16px;
    }
    .footer__inner{
        flex-direction: column;
        gap: 24px;
    }
    .footer__block{
        width: 100%;
    }
    .adress-text{
        max-width: 100%;
        display: block;
    }
    .footer__block:nth-of-type(2) .footer__link-block svg{
        min-width: 20px;
    }
    .footer__block:first-of-type{
        order: 1;
    }
    .footer{
        padding: 40px 0;
    }
    .footer__block-name{
        margin-bottom: 16px;
    }
    .footer__link{
        font-size: 16px;
        line-height: 140%;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}