html,
body{
    height: auto;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
}

.header__center{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all .3s ease;
}

section:not(.map-wrapper):not(.main_banner_block-wrapper):not(.sentence_block-wrapper):not(.quote_block-wrapper){
    padding: 120px 0;
}
section.container {
    padding-left: 15px!important;
    padding-right: 15px!important;
}

h1.about_heading {
    margin-bottom: 40px;
    text-align: center;
}

.h2, h2{
    font-size: 46px;
    font-weight: bold;
    position: relative;
    color: #292929;
    margin-bottom: 40px;
    transition: .5s;
    text-align: center;
}
.h3, h3{
    font-size: 28px;
    font-weight: bold;
    position: relative;
    color: #292929;
    margin-bottom: 30px;
    transition: .5s;
}

/* .about_heading::before {
    position: absolute;
    content: "";
    width: 85px;
    height: 3px;
    left: 1px;
    bottom: -15px;
    background: var(--basic-company);
} */

.btns-wrapper{
    width: fit-content;
    margin: 0 auto;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 65px;
    width: 209px;
    height: 51px;
    background: #1462CF;
    color: #fff;
    border-radius: 100px;
    transition: .5s;
}

.btn:hover {
    color: #fff;
    background-color: #114fa6;
}

.secondary_btn.btn {
    border: 2px solid #FFFFFF;
    background-color: transparent;
    border-radius: 100px;
}

.secondary_btn.btn:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.third-rate_btn{
    color: #1462CF;
    text-decoration: underline;
    font-size: 16px;
    border: unset;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.third-rate_btn:hover{
    color: #313131;
    border: unset;
}

.main_banner_block-wrapper .social__link {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: #d6e7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 26px;
    margin: 0;
}

.main_banner_block-wrapper .social__link svg{
    height: 25px;
    width: 25px;
}

/* _______________________ Main Banner _______________________  */

.main_banner_block-wrapper{
    position: relative;
    overflow: hidden;
    max-height: 100vh;
}
.main_banner_item, .main_banner-wrapper {
    height: 100vh;
}
.main_banner-wrapper {
    background-size: cover;
    transform: scale(1.02);
    background-position: center;
    background-repeat: no-repeat;
    animation: infiniteZoom 10s linear infinite;
}
@keyframes infiniteZoom {
    0% {
        /* background-size: 200%; */
        transform: scale(1.02);
        background-position: 70% 70%; 
    }
    25% {
        /* background-size: 208%; */
        transform: scale(1.05);
        background-position: 60% 80%;
    }
    50% {
        /* background-size: 215%; */
        transform: scale(1.08);
        background-position: 55% 55%; 
    }
    75% {
        /* background-size: 208%; */
        transform: scale(1.05);
        background-position: 80% 60%; 
    }
    100% {
        /* background-size: 100%; */
        background-position: 70% 70%;
        transform: scale(1.02);
    }
}

.main_banner_content-wrapper{
    top: 0;
    left: 0;
}

.banner_logo_img {
    display: flex;
    height: 280px;
    aspect-ratio: 1 / 1;
    margin: 50px auto;
}

.main_banner_content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #00000040;
    color: #fff;
}

.main_banner_content {
    display: grid;
    height: 100%;
    align-items: center;
    justify-content: center;
} 

.main_banner_block-wrapper .heading_wrapper{
    max-width: 900px;
}

.main_banner_block-wrapper .heading_wrapper > *{
    color: #fff;
    text-align: center;
}

.main_banner_description {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
}

.main_banner_content .social_links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: auto;
}

.heading_wrapper .banner_main_ttl {
    font-size: 46px;
    letter-spacing: 20px;
    text-transform: uppercase;
    font-weight: 600;
}


/* _______________________ QuoteBlock _______________________ */

.quote_block-wrapper {
    position: relative;
    padding-bottom: 120px;
}

.quote_block {
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: 1;
    max-width: 550px;
    padding: 50px;
    overflow: hidden;
}     

.quote_list-wrapper{
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
}

.quote_item {
    display: grid;
    gap: 30px;
    padding: 60px 20px 40px;
    background-color: #f4f4f4;
    box-shadow: 0px 15px 10px -10px rgba(0, 0, 0, 10%);
    border-radius: 10px;
    max-width: 450px;
    height: auto;
}

.quote_text-wrapper{
    display: flex;
    align-items: center;
}

.quote_annotation {
    font-size: 20px;
    text-align: center;
}

.quotes_img-wrapper {
    position: absolute;
    top: -10px;
    right: 20px;
}


.quote_author-wrapper {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
    height: fit-content;
    margin-top: auto;
}

.quote_author_img-wrapper{
    display: flex;
    align-items: center;
}

.quote_author_info-wrapper {
    display: grid;
    align-self: center;
    gap: 10px;
    font-size: 18px;
    padding: 20px;
}

.quote_author_info-wrapper > *{
    font-style: normal;
}

.quote_author_img-wrapper img{
    border-radius: 50%;
}

.quote_author_position {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
}

/* _______________________ About _______________________ */

.about_block_content-wrapper{
    gap: 0;
    justify-content: space-between;
    display: flex;

}


.about_block_content-wrapper img{
    width: 100%;
}

/* _______________________ Activity _______________________  */

.activity_block-wrapper {
    background-color: #f9fbff;
}

.activity_content-wrapper{
    padding: 0;
    max-width: 53%;
}

.activity_list .activity-wrapper img{
    border-radius: 10px;
}
.activity-wrapper{
    margin: 0;
    padding: 40px 0;
    display: flex;
}
.activity-wrapper:first-child {
    padding-top: 0;
}
.activity-wrapper:last-child {
    padding-bottom: 0;
}

.activity-wrapper:nth-child(odd) .activity_content {
    padding-left: 0;
}
.activity-wrapper:nth-child(even) .activity_content {
    padding-right: 0;
}



.activity_img{
    padding: 0;
    max-height: 400px;
    position: sticky;
    top: 100px;
    max-width: 47%;
}

.activity_item_img {
    height: unset;
}

.activity_content{
    padding: 0 60px;
    height: 100%;
    color: #292929;
    transition: .5s;
    display: flex;
    flex-direction: column;
} 

.activity-wrapper img{
    height: 100%;
    width: 100%;
    background-color: #d6d6d6;
}

.activity-wrapper img.lazy.loaded{
    object-fit: cover;
}



.sentence-wrapper {
    max-width: calc(100vw / 2 + 1320px / 2 - 10px);
    position: relative;
}

#partnership .sentence-wrapper {
    margin-right: auto;
}  

#vacancies .sentence-wrapper {
    margin-left: auto;
}  

.sentence-wrapper::before {
    content: " ";
    display: block;
    height: 100%;
    width: calc(100% - 15px);
    position: absolute;
    background-color: #f0f0f0;
}
#vacancies .sentence-wrapper::before {
    right: 0;
}

#partnership .sentence-wrapper .sentence_content-wrapper{
    margin: 0;
    margin-left: auto;
    margin-right: 5px;
    padding: 0;
    position: relative;
}

#vacancies .sentence-wrapper .sentence_content-wrapper{
    margin: 0;
    margin-right: auto;
    margin-left: 5px;
    padding: 0;
    position: relative;
}

.sentence-wrapper:nth-child(even){
    margin: unset;
    margin-left: auto;
    /* padding-left: 15px; */
}

.sentence-wrapper:nth-child(even)::before {
    margin-right: 0;
    /* margin-left: 15px; */
    right: 0;
}


.sentence-wrapper:nth-child(even) .sentence_content-wrapper{
    margin: 0;
    margin-right: auto;
    margin-left: 15px;
    padding-right: 15px;
    padding-left: 0;
}

.sentence-wrapper .sentence_content-wrapper .col{
    padding: 0;
}

.sentence_item{
    padding: 70px 60px;
}

.sentence_img-wrapper img {
    object-fit: cover;
    display: block;
    height: 400px;
    width: 100%;
}

.sentence_description-wrapper {
    padding: 70px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
} 

.sentence_description-wrapper h2,
.sentence_description-wrapper .h2{
    margin-bottom: 20px;
}

.sentence_description-wrapper h2::before,
.sentence_description-wrapper .h2::before{
    content: unset;
}


.sentence_block-wrapper .sentence-wrapper:nth-child(odd) img,
.sentence_block-wrapper .sentence-wrapper:nth-child(odd)::before{
    border-radius: 0 10px 10px 0;
}
.sentence_block-wrapper .sentence-wrapper:nth-child(even) img,
.sentence_block-wrapper .sentence-wrapper:nth-child(even)::before{
    border-radius: 10px 0 0 10px;
}



/* _______________________ Running Numbers _______________________  */

.triangle-wrapper {
    position: relative;
}
.triangle-wrapper  .moving_triangle{
    position: absolute;
}
.running_number-wrapper:nth-child(1) .triangle-wrapper .moving_triangle{
    left: 30%;
    top: -40px;
    transform: rotate(45deg);
}
.running_number-wrapper:nth-child(2) .triangle-wrapper .moving_triangle{
    left: 23%;
    top: -15px;
}
.running_number-wrapper:nth-child(3) .triangle-wrapper .moving_triangle{
    left: 22%;
    top: -35px;
    transform: rotate(45deg);
}

.fn_running_numbers {
    padding: 30px 0 0;
    overflow: hidden;
    position: relative;
}

.running_numbers-wrapper{
    text-align: center;
}

.running_number-heading{
    font-size: 64px;
    font-weight: 600;
}

.string_operator {
    color: #1462CF;
    margin-left: 10px;
}

.running_number-wrapper.dynamic_triangle.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.running_number-description{
    max-width: 300px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #4F4F4F;
    display: flex;
    flex: 1;
    margin: 30px auto 0;
    justify-content: center;
}

/* _______________________ Slogan _______________________  */


.slogan-wrapper {
    max-width: 850px;
    margin: 0px auto;
    font-family: 'Inter';
    font-size: 18px;
    line-height: 200%;
    text-align: center;
    color: #7B7B7B;
    position: relative;
}

.slogan-wrapper::after{
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    top: -60px;
    background-image: url("../images/index.png");
    background-repeat: no-repeat;
    background-position: top right;
    height: 232px;
    width: 100%;
}

.map-wrapper{
    position: relative;
}

.office_photo_block-wrapper {
    position: absolute;
    height: 400px;
    width: 500px;
    overflow: hidden;
    right: 5%;
    top: 50%;
    transform: translate(0%, -50%);
    box-shadow: 0px 5px 10px 10px #00000045;
    border-radius: 10px;
    border: 5px solid #fff;
    background-color: #fff;
    max-height: 30vw;
    max-width: 30vw;
}

.office_photo-wrapper img {
    height: 100%;
    object-fit: cover;
}

.office_photo_block {
    height: 100%;
}

.map-wrapper iframe{
    display: block;
    width: 100%;
    height: 600px;
    filter: grayscale(1);
}



/* ________________________ Footer _______________________ */

.footer_column-wrapper{
    display: grid;
    gap: 60px;
}

.footer__logo{
    margin-bottom: 30px;
}

.footer_column_part{
    max-width: 300px;
}

footer .footer__title{
    padding: 0;
}

.footer__social{
    margin: 0;
    display: flex;
    font-size: 16px;
}
.quotes_img-wrapper svg path,
.moving_triangle svg path{
    fill: var(--basic-company);
}
.activity_description,
.main_description-wrapper {
    font-size: 16px;
    color: #6a6a6a;
}
.main_description-wrapper {
    width: 60%;
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
}
@keyframes arrow_banner_hover{
    0% {
        bottom: 16px;
    }
    50% {
        bottom: 26px;
    }
    100% {
        bottom: 16px;
    }
}
.arrow_next_wrapper{
    position: absolute;
    bottom: 16px;
    left: calc(50% - 15px);
    z-index: 9;
    transform: rotate(90deg);
    text-decoration: none;
    animation: arrow_banner_hover 1s linear 1s infinite alternate;
    width: 30px;
}
.arrow_next_wrapper::after{
    content: 'next';
    font-family: swiper-icons;
    font-size: 22px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
    display: block;
}
.activity_description ul,
.activity_description ol{
    margin-left: 0;
}

.feedback_block {
    padding: 0 50px;
    position: relative;
    z-index: 0;
    gap: 24px;
    align-items: stretch;
}
.feedback_mini_title {
    padding: 0 50px;
}
.feedback_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 40%;
}
.feedback_form {
    background-color: #fff;
    box-shadow: 0px 5px 16px 0px #014C521C;
    border-radius: 10px;
    padding: 24px;
    border: none;
}
.main_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: var(--basic-company);
    border-radius: 10px;
    height: 50px;
    width: 100%;
    border: 2px solid var(--basic-company);
    transition: all .3s ease;
    cursor: pointer;
    text-transform: none;
}
.fn_banner_video video {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    height: 100%;
    position: sticky;
    top: 120px;
}
.contacts_grid_img {
    display: flex;
    width: 100%;
    max-width: 60%;
    border-radius: 10px;
    overflow: hidden;
}
.footer_slogan {
    color: #EBEBEB;
}
.activity_content_text {
    max-height: 100%;
    overflow: auto;
    padding-right: 7px;
}
.second-page {
    padding-top: 100px;
}
.activity_content_text::-webkit-scrollbar{width:5px}
.activity_content_text::-webkit-scrollbar-track{background:transparent;border:1px solid var(--basic-company);border-radius:20px}
.activity_content_text::-webkit-scrollbar-thumb{background-color:var(--basic-company);border-radius:20px;border:1px solid var(--basic-company)}

.career_banner_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0;
}
.career_item {
    box-shadow: 0px 4px 30px 0px #021B4F1A;
    padding: 24px 16px;
    border-radius: 10px;
    gap: 16px;
    transition: all .3s ease;
}
.career_title {
    color: #6A6A6A;
    text-align: center;
}
.career_description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #6A6A6A;
    font-size: 18px;
}
.career_second_description {
    margin-top: 24px;
    text-align: center;
    color: #6A6A6A;
    font-weight: 600;
    font-size: 18px; 
}

.feedback_block_ttl {
    max-width: 1150px;
    margin: 0 auto;
    border: 1px solid #1362D0;
    border-radius: 10px;
    padding: 40px 0;
    margin-bottom: 40px;
}
.feedback_career_ttl {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}
.career_subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 24px auto 16px;
    color: #292929;
    text-align: center;
}
.career_description a {
    color: #1362D0;
    font-weight: 600;
    text-decoration: none;
}
.business_structure_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 40px 0 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #E0E8F8;
}
.business_structure_item {
    box-shadow: 0px 4px 30px 0px #021B4F1A;
    border-radius: 10px;
    padding: 24px 16px 16px;
    gap: 16px;
    transition: all .3s ease;
}
.structure_item_ttl {
    font-size: 24px;
    font-weight: 600;
    color: #003D93;
}
.structure_item_description ul {
    margin: 0;
    list-style: none;
    padding: 0
}
.structure_item_description li {
    display: flex;
    align-items: flex-start;
    color: #6A6A6A;
    margin-bottom: 8px;
    gap: 6px;
    line-height: 24px;
}
.structure_item_description li:last-child {
    margin: 0;
}
.structure_item_description li::before {
    content:'';
    position: relative;
    width: 24px;
    height: 24px;
    background-image: url(../images/li-icon.svg);
    background-size: 100% 100%;
    background-position: center;
    flex-shrink: 0;
}
.geography_item {
    margin-top: 30px;
}
.footer_contact_phones .phone:nth-child(2) {
    margin-bottom: 10px;
}
.fn_activity_img  {
    padding-bottom: 38px;
}
.fn_activity_img.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}
.fn_activity_img.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
    padding: 7px;
}