@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Public Sans", sans-serif;
}


:root {
    --white: #FFFFFF;
    --grey: #3d3d3d;
    --black: #000000;
    --dark-black: #393939;
    --dark-white: #FFFDFD;
    --golden: #573E18;
    --light-gold: #C19A60;
}

main {
    overflow: hidden;
}

p {
    font-weight: 400;
    font-size: 14px;
    color: var(--grey);
    line-height: 22px
}

h2 {
    font-weight: 300;
    font-size: 45px;
}

h3 {
    /* text-transform: uppercase; */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

.main-header {
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    margin: 0 auto;
    border-radius: 10px;
}

.scrolled .main-header {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);

}

header {
    position: fixed;
    top: 27px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.container {
    max-width: 88.104vw !important;
}

.container-spacing {
    padding: 0px 80px;
}

.logo {
    display: block;
    width: 145px;
    position: relative;
}

.logo img {
    width: 100%;
    height: auto;
    position: absolute;
    top: calc(50% - 23px);
    transform: translateY(-50%);
}

.nav-list {
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    margin-bottom: 0px;
}

.nav-list li {
    position: relative;
}

.nav-list li ul {
    position: relative;
    min-width: 200px;
    padding: 0rem 1rem;
    border-radius: 15px;
    border: 1px solid var(--dark-white);
    /* background: rgba(198, 162, 110, 0.1); */
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, rgba(193, 154, 96, 0.9) 100%));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px) !important;

    transition: all 0.3s ease-in-out;
}

.nav-list li ul ul {

    background: var(--Linear, linear-gradient(90deg, rgba(61, 61, 61, 1) 0%, rgba(57, 57, 57, 0.9) 100%));
    transition: all 0.3s ease-in-out;
}

.main-nav li span {
    display: none;
}

/*****************************************/

.why-equinova {
    color: #fff;
}

.why-equinova h3 {
    color: var(--light-gold);
}

.futureList li {
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 15px 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
}

.futureList li::before {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.futureList li:hover::before,
.futureList li.active::before {
    width: 100%;
}

.regulatory-section .futureList li.active span {
    color: var(--white);
    font-weight: 600;
}

.futureList li img,
.futureList li span {
    z-index: 3;
}

.futureList li:hover img {
    filter: brightness(100);
}

.futureList li::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.futureVid video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.futureVid p {
    color: #fff;
}

.bgBlack {
    background: #2B2A28 !important;
}

.why-equinova.bgBlack {
    background: #2B2A28 url(../images/square-pattern.png) no-repeat right bottom !important;
    background-size: 45% auto !important;
}

.futureList li img {
    height: 50px;
    width: auto;
}

.list-vid-cont {
    display: none;
}

.list-vid-cont:first-child {
    display: block;
}

@media(min-width:1200px) {
    .futureList li img {
        height: 2.7vw;
    }

    .nav-list li ul {
        position: absolute;
        transform: translateY(1rem);
        opacity: 0;
        pointer-events: none;
    }

    .nav-list li:hover>ul {
        opacity: 1;
        pointer-events: all;
        transform: translateX(0rem);
    }

    .nav-list li ul ul {
        left: 100%;
        top: 0px;
        transform: translateX(1rem);
        opacity: 0;
        pointer-events: none;
    }

    .nav-list li ul li:hover ul {
        opacity: 1;
        pointer-events: all;
        transform: translateX(0rem);
    }
}

.nav-list li ul li a {
    padding: 15px 0px;
    display: block;
}

.nav-list li ul li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.nav-list li ul li:last-child {
    margin-bottom: 0px;
}

.nav-list li ul li div a {
    padding-top: 0px;
    color: #c6a26e !important;
}

.nav-list li ul li:last-child {
    border-bottom: none;
}

.nav-list li a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #cda45e;
}

.header-actions {
    gap: 30px;
}

.search-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.search-btn img {
    display: block;
    width: 25px;
    height: auto;
}

.btn {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, #C19A60 100%));
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover,
.btn:active {
    background: var(--Linear, linear-gradient(90deg, #2B2A28 0%, #000 100%));
    color: #fff;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 18px;
    justify-content: space-between;
    background: none;
    border: none;
}

.menu-btn span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 5px;
}

.scrolled .menu-btn span {
    background: #000;
}

.menu-btn span:first-child {
    width: 80%;
}

.menu-btn span:last-child {
    width: 60%;
}

.banner-section {
    position: relative;
    width: 100%;
    height: 105vh !important;
    overflow: hidden;
}

.banner-section .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-section .banner-text-content {
    position: absolute;
    top: 43%;
    left: 6.4%;
    width: 55%;
}

.banner-section .banner-text-content h1 {
    font-weight: 300;
    font-size: 45px;
    width: 100%;
    color: var(--white);
}

.banner-section .banner-text-content p {
    color: var(--white);
    font-size: 11px;
    font-weight: 300;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(90deg, var(--light-gold) 0%, #573E18 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: "Public Sans", sans-serif;
    font-size: 44px;
    font-weight: 300;
}

.white-rounded-section {
    position: relative;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
    background-color: var(--white);
    padding: 50px 75px;
    padding-bottom: 60px;
    margin-top: -30px;
    z-index: 1 !important;
}

.about-section .abt-section-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.about-section h2 {
    font-size: 40px;
}

.about-section .gradient-text {
    font-size: 40px;
}

.golden-star {
    width: 20px;
    height: 20px;
}

#mainHeader .nav-list a {
    color: #fff;
    transition: color 0.3s ease;
}

#mainHeader.scrolled .nav-list a {
    color: #000;
    position: relative;
}

.logo-white {
    display: inline-block;
}

.logo-black {
    display: none;
}

#mainHeader.scrolled .logo-white {
    display: none;
}

#mainHeader.scrolled .logo-black {
    display: inline-block;
}

#mainHeader .nav-list a {
    color: #fff;
    display: block;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

#mainHeader.scrolled .nav-list li li a {
    color: #fff;
}

#mainHeader.scrolled .mobNav .nav-list>li>a {
    color: #000;
}

.suport-box img {
    width: 20px;
    height: 20px
}

.about-section .btn {
    width: max-content;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee span {
    font-size: 7.7vw;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #c6a26e;
    padding-right: 5vw;
    transition: all 0.1s ease-in-out;
}

.marquee:hover span {
    color: #c6a26e;
}

.futureVid h2 {
    display: none;
}

.regulatory-box-content h2 {
    display: none;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.transparent_img {
    width: 60%;
    height: 550px;
    position: absolute;
    top: 8vw;
    right: 0;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(67deg, rgb(0 0 0 / 72%) 6.63%, rgb(0 0 0 / 0%) 71.9%);
    z-index: 0;
    pointer-events: none;
}

.footer-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #2B2A28;
}

.search-btn img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.search-btn.black img {
    filter: brightness(0) invert(0);
}

.marquee-container {
    position: absolute;
    bottom: 52px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-container.about-marquee {
    position: relative;
    bottom: inherit;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 40s linear infinite;
}

.marquee-track span {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    padding: 0 2.5rem;
}

.marquee-track img.star {
    width: 23px;
    height: auto;
    margin: 0 2.5rem;
    vertical-align: middle;
}

.gradient-border {
    border: 1px solid #524533;
}

.container-spacing {
    padding: 100px 86px;
}

.footer-content {
    font-family: "Public Sans", sans-serif;
    color: #fff;
}

.footer-content h3 {
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 0px;
}

.footer-section h4 {
    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.50);
}

.inputBox {
    border: 1px solid #524533;
    border-radius: 10px;
    background-color: transparent;
    padding: 15px 12px;
    width: 100%;

    position: relative;
    color: var(--white);
}

.subscribe-form button {
    background: linear-gradient(135deg, #8c6a33, #d2a23d);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 6px;
    transition: background 0.3s ease;
}

.subscribe-form button img {
    max-width: 20px;
}

.subscribe-box h3 {
    font-weight: 500;
    color: var(--light-gold);
    text-transform: none;
}

.footer_logo {
    width: 12.552vw;
    height: 6.667vw;
}

.copyright-section {
    margin-top: 40px;
}

.input-wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.inputBox {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inputBox::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.inputBox:focus {
    outline: none;
    border: 1px solid var(--light-gold);
    box-shadow: 0 0 0 3px rgba(82, 69, 51, 0.2);
    /* optional soft glow */
}

.submit-btn {
    position: absolute;
    top: 50%;
    right: 0.5vw;
    transform: translateY(-50%);
}

.blog-section {
    background-color: #f1f1f1;
    position: relative;
    z-index: 99;
}

.white-card-box {
    border-radius: 10px;
    background-color: var(--white);
    padding: 20px 20px;
}

.white-card-box img {
    width: 24.115vw;
    object-fit: cover;
}

.white-card-box h3 {
    font-weight: 400;
    color: var(--dark-black);
}

.white-card-box h4 {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-black);
}

.white-card-box p {
    color: var(--grey)
}

.box-1 {
    position: relative;
    overflow: hidden;
}

.box-1::before {
    content: '';
    position: absolute;
    left: 1.5vw;
    right: 1.5vw;
    bottom: 1.5vw;
    height: 50%;
    border-radius: 12px;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    pointer-events: none;
}

.card-content {
    position: absolute;
    bottom: 3vw;
    left: 2.7vw;
    width: 80%;
}

.card-content h3 {
    font-size: 13px;
    color: var(--white);
}

.card-content h4 {
    margin-top: 13px !important;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.arrow-navigation-box {
    width: 45px;
    height: 45px;
    background-color: var(--light-gold);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-navigation-box img {
    width: 14px;
    height: 14px;
    object-fit: cover;
}

.discover-btn {
    position: absolute;
    top: 8vw;
    right: 6.6vw;
    width: max-content !important;
    height: max-content !important;
    color: white !important;
}

.white-rounded-section-2 {
    padding: 90px 86px;
}

.fund-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.fund-bg img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    z-index: 1;
}

.btn-read-more {
    background-color: #b18a3f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #916f2d;
}

.fund-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    font-weight: 600;
}

.fund-links a:hover {
    border-bottom: 1px solid #b18a3f;
}

.tab-arrow-box {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:active .tab-arrow-box:active {
    border: 1px solid var(--light-gold);
}

.explore-products {
    margin-top: 30px;
    font-size: 14px;
    color: #000;
}

.explore-link {
    color: var(--grey);
    text-decoration: none;
    font-weight: 600;
}

.explore-link:hover {
    text-decoration: underline;
}

.tab-arrow-box img {
    width: 14px;
    height: 14px;
}

.fund-switch {
    margin-top: 4vw;
}

/* Switch buttons */
.fund-switch .btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--Linear, #573E18);
    padding: 12px 20px;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.fund-switch .btn.active,
.fund-switch .btn[aria-selected="true"] {
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, var(--light-gold) 100%));
    border: none;
    /* active tab color */
}

.fund-switch .btn:hover {
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, var(--light-gold) 100%));
}

.tab-arrow-box img {
    width: 20px;
    height: auto;
    filter: brightness(100) invert(1);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: var(--white);
}

.section-desc {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
}

.btn-read-more {
    background-color: #b18a3f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-read-more:hover {
    background-color: #916f2d;
}

.card-borderline {
    border: 0.05px solid var(--light-gold);
    margin-bottom: 1.5vw;
}

.closeBtn {
    display: none;
}

.card-section h3 {
    font-size: 17px;
    text-transform: none;
    color: var(--grey);
}

.about-card-section.card-section h3,
.about-card-section.card-section h3 span {
    color: #8D8E8E;
}

.about-card-section.card-section .swiper-slide-active h3 {
    color: #fff;
    font-weight: 600;
}

.about-card-section.card-section .swiper-slide-active h3 span {
    background: linear-gradient(90deg, var(--light-gold) 0%, #573E18 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card-section.card-section .swiper-slide p {
    color: #969696;
}

.about-card-section.card-section .swiper-slide-active p {
    color: #fff;
}

.about-card-section.card-section .recognise-icon img {
    filter: brightness(100);
    opacity: 0.5;
}

.about-card-section.card-section .swiper-slide-active .recognise-icon img {
    filter: inherit;
    opacity: 1;
}

.about-card-section.card-section .card-borderline {
    border: .05px solid #969696;
}

.about-card-section.card-section .swiper-slide-active .card-borderline {
    border: .05px solid #C19A60;
}

.card-section .gradient-text {
    font-weight: 600;
    font-size: 21px;
}

.searchButton {
    border: none;
    padding: 8px 23px;
    border-radius: 5px;
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, var(--light-gold) 100%)) ;
    color: #fff;
}

/* .searchButton:hover {
    background: #000;
} */

.searchButton img {
    vertical-align: middle;
    display: inline-block;
    margin-left: 15px;
}

.searchBar {
    padding: 15px;
    display: none;
}

.searchBar input {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.searchBar .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.boldHeading {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/********************************************************************/

.recognise-icon {
    width: 50px;
    min-height: 50px;
    margin-bottom: 15px;
}

.recognise-icon img {
    width: 100%;
    height: 5.488vw;
}

/****************************/

.slider-1 .swiper-pagination-bullet-active {
    background: var(--light-gold);
}

.slider-1 .swiper-slide {
    opacity: 0.5;
}

.founderSwiper .swiper-pagination-bullet-active {
    background: var(--light-gold);
}

/*************************/
.about-card-section .slider-1 .swiper-slide {
    opacity: 1;
}

.slider-1 .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.fund-switch .btn p {
    color: #fff;
}

/***************************************************************/

.inner_banner {
    position: relative;
    z-index: 1;
}

.inner_banner.banner-section {
    height: 80vh;
    overflow: hidden;

}

.inner_banner img {
    width: 100%;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
}

.banner-text-content {
    position: absolute;
    bottom: 20vw;
    left: 37vw;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text-content h2 {
    text-transform: uppercase;
    font-size: 4.167vw;
}

.banner-text-content p {
    color: var(--white);
    font-size: 1vw;
    /* text-transform: uppercase; */
}

.file_icon {
    width: 2.448vw;
}

.regulatory-tab-list {
    margin-top: 3.8rem;
}

.regulatory-tab-list li {
    padding-bottom: 1.5vw;
    margin-bottom: 1.5vw;
}

.regulatory-tab-list p {
    margin-bottom: 0;
}

.tab-content {
    border-bottom: 1px solid #D9D9D9;
}

.regulatory-section .futureList li span {
    font-size: 15px;
}

.cardBox {
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    padding: 1.406vw 1.51vw;
}

.cardBox img {
    width: 100%;
}

.cardBox h3 {
    padding-top: 1.979vw;
    text-transform: none;
    font-size: 1.200vw;
    padding-bottom: 0.781vw;
}

.futureList li.active span,
.futureList li:hover {
    color: var(--white);
    font-weight: 600;
}

.insights-tabs {
    padding-bottom: 1.125vw;
}

.insights-tabs .futureList li {
    display: flex;
    justify-content: center;
    margin-right: 12px;
}

.card-list {
    padding-bottom: 2vw !important;
}

.article-listing {
    padding-bottom: 0vw;
}

/* .article-list:last-child{
    padding-bottom: 0vw !;
} */

.article-list h3 {
    text-transform: none;
    font-size: 1.198vw;
    margin-bottom: 1vw;
}

.article-list h2 {
    font-size: 1.09vw;
    margin-bottom: 0.9vw;
}

.article-card-list {
    padding-left: 3.083vw;
}

/* .wrapper {
    padding-bottom: 3vw;
    border-bottom: 0.5px solid #D8D8D8
} */

.card-border {
    padding-left: 2vw;
    border-right: 1px solid #D8D8D8;
}

.card-border img {
    border-radius: 10px;
}

.article-card-list img {
    border-radius: 10px;
}

.articleInfo {
    border: 0.5px solid #D8D8D8;
    border-radius: 15px;
}

.swiper-slide .cardBox img {
    height: 18.594vw;
}

.latest-text {
    margin-top: 3.7vw !important;
}

.article-section {
    margin-top: 3vw !important;
}

.insights-section .tab-content {
    border-bottom: none;
}

.articleWrap .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.articleWrap {
    position: relative;
}

.articleWrap .swiper-button-prev {
    top: -24px;
    left: auto;
    right: 81px;
}

.articleWrap .swiper-button-next {
    top: -24px;
    right: 30px;
}

.articleWrap .prevBtn {
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    padding: 5px 21px;
}

.articleWrap .nextBtn {
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    padding: 5px 21px;
}

.arrowBtn {
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    padding: 8px 16px;
    cursor: pointer;
}

.articleWrap img {
    width: 7px;
}

.card-1 {
    border-bottom: 0.5px solid #D8D8D8;
    padding-bottom: 0.99vw;
}

.card-boxes {
    padding-top: 2.4vw;
    border-bottom: 0.5px solid #D8D8D8;
    padding-bottom: 2.4vw;
}

.firstcardbox {
    border-right: 0.5px solid #D8D8D8;
}

.borderline {
    border: 0.2px solid #bdbdbd !important;
    margin-top: 5.604vw;
}

.subheading-text {
    margin-top: 1.7vw;
}

.contact-form-section {
    margin-top: 5.469vw;
    height: 100%;
}

.contact-form-section img {
    height: 31vw;
}

.contact-box {
    background: #FFF;
    box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.04);
    padding: 1.563vw 3.125vw;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* ensures equal height columns */
}

.contact-form-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* keeps image nicely cropped */
}

.contact-form {
    margin-top: 2.3vw;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.contact-form .btn {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    text-transform: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.050vw;
    margin-top: 0.6vw;
}

.card-img {
    height: 25.100vw;
}

.card-box h2 {
    font-size: 1.554vw;
    margin-top: 1.942vw;
    color: var(--dark-black);
    margin-bottom: 0.4vw;
}

.with-bullets {
    padding-left: 1.8vw;
    margin-top: 1vw;
}

.with-bullets li {
    list-style: disc !important;
    padding-left: 9px;
    margin-bottom: 10px;
}

.with-bullets ul {
    list-style-type: "– " !important;
    padding-left: 20px;
    margin-top: 5px;
}

.read-more-btn {
    font-family: "Public Sans", sans-serif !important;
    padding: 0.7vw 1.3vw !important;
    font-size: 1.040vw !important;
    margin-top: 1.7vw;
}

/* .inner_banner .banner-text-content {
    position: absolute;
    top: 36%;
    left: 32.4%;
    width: 35%;
} */

.inner_banner .banner-text-content {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 80%;
}

.inner_banner .transparent_img {
    width: 30% !important;
    height: 350px;
    position: absolute;
    top: 8vw;
    right: 0;
}

.futureTabList li {
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 15px 21px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
}

.futureTabList li::before {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.futureTabList li::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.future-tabs .futureTabList li {
    display: flex;
    justify-content: center;
    width: 18%;
    /* margin-right: 12px; */
}

.future-tabs .futureTabList li:last-child {
    margin-right: 0;
}

.futureTabList li:hover::before,
.futureTabList li.active::before {
    width: 100%;
}

.futureTabList li span {
    font-size: 1.2vw;
    text-align: center;
}

.futureTabList li.active span,
.futureTabList li:hover {
    color: var(--white);
    font-weight: 600;
}

.futureTabList li img,
.futureTabList li span {
    z-index: 3;
}

.futures-tab-section h3 {
    font-size: 1.254vw;
}

.futures-tab-section p {
    margin-top: 1.4vw;
}


.futureTabList img {
    height: 6.208vw;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.futureTabList li.active img,
.futureTabList li:hover img {
    filter: brightness(0) invert(1);
}

.table th,
.table td {
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 27px 30px !important;
    text-align: left !important;
    border-color: #e5e5e5 !important;
    color: var(--dark-black);
    font-size: 0.970vw;
}

.table thead th {
    font-weight: 600;
    background-color: #C19A60 !important;
    color: #fff !important;
}

.content-box-heading {
    border-bottom: 1px solid #C19A60;
    padding-bottom: 0.3vw;
    margin-bottom: 1.3vw;
}

.terms-section h4 {
    font-size: 1.146vw;
}

.terms-section div {
    position: relative;
    margin-bottom: 0.7vw;
}

.terms-section h4::after {
    content: ':';
    position: absolute;
    top: 0;
    left: 18vw;
}

.terms-section p {
    position: absolute;
    left: 20vw;
}

.flagship-box-1 {
    border-right: 1px dashed #DAD0C0;
}

.flagship-section {
    border-bottom: 1px dashed #DAD0C0;
    padding-bottom: 4vw;
    margin-bottom: 2.7vw;
}

.flagship-btn button {
    padding: 0.7vw 1.3vw;
}

.swiper-image-icon {
    height: 8.427vw;
}

.map-container {
    position: relative;
    width: 50%;
    height: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.map-section {
    width: 50%
}

.map-content-section {
    background: #FFFFFF;
    /* padding: 2.5vw 3vw; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    display: flex;
    border-radius: 20px;
}

.map-content-section h3 {
    font-family: "Public Sans", sans-serif;
    margin-bottom: 2vw !important;
    font-size: 1.346vw;
}

.map-content-section img {
    height: 1.354vw;
}

.map-content-section p {
    font-size: 1.040vw;
    color: var(--black);
}

.map-section div {
    margin-bottom: 30px;
}

/* .map-content-section div {
    margin-bottom: 2.1vw;
} */

.locationList li {
    padding: 1.490vw 2vw !important;
}

.map-section {
    border-radius: 30px;
}

.map-content .tab-content {
    border: none;
}

.pms-section {
    border-bottom: 1px dashed #DAD0C0;
    padding-bottom: 1vw;
}


/****************************************************/

.breadCrumb a {
    color: #fff;
    text-decoration: none;
}

.about-marquee .marquee-track span {
    color: #C19A60;
}


.about-section .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.about-section .swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}

.about-section .swiper-pagination {
    position: relative;
    padding-top: 10px;
    text-align: left;

}

.about-section .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid #C19A60;
    background: #fff;
    font-weight: 300;
    margin: 0 10px !important;
    position: relative;
}

.about-section .swiper-pagination-bullet::before {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    border-top: 1px solid var(--golden);
    left: -21px;
    top: 56%;
}

.about-section .swiper-pagination-bullet:first-child:before {
    display: none;
}

.about-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-weight: 500;
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, #C19A60 100%));
}

.values_ethos_slider h5 {
    margin-bottom: 20px;
    font-weight: 500;
}

.member-card-box1 {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
}

.founder-info-box {
    position: relative;
    padding: 1.7vw 1.570vw;
    height:55vh;
}

/* .card-box1 {
    height: 35vh;
} */

.card-box1 span {
    font-size: 1.194vw;
    position: relative;
}

.card-box1 p {
    margin-top: 1.1vw;
    margin-bottom: 0px;
}

.card-box1 h4 {
    font-size: 0.99vw;
    margin-top: 0.4vw;
}

.card-box1 .card-img1 {
    width: 100% !important;
    height: auto;
    margin-left: auto;
    margin-top: -1.4px;
    /* display: table; */
}

.member-card-box1 .card-img2 {
    width: 455px !important;
    height: 433px;
    margin-left: auto;
}

.founder-info-box h4 {
    font-weight: 400;
    color: var(--grey);
    text-transform: uppercase;
}

/* 
.card-box-content {
    position: absolute;
    top: 2vw;
    left: 2.3vw;
    z-index: 2;
} */

.card-box-content {
    position: absolute;
    top: 1.5vw;
    left: 2vw
}

.linkedin_icon {
    position: absolute;
    top: 1vw;
    right: 1.4vw;
    width: 42px;
    height: 42px;
    margin-top: 10px;
}

.card-box-content .btn {
    width: max-content;
    align-self: flex-start;
}

.team-member-box {
    border-radius: 10px;
    border: 1px solid #969696;
    background: #F0ECE5;
    overflow: hidden;
    height: 60vh;
}

.team-box .icon {
    width: 44px;
    height: 44px;
    margin-top: 0.70vw;
}

.team-box h4 {
    font-size: 1.276vw;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1.7vw;
}

.back-btn {
    font-family: "Plus Jakarta Sans", sans-serif;
    border: 1px solid rgba(193, 154, 96, 1);
    background-color: transparent;
    padding: 10px 20px;
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

.back-btn img {
    width: 9px;
    height: 13px;
}

.card-box-1 {
    background: var(--new, linear-gradient(145deg, #F1F1F1 20.56%, #C19A60 100.26%));
    border-radius: 8px;
    height:100%;
}

.map-tab-section h2 {
    border: 1px solid #C19A60;
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box !important;
    border-radius: 7px;
    padding-top: 15px !important;
    padding-left: 11px;
    color: var(--white);
    font-size: 17px !important;
    font-weight: 600;
    margin-bottom: 10px !important;
    padding-bottom: 15px !important;
}

.map-tab-section .list-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.map-tab-section .chevron_down_arrow {
    width: 16px;
    height: 16px;
}

.future-mobile-tab .listbox {
    background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.future-mobile-tab .listbox img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.future-mobile-tab .listbox span {
    color: var(--white);
}

.future-mobile-tab .listbox {
    margin-bottom: 15px;
}

.future-mobile-tab h3 {
    font-size: 1.2vw;
    margin-bottom: 1.300vw;
}

.future-mobile-tab p {
    font-size: 0.99vw;
    color: #3D3D3D
}

.future-mobile-tab .listbox {
    display: none;
}

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 9999;
}

.modal-content {
    border: none;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    padding: 1.3rem 2rem;
    padding-bottom: 0px;
}

.modal-header button {
    border: none;
    background: none;
}

.modal-header button img {
    width: 40px;
    height: 40px;
}

.modal-body {
    padding: 1.3rem 2rem;
    padding-bottom: 0px;
}

.modal-footer {
    display: flex;
    justify-content: start;
    border-top: none;
    padding: 1.3rem 2rem;
    gap: 0.6rem
}

.pagination-boxes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3vw;
}

.pagination-boxes .box {
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    padding: 16px 16px;
    cursor: pointer;
}

.insight-card {
    padding-bottom: 3.6vw;
    border-bottom: 0.5px solid #D8D8D8;
}

.pagination-boxes .box img {
    width: 15px;
    height: 15px;
}

.pagination-boxes .box.active {
    background: var(--Linear, linear-gradient(90deg, #573E18 0%, #C19A60 100%));
}

.pagination-boxes .box.active p {
    color: var(--white);
}

.pagination-boxes .box p {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 16px;
}

.footer-content a {
    color: white !important;
    text-decoration: none;
}

.insights-tab-content a {
    color: rgb(12 12 12) !important;
    text-decoration: none;
}

#dreams_section {
    padding-bottom: 10vw;
}

.philosophy-section .subheading-text {
    font-size: 1.6vw;
    text-align: center;
    line-height: 1.30;
}

.philosophy-section .gradient-text {
    font-size: 1.6vw;
    text-align: center !important;
}

.box-card {
    padding-bottom: 80px;
    position: relative;
    height: 100%;
}

.box-card .btn-box {
    position: absolute;
    bottom: 0;
    left: 0;
}

.box-card .read-more-btn {
    width: 35%;
}

.pdf-item {
    list-style: none !important;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    margin-bottom: 5px;
}

.pdf-text strong {
    font-size: 16px;
}

.pdf-text span {
    font-size: 16px;
}

.thankyou-wrapper {
    max-width: 100%;
    padding: 50px 20px;
    text-align: center;
    margin: 30px auto;
    box-sizing: border-box;
}

.thankyou-wrapper h1 {
    color: #0066b2;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 10vw;
}

.thankyou-wrapper p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 5vw;
}

.footer-section a {
    color: white !important;
    text-decoration: none;
}

.box-card .gradient-text {
    font-size: 1.350vw;
    padding-top: 2vw;
}

.terms-section .gradient-text {
    font-size: 1.250vw;
    font-weight: 700;
}

.mobile-banner {
    display: none;
}

.searchBox {
    position: relative;
}

.searchBox .searchbtn {
    position: absolute;
    top: 5px;
    right: 18px;
}

.founderSwiper .swiper-slide{
    height:100%;
}


@media (min-width:769px) and (max-width:1100px) {

    .white-card-box .card-img-2 {
        width: 100%;
        height: 100%;
    }

    .card-box1 .card-img1 {
        width: 100% !important;
        height: 100%;
        margin-left: auto;
        margin-top: -1.4px;
        display: table;
    }

}

@media(max-width:1199px) {
    .main-nav li span {
        display: block;
        position: absolute;
        right: 15px;
        top: 0px;
        font-size: 2rem;
        line-height: 1;
    }

    .main-nav li li span {
        top: 12px;
    }

    .mobNav {
        position: fixed;
        width: 100vw;
        height: 100vh;
        overflow: auto;
        max-width: 500px;
        top: -35px;
        /* right:-82px; */
        right: calc(-100% - 82px);
        background: var(--dark-black);
        z-index: 99;
        transition: all 0.5s ease-in-out;
    }

    .mobNav.active {
        right: calc(0% - 82px);
    }

    .main-nav {
        padding: 30px;
    }

    .main-nav ul {
        padding-bottom: 1px;
        padding-top: 30px;
        border-top: 1px solid var(--dark-white);
    }

    .main-nav li {
        margin-bottom: 20px;
    }

    .main-nav li a {
        font-size: 18px;
        font-weight: 400;
    }

    .main-nav ul {
        margin-bottom: 30px;
    }

    .closeBtn {
        display: block;
        background: none;
        border: none;
        margin-bottom: 30px;
        width: 25px;
    }

    .closeBtn svg {
        width: 100%;
        height: auto;
    }

    .closeBtn svg,
    .closeBtn svg path {
        fill: var(--dark-white);
    }

    .team-box h4 {
        font-size: 16px;
    }

}


@media(max-width:991px) {
    .about-section .swiper-pagination-bullet::before {
        display: none;
    }

    .card-box1 span {
        font-size: 1.7vw;
        line-height: 0.3vw;
    }

    .founder-info-box h4 {
        font-size: 1.260vw;
    }

    .about-section .swiper-pagination-bullet {
        margin: 0 5px !important;
        width: 33px;
        height: 33px;
        font-size: 0.9rem;
    }

    .why-equinova.bgBlack {
        background: #2B2A28 !important;

    }

    .futureVid h2 {
        display: flex;
        gap: 1.5rem;
        font-size: 1.7rem;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        background: url(../images/financial_future/chevron-down.svg) no-repeat right center;
        background-size: 25px auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .regulatory-box-content h2 {
        display: flex;
        border: 1px solid #C19A60;
        background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box !important;
        border-radius: 7px;
        padding-top: 15px !important;
        padding-left: 11px;
        padding-right: 20px;
        color: var(--white);
        margin-bottom: 16px !important;
        padding-bottom: 15px !important;
        font-size: 15px !important;
        font-weight: 600;
    }

    .list-vid-cont {
        padding-bottom: 20px;
    }

    .btn p {
        color: var(--golden) !important;
        font-size: 18px;
    }

    button.btn.active p {
        color: #fff !important;
    }

    .tab-arrow-box img {
        width: 17px;
        height: auto;
        transform: rotate(90deg);
    }

    .fund-switch {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.1rem;
        margin-top: 10px;
    }

    .fund-switch .btn {
        min-width: 150px;
    }

    .fund-links li,
    .fund-links li a {
        color: var(--golden);
    }

    .tab-pane p.section-desc.text-white {
        color: var(--dark-black) !important;
    }

    .tab-pane .section-title {
        color: var(--golden);
    }

    .tab-arrow-box {
        border: 1px solid var(--light-gold);
        background: rgba(0, 0, 0, 0.5);
    }

    .future-mobile-tab .listbox {
        display: block;
    }

    .future-mobile-tab .listbox img {
        width: 35px;
        height: 35px;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .mobile-banner img {
        height: 100vh
    }
}

@media (max-width:768px) {

    h2 {
        font-size: 27px !important;
    }

    .futureVid h2 {
        font-size: 17px !important;
        padding-right: 20px;
    }

    /* .banner-section {
        height: 110vh;
    } */

    .main-header {
        padding: 17px 20px;
    }

    header {
        top: 30px;
    }

    .container {
        max-width: 94.104vw !important;
    }

    .banner-section .banner-text-content {
        top: 13%;
        left: 2%;
        width: 96%;
        text-align: center;
    }

    .inner_banner .banner-text-content {
        top: 59%;
        left: 50%;
        width: 96%;
        text-align: center;
    }


    .banner-section .gradient-text {
        font-size: 39px !important;
    }

    .button-section {
        width: 100%;
    }

    .banner-section .banner-text-content h1 {
        font-size: 35px;
        width: 100%;
    }

    .gradient-text {
        font-size: 27px !important;
    }

    /* .banner-section .banner-text-content p {
        width: 86%;
    } */

    .white-rounded-section {
        border-radius: 0px;
        padding: 25px 17px
    }

    .about-section .abt-section-img {
        margin-top: 50px;
        /* margin-bottom: 50px; */
        height: 100%;
    }

    .logo img {
        width: 123px;
        height: 121px;
        position: absolute;
        top: calc(50% - 17px);
    }

    .suport-box p {
        font-size: 15px;
    }

    .banner-section::before {
        width: 100%;
    }

    .transparent_img {
        width: 70%;
        bottom: 0;
        right: -5.5vw
    }

    .marquee {
        margin-top: 50px;
    }

    .marquee-container {
        bottom: 37px;
        margin-bottom: 10px;
    }

    .marquee span {
        -webkit-text-stroke: 0.7px #c6a26e;
    }

    .marquee-track span {
        font-size: 24px;
        color: #fff;
        font-weight: 500;
        padding: 0 2.5rem;
    }

    .marquee span {
        font-size: 70px;
    }

    .container-spacing {
        padding: 55px 25px;
    }

    .footer_logo {
        width: 229px;
        height: 118px;
        object-fit: cover;
    }

    .subscribe-box {
        margin-top: 30px;
    }

    .submit-btn {
        position: absolute;
        top: 23px;
        right: 0.5vw
    }

    .white-card-box .card-img-2 {
        width: 100%;
        height: 100%;
    }

    .box-1::before {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .card-content {
        position: absolute;
        bottom: 33px;
        left: 35px
    }

    .card-content h4 {
        font-size: 14px;
    }

    .discover-btn {
        margin-top: 38px;
    }

    .arrow-navigation-box {
        width: 40px;
        height: 40px;
    }

    .arrow-navigation-box img {
        width: 14px;
        height: 12px;
        object-fit: cover;
    }

    .section-desc {
        color: var(--grey) !important;
    }

    .fund-links {
        display: flex;
        flex-direction: column;
    }

    .fund-links a {
        color: var(--grey);
    }

    .main-nav li a {
        font-size: 15px;
        font-weight: 400;
    }

    .fund-switch .btn {
        width: 48% !important;
        height: 30%;
    }

    .explore-link img {
        width: 13px;
        height: 13px;
        object-fit: cover;
    }

    .btn p {
        color: var(--golden) !important;
    }

    .section-title {
        display: none;
    }

    .tab-arrow-box {
        width: 35px;
        height: 35px;
        object-fit: cover;
        border: 1px solid var(--light-gold);
        background: rgba(0, 0, 0, 0.5);
    }

    .white-rounded-section-2 {
        padding-top: 64px;
        border-radius: 30px;
    }

    .white-rounded-section-2 h2 {
        font-size: 23px !important;
    }

    .white-rounded-section-2 .gradient-text {
        font-size: 23px !important;
    }

    .fund-switch .btn.active p,
    .fund-switch .btn[aria-selected="true"] p {
        color: #fff !important;
    }

    .fund-switch .btn p {
        font-size: 18px;
    }

    .fund-switch .btn {
        padding: 12px 15px;
    }

    .discover-btn {
        position: relative;
        top: 0;
        left: 0;
    }

    .card-section .gradient-text {
        font-weight: 600;
        font-size: 17px !important;
    }

    .regulatory-tab-list li {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .futureList li span {
        font-size: 15px;
    }

    .file_icon {
        width: 33px;
    }

    .cardBox h3 {
        padding-top: 15px;
        padding-bottom: 10px;
        font-size: 16px;
    }

    .cardBox {
        padding: 20px;
    }

    .insights-tabs {
        padding-left: 10px;
    }

    /* .wrapper{
        padding-left: 14px;
        padding-right: 14px;
    }
     */
    .article-list {
        margin-top: 25px;
    }

    .article-card-list {
        padding-left: 24px;
    }

    .article-list h2 {
        font-size: 13px !important;
    }

    .article-list h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .insights-tab {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-border {
        border: none;
    }

    .swiper-slide .cardBox img {
        height: 100% !important;
    }

    .article-section {
        margin-top: 37px !important;
    }

    .articleWrap .swiper-button-prev {
        top: -20px;
        left: auto;
        right: 67px;
    }

    .articleWrap .prevBtn {
        padding: 4px 17px;
    }

    .articleWrap .nextBtn {
        padding: 4px 17px;
    }

    .articleWrap .swiper-button-next {
        top: -20px;
        right: 18px;
    }

    .firstcardbox {
        border: none;
    }

    .card-boxes {
        padding: 25px 0px;
    }

    .contact-box {
        background: #FFF;
        box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.04);
        padding: 28.8px 28px;
    }

    .contact-form .btn {
        padding-left: 20px;
        padding-right: 20px;
        text-transform: none;
        border-radius: 5px;
        font-weight: 700;
        font-size: 13px;
        margin-top: 10px;
    }

    .card-img {
        height: 343px;
    }

    .with-bullets {
        padding-left: 24px;
    }

    .read-more-btn {
        padding: 10px 17px !important;
        font-size: 13px !important;
        margin-top: 20px;
    }

    .card-box h2 {
        font-size: 20px !important;
        margin-top: 28px;
    }

    .section-spacing {
        padding: 37px 28px !important;
    }

    .futures-tab-section h3 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .mobile-content {
        display: none;
        padding: 10px 0;
    }

    .futureTabList li.active .mobile-content {
        display: block;
    }

    /* Hide desktop tab content */
    .futures-tab-section {
        display: none;
    }

    .table th,
    .table td {
        font-size: 13px;
    }

    .terms-section h4 {
        font-size: 14px;
    }

    .terms-section div {
        position: relative;
        margin-bottom: 14px;
    }

    .terms-section h4::after {
        left: 185px;
    }

    .terms-section p {
        position: absolute;
        left: 220px;
    }

    .terms-section {
        margin-top: 20px;
    }

    .flagship-box-1 {
        border: none;
    }

    .flagship-section {
        border: none;
    }

    .content-box-heading {
        padding-bottom: 7px;
    }

    .insights-tabs {
        padding-left: 0px !important;
    }

    .tab-content .media-tab .row>[class*="col-"] {
        padding-left: 0 !important;
    }

    .pms-section {
        border-bottom: 1px dashed #DAD0C0;
        padding-bottom: 50px;
    }

    .member-card-box1 {
        height: auto;
    }

    .member-card-box1 .card-img1 {
        height: auto;
        margin-left: auto;
    }

    .member-card-box1 .card-img2 {
        width: 389px !important;
        height: 402px;
    }

    .card-box1 span {
        font-size: 19px !important;
    }

    .card-box1 h4 {
        font-size: 12px;
    }

    .team-box h4 {
        font-size: 16px !important;
        margin-bottom: 5px;
        margin-top: 14px;
    }

    .team-box p {
        font-size: 12px !important;
    }

    .team-box .icon {
        width: 45px;
        height: 45px;
        margin-top: 9px;
    }

    .card-box1 .card-img1 {
        width: 235px !important;
        margin-left: auto;
        display: table;
    }

    .founder-info-box {
        padding: 20px 20px;
    }

    .card-box-content {
        position: relative;
        background-color: var(--white);
        border-radius: 0px;
        width: 100%;
        height: 100%;
        top: 0 !important;
        left: 0 !important;
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .card-box-content .btn {
        width: max-content;
        align-self: center;
    }

    #dreams_section {
        padding-bottom: 60px !important;
    }

    .map-container {
        margin-top: 11px;
    }

    .map-content {
        margin-top: 35px !important;
    }

    .map-content-section {
        position: relative;
        max-width: 100%;
        padding: 20px 14px;
        padding-bottom: 10px;
        display: flex;
        flex-direction: column;
    }

    .map-content-section h3 {
        font-size: 17px;
    }

    .map-content-section p {
        font-size: 14px;
        color: var(--black);
    }

    .map-content-section img {
        height: 18px;
    }

    .map-container {
        position: relative;
        width: 100%;
        height: 320px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .map-section {
        width: 100%;
    }

    .flagship-btn button {
        padding: 10px 14px;
    }

    .banner-section .banner-text-content p {
        width: 100%;
        font-size: 13px;
    }

    .team-member-box {
        height: 100%;
    }

    .recognise-icon img {
        width: 100%;
        height: 60px;
    }

    .about-content-section p {
        text-align: justify;
    }

    .swiper-image-icon {
        margin-top: 15px;
        height: 95px;
        margin-bottom: 30px;
    }

    .linkedin_icon {
        right: 1.9vw;
    }

    .futureVid video {
        margin-bottom: 0px;
    }

    .future-mobile-tab h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .future-mobile-tab p {
        font-size: 13px;
    }

    .searchButton {
        border: none;
        padding: 8px 23px;
    }
    
    .box-card .gradient-text{
        font-size: 18px !important;
    }
    
}

@media(max-width:420px) {
    .loginBtn {
        display: none;
    }

}

@media(max-width:576px) {
    .mobNav {
        right: calc(-100% - 80px);
        top: -30px;
    }

    .mobNav.active {
        right: calc(0% - 35px);
    }

    .searchBar input {
        height: 50px;
    }

    .searchButton {
        margin: 0 auto;
    }
}

@media (min-width: 991px) {

    .content-container {
        position: absolute !important;
        top: 16vw;
        left: 1vw;
        width: 85.8vw;
        z-index: 3;
        padding: 3vw 4vw;
    }

    .fund-bg::before {
        content: "";
        position: absolute;
        inset: 1vw;
        background: linear-gradient(358deg, rgba(0, 0, 0, 0.52) 0%, rgba(102, 102, 102, 0.00) 100%);
        z-index: 2;
        border-radius: 10px;
    }

    .team-box h4 {
        font-size: 17px !important;
        margin-bottom: 5px;
        margin-top: 14px;
    }

    .searchBox .form-control{
        padding: 13px 20px !important;
    }


}

@media (max-width: 991px) {
    .contact-form-section img {
        height: auto;
    }

    .future-mobile-tab {
        margin-top: 40px;
    }
    
    
    .regulatory-box-content h2 {
        display: flex;
        border: 1px solid #C19A60;
        background: linear-gradient(76deg, #583f19 1.46%, #8f6f3e 44.97%, #c0995f 81.86%) border-box !important;
        border-radius: 7px;
        padding-top: 15px !important;
        padding-left: 11px;
        padding-right: 20px;
        color: var(--white);
        margin-bottom: 16px !important;
        padding-bottom: 15px !important;
        font-size: 15px !important;
        font-weight: 600;
    }
}