﻿/* Colours */
:root {
    --bg: #F2F2F2;
    --black: #0D0D0D;
    --blue: #26488C;
    --blue-dark: #2B3D62;
    --blue-light: #B2CBFF;
    --blue-lighter: #C4D8FF;
    --blue-lightest: #DCE8FF;
    /* transparents */
    --blue-transparent: #26488c1c;
    --blue-very-transparent: #26488c11;
    --bg-transparent: #f2f2f21c;
    --transparent: #fffffc00;
    --emphasis: blue;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--black);
}
  
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Resets */

a {
    text-decoration: none;
    color: inherit;
}

.modal-img {
    width: 100%;
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    background-color: var(--blue-lightest);
}

.accordion-button:hover {
    background-color: var(--blue-lighter);
}

.accordion-button:not(.collapsed) {
    background-color: var(--emphasis);
    color: var(--bg)
}

/* Cookies */

#cookie-banner {
    position: fixed;
    bottom: 10%;
    width: 40%;
    left: 30%;
    padding: 20px;
    background-color: var(--bg);
    box-shadow: 0px 0px 100px var(--blue-transparent);
    text-align: center;
    z-index: 10000;
    display: none; /* Hidden by default */
    border-radius: .2rem;
}
@media (max-width: 992px) {
    #cookie-banner {
        position: fixed;
        bottom: auto;
        top: 40%;
        width: 90%;
        left: 5%;
    } 
}
h1.cookie {
font-weight: 600;
font-size: 1.2rem!important;
color: var(--blue);
}
p.cookie {
font-weight: 300;
font-size: .9rem!important;
}
.btn-cookies-accept {
margin-left: .3rem;
margin-right: .3rem;
background-color: var(--blue);
color: var(--bg);
box-shadow: 0px 0px 100px var(--blue-transparent);
border-radius: 0;
}
.btn-cookies-reject {
margin-left: .3rem;
margin-right: .3rem;
background-color: var(--blue-lightest);
box-shadow: 0px 0px 100px var(--blue-transparent);
border-radius: 0;
}
.btn-cookies-settings {
margin-left: .3rem;
margin-right: .3rem;
background-color: var(--blue-lightest);
box-shadow: 0px 0px 100px var(--blue-transparent);
border-radius: 0;
}
.btn-cookies-accept:hover,
.btn-cookies-accept:active,
.btn-cookies-reject:hover,
.btn-cookies-reject:active,
.btn-cookies-settings:hover,
.btn-cookies-settings:active {
background-color: var(--emphasis);
color: var(--bg);
box-shadow: 0px 0px 100px var(--blue-transparent);
}

/* Navbar */

.navbar.light {
    background-color: var(--blue-lightest);
    box-shadow: 0px 0px 100px var(--blue-transparent);
}

.navbar .nav-link, .navbar .dropdown-item, .navbar .dropdown-divider {
    color: var(--blue);
    font-size: 1rem;
}

.navbar img {
    height: 2.4rem;
}

.nav-link.active {
    color: var(--blue)!important;
    text-decoration: underline;
}
.nav-link.active:hover {
    color: var(--emphasis)!important;
    text-decoration: underline;
}

.dropdown-item.active {
    color: var(--blue)!important;
    text-decoration: underline;
}
.dropdown-item.active:hover {
    color: var(--emphasis)!important;
    text-decoration: underline;
}

.navbar a:hover {
    text-decoration: underline;
    color: var(--emphasis);
}

.navbar .dropdown-menu {
    --bs-dropdown-bg: var(--blue-lightest);
    --bs-dropdown-border-color: none;
    --bs-dropdown-border-radius: 0;
    box-shadow: 0px 0px 100px var(--blue-transparent);
    transform: translateY(0.25rem);
    a.dropdown-item {
        background-color: inherit;
    }
}

.navbar-nav .nav-link.show {
    color: var(--emphasis);
}

/* Buttons */

.btn-primary {
    background-color: var(--emphasis);
    color: var(--bg);
    font-weight: 500;
    border: none;
    border-radius: 0;
}
.btn-primary:hover {
    background-color: var(--blue);
    color: var(--bg);
    transition: all 600ms ease;
}
.btn-primary i {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-primary.inverse {
    background-color: var(--blue);
}
.btn-primary.inverse:hover {
    background-color: var(--black);
}

.btn-primary.bg {
    background-color: var(--bg);
    border: 1px solid var(--black);
    color: var(--black);
}
.btn-primary.bg:hover {
    background-color: var(--blue-lightest);
}

.btn-header {
    background-color: var(--bg);
    color: var(--black);
    font-weight: 400;
    border-color: var(--black);
    border-radius: 0;
    border-width: 1px;
    font-size: clamp(1rem, 2.5vw, 1.7rem);
    margin: 0;
    margin-right: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.btn-header:hover {
    background-color: var(--blue-lightest);
    transition: all 600ms ease;
}
.btn-header i {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.btn-header:hover i {
    transform: translateX(3px);
}

.btn-header-inverse {
    background-color: var(--black);
    color: var(--bg);
}
.btn-header-inverse:hover {
    background-color: var(--bg);
    color: var(--black);
    border-color: var(--black);
}

/* Header */

.container.header {
    margin-top: 5rem;
    height: 80vh;
    max-height: 750px;
    min-height: 300px;
}

.header h1 {
    text-align: left;
    line-height: 1.618*5rem;
    margin-bottom: 1.618*5rem;
    font-size: clamp(3rem, 5vw, 5rem);
}

.header p {
    text-align: left;
    line-height: 1.618*1.7rem;
    margin-bottom: 1.618*1.7rem;
    font-size: clamp(1.5rem, 2vw, 1.7rem);
}

@media (max-width: 992px) {
    .container.header {
        margin-top: 8rem;
        height: 40vh;
        max-height: 500px;
        min-height: 350px;
    }
    /* .masked-video-container {
        transform: translateY(-50%) translateX(20%);
    } */
}
@media (max-width: 768px) {
    .container.header {
        margin-top: 25vh;
        margin-bottom: 10vh;
        height: 60vh;
        max-height: 350px;
        min-height: 250px;
    }
}
@media (max-width: 576px) {
    .container.header {
        margin-top: 30vh;
        height: 50vh;
        max-height: 450px;
        min-height: 300px;
    }
}

#typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--black);
    animation: blink-caret 1.3s step-end infinite;
    vertical-align: bottom; /* Aligns the span with the baseline of the text */
    line-height: 1.618*5rem;
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--black); }
}
/* .masked-video-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(75%);
    height: 80%;
    mask-image: url('../image/bands-logo-only.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: -999;
    overflow: hidden;
}
@media (max-width: 1400px) {
    .masked-video-container {
        transform: translateY(-50%) translateX(85%);
    }
}
@media (max-width: 1300px) {
    .masked-video-container {
        transform: translateY(-50%) translateX(70%);
    }
}
@media (max-width: 1200px) {
    .masked-video-container {
        transform: translateY(-50%) translateX(40%);
    }
}
@media (max-width: 1100px) {
    .masked-video-container {
        transform: translateY(-50%) translateX(70%);
    }
} */

@media (min-width: 768px) {
    .masked-video-container {
      position: absolute;
      top: 0;
      right: -5%; /* Move further right, adjust as needed */
      bottom: 0;
      width: 50%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      z-index: -1; /* Negative to place behind text */
      mask-image: url('../image/bands-logo-only.png');
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-image: url('../image/bands-logo-only.png');
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }
    .header {
      position: relative;
      z-index: 1; /* Ensure header content is above */
    }
}

.masked-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

/* Solution Overview */

.container.solution-overview {
    margin-top: 5rem;
    margin-bottom: 8rem;
}

.solution-overview .col-lg-12, .solution-overview .col-4 {
    height: 100%;
}
.solution-overview .box {
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0px 0px 100px var(--blue-transparent);
    h1 {
        font-size: 2.4rem;
    }
    p {
        font-size: 1.2rem;
    }
}
.solution-overview .box.left {
    margin-left: 0;
}
.solution-overview .box.right {
    margin-right: 0;
}
.solution-overview .box .highlight {
    margin-top: auto;
}
@media (max-width: 992px) {
    .solution-overview .col-12 {
        height: calc(100% - 1rem);
    }
    .solution-overview .box {
        margin-left: 0;
        margin-right: 0;
        margin-top: 1rem;
    }
}

.box h1.link:hover {
    color: var(--blue);
    text-decoration: underline;
}

.box p.highlight {
    color: var(--blue);
    font-weight: 500;
}
.box p.highlight:hover {
    cursor: pointer;
    text-decoration: underline;
    transition: all 600ms ease;
}

.highlight a i {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.highlight:hover a i {
    transform: translateX(5px);
}

/* Latest News */

h1.section-title {
    position: relative;
    margin: 0; /* Remove default margin */
    line-height: 3.618rem; /* Ensure the line height is set */
    font-size: 3.618rem;
}
h1.section-title::before {
    content: "";
    display: inline-block;
    width: 2rem; /* Adjust the width as needed */
    height: 2.8rem; /* Match the height of the h1 element */
    background-color: var(--emphasis);
    margin-right: 10px; /* Space between the rectangle and the h1 */
    vertical-align: middle; /* Align with the middle of the h1 */
    transform: translateY(-10%);
}

.container.news {
    h1 a:hover {
        text-decoration: underline;
    }
}
.container.latest-news {
    margin-top: 2rem;
    margin-bottom: 8rem;
    h1 {
        margin-bottom: 1.7rem;
    }
}

.latest-news .box {
    border: 1px solid var(--blue);
    height: 100%;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    p.date {
        font-size: .9rem;
    }
    h1 {
        font-size: clamp(1.4rem, 1.8vw, 2rem);
    }
    p {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
    }
    .highlight {
        margin-top: auto;
    }
}
.latest-news .box.left {
    margin-left: 0;
}
.latest-news .box.right {
    margin-right: 0;
}
@media (max-width: 992px) {
    .latest-news .col-12 {
        height: calc(100% - 1rem);
    }
    .latest-news .box {
        margin-left: 0;
        margin-right: 0;
        margin-top: 1rem;
    }
}

/* Our Markets */

.container.our-markets {
    margin-bottom: 8rem;
    h1 {
        margin-bottom: 1rem;
    }
    h1 a:hover {
        text-decoration: underline;
    }
    .box {
        padding: 1.7rem;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100% - 1rem);
        position: relative;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        h1 {
            padding-top: .5rem;
            font-size: clamp(1.4rem, 2.5vw, 2.1rem);
            text-transform: uppercase;
            font-weight: 300;
        }
        p {
            font-size: clamp(1.1rem, 1.7vw, 1.3rem);
            font-weight: 500;
        }
        .highlight {
            color: var(--bg);
        }
    }
    .box.agriculture:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/agri-barley.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.agriculture {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.agriculture:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/agri-barley.jpg);
    }
    .box.metals:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/metals-steel-mill.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.metals {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.metals:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/metals-steel-mill.jpg);
    }
    .box.energy:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/energy-tanker-3.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.energy {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.energy:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/energy-tanker-3.jpg);
    }
    .box.freight:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/freight-port-dynamic.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.freight {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.freight:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/freight-port-dynamic.jpg);
    }
    .box.industrial:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/industrial-fiber.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.industrial {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.industrial:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/industrial-fiber.jpg);
    }
    .box.fx:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/fx-rmb.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.fx {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.fx:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/fx-rmb.jpg);
    }
    .box.battery:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/battery-ev.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.battery {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.battery:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/battery-ev.jpg);
    }
}

/* Our Solutions */

.container.our-solutions {
    margin-bottom: 2.6rem;
    h1 {
        margin-bottom: 1.7rem;
    }
    h1 a:hover {
        text-decoration: underline;
    }
}

.solutions {
    h1 {
        font-size: clamp(1.3rem, 2.5vw, 1.7rem);
        font-size: clamp(1.6rem, 2vw, 2rem);
        margin-bottom: .3rem!important;
    }
    h2 {
        font-size: 1.2rem;
        font-weight: 300;
        text-transform: uppercase;
    }
    p {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
    }
    p.highlight {
        color: var(--blue);
        font-weight: 500;
        margin-bottom: 2.4rem;
    }
    p.highlight:hover {
        cursor: pointer;
        text-decoration: underline;
        transition: all 600ms ease;
    }
    input {
        border-color: var(--black);
        border-width: 1px;
        background-color: var(--bg);
        width: auto;
        transition: all 600ms ease;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
    textarea {
        border-color: var(--black);
        border-width: 1px;
        background-color: var(--bg);
        width: 100%;
        transition: all 600ms ease;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
}

/* China Market Access */

.china-market-glance {
    background-image: url(../image/shanghai-skyline.svg);
    background-size: cover; /* Ensures the image covers the entire element */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
}

.container.china-market-access {
    margin-bottom: 8rem;
    h1 {
        margin-bottom: 1.7rem;
    }
    h1 a:hover {
        text-decoration: underline;
    }
}

.china-market-access{
    h2 {
        font-size: clamp(1.4rem, 1.8vw, 2rem);
    }
    p {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
    }
}

/* Social Media */

.container.social-feed {
    margin-bottom: 8rem;

    /* background: radial-gradient(ellipse, var(--blue-lightest) 0%, var(--bg) 70%); */

    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1.2rem;
        line-height: 1.9rem;
        margin-bottom: 1.7rem;
    }
    p.highlight a {
        color: var(--blue);
    }
    p.highlight a:hover {
        cursor: pointer;
        text-decoration: underline;
        transition: all 600ms ease;
    }
    .row.text {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.embedded-post-container {
    height: 500px;
    overflow: hidden; /* Hide the scrollbar */
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.embedded-post {
    width: 100%;
    height: 100%;
    border: none;
    overflow-y: scroll; /* Enable vertical scrolling */
    -ms-overflow-style: none;  /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

.embedded-post::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}


/* Footer */

.footer {
    padding: 1.6rem 0;
    background-color: var(--blue-lightest);
    .sitemap {
        padding: 1.6rem 0;
        h1 {
            font-size: 1rem;
            font-weight: 500;
        }
        p {
            font-size: 1rem;
            font-weight: 300;
        }
        h1.tag-line {
            font-size: 1.6rem;
            font-weight: 500;
        }
        h1.follow-us {
            font-size: 1.1rem;
            font-weight: 500;
        }
        h1 a i:before {
            border: 1px solid var(--black);
            border-radius: 50%;
            padding: .4rem;
            margin: 0;
        }
        h1 a i {
            color: var(--black);
            font-size: 1.1rem;
        }
        h1 a i:hover {
            color: var(--emphasis);
        }
        h1 a i:hover:before {
            border: 1px solid var(--emphasis);
        }
        .newsletter {
            font-size: 1.1rem;
            font-weight: 500;
        }
        .newsletter a:hover {
            text-decoration: underline;
            color: var(--emphasis);
        }
        .newsletter a i {
            position: relative;
            display: inline-block;
            transition: transform 0.3s ease-in-out;
        }
        .newsletter a:hover i {
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            text-align: center;
        }
        .footer-link:hover {
            color: var(--emphasis);
        }
        .modal-content {
            border: none;
            border-radius: 0;
        }
        .modal-header {
            border-radius: 0;
            border: none;
            padding-bottom: 0;
            button {
                padding: 1rem;
                padding-bottom: 0;
                z-index: 999;
                opacity: 100%;
                color: var(--black);
            }
        }
        .modal-body {
            padding-top: 0;
        }
    }
    .statement {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        p {
            font-size: 1rem;
            font-weight: 300;
        }
    }
}



/* Disclaimer */

.container.policy {
    margin-bottom: 3rem;
    .row {
        display: flex;
        justify-content: center;
        align-items: center;
        h1 {
            padding-top: 7rem;
            padding-bottom: 1rem;
        }
    }
    a {
        color: var(--blue);
    }
    a:hover {
        text-decoration: underline;
    }
    ul {
        list-style: none;
    }
    ul.decoration {
        list-style: disc;
    }
}

.disclaimer-list {
    font-size: 1.6rem;
    font-weight: 500;
    h2 {
        font-size: 1.6rem;
        font-weight: 500;
    }
    ol {
        margin-bottom: 1rem;
        li {
            margin-bottom: .5rem;
        }
    }
    ul {
        margin-bottom: 1rem;
        li {
            margin-bottom: .5rem;
        }
    }
}

.disclaimer-list-inner {
    font-size: 1rem;
    font-weight: 400;
}




/* Contact */

.container.contact-us-page {
    margin-top: 7rem;
    margin-bottom: 3rem;
    h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .col-lg-12, .col-4 {
        height: 100%;
    }
    .row {
        margin-bottom: 1.5rem;
    }
    .row.contact-form-section {
        margin-top: 5rem;
    }
    .box {
        padding: 1.7rem;
        padding-bottom: 3.2rem;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: calc(100% - 1.5rem);
        box-shadow: 0px 0px 100px var(--blue-transparent);
        min-width: 305px;
        h1 {
            font-size: 1.7rem;
        }
        h2 {
            font-size: 1.1rem;
            margin-bottom: .6rem;
        }
        p {
            font-size: 1.1rem;
        }
    }
    .box.left {
        margin-left: 0;
    }
    .box.right {
        margin-right: 0;
    }
    .box p.bottom {
        margin-top: 1.1rem;
        margin-bottom: 0;
    }
    .contact-us-img {
        height: 100%;
        object-fit: cover;
        overflow: hidden;
    }
    .box.photo {
        padding: 0;
        margin-bottom: 0;
    }
    @media (max-width: 992px) {
        .col-12 {
            height: calc(100% - 1rem);
        }
        .box {
            margin-left: 0;
            margin-right: 0;
            margin-top: 1.5rem;
            padding-bottom: 2.7rem;
        }
        .box.photo {
            padding: 0;
            margin-bottom: 0;
            height: 28.64rem;
        }
    }
    
    .box h1.link:hover {
        color: var(--blue);
        text-decoration: underline;
    }

    .box a.highlight {
        color: var(--blue);
        font-weight: 500;
    }
    .box a.highlight:hover {
        cursor: pointer;
        text-decoration: underline;
        transition: all 600ms ease;
    }

    input {
        border-color: var(--black);
        border-width: 1px;
        background-color: var(--bg);
        width: auto;
        transition: all 600ms ease;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
    textarea {
        border-color: var(--black);
        border-width: 1px;
        background-color: var(--bg);
        width: 100%;
        transition: all 600ms ease;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
}

.contact-map {
    width: 100%;
    min-height: 300px;
    height: 100%;
    object-fit: contain;
}

/* News */

.container.news-page {
    margin-top: 7rem;
    margin-bottom: 3rem;
    .active-filter {
        background-color: var(--emphasis);
        color: var(--bg);
    }
    .filter-btn {
        margin-top: .1rem;
        margin-bottom: .1rem;
    }
    .row {
        margin-bottom: 2.5rem;
    }
    .box {
        margin: .5rem;
        padding: 1.7rem;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        display: flex;
        flex-direction: column;
        justify-content: start;
        position: relative;
        height: calc(100% - 1rem);
    }
    .article {
        margin: 0;
        padding: 0;
        h1 {
            font-size: 1.7rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: .9rem;
            margin-bottom: .6rem;
            font-weight: 300;
        }
        p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        a.highlight {
            position: absolute;
            bottom: 1.7rem;
            color: var(--blue);
            font-weight: 500;
        }
        a.highlight:hover {
            cursor: pointer;
            text-decoration: underline;
            transition: all 600ms ease;
        }
        p a i {
            position: relative;
            display: inline-block;
            transition: transform 0.3s ease-in-out;
        }
        p a:hover i {
            transform: translateX(5px);
        }
    }
}

.container.article {
    margin-top: 7rem;
    margin-bottom: 3rem;
    a.return-link {
        color: var(--blue);
    }
    a.return-link:hover {
        text-decoration: underline;
    }
    .row.content {
        display: flex;
        justify-content: center;
        align-items: center;
        #articleContent {
            border-radius: 1rem;
            padding: 2rem;
            padding-left: 3rem;
            padding-right: 3rem;
            box-shadow: 0px 0px 100px var(--blue-transparent);
        }
    }
    .related-news {
        margin-top: 3rem;
        margin-bottom: 1.6rem;
    }
    .related-article {
        margin: 0;
        padding: 0;
        .box {
            margin: .5rem;
            padding: 1.7rem;
            box-shadow: 0px 0px 100px var(--blue-transparent);
            display: flex;
            flex-direction: column;
            justify-content: start;
            position: relative;
            height: calc(100% - 1rem);
        }
        h1 {
            font-size: 1.7rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: .9rem;
            margin-bottom: .6rem;
            font-weight: 300;
        }
        p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        a.highlight {
            position: absolute;
            bottom: 1.7rem;
            color: var(--blue);
            font-weight: 500;
        }
        a.highlight:hover {
            cursor: pointer;
            text-decoration: underline;
            transition: all 600ms ease;
        }
        p a i {
            position: relative;
            display: inline-block;
            transition: transform 0.3s ease-in-out;
        }
        p a:hover i {
            transform: translateX(5px);
        }
    }
    h1 {
        font-size: 2.6rem;
        font-size: clamp(1.8rem, 3.4vh, 2.4rem);
        margin: 0;
        margin-bottom: .6rem;
    }
    h2 {
        font-size: 1.6rem;
        margin: 0;
        margin-bottom: .6rem;
    }
    h2.date {
        font-size: 1rem;
        font-weight: 300;
        margin-bottom: .6rem;
        text-transform: capitalize;
    }
    p {
        font-size: 1rem;
        margin-top: .6rem;
        margin-bottom: .6rem;
    }
    quote {
        color: var(--blue);
        font-size: 1.6rem;
        font-style: italic;
    }
}

img.header-img {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-height: 61.8%;
    object-fit: cover;
}

img.content-img {
    margin-top: .6rem;
    margin-bottom: .6rem;
    width: 100%;
}

/* About Us */

.about-us-header {
    margin-top: 13rem;
    margin-bottom: 3rem;
    h1 {
        font-size: clamp(2.8rem, 6vh, 3.4rem);
        margin-bottom: 1.7rem;
        color: var(--emphasis);
    }
    p {
        font-size: 1.2rem;
        line-height: 1.9rem;
        margin-bottom: 1.7rem;
    }
    .row {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.about-us-group {
    margin-top: 4rem;
    margin-bottom: 3rem;
    h1 {
        font-size: 3.4rem;
        color: var(--emphasis);
        text-align: center;

    }
    h2 {
        font-size: 1.6rem;
        margin-top: 1.6rem;
    }
    p {
        font-size: 1rem;
        line-height: 1.9rem;
        margin-bottom: .5rem;
    }
    .row {
        display: flex;
        justify-content: center;
    }
}

.about-us-team {
    margin-top: 5rem;
    margin-bottom: 3rem;
    .row.header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        h1 {
            font-size: 3.4rem;
            color: var(--emphasis);
            text-align: center;
        }
    }
    h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .col-lg-12, .col-md-6, .col-4 {
        margin-bottom: 1.5rem;
    }
    .row {
        margin-bottom: 1.5rem;
        .col-6, .col-12 {
            margin-bottom: 1.4rem;
        }
        .box {
            position: relative;
            box-shadow: 0px 0px 100px var(--blue-transparent);
            padding: 2.2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            h1 {
                font-size: 1.7rem;
                margin-bottom: .6rem;
            }
            h2 {
                font-size: 1.1rem;
                margin-bottom: .6rem;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: .6rem;
            }
            p.bottom {
                margin-top: auto;
                margin-bottom: 0;
            }
            .highlight {
                color: var(--blue);
                margin-top: auto;
                margin-bottom: 0;
            }
            a.highlight:hover {
                text-decoration: underline;
            }
            a.highlight i {
                font-size: 1.7rem;
            }
            a.highlight:hover i {
                color: var(--black);
            }
        }
    }
}

/* Team Card Styles - Responsive Card Layout */
.team-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-card-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 15px;
}

.team-card-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-card-avatar {
        width: 120px;
        height: 120px;
    }

    .team-card-name {
        font-size: 1.3rem;
    }

    .team-card {
        padding: 25px 15px;
    }
}

/* Contact Card Styles - Enhanced version of team-card with contact info */
.contact-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.contact-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-card-info {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-card-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-info a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.contact-card-info i {
    margin-right: 5px;
}

/* Contact Hero Section */
.contact-hero {
    margin-bottom: 30px;
}

.contact-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-address-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-address-box h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-address-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive adjustments for contact cards */
@media (max-width: 768px) {
    .contact-card-avatar {
        width: 120px;
        height: 120px;
    }

    .contact-card-name {
        font-size: 1.3rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-address-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.about-us-timeline {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .timeline {
        position: relative;
        width: 100%;
        max-width: 992px;
        margin: 0 auto;
        padding: 1rem 0;
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 2px;
        background: var(--blue);
        background: linear-gradient(rgba(0,0,255,0) 0%, var(--blue) 10%, var(--blue) 90%, rgba(0,0,255,0) 100%);
        top: 0;
        bottom: 0;
        left: 75%;
        margin-left: -1px;
    }

    .container {
        padding: 1rem 2rem;
        position: relative;
        width: 50%;
    }

    .container.left {
        left: 0;
    }

    .container.right {
        left: 50%;
    }

    .container::after {
        content: '';
        position: absolute;
        width: 1rem;
        height: 1rem;
        top: calc(50% - .5rem);
        right: -.5rem;
        background: var(--bg);
        border: 2px solid var(--blue);
        border-radius: 1rem;
        z-index: 1;
    }

    .container.right::after {
        left: -.5rem;
    }

    .container::before {
        content: '';
        position: absolute;
        width: 2rem;
        height: 2px;
        top: calc(50% - 1px);
        right: .5rem;
        background: var(--blue);
        z-index: -1;
    }

    .container.right::before {
        left: .5rem;
    }

    .container .date {
        position: absolute;
        display: inline-block;
        top: calc(50% - 1.2rem);
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--blue);
        z-index: 1;
    }

    .container.left .date {
        right: -6rem;
    }

    .container.right .date {
        left: -6rem;
    }

    .container .content {
        padding: 1.7rem;
        padding-left: 2.4rem;
        position: relative;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        background-color: var(--bg);
        border: solid 2px var(--blue);
    }

    .container .content h1 {
        font-size: 1.6rem;
        font-size: clamp(1.3rem, 3vh, 1.6rem);
        margin: 0;
        margin-bottom: 1rem;
        padding: 0;
    }

    .container .content p {
        font-size: 1rem;
        margin: 0;
        margin-top: .5rem;
        padding: 0;
    }

    @media (max-width: 768px) {
        .timeline::after {
            left: 6rem;
        }

        .container {
            width: 100%;
            padding-left: 8rem;
            padding-right: 2rem;
        }

        .container.right {
            left: 0%;
        }

        .container.left::after, 
        .container.right::after {
            left: 88px;
            left: 5.5rem;
        }

        .container.left::before,
        .container.right::before {
            left: 6rem;
            border-color: transparent var(--blue) transparent transparent;
        }

        .container.left .date,
        .container.right .date {
            right: auto;
            left: 1rem;
        }

        .container.left .content,
        .container.right .content {
            padding: 1.6rem;
        }
    }
}

/* Solutions */

.solutions-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    .container {
        margin-top: 13rem;
        margin-bottom: 3.4rem;
        .header {
            h1 {
                font-size: 3.4rem;
                margin-bottom: 1.1rem;
                color: var(--black);
            }
            h2 {
                font-size: 1.7rem;
                margin-bottom: 1.1rem;
                color: var(--blue);
            }
            p {
                font-size: 1.1rem;
                line-height: 1.9rem;
                margin-bottom: 1.7rem;
                color: var(--black);
            }
        }
    }
}
.solutions-page {
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    .section {
        .col-6, .col-12 {
            margin-bottom: 1.4rem;
        }
        p {
            margin: 0;
            font-size: 1.1rem;
            line-height: 1.9rem;
            margin-bottom: 1.7rem;
        }
        p.no-margin {
            margin-bottom: 0;
        }
        .text-container {
            position: relative;
            box-shadow: 0px 0px 100px var(--blue-transparent);
            padding: 2.2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            h1 {
                font-size: clamp(1.6rem, 2.5vh, 2.2rem);
                font-weight: 500;
                color: var(--blue);
                text-transform: uppercase;
            }
            .highlight {
                color: var(--blue);
                margin-top: auto;
                margin-bottom: 0;
            }
            .highlight a:hover {
                text-decoration: underline;
            }
            .highlight a i {
                position: relative;
                display: inline-block;
                transition: transform 0.3s ease-in-out;
            }
            .highlight:hover a i {
                transform: translateX(5px);
            }
        }
    }
    .solutions-for {
        margin-top: 5.4rem;
        margin-bottom: 5.4rem;
        h1 {
            margin-bottom: 1rem;
        }
        .box {
            padding: 1.7rem;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: calc(100% - 1rem);
            position: relative;
            box-shadow: 0px 0px 100px var(--blue-transparent);
            h1 {
                padding-top: .5rem;
                font-size: clamp(1.4rem, 2.5vw, 2.1rem);
                text-transform: uppercase;
                font-weight: 300;
            }
            p {
                font-size: clamp(1.1rem, 1.7vw, 1.3rem);
                font-weight: 500;
            }
            .highlight {
                color: var(--bg);
            }
        }
        .box.traders:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -999;
            /* opacity: 0.9; */
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0.7)
              ),
              url(../image/traders-2.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .box.traders {
            position: relative;
            z-index: 1;
            color: var(--bg);
        }
        .box.traders:hover:before {
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.8),
                rgba(0, 0, 0, 0.8)
              ),
              url(../image/traders-2.jpg);
        }
        .box.hedgers:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -999;
            /* opacity: 0.9; */
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0.7)
              ),
              url(../image/industry-2.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .box.hedgers {
            position: relative;
            z-index: 1;
            color: var(--bg);
        }
        .box.hedgers:hover:before {
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.8),
                rgba(0, 0, 0, 0.8)
              ),
              url(../image/industry-2.jpg);
        }
        .box.brokers:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -999;
            /* opacity: 0.9; */
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0.7)
              ),
              url(../image/brokers-2.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .box.brokers {
            position: relative;
            z-index: 1;
            color: var(--bg);
        }
        .box.brokers:hover:before {
            background-image: linear-gradient(
                rgba(0, 0, 0, 0.8),
                rgba(0, 0, 0, 0.8)
              ),
              url(../image/brokers-2.jpg);
        }
    }
}



/* Markets */

.markets-page {
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    .box.china:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/shanghai-flag.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.china {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.china:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
          ),
          url(../image/shanghai-flag.jpg);
    }
}

.solutions-header .market-summary {
    h1 {
        font-size: 1.7rem;
        margin-bottom: 1.1rem;
        color: var(--blue);
    }
    p {
        font-size: 1.1rem;
        line-height: 1.9rem;
        margin-bottom: .6rem;
        color: var(--black);
    }
}

.markets-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    .btn-primary {
        margin-top: .1rem;
        margin-bottom: .1rem;
    }
    .container {
        margin-top: 11rem;
        margin-bottom: 1.4rem;
        .header {
            h1 {
                font-size: 3.4rem;
                margin-bottom: 1.1rem;
                color: var(--black);
            }
            h2 {
                font-size: 2rem;
                margin-bottom: 1.1rem;
                color: var(--blue);
            }
            p {
                font-size: 1.2rem;
                line-height: 1.9rem;
                margin-bottom: 1.7rem;
                color: var(--black);
            }
        }
        .market-summary {
            h1 {
                font-size: 2rem;
                margin-top: 1.1rem;
                margin-bottom: 1.1rem;
                color: var(--blue);
            }
            p {
                font-size: 1.2rem;
                line-height: 1.9rem;
                margin-bottom: .6rem;
                color: var(--black);
            }
        }
    }
}

/* Markets - China */

.container-fluid.china-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    .card-container {
        perspective: 1000px;
    }
    .card {
        width: 100%;
        height: 30rem;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.9s;
        margin-top: .75rem;
        margin-bottom: .75rem;
        border-radius: 1rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
    .card.flipped {
        transform: rotateY(180deg);
    }
    .front, .back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 1rem;
    }
    .front {
        background-color: var(white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .back {
        background-color: var(--bg);
        transform: rotateY(180deg);
    }
    .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .card-img-top {
        max-width: 350px;
    }

    .why-china {
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        background-color: var(--bg-transparent);
    }
    .chart-container {
        position: relative;
        width: 100%;
        padding-bottom: 75%; /* 4:3 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    .chart-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .chinese-contracts {
        background-color: var(--bg);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        h2 {
            color: var(--blue-dark);
        }
    }
    .contract-box {
        border: none;
        border-radius: 2rem;
        padding: .5rem;
        margin-bottom: .5rem;
        transition: background-color 0.3s, max-height 0.3s;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        color: var(--bg);
    }
    .contract-box:hover {
        background-color: #EB7687;
        background: linear-gradient(45deg, #4b6cb7 0%, #182848 100%);
    }
    .contract-box.ine {
        background-color: #EB7687;
        background: linear-gradient(45deg, #4b6cb7 0%, #182848 100%);
    }
    .contract-box.ine:hover {
        background-color: #EB5269;
        background: linear-gradient(45deg, #4165bb 0%, #14264b 100%);
    }
    .contract-box.gfex {
        background-color: #6DA7D9;
    }
    .contract-box.gfex:hover {
        background-color: #4C98D9;
    }
    .contract-box.shfe {
        background-color: #5D8BB9;
    }
    .contract-box.shfe:hover {
        background-color: #417DB9;
    }
    .contract-box.dce {
        background-color: #E2717A;
        background: linear-gradient(45deg, #d53369 0%, #da8351 100%);
    }
    .contract-box.dce:hover {
        background-color: #E24F5B;
        background: linear-gradient(45deg, #d82863 0%, #da7a43 100%);
    }
    .contract-box.cffex {
        background-color: #EBC882;
    }
    .contract-box.cffex:hover {
        background-color: #EBB852;
    }
    .contract-box.zce {
        background-color: #46688C;
        background: linear-gradient(45deg, #1CB5E0 0%, #000851 100%);
    }
    .contract-box.zce:hover {
        background-color: #315D8C;
        background: linear-gradient(45deg, #0eb4e2 0%, #00063d 100%);
    }
    .commodity-img {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        margin-right: .5rem;
    }
    .contract-info {
        flex-grow: 1;
        h5 {
            margin: 0;
            font-size: clamp(.8rem, 1.6vh, 1.2rem);
        }
        p {
            margin: 0;
            font-size: clamp(.8rem, 1vh, 1rem);
        }
    }
    .contract-details {
        display: none;
        margin: 1rem;
        margin-left: 3.5rem;
        th {
            vertical-align: top;
        }
        td {
            vertical-align: top;
            padding-left: .5rem;
        }
        a {
            color: var(--blue-lightest);
            text-decoration: underline;
        }
        a:hover {
            color: var(--emphasis);
        }
    }
    /* .contract-box.expanded {
        max-height: 500px;
    } */
    .contract-box.expanded .contract-details {
        display: block;
    }

    .market-access {
        margin-top: 2rem;
        margin-bottom: 2rem;
        h2 {
            color: var(--bg);
        }
        
        .card-container {
            perspective: 1500px;
        }
        .card {
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .card-middle {
            transform: scale(1.1) translateZ(50px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            height: fit-content;
            background: linear-gradient(45deg, #FC466B 0%, #3F5EFB 100%);
            background: linear-gradient(45deg, #00d2ff 0%, #3a47d5 100%);
            color: var(--bg);
            padding-bottom: 2rem;
            padding-top: 2rem;
        }
        .card-left {
            transform: rotateY(-10deg) translateX(-20px);
            background: linear-gradient(45deg, #e3ffe7 0%, #d9e7ff 100%);
        }
        .card-right {
            transform: rotateY(10deg) translateX(20px);
            background: linear-gradient(135deg, #d9e7ff 0%, #e3ffe7 100%);
        }
        @media (max-width: 991.99px) {
            .card-left, .card-right {
                transform: none;
            }
            .card-middle {
                transform: none;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                padding-bottom: 0rem;
                padding-top: 0rem;
            }
        }
    }

    .oi-details {
        background-color: var(--bg);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        h2 {
            color: var(--blue-dark);
        }
        h3 {
            font-size: 1.1rem;
        }
        img {
            height: 100%;
            max-width: 100%;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0px 0px 100px var(--blue-transparent);
        }
        a {
            text-decoration: underline;
            color: var(--blue-dark);
        }
        a:hover {
            color: var(--blue);
        }
    }

    .connectivity {
        background-color: var(--bg-transparent);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        margin-top: 4rem;
        margin-bottom: 4rem;
        h3 {
            font-size: 1.1rem;
        }
        img {
            height: 100%;
            max-width: 100%;
            object-fit: cover;
            border-radius: .5rem;
            box-shadow: 0px 0px 100px var(--blue-transparent);
            object-position: left;
        }
        a {
            text-decoration: underline;
            color: var(--blue-dark);
        }
        a:hover {
            color: var(--blue);
        }
        .btn {
            margin-top: .1rem;
            margin-bottom: .1rem;
        }
    }

    .contact {
        input {
            border-color: var(--black);
            border-width: 1px;
            background-color: var(--bg);
            width: auto;
            transition: all 600ms ease;
            box-shadow: 0px 0px 100px var(--blue-transparent);
        }
        textarea {
            border-color: var(--black);
            border-width: 1px;
            background-color: var(--bg);
            width: 100%;
            transition: all 600ms ease;
            box-shadow: 0px 0px 100px var(--blue-transparent);
        }
        .img-container {
            width: 100%;
            max-height: 20rem;
            overflow: hidden;
            position: relative;
        }
        .staff-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }  
        h1 {
            color: var(--blue-dark);
        }
    }
}
.china-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Agriculture */

.container-fluid.agriculture-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    @media (max-width: 992px) {
        .card-outer {
            margin-top: .75rem;
            margin-bottom: .75rem;
        }
    }
    .agriculture-card {
        color: var(--bg);
        padding: 2rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        background: linear-gradient(45deg, #9ebd13 0%, #008552 100%);
        border-radius: .5rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        height: 100%;
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.2rem;
            color: var(--blue-lightest);
        }

        
    }
}
.agriculture-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Industrial */

.container-fluid.industrial-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    @media (max-width: 992px) {
        .card-outer {
            margin-top: .75rem;
            margin-bottom: .75rem;
        }
    }
    .industrial-card {
        color: var(--bg);
        padding: 2rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        background: linear-gradient(45deg, #FDBB2D 0%, #22C1C3 100%);
        border-radius: .5rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        height: 100%;
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.2rem;
            color: var(--blue-lightest);
        }

        
    }
}
.industrial-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Financial */

.container-fluid.financial-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    @media (max-width: 992px) {
        .card-outer {
            margin-top: .75rem;
            margin-bottom: .75rem;
        }
    }
    .financial-card {
        color: var(--black);
        padding: 2rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        background: linear-gradient(45deg, #e3ffe7 0%, #d9e7ff 100%);
        border-radius: .5rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        height: 100%;
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.2rem;
            color: var(--blue);
        }

        
    }
}
.financial-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Energy */

.container-fluid.energy-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    @media (max-width: 992px) {
        .card-outer {
            margin-top: .75rem;
            margin-bottom: .75rem;
        }
    }
    .energy-card {
        color: var(--bg);
        padding: 2rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        background: linear-gradient(45deg, #151a25 0%, #182848 100%);
        border-radius: .5rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        height: 100%;
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.2rem;
            color: var(--blue-lightest);
        }

        
    }
}
.energy-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Metals */

.container-fluid.metals-market {
    background-color: var(--bg);
    margin-top: 5.4rem;
    margin-bottom: 3rem;
    @media (max-width: 992px) {
        .card-outer {
            margin-top: .75rem;
            margin-bottom: .75rem;
        }
    }
    .metals-card {
        color: var(--black);
        padding: 2rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        background: linear-gradient(145deg, #e0e0e0, #ffffff);
        border-radius: .5rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
        height: 100%;
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.2rem;
            color: var(--blue);
        }

        
    }
}
.metals-market.dark {
    background-color: var(--blue-dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--bg);
}

/* Markets - Battery Metals */

.battery-metals {
    .card-container {
        perspective: 1000px;
    }
    .card {
        width: 100%;
        height: 20rem;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.9s;
        margin-top: .75rem;
        margin-bottom: .75rem;
        border-radius: 1rem;
        border: none;
        box-shadow: 0px 0px 100px var(--blue-transparent);
    }
    .card.flipped {
        transform: rotateY(180deg);
    }
    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .card-front {
        background: linear-gradient(145deg, #e0e0e0, #ffffff);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .card-back {
        background: linear-gradient(145deg, #e0e0e0, #ffffff);
        transform: rotateY(180deg);
        padding: 2rem;
    }
    .card-metal {
        font-size: 4rem;
        font-weight: bold;
    }
    .card-details {
        font-size: 1rem;
        h2 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            margin-top: .25rem;
            color: var(--blue);
        }
        p {
            font-size: .8rem;
            margin: 0;
        }
    }
    .atomic-number, .atomic-weight, .element-name {
        font-size: 1rem;
    }
    .atomic-number {
        position: absolute;
        top: 1rem;
        left: 1.25rem;
    }
    .atomic-weight {
        position: absolute;
        top: 1rem;
        right: 1.25rem;
    }
    .element-name {
        margin-top: .5rem;
    }
}
.battery-metals.section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    h1 {
        font-size: 3rem;
        color: var(--blue);
        margin-bottom: 2rem;
    }
}

/* Markets - Freight */

.markets-freight-image {
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 100px var(--blue-transparent);
    @media (min-width: 768px) {
        width: 95%;
    }
}

.container.our-markets {
    .box.container_freight:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
          ),
          url(../image/container-freight-2.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.container_freight {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.container_freight:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/container-freight-2.jpg);
    }
    .box.bulk_freight:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
          ),
          url(../image/bulk-freight.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.bulk_freight {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.bulk_freight:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/bulk-freight.jpg);
    }
    .box.freight_risk:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -999;
        /* opacity: 0.9; */
               background-image: linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
          ),
          url(../image/freight-storm.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .box.freight_risk {
        position: relative;
        z-index: 1;
        color: var(--bg);
    }
    .box.freight_risk:hover:before {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url(../image/freight-storm.jpg);
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

.container-fluid.freight-futures {
    background-image: url('../image/freight-containers-2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--bg);
    padding-top: 2rem;
    padding-bottom: 2rem;
    @media (min-width: 768px) {
        padding: 4rem;
        .col-md-6.col-auto.right {
            padding-left: 5rem;
        }
        .col-md-6.col-auto.left {
            padding-right: 5rem;
        }
    }
    h1 {
        margin-top: 2rem;
    }
}

.container-fluid.freight-futures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Adjust the opacity as needed */
    z-index: 1;
}

.container-fluid.freight-futures > * {
    position: relative;
    z-index: 2;
}

.freight-news {
    .box {
        border: none;
        border-radius: .5rem;
        background-color: var(--bg);
        box-shadow: 0px 0px 100px var(--blue-transparent);
        .text {
            display: flex;
            flex-direction: column;
            justify-content: start;
        }
    }
    .embedded-post-container {
        height: auto;
    }
    h1.news-header {
        font-size: 1.2rem;
    }
    p.news-text {
        font-size: .8rem;
        line-height: 1.3rem;
        margin-bottom: .5rem;
    }
    p.date {
        font-size: .8rem;
        line-height: 1rem;
        margin-bottom: .5rem;
    }
}

.container-fluid.freight-hedging-explainer {
    background-color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    h1 {
        color: var(--blue);
        font-weight: 600;
    }
    h2 {
        color: var(--blue);
        font-weight: 400;
    }
}

/* Market Data */

.market-data {
    .data-img {
        cursor: pointer;
        max-width: 100%;
        max-height: 100vh;
    }
    .fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1050;
    }
    .fullscreen img {
        max-width: 95%;
        max-height: 95%;
    }
    .pdf {
        width: 100%;
        min-height: 600px;
    }
}

/* FAQ */

.section-title.faq {
    font-size: 2rem;
}

.faq-page {
    a {
        text-decoration: underline;
        color: var(--emphasis);
    }
    a:hover {
        color: var(--blue);
    }
    ul {
        list-style: none;
    }
    .video-container {
        width: 100%;
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
    }
    .video-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }    
}

/* Download Esunny Page */
.esunny-img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* Temporary: Construction */
.markets-header.construction {
    margin-bottom: 0;
    img {
        width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 600px), (max-height: 500px) {
    .container-fluid.china-market .card {
        height: 80vh;
        max-height: 80vh;
        min-height: 12rem;
    }
    .container-fluid.china-market .front,
    .container-fluid.china-market .back {
        height: 80vh;
        max-height: 80vh;
        min-height: 12rem;
    }
    .container-fluid.china-market .card-body {
        font-size: 0.92rem;
        padding: 0.7rem;
        overflow-y: auto;
    }
}

/* Solutions for Brokers */
.for-brokers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--blue-lightest) 0%, var(--bg) 100%);
    border-radius: 1.5rem;
    box-shadow: 0px 0px 60px var(--blue-transparent);
    margin-bottom: 3rem;
}
.for-brokers .broker-card {
    background: linear-gradient(135deg, var(--bg) 60%, var(--blue-light) 100%);
    border-radius: 1.2rem;
    box-shadow: 0px 0px 40px var(--blue-very-transparent);
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--blue-lightest);
    position: relative;
    overflow: hidden;
}
.for-brokers .broker-card:hover {
    box-shadow: 0px 0px 80px var(--blue-light);
    transform: translateY(-4px) scale(1.02);
    border-color: var(--blue);
}
.for-brokers h1, .for-brokers h2 {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1rem;
}
.for-brokers p {
    font-size: 1.08rem;
    color: var(--black);
    margin-bottom: 1.1rem;
    line-height: 1.7rem;
}
.for-brokers .broker-card .highlight {
    color: var(--blue);
    font-weight: 500;
    margin-top: auto;
    background: var(--blue-lightest);
    padding: 0.5rem 1.2rem;
    border-radius: 0.7rem;
    box-shadow: 0px 0px 20px var(--blue-very-transparent);
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}
.for-brokers .broker-card .highlight:hover {
    background: var(--blue);
    color: var(--bg);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .for-brokers {
        grid-template-columns: 1fr;
        padding: 1.2rem 0.2rem;
        gap: 1.2rem;
    }
    .for-brokers .broker-card {
        padding: 1.2rem 0.7rem;
    }
}
.for-brokers.dark {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}
.for-brokers.dark .broker-card {
    background: linear-gradient(135deg, var(--blue-dark) 60%, var(--blue) 100%);
    color: var(--bg);
    border-color: var(--blue-light);
}
.for-brokers.dark h1, .for-brokers.dark h2 {
    color: var(--bg);
}
.for-brokers.dark p {
    color: var(--blue-lightest);
}
.for-brokers.dark .broker-card .highlight {
    background: var(--blue-light);
    color: var(--blue-dark);
}
.for-brokers.dark .broker-card .highlight:hover {
    background: var(--bg);
    color: var(--blue-dark);
}

/* Technology */

.container-fluid.connectivity-solutions {
    margin-top: 5rem;
    /* margin-bottom: 5rem; */
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--blue-lightest) 0%, var(--bg) 100%);
    /* box-shadow: 0px 0px 20px var(--blue-very-transparent); */
    h1 {
        font-size: 3rem;
        margin-bottom: 3rem;
        color: var(--blue);
    }
    h2 {
        font-size: 2rem;
        color: var(--blue-dark)
    }
    p {
        color: var(--blue-dark);
    }
}

.container-fluid.connectivity-section-intro {
    padding-top: 5rem;
    padding-bottom: 5rem;
    h1 {
        font-size: 3rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        color: var(--blue);
    }
    p {
        font-size: larger;
    }
    .china-offering {
        margin-top: 4rem;
    }
}

.container-fluid.connectivity-options {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    background: linear-gradient(225deg, rgba(130, 205, 224, 1.000) 0.000%, rgba(149, 201, 222, 1.000) 16.667%, rgba(174, 200, 216, 1.000) 33.333%, rgba(202, 201, 208, 1.000) 50.000%, rgba(232, 206, 199, 1.000) 66.667%, rgba(255, 213, 194, 1.000) 83.333%, rgba(255, 221, 192, 1.000) 100.000%);
    .section-row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        min-height: 100%;
    }
    .text-box {
        padding-right: 4rem;
        padding-left: 4rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .text-box, .image-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .image-box {
        padding: 0;
        overflow: hidden;
    }

    .full-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

}

/* Industrial / Corporate Solutions */

.container-fluid.industrial-solutions {
    margin-top: 5rem;
    /* margin-bottom: 5rem; */
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--blue-lightest) 0%, var(--bg) 100%);
    /* box-shadow: 0px 0px 20px var(--blue-very-transparent); */
    h1 {
        font-size: 3rem;
        color: var(--blue);
    }
    h2 {
        font-size: 2rem;
        color: var(--blue-dark)
    }
    p {
        color: var(--blue-dark);
        margin-bottom: 3rem;
        font-size: larger;
    }
    ul {
        font-size: larger;
    }
}

.container-fluid.industrial-benefits {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    background: #C9D6FF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(45deg, #E2E2E2, #C9D6FF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(45deg, #E2E2E2, #C9D6FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    .section-row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        min-height: 100%;
    }
    .text-box {
        padding-right: 8rem;
        padding-left: 8rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
        color: var(--blue-dark);
        @media (max-width: 1400px) {
            padding-right: 6rem;
            padding-left: 6rem;
        }
        @media (max-width: 1200px) {
            padding-right: 5rem;
            padding-left: 5rem;
        }
        @media (max-width: 992px) {
            padding-right: 3rem;
            padding-left: 3rem;
        }
        .text-decoration-underline:hover {
            color: var(--emphasis);
        }
    }
    .text-box, .image-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .image-box {
        padding: 0;
        overflow: hidden;
    }

    .full-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Institutional Solutions */

.container-fluid.why-bands-intro {
    padding-top: 7rem;
    padding-bottom: 5rem;
    h1 {
        font-size: 3rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        color: var(--blue);
    }
    p {
        font-size: larger;
    }
}

.container-fluid.institutional-benefits {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    background: #DBE6F6;  /* fallback for old browsers */
    background: -webkit-linear-gradient(45deg, #C5796D, #DBE6F6);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(45deg, #C5796D, #DBE6F6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    box-shadow: 0px 0px 40px var(--blue-very-transparent);
    .section-row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        min-height: 100%;
    }
    .text-box {
        padding-right: 8rem;
        padding-left: 8rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
        color: var(--blue-dark);
        @media (max-width: 1400px) {
            padding-right: 6rem;
            padding-left: 6rem;
        }
        @media (max-width: 1200px) {
            padding-right: 5rem;
            padding-left: 5rem;
        }
        @media (max-width: 992px) {
            padding-right: 3rem;
            padding-left: 3rem;
        }
        .text-decoration-underline:hover {
            color: var(--emphasis);
        }
    }
    .text-box, .image-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .image-box {
        padding: 0;
        overflow: hidden;
    }

    .full-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Exchange Map Styles */
.exchange-map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue-lightest);
    box-shadow: 0px 0px 40px var(--blue-transparent);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 350px;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#my_dataviz {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    background: var(--bg);
}
.exchange-map-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}
@media (max-width: 768px) {
    .exchange-map-wrapper {
        padding: 1rem;
        min-height: 220px;
    }
    .exchange-map-title {
        font-size: 1.3rem;
    }
}
