html {
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
}

:root {
    --golos: "Golos Text", serif;
}

button:focus,
button:focus-visible{
    outline: unset;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    margin-top: 0;
    margin-bottom:s 0;
    padding-left: 0;
}

img {
    display: block;
}

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

body{
    font-family: "Golos Text", serif;
    background-color: #F4F5F6;
    margin: 0;
    scroll-behavior: smooth;
}

body.lock{
    overflow: hidden;
}

.container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}

header{
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(44px);
    z-index: 10;
}


header.sticky .logo_not_sticky_img{
    opacity: 0;
    transition: all 0.3s ease;
}

header.sticky .logo_sticky_img{
    transition: all 0.3s ease;
    opacity: 1;
}

.logo_not_sticky_img{
    opacity: 1;
    transition: all 0.3s ease;
}

.logo_sticky_img{
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.header_inner{
    display: flex;
    align-items: center;
    padding: 14.39px 0;
}

.header_inner .logo{
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_inner .logo .logo_img{
    height: 31px;
    width: 134px;
    position: relative;
}

.header_inner .logo .logo_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header_inner .logo .divider{
    width: 1px;
    height: 30px;
    transition: all 0.3s ease;
    background-color: #ffffff2e;
}

.header_inner .logo .logo_text{
    color: #FFFFFF;
    opacity: 0.4;
    font-size: 13px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: -0.05em;
    text-align: left; 
    transition: all 0.3s ease;
}

header.sticky .header_inner .logo .divider{
    transition: all 0.3s ease;
    background-color: #012d661c;
}

header.sticky .header_inner .logo .logo_text{
    transition: all 0.3s ease;
    color: #012D66;
}


.banner{
    height: 510px;
    width: 100%;
    background-image: url('../img/banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
    position: relative;
}

.banner .cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000001c;
    z-index: 1;
}

.main_content{
    margin-bottom: 60px;
}

.main_content .main_content_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_content .main_content_inner h1{
    font-size: 33px;
    font-weight: 400;
    line-height: 34.65px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #012D66;
    margin-bottom: 18px;
    max-width: 540px;
}

.main_content .main_content_inner p{
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 400px;
    color: #012D6666;
}

.main_content_blocks{
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    /* max-width: 602px; */
    flex-wrap: wrap;
    width: 100%;
}

.main_content_blocks .main_content_block{
    max-width: 198px;
    width: 100%;
    height: 198px;
    padding: 24px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #012C671A;
    box-shadow: 0px 24px 34px 0px #6C738A1A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}



.main_content_blocks .main_content_block i svg path{
    transition: all 0.3s ease;
}


.main_content_blocks .main_content_block h2{
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: -0.04em;
    color: #012D66;
}

.main_content_blocks .main_content_block i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #E8ECF1 ;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.contacts_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts_inner h2{
    font-size: 33px;
    font-weight: 400;
    line-height: 46.2px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #012D66;
    margin-bottom: 30px;
}


.contacts_inner .contact_block{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.contacts_inner .contact_block.second{
    padding-bottom: 0;
    border-bottom: 0;
    padding-top: 0px;
    margin-bottom: 60px;
}

.contacts_inner .contact_block span{
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 24px;
    color: #012D6666;
    max-width: 335px;
}

.contacts_inner .contact_block .contact_text{
    max-width: 335px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    flex-direction: column;
}

.contacts_inner .contact_block .contact_text .tel_number{
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #012D66;
}

.contacts_inner .contact_block .contact_text .location{
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #012D66;
}

.contacts_inner .contact_block .locations_link{
    display: flex;
    align-items: center;
    gap: 20px;
}

.contacts_inner .contact_block .locations_link a{
    color: #0B60CE;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 40%;
    text-decoration-thickness: 5%;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration-color: #0B60CE ;
    transition: all 0.3s ease;
}

.social_links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 50px;
}

.social_links a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62.17px;
    height: 62.17px;
    border: 0.94px solid #012C671A;
    border-radius: 94.2px;
    background-color: #FFFFFF;
    box-shadow: 0px 22.61px 32.03px 0px #6C738A1A;
    transition: all 0.3s ease;
}

.email_link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.email_link a{
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #012D66;
    transition: all 0.3s ease;
}

.languages{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.languages a{
    font-family: "Manrope", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 18.7px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #012D6666;
    transition: all 0.3s ease;
}

.languages a.active{
    color: #0B60CE;
}

footer{
    padding: 60px 0;
    background-color: #FFFFFF;
}

.footer_inner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_inner p{
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #808EA7;
}


@media only screen and (min-width: 768px){
    .main_content_blocks .main_content_block:hover i{
        background-color: #0B60CE;
        transition: all 0.3s ease;
    }

    .main_content_blocks .main_content_block:hover{
        background-color: #F6F6F6;
        transition: all 0.3s ease;
    }
    
    .main_content_blocks .main_content_block:hover i svg path{
        stroke: #ffffff;
        transition: all 0.3s ease;
    }
    
    .contacts_inner .contact_block .locations_link a:hover{
        text-decoration-color: #ffffff00;
        transition: all 0.3s ease;
    }

    .social_links a:hover{
        box-shadow: 0px 0px 12.03px  -20px #6C738A1A;
        transition: all 0.3s ease;
    }

    .email_link a:hover{
        transition: all 0.3s ease;
        color: #012D66B2;
    }

    .languages a:not(.active):hover{
        color: #0B60CE99;
        transition: all 0.3s ease;
    }
}

@media only screen and (max-width: 1024px){
    .main_content .container{
        max-width: 442px;
    }

    header .container{
        padding: 0 50px;
    }

    .banner{
        height: 576px;
        margin-bottom: 40px;
    }

    .main_content .main_content_inner p,
    .main_content .main_content_inner h1{
        text-align: left;
    }

    .main_content_blocks .main_content_block{
        max-width: 49%;
    }

}

@media (max-width: 768px) {
    header .container{
        padding: 0 20px;
    }
}