/* Fonts */
@font-face {
    font-family: "Urbancat";
    src: url("../assets/fonts/UrbancatFont/VladB_Urbancat_Rg_Bold.otf")
        format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Aeonik";
    src: url("../assets/fonts/Aeonik/fonnts.com-Aeonik-Regular.ttf")
        format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "HubotSans";
    src: url("../assets/fonts/Hubot_Sans/HubotSans-VariableFont_wdth\,wght.ttf")
        format("truetype");
    font-weight: 200 900;
    font-style: normal;
}

@font-face {
    font-family: "AtHauss";
    src: url("../assets/fonts/AtHauss/VariableFonts/AtHaussVARVF.ttf")
        format("truetype");
    font-weight: 200 900;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf")
        format("truetype");
    font-weight: 200 900;
    font-style: normal;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background: #f5f5f5;
}
body {
    font-family: "AtHauss", sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-wrapper {
    max-width: 1250px;
    margin-inline: auto;
}
#global_header > .section-wrapper {
    position: relative;
    z-index: 1000;
}
.screen-overlay {
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 8;
}

.screen-overlay.is-active {
    animation: fade-in 0.3s ease-in;
    animation-fill-mode: both;
    display: block;
}

.screen-overlay.has-overlay::before {
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    transition: all 0.3s linear;
    width: 100%;
    z-index: 10;
}

.screen-overlay.has-overlay.is-visible::before {
    opacity: 1;
}

fade-in animation {
    opacity: 1;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

/* Overlay header on hero for specific pages */
body.hero-overlap header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

body.hero-overlap header .left .logo-subtitle {
    color: #fff;
}

body.hero-overlap header .right ul li button svg,
body.hero-overlap header .right ul li button {
    color: #fff;
    fill: #fff;
}

/* Contact button becomes white pill over dark hero */
body.hero-overlap header .right a.contact {
    background: #ffffff;
    color: #111;
}
body.hero-overlap header .right a.contact:hover {
    background-color: #fcd450;
    color: #111;
}

/* Improve logo visibility on dark backgrounds if logo is dark */
body.hero-overlap header .left img {
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.35));
}

header .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    padding: 0 clamp(1.25rem, 6.41vw - 0.192rem, 7.5rem);
    margin-inline: auto;
}

header .left {
    display: flex;
    flex-direction: column;
}
header .left a.brand-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

header .left img {
    max-width: 150px;
    max-height: 36px;
}
header .left .logo-subtitle {
    text-align: right;
    font-size: 11px;
    letter-spacing: 2.3px;
    margin-right: 0px;
    cursor: default;
    text-transform: uppercase;
}

header .right {
    position: relative;
    z-index: 30;
}
header .right ul {
    display: flex;
    gap: 1rem;
    list-style: none;
}

header .right ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

header .right ul li button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

header .right ul li button svg {
    height: 32px;
    width: 32px;
}

header .right a.contact {
    background: #000;
    width: fit-content;
    font-style: none;
    text-decoration: none;
    color: white;
    padding: 9px 23px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
}

header .right a.contact p {
    transform: translateY(-1px);
}

header .right a.contact:hover {
    background-color: #fcd450;
    color: #111;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    body {
        padding-inline: 0rem;
    }

    @keyframes appearUl {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    header .left img {
        max-width: 120px;
        max-height: 28px;
    }
    header .left .logo-subtitle {
        font-size: 8px;
    }
    header .right a.contact {
        display: none;
    }
}

/* Menu */
.main-menu {
    position: absolute;
    background-color: #e9c56a;
    border-radius: 12px;
    height: calc(100dvh - 10px);
    padding: 80px 20px 20px;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    z-index: 0;
    transition: 0.1s;
    scale: 0;
    opacity: 0;
}

.main-menu.active {
    opacity: 1;
    scale: 1;
    z-index: 5;
}

.main-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2.9rem;
    list-style: none;
}

.main-menu ul a {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 1.4rem;
    display: inline-block;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu ul a:not(.contact)::after {
    background-image: url(../assets/static/icons/chevron.svg);
    background-size: cover;
    content: "";
    display: block;
    height: 20px;
    position: relative;
    right: 0;
    top: 6px;
    width: 21px;
    margin-left: 5px;
    align-self: normal;
}

.main-menu li:has(.contact) {
    display: none;
}

.main-menu a.contact {
    background: #000;
    width: fit-content;
    font-style: none;
    text-decoration: none;
    color: white;
    padding: 9px 23px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
    margin-bottom: 20px;
}

.main-menu a.contact p {
    transform: translateY(-1px);
}

.main-menu a.contact:hover {
    background-color: #fcd450;
    color: #111;
}

.img_background {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    scale: 0;
}
.main-menu.active .img_background {
    scale: 1;
}
@media (min-width: 1800px) {
    .main-menu {
        width: 40% !important;
    }
}
@media (min-width: 1024px) {
    .main-menu {
        height: calc(100vh - 30px);
        min-height: 700px;
        padding: clamp(6.875rem, 4.464vw + 4.018rem, 9.375rem) 60px;
        right: 15px;
        left: auto;
        top: 15px;
        width: 664px;
    }
}
@media (max-width: 1024px) {
    .main-menu ul {
        margin-top: 1.8rem;
    }
}
@media (max-width: 768px) {
    .main-menu ul {
        gap: 2rem;
        margin-top: 0;
    }
    .main-menu li:has(.contact) {
        display: list-item;
    }
}

/* Search */

.center_search {
    position: fixed;
    top: 15px;
    left: 15px;
    display: flex;
    justify-content: center;
    width: calc(100% - 30px);
    height: max-content;
    z-index: 3;
    overflow: hidden;
    transition:
        width 0.2s linear,
        height 0.2s linear;
    z-index: 4;
    transition: 0.1s;
    scale: 0.82;
    opacity: 0;
}

.center_search.open {
    height: max-content;
    scale: 1;
    opacity: 1;
}

.search_nav {
    transition:
        width 0.2s linear,
        height 0.2s linear;
    display: none;
    align-items: flex-start;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background: #e9c56a;
    position: relative;
    width: 100%;
    left: 0;
    height: 275px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-inline: 6%;
    padding-top: 70px;
    transform-origin: top;
}

@media (max-width: 768px) {
    .center_search {
        width: calc(100% - 10px);
        top: 5px;
        left: 5px;
    }
    .search_nav {
        height: fit-content;
        padding-inline: 3%;
    }
}

.search_nav > span {
    display: none;
}

.search_input {
    display: none;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%;
    background: transparent;
    padding: 0 28px;
}

.search_icon {
    font-size: 36px;
    color: #666;
    width: 36px !important;
    height: 36px !important;
}

.search_input input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    height: 72px;
    background: transparent;
    padding: 28px 0;
    display: flex;
    align-items: center;
}

.search_input input::placeholder {
    font-size: 14px;
}

.search_nav.open {
    display: flex;
    animation: appearNavSearch 0.2s linear forwards;
}

.search_nav.open > span {
    display: block;
}

.search_nav.open .search_input {
    display: flex;
}

.flex_search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.flex_search span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .search_input input {
        height: 52px;
    }
    .flex_search {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        margin-bottom: 20px;
    }
    .search_icon {
        font-size: 26px;
        width: 26px !important;
        height: 26px !important;
    }
}

/* Overlay */
#screenOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.2s linear;
}

#screenOverlay.has-overlay.is-visible {
    z-index: 4;
    opacity: 1;
    visibility: visible;
}

/* Hero */

.hero {
    background-color: #fff;
    min-height: 700px;
}

.hero .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* left */

.hero .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
}

.typing-container:has(#home-typing-text) {
    font-size: 70px;
    line-height: 114%;
    font-weight: 400;
    width: fit-content;
}

.typing-container:has(#home-typing-text) {
    width: 430px;
}

.typing-container-text {
    line-height: 1.53rem;
    transition-delay: 1s !important;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 4rem;
    background-color: #000;
    margin-left: 3px;
    animation: blink 0.7s steps(1) infinite;
    transform: translateY(7px);
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.hero p {
    font-size: 1.1rem;
    font-weight: 400;
    font-family: "Inter";
    margin-bottom: 1.5rem;
}

.hero .left a {
    background: #000;
    width: fit-content;
    font-style: none;
    text-decoration: none;
    color: white;
    padding: 9px 23px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    gap: 10px;
    font-size: 0.96rem;
    transition-delay: 3s !important;
}

.hero .left a .bi-arrow-right {
    font-size: 1.25rem;
    transform: translateY(0px);
}

.hero .left a:hover {
    background-color: #ff600a;
    color: #000;
}

/* right */
.hero .right {
    display: flex;
    justify-content: flex-end;
    height: fit-content;
    padding-top: 20px;
    transition-delay: 3s !important;
}

.q-video {
    position: relative;
    width: 525px;
    height: 525px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;

    -webkit-mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: destination-in;
}

.q-video video {
    position: absolute;
    height: 100%;
    width: 98%;
    object-fit: cover;
    object-position: 75%;
    z-index: 0;
}

.q-video img {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
}
@media (max-width: 1480px) {
    .q-video {
        transform: translateY(-50px);
    }
}

@media (max-width: 1268px) {
    .q-video {
        width: 500px;
        height: 500px;
        transform: translate(0px, 0px);
        margin-left: -45px;
    }
    .q-video img {
        transform: translate(0px, 0px);
    }
}

@media (max-width: 1024px) {
    .hero .section-wrapper {
        flex-direction: column-reverse;
    }
    .hero .left,
    .hero .right {
        margin-inline: auto;
    }
    .hero .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .typing-container-text,
    .typing-container {
        text-align: center;
    }
    .hero .right {
        margin-left: initial !important;
        padding-top: 0;
    }
    .q-video {
        margin-inline: auto;
    }
}

@media (max-width: 990px) {
    .q-video {
        width: 535px;
        height: 535px;
        transform: translate(0px, 0px);
        scale: 0.8;
    }
    .q-video img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 892px) {
    .hero .right {
        padding-left: 0px;
        width: 100%;
    }
    .q-video {
        width: 500px;
        height: 500px;
    }
}
@media (max-width: 768px) {
    .q-video {
        width: 450px;
        height: 450px;
    }
}
@media (max-width: 600px) {
    .q-video {
        width: 380px;
        height: 380px;
    }
}
@media (max-width: 440px) {
    .typing-container {
        font-size: 3rem;
    }
    .q-video {
        width: 340px;
        height: 340px;
    }
}

/* Connectivity Overview (connectivity page only) */
.connectivity_overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
    background-color: #eff0ee;
}

.connectivity_overview .section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.connectivity_overview .co-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3.5rem;
    margin-block: 3.8rem;
}

.connectivity_overview .co-row.reverse {
    flex-direction: row-reverse;
}

.connectivity_overview .co-image img {
    width: 320px;
    height: auto;
}

.connectivity_overview .co-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #1e1e1e;
}

.connectivity_overview .co-text p {
    font-family: "Inter";
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444;
    max-width: 520px;
}

.connectivity_overview .co-text h3 {
    display: block;
    font-size: 2.05rem;
    font-weight: 400;
}

.connectivity_overview .co-text h3::before {
    content: "";
    display: block;
    height: 1px;
    width: 260px;
    background: #a9aba9;
    margin: 0 0 12px 0;
}

.connectivity_overview .co-text h3 span {
    display: inline-block;
}

/* Centered variant for the second row title */
.connectivity_overview .co-text h3.center {
    display: block;
    text-align: center;
}
.connectivity_overview .co-text h3.center::before {
    content: "";
    display: block;
    height: 1px;
    width: 320px;
    background: #a9aba9;
    margin: 0 auto 12px;
}

@media (max-width: 1024px) {
    .connectivity_overview .co-image img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .connectivity_overview .co-row,
    .connectivity_overview .co-row.reverse {
        flex-direction: column;
        gap: 1.8rem;
    }
    .connectivity_overview .co-text {
        align-items: center;
        text-align: center;
    }
    .connectivity_overview .co-text p {
        max-width: none;
    }
    .connectivity_overview .co-text h3::before {
        width: 160px;
        margin: 0 auto 12px;
    }
}

/* Company Overview */

.global_companyOverview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    /* background-image: url("../assets/background_circles.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
    position: relative;
    overflow: hidden;
}

.global_companyOverview .bgCompany {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10%;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.global_companyOverview .content {
    margin-bottom: 40px;
    z-index: 1;
    display: flex;
    justify-content: center;
    max-width: 1250px;
}

.global_companyOverview .content h2 {
    font-size: 2.68rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.global_companyOverview .grid_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0.4rem;
    max-width: 1120px;
}

.global_companyOverview .grid_container {
    display: flex;
    justify-content: center;
    z-index: 1;
    border: 1px solid #1e1e1e;
}

.global_companyOverview .grid_container:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 0;
}

.global_companyOverview .grid_container:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.global_companyOverview .grid_item {
    height: 310px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 20px 20px 25px;
    text-align: left;
    position: relative;
    gap: 20px;
    width: 33.3%;
}

.global_companyOverview .grid_item:not(:first-child) {
    border-left: 1px solid #1e1e1e;
}

.global_companyOverview .grid_item .icon {
    color: #333;
    transition: 0.3s;
    /* animation: fly 6s linear infinite; */
    cursor: default;
    height: 90px;
    padding-inline: 12px;
}

.global_companyOverview .grid_item .icon:hover {
    scale: 1.04;
}

.global_companyOverview .grid_item h3 {
    font-size: 2.05rem;
    font-weight: 400;
}

.global_companyOverview .grid_item p {
    font-family: "Inter";
    font-size: 0.97rem;
    line-height: 20px;
    color: #444;
}

.global_companyOverview .grid_item i {
    font-size: 4.5rem;
    color: #000000;
}
@media (max-width: 1205px) {
    .global_companyOverview .bgCompany {
        width: 100%;
        opacity: 0.7;
    }
}

@media (max-width: 1200px) {
    .global_companyOverview .content {
        width: 100%;
    }
    .global_companyOverview .grid_item {
        height: 335px;
    }
    .global_companyOverview .grid_item h3 {
        font-size: 1.85rem;
    }
}

@media (max-width: 900px) {
    .global_companyOverview .grid_item {
        height: 355px;
    }
}

@media (max-width: 768px) {
    .global_companyOverview {
        padding: 20px;
    }
    .global_companyOverview .content {
        width: 100%;
    }
    .global_companyOverview .content h2 {
        font-size: 2rem;
    }
    .global_companyOverview .grid_container {
        flex-direction: column;
        max-width: 95%;
    }
    .global_companyOverview .grid_item {
        width: 100%;
        height: auto;
    }
    .global_companyOverview .grid_item:not(:first-child) {
        border-left: 0;
        border-top: 1px solid #1e1e1e;
    }
    .global_companyOverview .grid_item p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .global_companyOverview .grid_container {
        display: flex;
        flex-wrap: wrap;
    }
    .global_companyOverview .grid_item {
        width: 100%;
    }
    .global_companyOverview .content h2 {
        font-size: 1.4rem;
    }
    .global_companyOverview .grid_item p {
        font-size: 0.9rem;
    }
    .global_companyOverview .bgCompany {
        width: 80%;
    }
}

@keyframes fly {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Card Company */
.global_cardCompany {
    background-color: #eff0ee;
    width: 100%;
    height: auto;
}

/* Connectivity page CTA overrides */
.connectivity-cta {
    background-color: #ffffff;
}

.connectivity-cta .section-wrapper {
    display: flex;
    justify-content: flex-start;
}

.connectivity-cta .card {
    background-color: #fcd450;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .connectivity-cta .section-wrapper {
        justify-content: flex-start;
    }
}

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

.global_cardCompany .section-wrapper {
    max-width: 1390px;
    width: 100%;
}

.global_cardCompany .card {
    display: flex;
    border-radius: 12px;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    justify-self: end;
    padding: 35px;
    background-color: #fcd450;
    border: 1px solid #1e1e1e;
    max-width: 976px;
}

.global_cardCompany .card .left_card {
    display: flex;
    place-content: center;
}

.global_cardCompany .card .left_card img {
    width: 375px;
    height: 375px;
    border-radius: 12px;
    object-fit: cover;
    filter: hue-rotate(275deg);
}

.global_cardCompany .card .right_card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: #1e1e1e;
}

.global_cardCompany .card .right_card h2 {
    font-size: 2.65rem;
    line-height: 48px;
    font-weight: 400;
    max-width: 466px;
    padding-bottom: 12px;
}

.global_cardCompany .card .right_card p {
    font-family: "Inter";
    font-size: 0.95rem;
}

.global_cardCompany .card .right_card h3 {
    font-family: "Inter";
    font-weight: 500;
}

.global_cardCompany .card .right_card .flex_button {
    display: flex;
    gap: 20px;
    align-items: center;
}

.global_cardCompany .card .right_card .flex_button a {
    background: #000;
    width: fit-content;
    text-decoration: none;
    padding: 9px 23px;
    border-radius: 64px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.global_cardCompany .card .right_card .flex_button a:hover {
    background-color: #fcd450;
    color: #000;
}

@media (max-width: 900px) {
    .global_cardCompany .card .left_card img {
        width: 325px;
        height: 325px;
    }
    .global_cardCompany .card .right_card h2 {
        font-size: 2rem;
        line-height: 35px;
    }
    .global_cardCompany .card .right_card p {
        font-size: 0.9rem;
    }
    .global_cardCompany .card .right_card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .global_cardCompany .card {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: center;
    }

    .global_cardCompany .card .left_card img {
        height: 470px;
        width: 470px;
    }

    .global_cardCompany .card .right_card {
        align-items: start;
    }

    .global_cardCompany .card .right_card h2 {
        font-size: 1.9rem;
        max-width: none;
    }
}

@media (max-width: 570px) {
    .global_cardCompany .card .left_card img {
        height: 370px;
        width: 370px;
    }
}

@media (max-width: 450px) {
    .global_cardCompany .card .left_card img {
        height: 320px;
        width: 320px;
    }
}

@media (max-width: 400px) {
    .global_cardCompany .card .left_card img {
        height: 270px;
        width: 270px;
    }
}

/* Connectivity CTA final overrides (placed after base card styles to win cascade) */
.global_cardCompany.connectivity-cta {
    background-color: #ffffff;
}

.global_cardCompany.connectivity-cta .section-wrapper {
    display: flex;
    justify-content: flex-start;
}

.global_cardCompany.connectivity-cta .card {
    background-color: #fcd450;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
/* Footer */

footer {
    position: relative;
    width: 100%;
    color: #111;
    overflow: hidden;
    height: fit-content;
    padding-inline: 6rem;
    background-color: #c9cac8;
    /* background-image: url("../assets/background_circles_reverse.jpg");
  background-position: 100% 85%;
  background-repeat: no-repeat;
  background-size: cover; */
    position: relative;
}

footer .section-wrapper {
    max-width: 1320px;
}

.bgCompanyFooter {
    position: absolute;
    width: 700px;
    height: auto;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    top: -600px;
    right: 0px;
    transform: rotate(180deg) scaleX(100%) scaleY(100%);
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    height: 100%;
    gap: 20px;
}

.footer-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    margin-right: 0; /* prevent flex auto margin from stretching container */
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: flex-start;
}

.footer-left img {
    max-width: 150px;
    max-height: 36px;
}

.footer-left .logo-subtitle {
    text-align: right;
    font-size: 11px;
    letter-spacing: 2.3px;
    margin-right: 0px;
    cursor: default;
    text-transform: uppercase;
}

/* Footer branding block to mirror header alignment */
.footer-brand {
    display: flex;
    flex-direction: column;
    width: fit-content;
}
.footer-brand a.brand-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: fit-content;
}
.footer-brand img {
    max-width: 150px;
    max-height: 36px;
}
.footer-brand .logo-subtitle {
    text-align: right;
    font-size: 11px;
    letter-spacing: 2.3px;
    margin-right: 0px;
    text-transform: uppercase;
    display: inline-block;
}

/* Mobile: center footer branding like header stack */
@media (max-width: 768px) {
    .footer-brand {
        align-items: end;
    }
    .footer-brand .logo-subtitle,
    .footer-left .logo-subtitle {
        text-align: center;
        margin-right: 0;
    }
    /* Ensure the logo block centers fully on mobile */
    .footer-left {
        margin: 0 auto;
        text-align: center;
        align-items: center;
        width: fit-content;
    }
    .footer-left img,
    .footer-brand img {
        display: block;
        margin: 0 auto;
    }
}

.footer-left-text p {
    font-size: 1.35rem;
    letter-spacing: 1px;
    margin-bottom: 13px;
    font-weight: 700;
}

.footer-left-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
    margin-right: auto;
}

.footer-left .footer-links-menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 70px;
}

.footer-links-menu .footer-links-menu-row {
    display: flex;
    flex-direction: column;
    padding-block: 50px;
    gap: 4px;
}

.footer-links-menu-row h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-links-menu-row a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
}

.footer-links-menu-row a:hover {
    text-decoration: underline;
}

.footer-left .footer-copyright {
    font-size: 12.4px;
}

.footer-right {
    margin-left: auto;
}

.footer-right .q-image {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;

    -webkit-mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 99%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: destination-in;
}

.footer-right .q-image .image-main {
    position: absolute;
    height: 100%;
    width: 98%;
    object-fit: cover;
    object-position: right;
    z-index: 0;
}

.footer-right .q-image .image-mask {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
}

.footer-button {
    background: #fcd450;
    width: fit-content;
    text-decoration: none;
    color: white;
    padding: 3px 23px 3px 23px;
    border-radius: 64px;
    color: black;
    transition:
        background-color 0.3s,
        color 0.3s;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.footer-button .bi-arrow-right {
    font-size: 1.5rem;
}

.footer-button:hover {
    background-color: #111;
    color: #fff;
    scale: 1.02;
}

@media (max-width: 1100px) {
    .footer-content,
    .footer-up {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-left {
        margin-inline: auto;
        margin-bottom: 15px;
    }
    .footer-right {
        display: none;
    }
}
@media (max-width: 850px) {
    .bgCompanyFooter {
        top: -500px;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .footer-left-text {
        align-items: center;
        margin-left: auto;
    }
}
@media (max-width: 768px) {
    .footer-center p {
        font-size: 1rem;
    }
    .footer-button {
        padding: 8px 20px;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
@media (max-width: 500px) {
    .bgCompanyFooter {
        top: -200px;
    }
    .footer-left .footer-links-menu {
        grid-template-columns: repeat(1, auto);
        gap: 25px;
        text-align: center;
        padding-block: 50px;
    }
    .footer-links-menu .footer-links-menu-row {
        padding-block: 0;
    }
    .footer-left .footer-copyright {
        text-align: center;
    }
}

section {
    padding-inline: 11.75rem;
}
.hero {
    padding-block: 3.5rem;
    padding-inline: 11.75rem;
}

header {
    padding-block: 1.85rem;
}
section {
    padding-top: 4.85rem;
    padding-bottom: 6.5rem;
}
.global_companyOverview {
    padding-bottom: 4rem;
}
.global_cardCompany {
    padding-top: 5.4rem;
    padding-bottom: 5.5rem;
    padding-inline: 0;
}

footer {
    padding-top: 4.5rem;
    padding-bottom: 2.7rem;
}

@media (max-width: 1400px) {
    .hero,
    section {
        padding-inline: 5rem !important;
    }
    .hero .right {
        margin-right: 0rem;
    }
}
@media (max-width: 1150px) {
    .hero,
    section {
        padding-inline: 1rem !important;
    }
}
@media (max-width: 1000px) {
    .hero,
    section {
        padding-inline: 2rem !important;
    }
    .hero {
        padding-top: 0;
    }
}
@media (max-width: 850px) {
    .hero {
        padding-top: 2rem;
    }
}
@media (max-width: 768px) {
    section,
    .hero {
        padding-inline: 2rem !important;
    }
    footer {
        padding-top: 4rem;
        padding-inline: 2rem;
    }
    .global_cardCompany .card {
        padding-inline: 1rem;
    }
}
@media (max-width: 500px) {
    section,
    header,
    footer,
    .hero {
        padding-inline: 20px !important;
    }
}

@media (max-width: 380px) {
    .hero {
        padding-inline: 0 !important;
    }
}
