:root {
    --primary-color: #141F39;
    --secondary-color: #0080C8;
    --black: #181D27;
    --grey: #B9CBDA;
    --light-grey: #E7EDF2;
    --font-family: 'Inter', sans-serif;
    --h1-font-size: 96px;
    --h2-font-size: 64px;
    --h3-font-size: 48px;
    --h4-font-size: 45px;
    --h5-font-size: 32px;
    --h6-font-size: 24px;
    --head-font-weight: bold;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #141F39;
}

.regions * {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/*html {
    scroll-snap-type: y mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-behavior: smooth;
}*/

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    background-color: #F9F9F9;
    color: #141F39;
    font-size: 16px;
}

.button_animation:hover {
    transform: scale(1.1);
    transition: all 200ms ease-in-out;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 3;
    gap: 20px;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding-inline-start: 0;
}

.bg-drop {
    background-color: rgba(20, 31, 57, 0.5);
    backdrop-filter: blur(40px);
    padding: 0 20px;
}

nav ul li a {
    color: #fff;
    position: relative;
    padding: 36px 0;
    text-decoration: none;
    display: block;
    /* font-size: 19px; */
    font-size: clamp(14px, 1.5vw, 16px);
    white-space: nowrap;
    font-family: var(--font-family);
}

#header-holder {
    position: absolute;
    z-index: 3;
    margin-top: 10px;
    left: 0;
    width: 100%;
    top: 0;
}

#header-holder.single-page {
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
    background-color: #161f37 !important;
    backdrop-filter: unset !important;

    .megamenu {
        position: absolute !important;
        top: 91.08px !important;
        background: #161f37 !important;
    }
}

.megamenu {
    position: relative;
    left: 0;
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    top: 0;
    padding: 30px;
    z-index: 3;
    color: #fff;
    width: 100%;
    gap: 40px;
}

.megamenu .row {
    flex-direction: column;
    display: flex;
}

.megamenu ul {
    list-style: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1560px) {
    .megamenu.products .row {
        flex: 1;

        h6 {
            min-height: 101px;
        }
    }
}

@media (min-width: 1200px) and (max-width: 1450px) {
    header .logo {
        max-width: 210px;
    }

    nav ul {
        gap: 30px;
    }

    nav ul li a {
        font-size: clamp(14px, 1.5vw, 16px);
    }

    header .buttons {
        gap: 20px;
    }

    header .buttons a {
        padding: 6px 16px;
    }

    /* English and Spanish specific adjustments to prevent overflow */
    :lang(en) header .logo, 
    :lang(es) header .logo {
        max-width: 160px;
    }

    :lang(en) nav ul
     {
        gap: 15px;
    }

    :lang(es) nav ul{
        gap:15px;
    }
    

    :lang(en) nav ul li a, 
    :lang(es) nav ul li a {
        font-size: 15px;
    }

    :lang(es) .megamenu.products .menu-heading {
        min-height: 140px !important;
    }
}

.megamenu .links a {
    text-decoration: underline;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    display: block;

    &:not(:last-child) {
        margin-bottom: 30px;
    }
}

header.desktop li.has_submenu a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 26px;
    left: -48px;
}

.megamenu .catalog {
    flex: 1 1 100%;
    margin-top: 100px;
    margin-bottom: 70px;
}

header .buttons {
    display: flex;
    gap: 20px;
}

header .buttons a:first-child {
    background-color: var(--secondary-color);
    border: none;
}

header .buttons a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-family);
    padding: 6px 10px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .buttons a img {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.mobile {
    display: none;
}

.slider {
    z-index: 1;
    position: relative;
    scroll-snap-align: start;
    background-color: #000;
}

.slider .swiper {
    width: 100%;
    height: 900px;
}

.slider .swiper-slide {
    position: relative;
}

.slider .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(14, 14, 14, 0.65) 100%);
    z-index: 1;
}

.slider .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .content {
    color: #fff;
    z-index: 2;
    position: relative;
}

.slider .slider-heading {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 100%;
}

.slider .slider-heading span {
    font-weight: normal;
    display: block;
}

@media (min-width: 768px) {
    .slider .slider-heading {
        font-size: 32px;
        max-width: 700px;
    }
}

@media (min-width: 1200px) {
    .slider .slider-heading {
        font-size: 40px;
        max-width: 900px;
    }
}

.slider .content a,
.accessibility .content a,
.blog .title a,
.career a,
footer .address a.link-btn,
#turkey a,
#swiss a,
.product_details>a,
.contactTitle>a,
.catalog>a {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 50px;
    color: #fff;
    justify-content: space-between;
    border: 1px solid #fff;
    text-decoration: none;
    font-family: var(--font-family);
}

/* .slider .swiper .swiper-slide .content a img, .accessibility .content a img, .blog .title a img, .career a img, footer .address a img, #turkey a img, #swiss a img, .product_details > a svg, .contactTitle > a img, .catalog > a img{
    width: 11px;
    height: 11px;
    background-color: var(--secondary-color);
    padding: 10px;
} */
.icon-holder {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 14px !important;
        height: 14px !important;
    }

}

.slider .swiper .swiper-pagination {
    bottom: 70px !important;
    left: unset !important;
    transform: rotate(90deg);
    top: 50% !important;
    z-index: 1;
    align-content: center;
    right: -60px;
    height: fit-content;
    width: unset !important;
}

.slider .swiper .swiper-pagination-bullet {
    position: relative;
    width: 156px;
    height: auto;
    text-align: left;
    border-radius: 0;
    opacity: 1;
    margin-right: 20px;
    background-color: transparent;
}

.slider .swiper .swiper-pagination-bullet em {
    font-size: 15px;
    line-height: 28px;
    font-weight: bold;
    letter-spacing: -0.38px;
    color: #111;
}

.slider .swiper .swiper-pagination-bullet i {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 4px;
    background-color: #fff;
}

.slider .swiper .swiper-pagination-bullet b {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #8C9DC6, #0080C8);
}

.slider .swiper .swiper-pagination-bullet-active {
    background-color: transparent;
}

.slider .swiper .swiper-pagination-bullet-active b {
    animation-name: countingBar;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

@keyframes countingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.slider .social_icons {
    position: absolute;
    top: 187px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
    color: #fff;
}

.slider .social_icons a {
    width: min-content;
}

.slider .social_icons p {
    margin: 0;
    writing-mode: sideways-lr;
}

.numbers-container {
    position: relative;
    background: #000;
    padding: 60px 0 75px 0;
}

.waves {
    position: absolute;
    top: -439px;
    pointer-events: none;
    z-index: 2;
    width: 112%;
    left: 0;
}

.numbers-container video {
    width: 100%;
    object-fit: cover;
    position: absolute;
    height: 750px;
    bottom: 0;
}

.numbers-container .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.numbers-container .globe {
    width: 100%;
}

.numbers-container .lines {
    width: 100%;
    position: absolute;
    top: 45%;
    transform: translate(0, -50%);
    z-index: 3;
    opacity: 0.5;
    left: 0;
}

.numbers-container .title {
    position: inherit;
    z-index: 3;
}

.numbers-container h4 {
    margin: 0;
    font-size: var(--h4-font-size);
    font-weight: var(--head-font-weight);
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.numbers-container h4 span {
    font-weight: 100;
    display: block;
}

.numbers-container .numbers {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    gap: 45px;
    flex-wrap: wrap;
    margin-top: 170px;
    width: 100%;
}

.numbers-container .numbers .number {
    background: rgba(144, 164, 180, 0.4);
    backdrop-filter: blur(40px);
    padding: 35px 24px;
    color: #fff;
    flex: 1;
}

.numbers-container .numbers .number .count {
    font-size: 45px;
    margin: 0;
}

.numbers-container .numbers .number .count span {
    font-size: 24px;
    font-weight: 500;
    display: inline-block !important;
}

.numbers-container .numbers .number p {
    font-size: 20px;
    margin: 0;
    font-weight: 100;
}

.products-container {
    text-align: center;
    position: relative;
}

.products-container .bg {
    position: absolute;
    z-index: -1;
    top: -300px;
    left: 0;
    width: 100%;
    object-fit: cover;
}

.products-container .products {
    background-color: #000;
    display: flex;
    background-size: cover;
    transition: all 200ms ease-in-out;
}

.products-container .products .product {
    height: 550px;
    width: 415px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    display: flex;
    align-items: flex-start;
    padding: 45px;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.product .h3 {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    text-align: center;
}

.products-container .products .product .content-container {
    max-height: 0;
    overflow: hidden;
    transition: all 200ms ease-in-out;
    width: 100%;
}

.products-container .products .product:hover .content-container {
    max-height: 100% !important;
}

.products-container .products .product:hover .content-container .gradient {
    top: 0 !important;
}

.products-container .products .product .content-container .gradient {
    background: linear-gradient(0deg, rgba(20, 31, 57, 1) 0%, rgba(20, 31, 57, 0) 100%);
    position: absolute;
    top: 700px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all 200ms ease-in-out;
}

.products-container .products .product .content-container .content {
    position: relative;
    z-index: 2;
    text-align: right;
}

.products-container .products .product .content-container .content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    overflow-y: auto;
    height: 400px;
}

.products-container .products .product .content-container .content ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px 0 10px;
    padding-top: 10px;
}

.products-container .products .product .content-container .content ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.products-container .products .product .content-container .content a {
    text-decoration: none;
    color: #fff;
}

.products-container .products .product .content-container .content a img {
    width: 11px;
    height: 11px;
    margin-left: 50px;
    background-color: var(--secondary-color);
    padding: 10px;
}

.map {
    max-width: 1500px;
    margin: auto;
    text-align: center;
    scroll-snap-align: start;
    scroll-margin: 100px;
}

#regions>div>div:nth-child(1)>div>svg>g>g:nth-child(3),
#regions>div>div:nth-child(1)>div>svg>g>rect {
    display: none;
}

#regions>div>div:nth-child(1)>div>svg>g>g:nth-child(2)>g:nth-child(1)>g>path:nth-child(713),
#regions>div>div:nth-child(1)>div>svg>g>g:nth-child(2)>g:nth-child(1)>g>path:nth-child(712) {
    fill: var(--secondary-color);
}

#regions path {
    stroke: #fff;
}

.accessibility {
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    scroll-snap-align: start;
    background-size: cover;
    scroll-margin: 100px;
    padding: 140px 0;
}

.accessibility .content p {
    max-width: 450px;
    font-size: 22;
    font-weight: 300;
}

.blog .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.blog .title h5 {
    font-size: var(--h5-font-size);
    color: #A6B2BB;
    margin: 0;
}

.blog .posts .swiper-wrapper {
    margin-bottom: 40px;
}

.blog .posts .post {
    background-color: #fff !important;
    width: 390px !important;
    padding: 20px;
    height: auto;
    text-decoration: none;
}

/* .blog .posts .post img {
    width: 100%;
    height: 280px;
    object-fit: cover;
} */

.blog .posts .post h6 {
    font-size: 20px;
    text-align: left;
    margin: 20px 0 0 10px;
    color: #000;
}

.blog p {
    font-weight: 300;
}

.blog .posts .swiper-button-prev,
.blog .posts .swiper-button-next {
    background-color: #A6B2BB;
    bottom: 0px;
    top: unset;
    right: 60px;
    left: unset;
    color: #fff;
}

.blog .posts .swiper-button-next {
    right: 10px;
}

.blog .posts .swiper-button-prev svg,
.blog .posts .swiper-button-next svg {
    width: 9px !important;
}

.blog .posts hr {
    width: 92%;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 17px;
}

.career {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 150px 40px;
    align-content: center;
    margin: auto;
    scroll-snap-align: start;
}

.career h5 {
    font-size: 35px;
    margin: 0 0 27px 0;
}

.career p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

.career a {
    width: 260px;
    justify-content: space-between;
    margin-top: 24px;
}

.logo-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 80px 10px;
}

.footer-container {
    background: #fff;
    padding-top: 65px;
    scroll-snap-align: start;
}

footer,
.copyright {
    display: flex;
    justify-content: space-between;
    margin: auto;
    gap: 20px;
}

footer p,
footer h6 {
    margin: 10px 0;
    font-size: 12px !important;
}

footer .address a.link-btn {
    border: 1px solid #000;
    color: #000;
}

footer .address a.link-btn .icon-holder {
    background-color: #000;
}

footer .contact .social {
    display: flex;
    gap: 40px
}

footer .contact .social a {
    color: #313438;
    font-size: 24px;
}

.copyright {
    border-top: 1px solid #A6B2BB;
    margin-top: 45px;
    padding: 20px 0;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: #000;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
}

.slider .swiper-slide {
    display: flex;
}

.single-page .bg-drop {
    padding: 0;
}

.megamenu .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Other pages */


.hero {
    padding: 110px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}

header.desktop nav {
    flex: 1;
    display: flex;
    justify-content: center;
}


.megamenu .row {
    flex-direction: column;
    display: flex;
}

.menu-heading {
    font-size: 24px;
    margin: 0 0 35px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
}

.megamenu.products .menu-heading {
    min-height: 79px;
}

.megamenu a {
    color: #FFF;
}

.submenu .menu-heading {
    font-size: 16px;
    margin: 15px 0;
    padding-bottom: 10px;
    max-width: 90%;
}

@media (min-width: 1200px) {}

/* @media (max-width:1200px) {
    header.mobile {
        display: flex;
    }

    .tab_links,
    .tab_content .about {
        padding-left: 16px !important;
    }

    .tab_links {
        padding-right: 16px !important;
    }

    .hero {
        padding: 140px 0 110px 0;
    }

    .accessibility {
        padding: 30px 0;
    }

    .numbers-container .numbers .number {
        padding: 55px 15px;
        flex: calc(50% - 35px);
        flex-grow: 1;
        flex-shrink: 0;
    }

    .orbits {
        height: auto !important;
    }
} */

/* Other pages */
@media (min-width:992px) {

    .numbers-container {
        min-height: 630px;
    }
}

/* responsive */
/* @media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .numbers-container .numbers {
        flex-wrap: nowrap;
    }

    .blog,
    footer {
        padding: 0 20px;
    }

    .copyright {
        padding: 20px;
    }

    .tabs .tab_content .about {
        width: 45%;
    }

    .values {
        padding: 0 20px;
    }

    .health_security {
        gap: 100px !important;
        padding: 0 75px;
        max-width: unset !important;
    } */

/* .info_security {
        padding: 100px 75px !important;
    } */

/* .lab_results {
        padding: 100px 75px !important;
        max-width: unset !important;
    } */

/* .policies .tabs .tab_links {
        padding: unset !important;
    }

    .press .items .item {
        width: 30% !important;
        max-width: 30% !important;
    } */

/* .quality_policy {
        padding: 135px 75px !important;
        gap: 50px !important;
    } */
/* 
    .history {
        gap: 25px !important;
    }
} */

/* @media (max-width: 1410px) {
    header {
        nav ul {
            gap: 30px;

            li a {
                font-size: 16px;
            }
        }
    }
} */

/* pages */


.about.tabs {
    color: #183A5C;
    scroll-snap-align: start;
}

.about.tabs hr {
    margin: 0 auto;
    width: 86%;
}

/* .tab_links::after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #183A5C;
    left: 0;
} */

.about.tabs .tab_links {
    display: flex;
    flex-wrap: nowrap !important;
    /* Force single line */
    gap: 70px;
    margin-top: 50px;
    margin-right: 0;
    position: relative;
    padding-bottom: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.about.tabs .tab_links::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari: hide scrollbar */
}

@media (max-width: 991px) {
    .about.tabs .tab_links {
        gap: 30px;
        /* Smaller gap on mobile */
    }
}

.about.tabs .tab_links a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.about.tabs .tab_links a.active::after {
    content: "";
    width: 80%;
    height: 5px;
    background-color: #183A5C;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.about.tabs .tab_content {
    display: flex;
    align-items: center;
    padding: unset !important;
    gap: 30px;
    justify-content: space-between;
}

.about.tab_content h2 {
    font-size: 48px;
}

.locations .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.locations .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 1 1 100%;
}

.locations .title h5 {
    font-size: var(--h5-font-size);
    margin: 0;
}

.locations .title hr {
    flex: 1;
}

.locations .images {
    width: 49%;
    text-align: center;
    height: -webkit-fill-available;
}

.locations .images .img {
    background-image: url(../img/locationscenter.png);
    background-size: contain;
    transition: all 200ms ease-in-out;
    width: 100%;
    height: -webkit-fill-available;
    justify-self: center;
    background-repeat: no-repeat;
    margin: auto;
}

.locations .aboutmap {
    position: relative;
    height: -webkit-fill-available
}

.locations .aboutmap .center {
    position: absolute;
    top: 20px;
    left: 200px;
}

.locations .aboutmap .factory {
    position: absolute;
    top: 50px;
    right: 300px;
}

.locations .aboutmap .storage {
    position: absolute;
    top: 0px;
    right: 370px;
}


.locations .aboutmap #turkey {
    left: unset !important;
    right: 0
}

.locations .aboutmap #swiss {
    left: unset !important;
    right: 100px
}

.locations .aboutmap #turkey.active,
.locations .aboutmap #swiss.active {
    display: block;
}

.locations .aboutmap #turkey h4,
.locations .aboutmap #swiss h4 {
    font-size: 32px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.locations .aboutmap #turkey p,
.locations .aboutmap #swiss p {
    color: #E7EFF6;
    line-height: 25px;
}

.locations .aboutmap #turkey p b,
.locations .aboutmap #swiss p b {
    color: #fff
}

.locations .aboutmap img[usemap] {
    width: 100%
}

.values {
    color: #183A5C;
    scroll-snap-align: start;
}

.values h3 {
    font-size: 20px;
    margin: unset !important;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.values .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-auto-rows: 1fr;
    gap: 28px;
}

.values .items .item {
    background-color: #fff;
    padding: 50px 40px;
}

.values .items .item h3 svg {
    margin-right: 10px;
}

.values .items .item p {
    font-size: 16px;
}


section.post {
    display: flex;
    gap: 50px;
    color: #183A5C;
}

.post .details {
    width: 75%;
}

.post .details video {
    width: 100%;
}

.post .details img {
    max-width: 100%;
}

.post .details .container {
    border: 1px solid #A5A5A5;
    padding: 25px;
    margin-top: 30px;
}

.post .details .container h1 {
    margin: 0 0 10px 0;
}

.post .details .container .meta {
    color: #A5A5A5;
    margin: 0;
}

.post .details .container hr {
    width: 80%;
    margin: 24px 0;
}

.post .details .container .content {
    white-space: pre-line;
    overflow-wrap: break-word;
}

.ql-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.post .similiar>h3 {
    margin: 0 0 20px 0;
    font-size: 32px;
    color: #183A5C;
    font-weight: 600
}

.post .similiar hr {
    margin-bottom: 20px;
}

.post .similiar {
    width: 25%;
}

.post .similiar .item {
    margin-bottom: 60px;
    color: unset;
    text-decoration: none;
}

.post .similiar .item img {
    width: 100%;
}

.post .similiar .item .date {
    color: #757D89;
    margin: 20px 0 0 0;
}

.post .similiar .item h3 {
    margin: 12px 0;
}

.post .similiar .item .category {
    color: #377EC2;
    margin: 0;
}

.post .similiar .item .category span {
    color: #757D89
}




.press {
    background-color: #F9F9F9;
    padding: 45px 120px;
    color: #183A5C;
    scroll-snap-align: start;
}

.press .container {
    max-width: 1670px;
    margin: auto;
}

.press .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
    position: relative;
}

.press .title h5 {
    font-size: var(--h5-font-size);
    margin: 0;
}

.press .title hr {
    flex: 1;
}

.press .title a {
    color: #183A5C;
    font-size: 16px;
    text-decoration: none;
}

.press .items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.press .items .item {
    width: 23%;
}

.press .items .item:first-child {
    width: 35%;
    flex: 1 1 35%;
    position: relative;
    color: #fff;
}

.press .items .item:first-child .date,
.press .items .item:first-child .category,
.press .items .item:first-child .category span {
    color: #fff;
}

.press .items .item:first-child:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(0deg, rgba(22, 31, 55, 1) 0%, rgba(22, 31, 55, 0) 100%);
}

.press .items .item:first-child>img {
    max-height: 550px;
    height: 100%;
    object-fit: cover;

}

.press .items .item:first-child .content {
    position: absolute;
    bottom: 35px;
    left: 35px;
    z-index: 1;
}

.press .items .item:nth-child(2),
.press .items .item:nth-child(3) {
    width: 27%;
}

.press .items .item>img {
    width: -webkit-fill-available;
    height: 400px;
    object-fit: cover;
}

.press .items .item .date {
    color: #757D89;
    margin: 20px 0 0 0;
}

.press .items .item h3 {
    margin: 12px 0;
}

.press .items .item .category {
    color: #377EC2;
    margin: 0;
}

.press .items .item .category span {
    color: #757D89
}

.newsletter_container {
    width: 100%;
    height: 630px;
    place-content: center;
    justify-items: center;
    text-align: center;
    background: linear-gradient(0deg, #183a5cc7, #183a5cc7), url(..//img/careerjoin.png);
    color: #fff;
    scroll-snap-align: start;
}

.newsletter_container p {
    width: 50%;
}

.newsletter_container .newsletter {
    width: 50%;
}

.newsletter_container .newsletter input {
    width: 80%;
}

.newsletter_container .newsletter input,
.newsletter_container .newsletter button {
    background: rgba(24, 58, 92, 0.5);
    color: #fff;
    border: none;
    padding: 15px 25px;
}

.target .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    align-items: start;
    justify-items: center;
    align-content: center;
}

.tabs .tab_content {
    padding: 77px 120px !important;
    gap: 55px !important;
}

.tab_content .images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab_content .images img {
    opacity: 1;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.tab_content .images img:hover {
    opacity: 1;
    /* transform: scale(1.1); */
    transition: all 200ms ease-in-out;
}

.tab_content .numbers {
    display: flex;
    gap: 100px;
}

.tab_content .numbers .number {
    font-size: 35px;
}

.companies {
    padding: 40px 0;
    background-color: #fff;
    color: #183A5C;
    position: relative;
    scroll-snap-align: start;
}

.companies .swiper-slide {
    height: auto;
}

.companies .company {
    display: flex;
    min-height: 410px;
    height: 100%;
    gap: 10px
}

.companies .company .company_logo {
    background-color: #F9F9F9;
    padding: 95px 45px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.companies .company .company_logo img {
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
}

.companies .company .company_info {
    padding: 45px 45px;
    background-color: #F9F9F9;
    flex: 1;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.companies .company .company_info {
    h6 {
        font-size: 26px;
        margin: 0;
        font-weight: 700;
        margin-bottom: 10px;
        color: #183A5C;
    }
}

.companies .company .company_info .company_contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 90px;
    margin-top: 60px;
}

.companies .company .company_info .company_contact p {
    margin: 0;
}

.companies .swiper-button-prev,
.companies .swiper-button-next {
    background-color: #A6B2BB;
    top: 75px;
    right: 80px;
    left: unset;
    color: #fff;
}

.companies .swiper-button-next {
    right: 20px !important;
}

.companies .swiper-button-next svg,
.companies .swiper-button-prev svg {
    width: 9px !important;
}

.history {
    display: flex;
    align-items: flex-start;
    gap: 90px;
    color: #183A5C;
    background-color: #fff;
    scroll-snap-align: start;
}

.history .dates {
    width: 25%;
    flex-shrink: 0;
}

.history .dates a {
    display: block;
    color: #183A5C;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding: 25px 55px 25px 120px;
    white-space: nowrap;
}

.history .dates a::before {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #183A5C;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-50%);
}

.history .dates a.active {
    background-color: #183A5C;
    color: #fff;
}

.history .items {
    display: none;
    width: 75%;
}

.history .items.active {
    display: block;
}

.history .items .item {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.history .items .item img {
    width: 35%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.history .items .item .content {
    padding: 70px 25px;
    background-color: #F9F9F9;
    width: 65%;
}

.history .items .item .content .date {
    padding: 10px 20px;
    background-color: #183A5C;
    font-weight: 600;
    width: fit-content;
    color: #fff;
}

.history .items .item .content h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.apply .title {
    background-color: rgba(22, 31, 55, 1);
    padding: 45px 40px;
    color: #fff;
}

.apply .title p {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    display: flex;
    flex-direction: column
}

.apply .title p span {
    font-size: 12px;
    font-weight: 300
}

.apply .container {
    display: flex;
}

.apply .container .steps {
    width: 50%;
    padding: 45px 75px;
}

.apply .container .steps .progess {
    background-color: #f3f5f6;
    width: 100%;
    height: 10px;
    --totalsteps: 4;
}

.apply .container .steps .progess::before {
    content: "";
    display: block;
    background-color: rgba(24, 58, 92, 1);
    width: calc(100% / var(--totalsteps));
    height: 10px;
    transition: all 200ms ease-in-out;
}

.apply .container .steps .step {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.apply .container .steps .step.active {
    display: flex;
}

.apply .container form .form_group {
    width: 100%;
    margin-top: 30px;
}

.apply .container form .file_upload {
    max-width: 100%;
    border: 2px dashed #161f37;
    /* padding: 55px; */
    height: 250px;
    align-content: center;
    text-align: center;
    margin-top: 10px;
}

.apply .container form .file_upload p span {
    color: rgba(55, 126, 194, 1);
}

.apply .container form .file_upload .allowed_ext {
    margin: 0;
    color: #d3d9e0;
}

.apply .container form .form_group label {
    display: block;
    margin-bottom: 10px;
}

.apply .container form .form_group select {
    appearance: none;
}

.apply .container form .form_group input,
.apply .container form .form_group select,
.apply .container form .form_group textarea {
    padding: 15px 20px;
    width: -webkit-fill-available;
}

.apply .container form .form_group.half {
    width: 48%;
}

.apply .container form .form_group.half:nth-child(even) {
    margin-right: unset
}

.apply .container form .add_btn {
    padding: 7px 10px;
    border: none;
    background-color: rgba(24, 58, 92, 1);
}

.apply .container form .next_step,
.apply .container form .prev_step {
    border: none;
    padding: 10px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    font-size: 14px;
    font-weight: 400;
    margin: 40px 0 0 auto;
    cursor: pointer;
    gap: 10px;
}

.apply .container form .prev_step {
    margin: 40px 0 0 0;
    background-color: unset;
    justify-content: flex-start;
}

.apply .container form .next_step svg {
    padding: 7px 5px;
    background-color: rgba(55, 126, 194, 1);
}

.apply img {
    width: 55%;
    height: auto;
    object-fit: cover;
}

.tabs .tab_content .about {
    position: relative;
    z-index: 1;
}

.about h2 {
    margin-top: 0;
}

/* mobile */
@media only screen and (max-width: 991px) {
    .career {
        background-position: center left;
    }

    .values h3 {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .tabs .tab_content .about::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: #ffffff99;
        z-index: -1;
    }

    .tab_content {
        background-color: #fff;
    }

    .hero br {
        display: none;
    }

    /* .about.tabs {
        color: #000;
    } */

    .waves {
        top: -125px;
        min-height: unset;
        max-height: 300px;
    }

    .slider .swiper {
        height: 650px;
    }

    .slider .swiper .swiper-slide .content {
        max-width: 80%;
    }

    .slider .swiper .swiper-slide .content h4 {
        font-size: 25px;
    }

    section.slider .swiper-pagination {
        display: none;
    }

    .numbers-container {
        padding-top: 0px !important;
    }

    .numbers-container h4 {
        font-size: 28px;
    }

    .numbers-container video {
        height: 650px;
        object-fit: cover;
    }

    .numbers-container .container {
        top: 25px;
    }

    .numbers-container .numbers {
        gap: 15px;
        margin-top: 95px;
    }

    .numbers-container .numbers .number .count {
        font-size: 25px !important;

        span {
            font-size: 16px !important;
        }
    }

    .numbers-container .numbers .number p {
        font-size: 16px;
    }

    .products-container .bg {
        width: 100%;
    }

    .products-container .products {
        flex-direction: column;
    }

    .products-container .products .product {
        width: auto;
    }

    .map #regions,
    .map div[dir="ltr"],
    .map div[dir="ltr"]>div,
    .map div[dir="ltr"] svg {
        width: 90%;
    }

    footer,
    .copyright {
        flex-direction: column;
        align-items: baseline;
        padding: 10px;
    }

    .values .items {
        grid-template-columns: 1fr;
    }

    .about.tabs .tab_links {
        /* flex-wrap: wrap; */
        gap: 26px;
    }

    .tabs .tab_content .about {
        padding: 25px !important;
        padding-left: 16px !important;
    }

    /* .companies {
        padding: 40px 0 40px 25px;
    } */
}

/* Language Modal Styles */
.language-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.language-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.language-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.language-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.language-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.language-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--light-grey);
}

.language-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-family);
}

.language-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
}

.language-modal-close:hover {
    color: var(--secondary-color);
}

.language-modal-body {
    padding: 20px 30px 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    margin-bottom: 8px;
}

.language-item:last-child {
    margin-bottom: 0;
}

.language-item-btn {
    width: 100%;
    background: #fff;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    font-size: 18px;
    text-align: left;
}

.language-item-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(0, 128, 200, 0.05);
    transform: translateX(4px);
}

.language-item.active .language-item-btn {
    border-color: var(--secondary-color);
    background: rgba(0, 128, 200, 0.1);
    font-weight: 600;
}

.language-name {
    color: var(--primary-color);
    flex: 1;
}

.language-check {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: bold;
    margin-left: 12px;
}

.language-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .language-modal {
        max-width: 90%;
        width: 90%;
    }

    .language-modal-header {
        padding: 20px;
    }

    .language-modal-header h3 {
        font-size: 20px;
    }

    .language-modal-body {
        padding: 15px 20px 20px;
    }

    .language-item-btn {
        padding: 14px 16px;
        font-size: 16px;
    }
}

.logo {
    max-width: 210px !important;
}