/* =========================================
   Home Banner Section
   ========================================= */
.home-banner-section {
    position: relative;
    height: 840px;
    overflow: hidden;
    background-color: #000;
}

/* Background Swiper */
.home-banner-bg-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.home-banner-bg-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-bg-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    max-height: 100% !important;
    max-width: 100% !important;
}

/* Overlay */
.home-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 22, 40, 0) 0%,
            rgba(0, 22, 40, 1) 100%);
    z-index: 1;
    @media (max-width: 767px) {
        display: none;
    }
}

/* Content Wrapper & Swiper */
.home-banner-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 39.932%;

    @media (min-width: 767px) {
        padding-left: 13.128%;
    }

    @media (max-width: 767px) {
        margin-left: 0;
        margin-top: 398px;
        padding-top: 33.886%;
        justify-content: start;
        height: 442px;
        padding-bottom: 30px;
    }
}

.home-banner-content-wrapper.container:before {
    content: '';
    display: block;
    background: #00376466;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 11.377182770663562281722933643772% 50%);
    pointer-events: none;

    @media(max-width: 767px) {
        clip-path: polygon(50% 63.5px, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}

.home-banner-content-swiper {
    width: 100%;
    background: transparent;
}

.home-banner-content-slide {
    background: transparent;
}

/* Content */
.home-banner-content .banner-title {
    margin-bottom: 26px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    max-width: 591px;
    * {
        text-transform: uppercase;
    }
}

.home-banner-content .banner-desc {
    max-width: 591px;
    display: block;
    @media(max-width:767px) {
        overflow: auto;
    }
}

/* Controls & Progress Bar */
.home-banner-controls {
    margin-bottom: 16px;
    pointer-events: auto;
    z-index: 1;
    font-size: calc(var(--font-size-base) + 2px);
    line-height: 1.4444444444444444444444444444444;
    font-family: var(--font-family-base);
    letter-spacing: 0;
}

.banner-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-progress-bar {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #fff;
}

/* Responsive Banner */
@media (max-width: 767px) {
    .banner-title {
        margin-bottom: 20px;
    }
    .banner-desc {
        font-size: 1rem;
    }
    .home-banner-controls {
        margin-bottom: 30px;
    }
}

/* =========================================
   Venture Energy & Numbers Section Styles
   ========================================= */

/* Venture Energy Intro */
.venture-energy-section {
    padding: 150px 0 60px;
    text-align: center;
    @media (max-width: 767px) {
        padding: 70px 0 50px;
    }
}

.venture-energy-section .subtitle {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venture-energy-section .title {
    margin-bottom: 60px;
    display: inline-block;
    max-width: 1400px;
    @media(min-width: 768px) {
        width: 80%;
    }
    @media(max-width: 767px) {
        font-family: var(--font-family-base) !important;
        font-weight: 500;
        font-size: var(--font-size-heading-4);
        line-height: var(--line-height-heading-4);

        * {
            font-family: var(--font-family-base) !important;
            font-weight: 500;
            font-size: var(--font-size-heading-4);
            line-height: var(--line-height-heading-4);
        }
    }
}

.venture-energy-section .btn {
    margin: 0 auto;
}

/* Numbers Section */
.numbers-section {
    position: relative;
    padding: 60px 0 0;

    @media(max-width: 767px) {
        padding-top: 50px;
    }
}

.numbers-section .section-title * {
    text-align: center;
    justify-content: center;
    font-weight: 500;
}

.numbers-section .row {
    display: flex;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    @media(min-width: 768px) {
        justify-content: space-between;
    }
    @media(max-width: 767px) {
        flex-flow: column;
    }
}

.numbers-section .col-center-image {
    flex: 0 0 47.81%;
    padding-bottom: 86.136%;
    height: 0;
    position: relative;
    @media(max-width: 767px) {
        flex: 0 0 calc(100% + 60px);
        padding-bottom: 273.035%;
        order: 3;
        width: calc(100% + 60px);
        margin-left: -30px;
        position: relative;
    }
}

.numbers-section .col-center-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    @media(max-width: 767px) {
        width: 153.84615384615384615384615384615%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.numbers-section .col-md-3 {
    flex: 0 0 calc((100% - 47.81%) / 2);
    margin-top: 156px;
    @media(min-width: 768px) {
        max-width: 264px;
    }
    @media(max-width: 767px) {
        flex: 0 0 100%;
        margin-top: 70px;
    }
}

.numbers-section .column-label {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 500;

    @media(max-width: 767px) {
        font-size: var(--font-size-lead-in);
        line-height: var(--line-height-lead-in);
    }
}

.numbers-section .number-item {
    border-top: 1px solid var(--color-dark-blue);
    padding-bottom: 40px;
    padding-top: 10px;
}

.numbers-section .number-item:last-child {
    padding-bottom: 10px;
}

.numbers-section .number-name {
    margin-bottom: 16px;
}

/* Left List Colors */
.numbers-section .left-list .number-name {
    color: var(--color-red);
}

/* Right List Colors */
.numbers-section .right-list .number-name {
    color: var(--color-blue-3);
}
.vertical-line {
    height: 120px;
    width: 1px;
    background: var(--color-dark-blue);
    margin: 0 auto;

    @media(max-width: 767px) {
        height: 100px;
    }
}
.vertical-line.bottom {
    position: absolute;
    bottom: 11px;
    left: 50%;
    transform: translateX(-50%);
    @media(max-width: 767px) {
        display: none;
    }
}
.numbers-section .number-desc {
    margin-bottom: 0;
    font-weight: normal;
    justify-content: start;
    flex: 0 0 calc(100% - 30px);
    padding-right: 5px;
    text-transform: capitalize;
    @media(max-width:767px) {
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
}
.numbers-section .description {
    display: flex;
}

.numbers-section .number-icon {
    max-height: 30px;
    width: auto;
    justify-content: end;
    flex: 0 0 30px;
}

.numbers-section .col-center-image img {
    object-fit: contain;
}

/* Solutions Section */
.solution-item {
    position: relative;
}
.home-solutions .section-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    padding: 0;
    @media(max-width: 991px) {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--padding-container-mobile);
        margin-bottom: 0px;
    }
}
.home-solutions .section-subtitle {
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
    @media(max-width: 767px) {
        text-align: center;
    }
}
.home-solutions .section-title {
    display: flex;
    justify-content: start;
    @media(max-width: 767px) {
        justify-content: center;
    }
}
.home-solutions .section-title .line {
    justify-content: start;
    @media(max-width: 767px) {
        justify-content: center;
    }
}
.solutions-btn-desktop {
    @media(max-width: 991px) {
        display: none !important;
    }
}
.solutions-btn-mobile {
    margin-top: 50px;
    text-align: center;

    a {
        margin: 0 auto;
    }

    @media(min-width: 992px) {
        display: none !important;
    }
}
.home-solutions {
    padding-top: 49px;
    @media(max-width: 991px) {
        padding-bottom: 70px;
    }
    @media(max-width: 767px) {
        padding-bottom: 68px;
    }
}
.home-solutions .row {
    margin-top: 90px;
    display: flex;
    gap: 4px;
    @media(max-width: 991px) {
        gap: 60px;
        flex-flow: column;
        padding: var(--padding-container-mobile);
        margin-top: 60px;
    }
}

.home-solutions .row>* {
    flex: 0 0 33.3333333%;
    @media(max-width: 991px) {
        flex: 0 0 100%;
    }
}
.solution-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-image {
    overflow: hidden;
    @media(max-width: 991px) {
        margin-bottom: 30px;
    }
}
.solution-image a,
.solution-image .solution-image-link {
    padding-bottom: 125.78616352201257861635220125786%;
    position: relative;
    height: 0;
    display: block;
    clip-path: polygon(calc(100% - 162px) 0, 100% 114.5px, 100% 100%, 0 100%, 0 0);

    @media(max-width: 1280px) {
        clip-path: polygon(calc(100% - 138.5px) 0, 100% 98px, 100% 100%, 0 100%, 0 0);
    }
    @media(min-width: 1500) {
        clip-path: polygon(calc(100% - 216px) 0, 100% 114.5px, 100% 100%, 0 100%, 0 0);
    }
}

.solution-image a::after,
.solution-image .solution-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    /* Gradient fills */
    background-image:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}
.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/arrow-red.svg);
    background-size: 23px 15px;
    background-repeat: no-repeat;
    z-index: 3;
    transform: translateX(-23px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    @media(max-width: 991px) {
        transform: translateX(0);
        opacity: 1;
        background-position: calc(100% - 18px) 12.5px;
    }
    @media(min-width: 992px) {
        background-position: calc(100% - 32px) 23.5px;
    }
}
.solution-item:hover .solution-image::before {
    transform: translate(0);
    opacity: 1;
}
.solution-image a img,
.solution-image .solution-image-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
}
.solution-content {
    @media (max-width: 767px) {
        .solution-title *,
        h3.solution-title {
            font-family: var(--font-family-base) !important;
        }
    }
    @media(min-width: 992px) {
        position: absolute;
        bottom: 30px;
        left: 20px;
        width: calc(100% - 40px);
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    @media(min-width: 1280px) {
        bottom: 50px;
        left: 40px;
        width: calc(100% - 80px);
    }
    @media(min-width: 1500px) {
        bottom: 60px;
    }
}

.solution-excerpt {
    margin-top: 20px;
    @media(min-width: 992px) {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        overflow: hidden;
        transition: grid-template-rows 0.5s ease-out, margin-top 0.5s ease-out, opacity 0.5s ease-out;
    }
}

.solution-excerpt-inner {
    min-height: 0;
}

.solution-item:hover .solution-excerpt {
    @media(min-width: 768px) {
        margin-top: 20px;
        grid-template-rows: 1fr;
        opacity: 1;
    }
}
.solution-number {
    @media(min-width: 992px) {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 3;
    }
    @media(min-width: 1280px) {
        top: 40px;
        left: 40px;
    }
}

.solution-title a,
.solution-title .solution-title-link {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit;
    font-family: inherit !important;
    color: inherit;
    line-height: inherit;
}

/* News Section Styles */
.home-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.home-news .section-header .header-action {
    @media(max-width: 767px) {
        display: none;
    }
}
.home-news {
    padding: 160px 0 176px;
    background: var(--color-blue-4);
    position: relative;
    @media (max-width: 767px) {
        padding: 79px 0 60px;
    }
}
.home-news .section-subtitle {
    margin-bottom: 30px;
    text-transform: uppercase;
}
.home-news .section-title {
    text-transform: capitalize;
}
.home-news .row {
    margin: 90px 0 0;
    display: flex;
    gap: 60px;
    @media(max-width: 1279px) {
        gap: 40px;
    }
    @media(max-width: 991px) {
        gap: 20px;
    }
    @media(max-width: 767px) {
        flex-flow: column;
        gap: 0;
        margin: 50px 0 0;
    }
}
.home-news .row>div {
    flex: 0 0 calc((100% - 120px) / 3);
    @media(max-width: 1279px) {
        flex: 0 0 calc((100% - 80px) / 3);
    }
    @media(max-width: 991px) {
        flex: 0 0 calc((100% - 40px) / 3);
    }
    @media(max-width: 767px) {
        flex: 0 0 100%;
    }
}
.home-news .footer-action {
    margin-top: 50px;
    @media(min-width: 768px) {
        display: none;
    }
}
.news-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 60px;
    position: relative;
    @media (max-width:1279px) {
        padding-right: 40px;
    }
    @media (max-width:991px) {
        padding-right: 20px;
    }
    @media (max-width:767px) {
        padding-right: 0;
    }
}
.news-item .line-animation {
    background-color: var(--color-dark-blue);
}

.home-news>.line-animation {
    bottom: 0;
    top: auto;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    @media (max-width:767px) {
        max-width: calc(100% - 60px);
        display: none;
    }
}
.news-item .vertical {
    right: 0;
    transition: background-color 0.5s ease;
    @media (max-width:767px) {
        display: none;
    }
}
.news-item:hover .vertical,
.news-item:hover .horizontal,
.news-item:focus .vertical,
.news-item:focus .horizontal {
    background-color: var(--color-light-blue);
}
.news-item .horizontal {
    bottom: 0;
    top: auto;


    @media (min-width:768px) {
        display: none;
    }
}

.news-date {
    margin-bottom: 12px;
    color: var(--color-grey-2);
}

.news-title {
    margin-bottom: 76px;
    * {
        font-weight: 500;
        color: #fff;
    }

    @media (max-width: 767px) {
        margin-bottom: 30px;
        * {
            font-size: var(--font-size-lead-in);
            line-height: var(--line-height-lead-in);
        }
    }
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit;
    line-height: inherit;
}

.news-meta {
    margin-top: 0;
    padding-top: 0;
    justify-content: space-between;
    display: flex;
    align-content: center;
}

.news-category {
    color: var(--color-blue-3);
    text-transform: uppercase;
}

.news-arrow {
    color: var(--color-red);
    transition: transform 0.5s ease;
}

.news-item-col:hover .news-arrow {
    transform: translateX(-15px);
}

@media (max-width: 767px) {
    .news-item {
        padding-right: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .news-meta {
        border-top: none;
    }
}

/* Logo Section Styles */
.home-logos.section-padding-small {
    overflow: hidden;
    background: var(--color-blue-4);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    @media(max-width: 767px) {
        gap: 20px;
    }
}

.logo-item {
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-dark-blue);
    padding: 10px;
    flex-shrink: 0;
    @media(max-width: 767px) {
        border-radius: 5px;
    }
    @media(min-width: 1500px) {
        width: 275.71px;
    }
}

.logo-item:not(:first-child) {
    @media(min-width: 768px) {
        border-left: none;
    }
}
.logo-item img {
    max-width: 154px;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
    width: 100%;
    height: 100%;
}

.logo-item:hover img {
    filter: none;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

@media (max-width: 767px) {
    .logo-item {
        width: 155px;
        height: 155px;
        padding: 20px;
    }

    .marquee-track {
        gap: 20px;
    }
}

/* Sustainability Section Styles */
.home-sustainability {
    position: relative;
    min-height: 705px;
    overflow: hidden;
    padding-top: 150px;
    background-color: var(--color-blue-4);
    @media(max-width: 767px) {
        padding-top: 0;
        min-height: 843px;
    }
}

.sustainability-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 705px;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
    background-image: var(--bg-desktop);
    @media(max-width: 767px) {
        background-image: var(--bg-mobile, var(--bg-desktop));
    }
}


.sustainability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(0, 35, 64, 0) 0%,
            rgba(0, 35, 64, 1) 100%),
        linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3));
    z-index: 0;
    @media(max-width: 767px) {
        top: 138px;
    }
}

.home-sustainability .section-title {
    justify-content: center;
    text-transform: capitalize;
}
.home-sustainability .section-title .line,
.home-sustainability .section-title .line-wrap {
    justify-content: center;
}
.home-sustainability .container {
    text-align: center;
    @media(max-width: 767px) {
        padding-top: 140px;
    }
}

.home-sustainability .section-subtitle {
    position: relative;
    margin-bottom: 10px;
    text-transform: uppercase;
    @media (max-width: 767px) {
        margin-bottom: 20px;
    }
}
.home-sustainability .btn {
    position: relative;
    margin: 40px auto 0;
    @media(max-width: 767px) {
        margin: 50px auto 0;
    }
}

/* =========================================
   Network Section Styles
   ========================================= */
.home-network {
    padding: 140px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-color: var(--color-blue-4);
    @media(max-width: 991px) {
        padding: 60px 0 80px;
    }
}

.network-header {
    text-align: left;
    max-width: 875px;
    z-index: 2;
    position: relative;
}

.network-subtitle {
    text-transform: uppercase;
    margin-bottom: 20px;
    @media(max-width: 767px) {
        text-align: center;
        margin-bottom: 30px;
    }
}

.network-title {
    text-transform: capitalize;
    @media(max-width: 767px) {
        text-align: center;
    }
}

.network-title .line,
.network-list-title .line {
    @media(max-width: 767px) {
        justify-content: center
    }
}

.network-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 92px;
    @media(max-width: 991px) {
        flex-direction: column;
        gap: 35px;
        margin-top: 60px;
    }
}

.network-list-col {
    width: 300px;
    flex-shrink: 0;
    z-index: 2;
    @media (max-width: 991px) {
        width: 100%;
    }
}

.network-list-title {
    margin-bottom: 40px;
    text-transform: capitalize;
    @media (max-width: 991px) {

        font-size: var(--font-size-heading-5);
        line-height: var(--heading--line-height-h5);
        font-weight: 500;
        margin-bottom: 35px;
    }
}

.network-list-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    @media (max-width: 991px) {
        flex-direction: row;
        overflow-x: auto;
        gap: 25px;
        border-bottom: none;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 30px);
    }
}

.network-list-item {
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    color: var(--color-grey-2);
}

.network-list-item:hover,
.network-list-item.active,
.network-list-item.hover-active {
    opacity: 1;
    color: var(--color-text);
    padding-left: 32px;
    @media (max-width: 991px) {
        padding-left: 0;
    }
}

.network-list-item:before {
    content: '';
    display: block;
    position: absolute;
    left: 3px;
    top: 6.52px;
    width: 12px;
    height: 12px;
    opacity: 0;
    background-color: var(--color-red);
    transform: rotate(45deg);
    transition-duration: 0.75s;
    @media (max-width: 991px) {
        display: none;
    }
}

.network-list-item:hover:before,
.network-list-item.active:before,
.network-list-item.hover-active:before {
    opacity: 1;
    @media (max-width: 991px) {
        display: none;
    }
}
.network-list-item .location-name {
    white-space: nowrap;
}

.network-map-col {
    position: relative;
    position: absolute;
    height: calc(100% - 206px);
    width: 1440px;
    z-index: 0;
    top: auto;
    bottom: 0;
    left: 50%;
    max-width: 1440px;
    margin: 0 auto;
    transform: translateX(-50%);
    max-height: 784px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container .o-media {
    padding: 0 !important;
    height: 100%;
}
.map-container picture {
    position: relative;
    top: auto;
    left: auto;
}
.network-map-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    object-fit: cover;
}

.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-inner {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--color-blue-3);
    border-radius: 0;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.map-dot:hover .dot-inner,
.map-dot.active .dot-inner,
.map-dot.hover-active .dot-inner {
    background-color: var(--color-red);
    border-radius: 0;
    transform: rotate(45deg);
    width: 16px;
    height: 16px;
}

.map-dot .tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.map-dot:hover .tooltip {
    opacity: 1;
}
.network-preview-col {
    width: 330px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-top: 46px;
    @media(max-width: 991px) {
        width: 100%;
        padding: 0;
    }
}

.network-preview-swiper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.home-network.is-loaded .network-preview-swiper {
    opacity: 1;
}

.preview-card {
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.preview-card.swiper-slide-active {
    opacity: 1;
}
.home-network .card-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
}
.home-network .card-image .o-media {
    padding-bottom: 60.606060606060606060606060606061% !important;
}

.home-network .card-content {
    padding: 22px 30px;
    background: var(--color-dark-blue-2);
}

.home-network .card-title {
    margin-bottom: 5px;
}

.home-network .card-office {
    color: var(--color-grey-2);
}

.home-network .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 68px;
    @media (max-width: 991px) {
        margin-top: 30px;
    }
}
.home-network .card-footer .flag-icon {
    width: 40px;
    height: 26px;
    object-fit: cover;
}
.home-network .flag-icon {
    width: 40px;
    height: auto;
}

.home-network .nav-arrows {
    display: flex;
    gap: 30px;
}

.home-network .nav-arrow {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
    padding: 0;
    line-height: 1;
    outline: none;
    @media(max-width: 991px) {
        width: 21px;
    }
}

.home-network .nav-arrow:hover {
    background: none;
}

.home-network .nav-arrow.disable,
.home-network .nav-arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: auto;
}

@media (max-width: 991px) {
    .network-map-col {
        display: none;
    }

    .home-network .preview-card {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .network-list-item:last-child {
        padding-right: 30px
    }
}