* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { overflow-x: hidden; }

@-moz-document url-prefix() {
    html {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

html::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

:root {
    --primary-color: #292929;
    --secondary-color: #D62F41; 
    --tertiary-color: #EAC37A;
    --brand-grey: #EAEAEA;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content, .content1 {
    display: flex;
    width: 100%;
    max-width: 1256px; 
}

.content1 { flex-direction: column; }

header {
    background: var(--primary-color);
    min-height: 110px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-image: repeating-linear-gradient(
        to right, transparent 0, transparent 90px,
        rgba(255, 255, 255, 0.05) 90px, rgba(255, 255, 255, 0.05) 91px,
        transparent 91px, transparent 280px);
}

header.scrolled {
    background: var(--primary-color);
    background-image: repeating-linear-gradient(
        to right, transparent 0, transparent 90px,
        rgba(255, 255, 255, 0.05) 90px, rgba(255, 255, 255, 0.05) 91px,
        transparent 91px, transparent 280px);
}

.header-content {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo, .footer-logo {
    color: #9b9b9b;
    text-decoration: none;
    display: flex;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    position: relative;
    img {
        width: 159px;
        object-fit: contain;
    }
    span {
        letter-spacing: 0.93px;
        position: absolute;
        bottom: -8px; left: 50px;
    }
}

.menu {
    display: flex;
    gap: 40px;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    > a {
        color: white;
        font: 16px 'BPG Excelsior';
        line-height: 19px;
        text-decoration: none;
        padding-bottom: 50px;
        transition: all 0.3s ease;
        &::before {
            content: '';
            background: transparent;
            position: absolute;
            top: 59px; left: 0;
            width: 100%;
            height: 8px;
            transition: all 0.3s ease;
        }
    }
}

.menu-item:hover {
    ul { display: flex; }
    > a::before { background: var(--secondary-color); }
}

.menu-item.active > a::before { background: var(--secondary-color); }

.menu-item ul {
    background: rgba(41, 41, 41, 0.9);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 30px;
    margin: 0;
    position: absolute;
    top: 70px; left: -40px;
    width: 260px;
    z-index: 1000;

    li { display: flex; }
    a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 16px 'Helvetica Roman';
        line-height: 19px;
        width: 100%;
        transition: all 0.3s ease;
    }
}

.menu-item:nth-child(2) ul { width: 355px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-change {
    display: flex;
    align-items: center;
    gap: 10px;
    > span:first-of-type {
        color: white;
        -webkit-text-stroke: 0.5px white;
        font: 12px 'Campton Light';
        line-height: 18px;
        width: 25px;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 18px;
    input {
        opacity: 0;
        width: 0; height: 0;
    }
}
  
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 12px; width: 12px;
    left: 4px; bottom: 3px;
    background: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}
  
.slider.round { 
    background: #C9C9C9;
    border-radius: 34px; 
    &::before { border-radius: 50%; }
} 

.search {
    background: #EFEFEF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.search-form {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -531px;
    height: 531px;
    left: 20%;
    right: 20%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
}

.search-form.active {
    top: 0;
    left: 0;
    right: 0;
}

.search-form-cont {
    display: flex;
    flex-direction: column;
    gap: 96px;
    width: 100%;
    max-width: 850px;
}

.search-form-cont > div {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    font: 20px 'BPG Mrgvlovani';
    line-height: 28px;
}

.search-form-cont button {
    background: transparent;
    border: none;
}

.search-form-cont input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #CFCFCF;
    color: #707070;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-bottom: 19px;
    &::placeholder { color: #707070; }
    &:focus { outline: none; }
}

#menu-toggle-button { display: none; }

.dropdownMenu {
    background: var(--primary-color);
    color: white;
    padding: 0 30px;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 110px); }

.dropdownMenu .socials {
    justify-content: center;
    margin-bottom: 70px;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 10px 0 30px 0;
}

.mobile-search {
    position: relative;
    width: calc(100% - 91px);
    height: 45px;
    input {
        background: none;
        border: 1px solid #E3E3E3;
        border-radius: 23px;
        color: #888;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        padding: 0 45px 0 25px;
        width: 100%; height: 100%;
        &:focus { outline: none; }
    }
    button {
        background: none;
        border: none;
        position: absolute;
        right: 20px; top: 16px;
        img { filter: brightness(0) invert(1); }
    }
}

.mobile-nav {
    border-top: 1px solid #E3E3E3;
    i { transition: transform 0.3s ease; }
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;

    li { display: flex; }
    a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 16px 'BPG Excelsior';
        line-height: 19px;
        padding: 5px 0 5px 30px;
        width: 100%;
    }
    li:last-child a { padding-bottom: 30px; }

}

.mobile-nav.active {
    ul { max-height: 1000px; }
    i { transform: rotate(180deg); }
}

.mobile-nav:last-child { margin-bottom: 50px; }

.mobile-nav-head {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    font: 16px 'BPG Excelsior';
    line-height: 19px;
    i { color: #888888; font-size: 12px; }
}

.mobile-nav > a {
    color: white;
    text-decoration: none;
    display: flex;
    font: 16px 'BPG Excelsior';
    line-height: 19px;
    padding: 17px 0;
}

footer {
    background: var(--primary-color);
    background-image: repeating-linear-gradient(
        to right, transparent 0, transparent 90px,
        rgba(255, 255, 255, 0.05) 90px, rgba(255, 255, 255, 0.05) 91px,
        transparent 91px, transparent 280px);
    padding: 90px 20px !important;
    .content {
        max-width: 1212px;
        justify-content: space-between;
    }
}

.footer-logo {
    margin-bottom: 30px;
    img { width: 278px; }
    span {
        font-size: 16px;
        line-height: 22px;
        left: 90px;
    }
}

.copyright, .creator {
    color: #7E7E7E;
    font: 12px 'BPG Arial';
    line-height: 14px;
    margin-bottom: 5px;
    a {
        color: white;
        text-decoration: none;
    }
}
.creator { margin-bottom: 0; }

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    a { color: white; text-decoration: none; }
    > a { font: 20px 'BPG Excelsior'; line-height: 24px; }
    div {
        display: flex;
        flex-direction: column;
        gap: 15px;
        a { font: 14px 'BPG Mrgvlovani'; line-height: 19px; }
    }
}

.footer-contact > p:first-child {
    color: white;
    font: 20px 'BPG Excelsior'; 
    line-height: 24px;
    margin-bottom: 29px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-items > a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    transition: all 0.3s ease;
    span { max-width: 340px; }
    &:hover { color: var(--secondary-color); }
}

.icon {
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    img { filter: brightness(0) invert(1); transition: all 0.3s ease; }
}

.contact-items > a:hover .icon {
    background: white;
    img { filter: none; }
}

.socials {
    display: flex;
    gap: 10px;
    & a {
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        width: 35px;
        height: 35px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); }
    }
}

.banner {
    display: flex;
    height: 700px;
    position: relative;
    > img {
        width: 53%;
        height: 100%;
        object-fit: cover;
        object-position: center 50px;
    }
    &::before {
        content: '';
        background: linear-gradient(180deg, 
        var(--primary-color) 0.00%, 
        rgba(83,83,83,0.41 ) 22.39%, 
        rgba(112,112,112,0 ) 100.00%);
        position: absolute;
        z-index: 2;
        inset: 0;
    }
}

.banner-left {
    background: var(--primary-color);
    background-image: repeating-linear-gradient(
        to right, transparent 0, transparent 90px,
        rgba(255, 255, 255, 0.05) 90px, rgba(255, 255, 255, 0.05) 91px,
        transparent 91px, transparent 280px);
    color: white;
    padding-left: calc(50% - 628px);
    padding-top: 215px;
    position: relative;
    width: 47%;
    > * {
        position: relative;
        z-index: 2;
    }
    > p:first-child {
        font: 50px 'Gilroy GEO';
        line-height: 59px;
        margin-bottom: 30px;
        max-width: 340px;
    }
    >p:nth-child(2) {
        font: 20px 'Helvetica Roman';
        line-height: 24px;
        max-width: 480px;
        margin-bottom: 40px;
    }
}

.learn-more {
    border: 1px solid white;
    border-radius: 23px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica Medium';
    line-height: 15px;
    width: 180px; height: 45px;
    transition: all 0.3s ease;
    span { transition: all 0.3s ease; }
    span:last-child { display: none; }
}

.learn-more:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    span:first-child { display: none; } 
    span:last-child { display: flex; } 
}

.about-prev {
    background: url('../images/map.png') no-repeat center center / cover;
    padding: 60px 20px 80px;
    position: relative;
    > * {
        position: relative;
        z-index: 2;
    }
    &::before {
        content: '';
        background: url('../images/about-chart.svg') no-repeat center center / cover;
        position: absolute;
        right: 0; top: 60px;
        z-index: 1;
        width: 369px; height: 328px; 
    }
}

.about-prev-content {
    align-items: flex-start;
    gap: 35px;
    > img {
        border-radius: 20px;
        width: 515px;
        height: 550px;
        object-fit: cover;
    }
}

.about-right {
    color: black;
    padding-top: 25px;
    width: calc(100% - 550px);
    > p:first-child {
        font: 30px 'BPG Excelsior';
        line-height: 35px;
        max-width: 430px;
        margin-bottom: 50px;
    }
    > p:last-of-type {
        font: 20px 'BPG Excelsior';
        line-height: 24px;
        max-width: 480px;
        margin-bottom: 0;
        margin-left: auto;
    }
}

.human-resources, .country-num {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
    span:first-child {
        font: 64px 'Campton Black';
        line-height: 65px;
    }
    span:last-child {
        color: rgba(0,0,0,0.69);
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 30px;
    }
}

.country-num {
    background: var(--secondary-color);
    border-radius: 20px;
    color: white;
    align-items: center;
    margin-bottom: 0;
    margin-left: -120px;
    padding: 30px 65px;
    position: absolute;
    bottom: 70px;
    span:last-child { color: rgba(255,255,255,0.69); }
}

.service-prev {
    background: #FBFBFB;
    padding: 50px 20px 65px;
    .content {
        align-items: flex-start;
        gap: 50px;
    }
}

.service-prev-cont {
    color: black;
    width: 370px;
    p { overflow: hidden; text-overflow: ellipsis; }
    > p:first-child {
        font: 40px 'BPG Excelsior';
        line-height: 45px;
        height: 45px;
        margin-bottom: 30px;
    }
    > p:nth-child(2) {
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        height: 68px;
        margin-bottom: 55px;
    }
}

.service-prev-cont .learn-more, .industries-left .learn-more,
.member-info .learn-more {
    border-color: #C7C7C7;
    color: black;
}

.swiper1 .swiper-pagination-bullet, .service-pagination .swiper-pagination-bullet {
    background: #E2E2E2;
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    opacity: 1;
}
.swiper1 .swiper-pagination-bullet-active, .service-pagination .swiper-pagination-bullet-active { background: var(--secondary-color); }

.service-swiper-cont { width: calc(100% - 420px); }

.service-swiper {
    border: 1px solid var(--brand-grey);
    border-radius: 20px;
    width: 100% !important;
    height: 580px !important;
    margin-bottom: 30px !important;
    .service-card:first-child { border-right: 1px solid var(--brand-grey); }
    .service-card:nth-child(2) { border-right: 1px solid var(--brand-grey); }
    .service-card:last-child { border-left: 1px solid var(--brand-grey); }
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        z-index: 1;
    }
    &::after {
        width: 100%; height: 1px;
        top: 50%; left: 0;
    }
}

.service-pagination {
    display: flex;
    justify-content: center;
}

.service-card {
    background: white;
    color: black;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 50px 45px 30px 40px;
    .title {
        font: 20px 'BPG Excelsior';
        line-height: 24px;
        height: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-text-stroke: 1px black;
        margin-bottom: 15px;
    }
    .intro {
        color: #747474;
        font: 10px 'Helvetica Roman';
        line-height: 12px;
        margin-bottom: 40px;
        height: 36px;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.service-num {
    color: transparent;
    font: 121px 'Gilroy GEO';
    line-height: 154px;
    -webkit-text-stroke: 1px #EFEFEF;
    position: absolute;
    right: 45px; bottom: -40px;
    transition: all 0.3s ease;
}

.service-card:hover .service-num {
    color: var(--secondary-color);
    -webkit-text-stroke-color: transparent;
}

.see-more {
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    padding-left: 21px;
    width: 64px; height: 45px;
    position: relative;
    overflow: none;
    transition: all 0.3s ease;
    > * {
        position: absolute;
        transition: all 0.3s ease;
    }
    img { left: 50%; top: 50%; transform: translate(-50%, -50%); }
    span { 
        color: white;
        position: absolute;
        left: 0; top: 13px;
        opacity: 0;
        width: 77px;
    }
}

.service-card:hover .see-more {
    background: var(--secondary-color);
    color: white;
    width: 130px;
    span {
        left: 16px;
        opacity: 1;
    }
    img { filter: brightness(0) invert(1); left: 105px; }
}

.join-us {
    display: flex;
    min-height: 550px;
    > * { width: 50%; height: 550px; }
    > img { object-fit: cover; }
}

.join-us-right {
    background: var(--primary-color);
    background-image: repeating-linear-gradient(
        to right, transparent 0, transparent 90px,
        rgba(255, 255, 255, 0.05) 90px, rgba(255, 255, 255, 0.05) 91px,
        transparent 91px, transparent 280px);
    color: white;
    padding: 160px 20px 0 70px;
    .title {
        font: 40px 'BPG Excelsior';
        line-height: 46px;
        -webkit-text-stroke: 1px white;
        margin-bottom: 30px;
    }
    .intro {
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        max-width: 535px;
        margin-bottom: 40px;
    }
}

.industries-prev {
    padding: 110px 0 75px calc(50% - 628px);
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.industries-left {
    color: black;
    width: 456px;
    position: relative;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        right: -30px;
        top: 0;
        width: 1px;
        height: 300px;
    }
    .title {
        font: 40px 'BPG Excelsior';
        line-height: 46px;
        -webkit-text-stroke: 1px black;
        margin-bottom: 30px;
    }
    .intro {
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        margin-bottom: 40px;
    }
}

.industries-swiper-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 516px);
}

.industries-swiper { width: 100% !important; }

.industries-slide {
    border-radius: 20px;
    cursor: pointer;
    width: 283px !important;
    height: 229px !important;
    > img:first-child {
        border-radius: 20px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &::after {
        content: '';
        background: rgba(214,47,65,0.9);
        border-radius: 20px;
        position: absolute;
        inset: 0;
        opacity: 0;
        z-index: 1;
        transition: all 0.3s ease;
    }
    a, hr, .name {
        position: absolute;
        z-index: 2; 
        opacity: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    hr {
        left: 24px; bottom: 80px; right: 24px;
        border-color: white;
    }
    a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        bottom: 37px; left: 24px;
        img { filter: brightness(0) invert(1); }
    }
}

.industries-slide .name {
    color: white;
    -webkit-text-stroke: 0.5px white;
    display: flex;
    align-items: flex-end;
    font: 18px 'BPG Excelsior';
    line-height: 21px;
    height: 42px;
    margin-bottom: 0;
    overflow: hidden;
    left: 24px; right: 24px; bottom: 105px;
}

.plus-btn {
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    width: 72px;
    height: 72px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.industries-slide:hover {
    .plus-btn { opacity: 0; }
    hr, a, &::after, .name { opacity: 1; }
}

.nav-btns {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 10px;
    button {
        background: var(--secondary-color);
        border: none;
        border-radius: 50%;
        color: white;
        width: 45px; height: 45px;
    }
}

.news-prev-cont { 
    padding: 0 20px 50px; 
    .content1 > p:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        text-align: center;
        font: 30px 'BPG Excelsior';
        line-height: 35px;
        margin-bottom: 40px;
    }
}

.news-prev {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
    width: 100%;
    position: relative;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 100%;
    }
}

.news-left {
    width: calc(50% - 30px);
    text-decoration: unset;
    > img {
        border-radius: 20px;
        width: 100%;
        height: 380px;
        object-fit: cover;
        margin-bottom: 20px;
    }
    .title {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 26px 'BPG Excelsior';
        line-height: 30px;
        margin-bottom: 0;
    }
    .goto-news { display: none; }
}

.news-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: calc(50% - 30px);
}

.news-prev-item {
    border-bottom: 1px solid var(--brand-grey);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 18px;
    > img:first-child {
        border-radius: 20px;
        width: 220px;
        height: 140px;
        object-fit: cover;
    }
    > div:nth-child(2) { max-width: 220px; }
    .title {
        color: black;
        font: 14px 'BPG Excelsior';
        line-height: normal;
        line-height: 18px;
        height: 54px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
    }
}

.news-prev-item::before {
    content: '';
    position: absolute;
    background: var(--brand-grey);
    top: 25px;
    right: 83px;
    height: 84px;
    width: 1px;
}

.goto-news {
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 45px;
    margin-left: auto;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
    &:hover {
        background: var(--secondary-color);
        img { filter: brightness(0) invert(1); }
    }
}

.date {
    color: black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 16px;
    margin-bottom: 15px;
    padding-left: 18px;
    position: relative;
}

.date::after, .date1::after {
    content: '';
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px;
}

.see-all {
    border: 1px solid #C7C7C7;
    border-radius: 23px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    width: 180px; height: 45px;
    margin: 0 auto;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: white;
    }
}

.team-swiper-cont {
    background: #FBFBFB;
    padding: 60px 0 150px;
    .content1 { 
        max-width: 1205px;
        hr {
            border-color: var(--brand-grey);
            margin: 30px 0 35px calc(50% - 486px);
            opacity: 1;
        }
    }
}

.team-swiper-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: calc(50% - 486px);
    span {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 40px 'BPG Excelsior';
        line-height: 46px;
        max-width: 510px;
    }
    div {
        display: flex;
        gap: 10px;
    }
    button {
        background: transparent;
        border: 1px solid var(--secondary-color);
        border-radius: 15px;
        color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px; height: 45px;
        transition: all 0.3s ease;
        &:hover {
            background: var(--secondary-color);
            color: white;
        }
    }
}

.team-swiper { 
    width: 100% !important; 
    &::after {
        content: '';
        background: linear-gradient(90deg, 
        #fbfbfb 0.00%, 
        rgba(249,249,249,0.9 ) 18.93%, 
        rgba(234,234,234,0 ) 100.00%);
        position: absolute;
        left: 0; top: 0;
        width: 250px; height: 100%;
        z-index: 1;
        pointer-events: none;
    }
}

.member-card.swiper-slide { width: 217px !important; }

.member-card {
    color: unset;
    text-decoration: none;
    .name {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 14px 'BPG Excelsior';
        line-height: 16px;
        margin-bottom: 8px;
    }
    .role {
        color: #858585;
        font: 12px 'Helvetica Medium';
        line-height: 15px;
        height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 15px;
    }
}

.member-img {
    width: 100%;
    height: 290px;
    position: relative;
    img {
        border-radius: 20px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    div {
        border: 1px solid white;
        border-radius: 50%;
        position: absolute; z-index: 2;
        bottom: 20px; right: 20px;
        width: 30px; height: 30px;
        transition: all 0.3s ease;
        img { width: 12px; object-fit: contain; }
    }
    &::after {
        content: '';
        background: radial-gradient(circle at bottom right, rgba(214,47,65,0.47), rgba(214,47,65,0) 80%);
        border-radius: 20px;
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0;
        transition: all 0.3s ease;
    }
}

.member-card:hover .member-img::after { opacity: 1; }
.member-card:hover .member-img div {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.about-us-nav { padding: 143px 0 0 calc(50% - 628px); }
.main-about { padding: 30px 20px 60px; margin-bottom: 20px; }
.page-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    a {
        color: var(--primary-color);
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        text-decoration: none;
    }
    div {
        background: var(--secondary-color);
        border-radius: 50%;
        color: white;
        font-size: 7px;
        width: 17px; height: 17px;
    }
}

.about-text {
    > p:first-child {
        color: var(--secondary-color);
        font: 39px 'Campton Black';
        line-height: 45px;
        margin-bottom: 30px;
    }
    .text {
        max-width: 1170px;
        font: 14px 'Helvetica Medium';
        * { font: 14px 'Helvetica Medium' !important; }
        b, strong { 
            font-weight: bold !important; 
            -webkit-text-stroke: 0.5px black;
        }
    }
}

.location-cont {
    padding: 110px 20px;
    .title {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        text-align: center;
        font: 30px 'BPG Excelsior';
        line-height: 35px;
        margin-bottom: 35px;
    }
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    background: #FBFBFB;
    border: 1px solid #EFEFEF;
    border-radius: 10px;
    padding: 15px 40px 15px 30px;
}

.location-item.show .region {
    p {
        color: var(--secondary-color);
        -webkit-text-stroke-color: var(--secondary-color);
    } 
    div {
        background: var(--secondary-color);
        color: white;
        i { transform: rotate(180deg); }
    }
}

.region {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    p {
        color: black;
        -webkit-text-stroke: 0.5px transparent;
        font: 14px 'BPG Excelsior';
        line-height: 17px;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }
    div {
        background: var(--brand-grey);
        border-radius: 50%;
        color: #9E9E9E;
        font-size: 10px;
        width: 24px; height: 24px;   
        transition: all 0.3s ease;
        i { transition: all 0.3s ease; }
    }
}

.countries {
    color: var(--text-color1);;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    overflow: hidden;
    height: 0;
    padding-top: 0;
    transition: all 0.3s ease;
}
.location-item.show .countries { padding-top: 20px; }

.countries-content {
    display: grid;
    border: 1px solid var(--brand-grey);
    grid-template-columns: repeat(4, 1fr);
    a {
        border-right: 1px solid var(--brand-grey);
        border-bottom: 1px solid var(--brand-grey);
        color: black;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font: 16px 'Campton Medium';
        line-height: 21px;
        padding: 25px 55px;
        img {
            width: 69px;
            object-fit: contain;
        }
    }
}

.countries-content a:nth-child(4n) { border-right: none; }
.countries-content a:nth-last-child(-n+3) { border-bottom: none; }

.members-container { 
    padding: 143px 20px 180px; 
    .page-nav { margin-bottom: 65px; }
}

.members {
    margin-bottom: 80px;
    > p:first-child {
        color: var(--secondary-color);
        font: 20px 'Helvetica Bold';
        line-height: 24px;
        margin-bottom: 0;
    }
    hr {
        border-color: var(--brand-grey);
        opacity: 1;
        margin: 20px 0 30px;
    }
}
.members:last-of-type { margin-bottom: 0; }

.member-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 43px;
    row-gap: 40px;
}

.inner-members-cont .page-nav { margin-bottom: 30px; }

.member-swiper {
    display: none !important;
    .member-card { width: 217px !important; }
}

.curr-member {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    > img:first-child {
        border-radius: 20px;
        width: 410px; height: 550px;
        object-fit: cover;
    }
}

.member-info {
    width: calc(100% - 460px);
    .name {
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        font: 26px 'BPG Excelsior';
        line-height: 30px;
        margin-bottom: 15px;
    }
    .role {
        color: #858585;
        font: 20px 'Helvetica Medium';
        line-height: 24px;
        margin-bottom: 0;
    }
    hr {
        border-color: var(--brand-grey);
        opacity: 1;
        margin: 25px 0;
    }
    .title {
        color: var(--primary-color);
        -webkit-text-stroke: 1px var(--primary-color);
        font: 18px 'BPG Excelsior';
        line-height: 24px;
        margin-bottom: 25px;
    }
}

.member-info .desc {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 20px;
    * {
        font: 14px 'Helvetica Roman' !important;
        line-height: 17px !important;
    }
    b, strong { font-weight: bold !important; }
}
.member-info .desc:last-of-type { margin-bottom: none; }

.career-container {
    padding: 143px 20px 150px;
    .page-nav { margin-bottom: 30px; }
}

.career-text {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 45px;
    max-width: 1170px;
    * {
        font: 14px 'Helvetica Roman' !important;
        line-height: 17px !important;
    }
    b, strong { font-weight: bold !important; }
    ul li::marker { color: var(--secondary-color); }
}

.vacancies > p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    font: 18px 'BPG Excelsior';
    line-height: 21px;
    margin-bottom: 30px;
}

.vacancy-items {
    display: flex;
    flex-direction: column;
}

.vacancy {
    border-bottom: 1px solid var(--brand-grey);
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font: 16px "Helvetica Roman";
    line-height: 21px;
    padding: 30px 0;
    transition: all 0.3s ease;
    &:hover { color: var(--secondary-color); }
    > span:first-child { font-size: 20px; line-height: 24px; }
}
.vacancy:first-child { border-top: 1px solid var(--brand-grey); }

.service-cont { 
    background: #FBFBFB;
    padding: 160px 20px;
}

.service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.page-title {
    color: black;
    -webkit-text-stroke: 1px black;
    font: 20px 'BPG Excelsior';
    line-height: 24px;
}

.consult-link {
    background: var(--secondary-color);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font: 14px 'BPG Excelsior';
    line-height: 16px;
    width: 280px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: #DC3A4B; }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-grid .service-card, .other-service-swiper .service-card {
    border: 1px solid var(--brand-grey);
    border-radius: 20px;
    .intro { margin-bottom: 60px; max-width: 315px; }
    .title { max-width: 370px; height: 48px; }
    .service-num {
        bottom: unset; top: 50%; right: 60px;
        transform: translateY(-50%);
    }
}

.service-title, .curr-service-text .name {
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    font: 30px 'BPG Excelsior';
    line-height: 35px;
    margin-bottom: 35px;
}

.service-cat { width: 100% !important; margin-bottom: 40px !important; }
.service-cat-slide {
    background: var(--brand-grey);
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font: 14px 'BPG Excelsior';
    line-height: 16px;
    padding: 24px 35px;
    width: 280px !important;
    transition: all 0.3s ease !important;
}
.service-cat-slide.active, .service-cat-slide:hover {
    background: var(--secondary-color);
    color: white;
}

.curr-service-text {
    background: white;
    border: 1px solid var(--brand-grey);
    border-radius: 20px;
    padding: 30px 40px 40px 30px;
    margin-bottom: 30px;
    .name { font-size: 26px; line-height: 30px; margin-bottom: 20px; }
}

.curr-service-text .text {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    * {
        font: 16px 'Helvetica Roman' !important;
        line-height: 20px !important;
    }
    b, strong { 
        font-weight: bold !important; 
    }
}

.share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    > a:first-child {
        color: black;
        text-decoration: none;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        transition: all 0.3s ease;
        &:hover { color: var(--secondary-color); }
    }
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    span {
        color: var(--primary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
    div {
        background: #ECECEC;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        width: 28px; height: 28px;
        transition: all 0.3s ease;
        img { filter: brightness(0) invert(0); transition: all 0.3s ease; }
        &:hover {
            background: var(--secondary-color);
            color: white;
            img { filter: brightness(0) invert(1); }
        }
    }
}

.copy-link.copied { transform: scale(1.2); }

.other-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}

.other-service-swiper { 
    width: 100% !important; 
    padding-bottom: 50px !important;
    .service-card { width: 618px !important; }
}

.main-news-prev { 
    background: #FBFBFB;
    padding: 160px 20px 50px;
}

.news-grid-cont { 
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 120px; 
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1256px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nav-btn {
    background: #C7C7C7;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    width: 35px; height: 35px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.pagination-buttons {
    display: flex;
    gap: 17px;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    button {
        background: transparent;
        border: none;
        color: #929395;
        &.active { color: var(--secondary-color); }
    }
}

.curr-news-cont { padding: 160px 20px 120px; }
.news {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    &::before {
        content: '';
        background: var(--brand-grey);
        width: 1px; height: 100%;
        position: absolute;
        top: 0; left: calc(57% + 39px);
    }
}

.current-news { 
    width: 57%; 
    > img:first-child {
        border-radius: 20px;
        width: 100%;
        height: 450px;
        object-fit: cover;
        margin-bottom: 30px;
    }
    .title {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 26px 'BPG Excelsior';
        line-height: 30px;
        margin-bottom: 30px;
    }
}

.current-news hr, .current-bussiness hr,
.current-industry hr {
    border-color: var(--brand-grey);
    opacity: 1;
    margin: 30px 0;
}
.current-news .share, .current-bussiness .share { padding-left: 0; }

.news-text {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    * {
        font: 14px 'Helvetica Roman' !important;
        line-height: 17px !important;
    }
    b, strong { font-weight: bold !important; }
}

.other-news {
    width: calc(43% - 80px);
    > p:first-child { margin-bottom: 30px; }
}

.other-news > div {
    display: flex;
    flex-direction: column;
    gap: 18px;
    .goto-news { display: none; }
    .news-prev-item::before { content: none; }
}

.business-news-cont { padding: 160px 20px 90px; }
.business-items { margin-bottom: 60px; }

.business-item, .bussiness-head {
    border-bottom: 1px solid var(--brand-grey);
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 75px;
    padding: 43px 0;
    .name {
        font: 16px 'BPG Excelsior';
        line-height: 18px;
        margin-bottom: 0;
    }
}
.business-item:first-child, .bussiness-head { padding-top: 0; }

.date1 {
    color: black;
    display: flex;
    flex-direction: column;
    padding-left: 18px;
    position: relative;
    margin-bottom: 0;
    span:first-child { font: 30px 'BPG Mrgvlovani'; line-height: 40px; }
    span:last-child, span:nth-child(2) { font: 12px 'BPG Mrgvlovani'; line-height: 16px; }
    span:last-child { color: var(--secondary-color); }
}

.current-bussiness {
    max-width: 720px;
    margin: 0 auto;
    .news-text { margin-bottom: 20px; }
}
.bussiness-head { margin-bottom: 43px; }

.file {
    background: #EAEBF3;
    border-radius: 7px;
    color: black;
    text-decoration: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    width: 100%;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
        color: white;
    }
}

.file-title {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    max-width: calc(100% - 60px);
}

.file-actions {
    color: #A4A4A4;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    img, i { transition: all 0.3s ease; }
    i:hover { color: #FFA25C; }
}

.file:hover .file-actions {
    color: white;
    img { filter: brightness(0) invert(1); }
}

.contact-cont { 
    padding: 160px 20px 100px; 
    .content1 { gap: 50px; }
}

.contact-top {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    > img { 
        border-radius: 20px;
        width: calc(46% - 60px);
        height: 750px;
        object-fit: cover;
    }
}

.contact-form-cont {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 54%;
    .page-title { margin-bottom: 0; }
}

.contact-form {
    width: 100%;
    > p:first-child {
        color: var(--secondary-color);
        font: 16px 'Helvetica Bold';
        line-height: 20px;
        margin-bottom: 10px;
    }
    > input { margin-bottom: 10px; }
}
.contact-form:first-of-type { margin-bottom: 20px; }

.contact-form input, .contact-form textarea {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-left: 21px;
    height: 45px; width: 100%;
    &:focus { outline: none; }
}

.fullname {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    input { width: calc(50% - 10px); }
}

.contact-form textarea {
    padding-top: 18px;
    height: 150px;
    resize: none;
    margin-bottom: 20px;
}

.contact-form button {
    background: var(--secondary-color);
    border: none;
    border-radius: 10px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 250px; height: 45px;
    transition: all 0.3s ease;
    &:hover { background: #DC3A4B; }
}

.contact-bottom {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contact-items1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 15px;
    width: 54%;
}

.contact-item {
    background: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    > p:first-child {
        font: 12px 'Helvetica Bold';
        line-height: 15px;
        margin-bottom: 10px;
    }
}

.contact-item div, .contact-item a {
    color: #6B6B6B;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}
.contact-item div p { margin-bottom: 0; }

.map { width: calc(46% - 60px); }
.map iframe { 
    border-radius: 10px;
    width: 100%;
    height: 233px;
}

.industries-container { padding-top: 50px; }
.curr-industry-cont { padding: 160px 20px 110px; }
.current-industry {
    max-width: 675px;
    margin: 0 auto 100px;
    padding-top: 50px;
    > img:first-child {
        border-radius: 20px;
        width: 100%;
        height: 415px;
        object-fit: cover;
        margin-bottom: 40px;
    }
    .title {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 40px 'BPG Excelsior';
        line-height: 45px;
        margin-bottom: 20px;
    }
}

.partners .page-title { margin-bottom: 20px; }
.partner-slide { 
    border: 1px solid var(--brand-grey);
    border-radius: 10px;
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    gap: 24px;
    font: 12px 'Helvetica Medium';
    line-height: 15px;
    width: 150px !important;
    img {
        width: 100%;
        height: 93px;
        object-fit: contain;
    }
    span {
        text-overflow: ellipsis;
        overflow: hidden;
        height: 45px;
    }
}

.other-industries .page-title {
    text-align: center;
    margin-bottom: 40px;
}

.other-industries .industries-swiper-cont { width: 100%; }

.search-page { padding: 160px 20px 100px; }
.result-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    span:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 20px 'BPG Excelsior';
        line-height: 24px;
    }
    span:last-child {
        color: var(--secondary-color);
        font: 30px 'Gilroy GEO';
        line-height: 30px;
    }
}

.search-page-form {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    input {
        border: 1px solid var(--brand-grey);
        font: 12px 'BPG Mrgvlovani';
        line-height: normal;
        line-height: 16px;
        padding-left: 30px;
        width: calc(100% - 55px);
        height: 45px;
        &:focus { outline: none; }
    }
    button {
        background: #C4C4C4;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        img { filter: brightness(0) invert(1); }
        &:hover { background: var(--secondary-color); }
    }
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.search-item {
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 50px;
    > div {
        color: black;
        font: 14px 'BPG Mrgvlovani';
        line-height: normal;
        line-height: 20px;
    }
    > a {
        color: var(--secondary-color);
        font: 14px 'BPG Excelsior';
        line-height: normal;
        line-height: 17px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
}

.partners { display: none !important; }