@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* primary color #261fb3 */

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

#maincontainer {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
span,
small,
ul li,
ul,
strong,
b {
    font-family: "Inter", sans-serif;
    color: #222;
}

a {
    text-decoration: none;
    color: #222;
}

::-webkit-scrollbar {
    display: none;
}


.ambasSliderContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.Ambass-Video {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.ambasVideo {
    min-width: calc(50% - 10px);
    /* 2 videos in view, accounting for 20px gap */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.ambasVideo video {
    width: 100%;
    height: 300px;
    min-height: 590px !important;
    object-fit: cover;
}

.ambasContent {
    padding: 10px;
    text-align: center;
}

.ambasContent h4 {
    margin: 10px 0 5px;
    font-size: 1rem;
    color: #1e37af;
}

.ambasContent p {
    font-size: 0.9rem;
    color: #444;
}

.ambasNavBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e37af;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
    opacity: 0.8;
    transition: 0.3s ease;
}

.ambasNavBtn:hover {
    opacity: 1;
}

.ambasNavBtn.left {
    left: 10px;
}

.ambasNavBtn.right {
    right: 10px;
}

@media (max-width: 768px) {
    .brandambas-Right {
        width: 100%;
    }

    .ambasVideo {
        min-width: 100%;
    }

    .ambasVideo video {
        height: 250px;
    }

    .ambasContent h4 {
        font-size: 1rem;
    }

    .ambasContent p {
        font-size: 0.85rem;
    }

    .ambasNavBtn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .ambasNavBtn.left {
        left: 5px;
    }

    .ambasNavBtn.right {
        right: 5px;
    }
}


/* hero section */
.hero-section {
    width: 100%;
    /* height: auto; */
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.heroContainer {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #000000b1;
    /* background: url(https://videos.pexels.com/video-files/7584467/7584467-uhd_2732_1440_25fps.mp4);
    background-position: center center;
    background-size: cover; */
}

.hero-section video {
    position: absolute;
    width: 100%;
    /* height: 550px; */
    z-index: -9;
    top: 0;
    left: 0;
}

.heroContainer h4 {
    font-size: 1.3rem !important;
    /* text-decoration: underline; */
    margin-bottom: 20px !important;
    color: #fff;
    border: 1px solid #fff !important;
}

.heroContainer h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    text-transform: capitalize;
    margin-bottom: 20px;
    max-width: 1000px;
    text-align: center;
    color: #fff;
}

.heroContainer p {
    max-width: 750px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.heroContainer .hero-description strong {
    color: #fff;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.heroContainer .hero-cta a {
    padding: 10px 25px;
    transition: all .3s ease-in-out;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-cta a:nth-child(1) {
    background: linear-gradient(125deg, #25228d, #372ffc);
    color: #fff;
    border: none;
    border-radius: 5px;
}

.hero-cta a:nth-child(2) {
    background: none;
    border: 1px solid #ecf1ff;
    color: #fff;
    border-radius: 5px;
}

/* hero section */


/* about section */
.about-section {
    width: 100%;
    /* height: auto; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.aboutContainer {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 20px;
    padding: 10px;
    margin-top: 40px;
}

.about-left,
.about-right {
    width: 50%;
    height: auto;
}

.about-left img {
    width: 600px;
    height: auto;
}

.about-right h4,
.riskFactorContainer h4,
.heroContainer h4,
.brandambas-Left h4,
.NewsContainer h4,
.partnerContainer h4 {
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 50px;
    border: 1px solid #98adff;
    padding: 8px 20px;
    display: inline;
}

.about-right h1,
.brandambas-Left h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #25228d;
    text-transform: capitalize;
    font-weight: 700;
}

.about-right p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 90px;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 80px 10px;
    margin-top: 30px;
    /* margin-bottom: 30px; */
}

.statCard {
    width: 48%;
    min-width: 35%;
    height: 90px !important;
    min-height: auto;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 5px 5px #25228d;
    background-color: #ecf1ff;
    height: auto;
}

.statCard h3 {
    font-size: 4rem;
    line-height: 6rem;
    margin-top: -70px;
    background: linear-gradient(180deg, #372ffc, #ecf1ff);
    background-clip: text;
    background-size: auto;
    color: transparent;
    -webkit-background-clip: text;
    position: relative;
}

.statCard:nth-child(1)  h3::after{
    content: "k+";
}

.statCard p {
    text-transform: capitalize;
    font-size: 1.2rem;
}

.about-right a {
    padding: 10px 25px;
    border-radius: 15px;
    background: linear-gradient(125deg, #2e23df, #372ffc);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    text-transform: capitalize;
    font-weight: 600;
}

/* about section */


/* risk Factor section */
.riskFactors-Section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.riskFactorContainer {
    width: 100vw;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
}

.riskFactorContainer h1,
.NewsContainer h1,
.partnerContainer h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 700;
    color: #25228d;
    text-transform: capitalize;
    margin-bottom: 15px;
    /* max-width: 800px; */
    text-align: center;
    max-width: 800px;
}

.riskFactorContainer>p {
    max-width: 950px;
    text-align: center;
}

.riskSlider-1,
.riskSlider-2 {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    /* margin-top: 60px; */
}

.riskSlider-1 {
    margin-top: 40px;
}

.riskFactorContainer {
    overflow: hidden;
}

.riskSlider-1,
.riskSlider-2 {
    overflow: hidden;
}

.riskFactCard {
    min-width: 20%;
    width: auto;
    max-width: 30%;
}



.riskFact-Cards {
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 5px;
    margin-top: 50px;
}

.riskFactCard {
    width: 25%;
    /* border: 1px solid #222; */
    background: #ecf1ff;
    border: 1px solid #98adff;
    border-radius: 15px;
    padding: 10px;
    height: auto;
}

.riskFactCard h2 {
    font-size: 5rem;
    line-height: 5.5rem;
    margin-top: -60px;
    background: linear-gradient(180deg, #372ffc 0%, #ecf1ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.riskFactCard p {
    font-size: 14px;
    color: #333;
}

/* Shared Card Styles */
.riskFact-Cards {
    display: flex;
    gap: 20px;
}

/* Block 1 Animation - Left to Right */
.riskSlider-1 .riskFact-Cards {
    animation: slide-left-right 20s linear infinite;
}

/* Block 2 Animation - Right to Left */
.riskSlider-2 .riskFact-Cards {
    animation: slide-right-left 20s linear infinite;
}

/* Keyframes for Block 1 */
@keyframes slide-left-right {
    0% {
        transform: translateX(-100%);
    }

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

/* Keyframes for Block 2 */
@keyframes slide-right-left {
    0% {
        transform: translateX(100%);
    }

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

/* Optional Styling for Cards */
.riskFactCard {
    /* min-width: 250px; */
    background: #ecf1ff;
    border: 1px solid #98adff;
    border-radius: 15px;
    padding: 10px;
    height: auto;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    flex-shrink: 0 1;
}

/* Pause on hover */
.riskFact-Cards:hover {
    animation-play-state: paused;
}

/* risk Factor section */



/* brolo section */
.brolo-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.broloContainer {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* margin-top: 30px; */
}

.floating-circle1 {
    width: 350px;
    height: 350px;
    background: none;
    border: 50px solid #98adff;
    position: absolute;
    border-radius: 50%;
    top: -120px;
    left: -90px;
}

.floating-circle2 {
    width: 350px;
    height: 350px;
    background: none;
    border: 50px solid #98adff;
    position: absolute;
    border-radius: 50%;
    top: -120px;
    right: -90px;
}

.mission-tag {
    margin-bottom: 60px;
}

.mission-tag h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    background: radial-gradient(#2e23df50 0%, #fff 100%);
    padding: 10px 25px;
}

.Brolo-main-text h1 {
    font-size: 8rem;
    line-height: 7.5rem;
    color: #000;
    font-weight: 550;
    max-width: 900px;
    text-transform: uppercase;
    /* z-index: ; */
}

.BROLO {
    width: 100%;
    z-index: -11;
}

.BROLO h2 {
    font-size: 25rem;
    text-align: center;
    font-weight: 450;
    color: transparent;
    background: linear-gradient(365deg, #98adff 0%, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    margin-top: -160px;
    /* z-index: -999; */
}

/* brolo section */


/* partner logo */
/* Partner Logo Section */
.partnerSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* padding: 60px 0; */
    text-align: center;
}

.partnerContainer {
    width: 100%;
    height: auto;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1400px;


    h1{
        margin-bottom: 40px;
    }
}

.part-logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.part-logo-track {
    display: flex;
    width: max-content;
    animation: scroll-left 10s linear infinite;
}

.part-logo-slide {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.part-logo-slide img {
    width: auto;
    height: 130px;
    margin-left: 40px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.part-logo-slide img:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
    transform: scale(1.05);
}

/* Fade on edges */
.part-logo-slider::before,
.part-logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.part-logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.part-logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

/* Smooth infinite scrolling */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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


@media only screen and (max-width:768px){
    .partnerSection{
        padding: 0 10px;

        .partnerContainer{
            padding: 0;
            margin: 40px 0;

            h4{
                font-size: 1rem;
                margin-bottom: 10px;
            }

            h1{
                font-size: 2rem;
                line-height: 2.5rem;
            }
        }
    }
}
/* partner logo */



/* brand ambassador */
.brandAmbassadors {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.brandAmbas-Container {
    width: 100%;
    height: 100vh;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.brandambas-Left,
.brandambas-Right {
    width: 50%;
    height: 100%;
}

.brandambas-Left,
.brandambas-Right {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.Ambass-Video {
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.ambasVideo {
    width: 50%;
    position: relative;
}

.ambasVideo video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px #98adff25;
}

.ambasContent {
    width: 100%;
    position: absolute;
    bottom: -5px;
    height: auto;
    min-height: 80px;
    max-height: 120px;
    border-radius: 15px;
    background: linear-gradient(15deg, #98adff, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
    text-align: center;
}

.ambasVideo img {
    width: 300px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 0 30px #98adff25;
}

.brandambas-Left p {
    color: #222;
    font-size: 1rem;
    max-width: 80%;
    margin-bottom: 30px;
}

.brandambas-Left .brandAmbas-Cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.brandAmbas-Cta a {
    padding: 10px 25px;
    border-radius: 15px;
    font-weight: 600;
    /* background-color: #25228d; */
}

.brandAmbas-Cta>a:nth-child(1) {
    background: linear-gradient(90deg, #25228d, #372ffc);
    color: #fff;
}

.brandAmbas-Cta>a:nth-child(2) {
    /* background: linear-gradient(90deg, #25228d, #372ffc); */
    /* color: #fff; */
    background: none;
    color: #25228d;
    border: 1px solid #25228d;
}

@media only screen and (max-width:768px) {
    .brandAmbas-Container{
        margin-top: 50px;

        h4{
            font-size: 1rem !important;
            margin-bottom: 10px !important;
        }

        h1{
            font-size: 1.8rem !important;
            line-height: 2.3rem !important;
            margin-bottom: 15px;
        }
    }
}

/* brand ambassador */

/* blog section */
.blogSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1e37af;
    margin-top: 30px;
    margin-bottom: 30px;
}

.blogContainer {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.blogContainer>h4 {
    font-size: 1rem;
    color: #fafafa;
    font-weight: 500;
    margin-top: 30px;
}

.blogContainer h1 {
    color: #f9f9f9;
    font-size: 2.5rem;
    line-height: 3rem;
    max-width: 850px;
    text-align: center;
}

.blog-Cards {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blogCard {
    width: 30%;
    height: auto;
    /* min-height: 400px; */
    min-height: 500px;
    max-height: auto;
    border-radius: 25px;
    background-color: #98adff50;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.blogCard img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 220px;
    object-fit: cover;
}

.blogCard small,
.blogCard h4,
.blogCard p,
.blogCard a {
    padding-left: 15px;
    padding-right: 15px;
}

.blogCard small {
    color: #d3d3d3;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.blogCard h4 {
    font-size: 1.2rem;
    color: #f9f9f9;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blogCard p {
    color: #fdfdfd;
    text-align: justify;
    margin-bottom: 10px;
}

.blogCard a {
    color: #fff;
    /* text-decoration: underline; */
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid #fff;
    margin-left: 15px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}

.blogCard a:hover {
    background-color: #f9f9f9;
    color: #222;
    transform: translateX(5px);
}

.blogCard a i {
    color: #fff;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.blogCard a:hover i {
    color: #222;
}

/* blog section */

/* news auto slider */
.newsAutoSlider-Section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.NewsContainer {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.NewsContainer p {
    max-width: 800px;
    font-size: 1rem;
    color: #222;
    margin-bottom: 30px;
}

.NewsContainer h1 {
    width: 100%;
    max-width: 70%;
    margin-top: 10px;
}

.news-slides {
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
    border-radius: 15px;
    /* box-shadow: 0 0 30px #00000020; */
    position: relative;
    margin-top: 30px;
}

/* Left Fade */
.news-slides::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, #fff, #ffffff00);
}

/* Right Fade */
.news-slides::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to left, #fff, #ffffff00);
}


.news-track {
    display: flex;
    width: max-content;
    animation: slideNews 60s linear infinite;
}

.news-track:hover {
    animation-play-state: paused;
}

.news-track img {
    /* width: 1300px; */
    width: auto;
    height: 250px;
    border-radius: 15px;
    flex-shrink: 0;
    object-fit: cover;
    margin-right: 15px;
}

/* .news-track img:nth-child(1){
    margin-left: 30px;
  } */

/* Keyframes */
@keyframes slideNews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-5500px);
        /* 5 original images × (1100px + 15px spacing) */
    }
}


/* news auto slider */



/* responsive code - 768px */
@media only screen and (max-width:768px) {

    html,
    body {
        width: 100%;
        height: 100%;
    }

    body {
        padding: 0;
        margin: 0;
    }

    .hero-section {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .hero-section video {
        display: none;
    }

    .heroContainer {
        width: 100%;
        height: auto;
        /* margin-top: -50px; */
        background: none;
        padding: 25px 15px;
        border: 1px solid #25228d;
        border-radius: 15px;
    }

    .heroContainer h4 {
        font-size: 14px !important;
        color: #2e23df;
        border: 1px solid #2e23df !important;
        margin-top: 30px;
        text-align: center;
    }

    .heroContainer .hero-description strong {
        color: #222;
    }


    .heroContainer h1 {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
        color: #111;
    }

    .heroContainer p {
        font-size: 1rem;
        color: #222;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .hero-cta a {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .hero-cta a:nth-child(2) {
        color: #222;
        border: 1px solid #222;
    }

    .about-section {
        width: 100%;
        height: auto;
    }

    .aboutContainer {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    .about-left,
    .about-right {
        width: 100%;
        height: auto;
    }

    .about-left,
    .about-right {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .about-left img {
        width: 100%;
    }

    .about-right h4 {
        font-size: 15px;
        text-align: center;
    }

    .about-right h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        text-align: center;
    }

    .about-right .about-description {
        color: #333;
    }

    .about-stats {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: -70px;
    }

    .statCard {
        width: 90%;
        margin-top: 80px;
    }

    .about-btn {
        width: 90%;
    }

    .riskFactors-Section {
        width: 100%;
        height: auto;
    }

    .riskFactorContainer,
    .riskSlider-1,
    .riskSlider-2 {
        width: 100%;
        height: auto;
        padding: 5px;
        overflow: hidden;
    }

    .riskFactorContainer h4 {
        font-size: 15px;
    }

    .riskFactorContainer h1 {
        font-size: 2rem;
        line-height: 3rem;
    }

    .riskFactorContainer>p {
        font-size: 1rem;
        color: #333;
    }

    .riskFact-Cards,
    .riskSlider-1,
    .riskSlider-2 {
        width: 100%;
        height: auto;
        /* background-color: #000000b1; */
    }

    .riskFactCard {
        width: auto;
        min-width: 300px;
        max-width: 350px;
        height: auto;
    }

    .brolo-section,
    .broloContainer {
        width: 100%;
        height: auto;
        min-height: 70vh;
        min-width: auto;
    }

    .floating-circle1,
    .floating-circle2 {
        width: 150px;
        height: 150px;
    }

    .floating-circle1 {
        left: -60px;
        top: -50px;
        border: 30px solid #98adff;
    }

    .floating-circle2 {
        top: -50px;
        right: -60px;
        border: 30px solid #98adff;
    }

    .mission-tag {
        margin-top: 50px;
        width: auto;
        height: auto;
    }

    .mission-tag h4 {
        font-size: 1.2rem;
    }

    .Brolo-main-text h1 {
        font-size: 3.5rem;
        line-height: 4rem;
    }

    .BROLO h2 {
        font-size: 7rem;
        margin-top: -70px;
    }

    .brandAmbassadors,
    .brandAmbas-Container {
        width: 100%;
        height: auto;
        min-height: auto;
        min-width: auto;
        max-width: auto;
    }

    .brandAmbas-Container {
        width: 100%;
        flex-wrap: wrap;
        height: auto;
        margin: 40px 0;
        min-height: 100vh;
    }

    .brandambas-Left,
    .brandambas-Right {
        width: 100%;
        height: auto;
        padding: 5px;
    }

    .brandambas-Left {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .brandambas-Left h4 {
        text-align: center;
        font-size: 15px;
    }

    .brandambas-Left h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .brandambas-Left p {
        width: 100%;
        max-width: 100%;
    }

    .brandAmbas-Cta {
        flex-wrap: wrap;
        gap: 10px 10px;
    }

    .brandAmbas-Cta a {
        width: 100%;
        padding: 15px auto;
    }

    /* 
    .Ambass-Video{
        width: 100%;
        flex-wrap: wrap;
    } */

    .ambasVideo:nth-child(5) video {
        width: 100%;
        height: auto;
        min-height: 650px !important;
        max-height: auto;
    }

    .brandambas-Right {
        margin-bottom: 30px;
    }

    .newsAutoSlider-Section {
        width: 100%;
        height: auto;
    }

    .NewsContainer {
        width: 100%;
        height: auto;
        min-height: auto;
        max-width: auto;
        padding: 5px;
    }

    .NewsContainer h4 {
        font-size: 15px;
        width: 100%;
        width: auto;
        display: inline;
        /* max-width: 100%; */
    }

    .NewsContainer h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        width: 100%;
        max-width: 100%
    }

    .news-slides {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        margin-top: 10px;
    }

    .news-track {
        width: 100%;
        height: auto;
    }

    .blogSection,
    .blogContainer {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: auto;
        padding: 5.5px;
    }

    .blogContainer h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .blog-Cards {
        gap: 20px;
    }

    .blogCard {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        /* height: auto; */
    }

}


/* brand ambassador */
.brainline-BrandAmbass{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .brainline-BrandAmbassContainer{
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 50px 0;
        gap: 30px;

        /* img{
            width: 100%;
            height: auto;
        } */

        .brandAmbas-Left, .brandAmbas-Right{
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
        }

        .brandAmbas-Left{

            h4{
                font-size: 1rem;
                color: #25228d;
                text-decoration: 1px underline #25228d;
                margin-bottom: 10px;
            }

            h2{
                font-size: 3.5rem;
                line-height: 4rem;
                margin-bottom: 20px;
            }

            p{
                font-size: 1rem;
                color: #222;
                max-width: 1100px;
            }
        }

        .brandAmbas-Right{

            img{
                width: 80%;
                height: auto;
                object-fit: cover;
                border-radius: 15px;
                box-shadow: 5px 5px 30px #00000015;
            }
        }
    }
}

@media screen and (max-width:768px) {
    .brainline-BrandAmbass{
        padding: 0 10px;

        .brainline-BrandAmbassContainer{

            .brandAmbas-Left{

                h4{
                    font-size: 1rem;
                    margin-bottom: 8px;
                }

                h2{
                    font-size: 2rem;
                    line-height: 2.5rem;
                    margin-bottom: 15px;
                }
            }

            .brandAmbas-Right{

                img{
                    width: 100%;
                }
            }
        }
    }
}
/* brand ambassador */