body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif', serif;
    font-size: var(--font-xs);
    color: var(--dark);
    background-color: #FFF2DD;
}

:root {
    /* --orange: #F46F32; */
    --yellow: #FFF234;
    --white: #ffffff;
    --black: #000;
    --dark: #060606;
    --blue: #332F91;
    --blue-op10: #322f912d;
    --font-xxl: 80px;
    --font-xl: 48px;
    --font-lg: 39px;
    --font-md: 32px;
    --font-sm: 24px;
    --font-xs: 20px;
    --font-xxs: 18px;
    --font-xxxs: 16px;
    --pt: 100px;
    --pb: 100px;
    --font-roboto: 'Roboto', sans-serif;
    --font-khula: 'Khula', sans-serif;
}

.light {
    opacity: 80%;
}

.big-title {
    font-size: var(--font-xxl);
}

.title {
    font-size: var(--font-xl);
}

.small-title {
    font-size: var(--font-lg);
}

.subtitle {
    font-size: var(--font-md);
}

.small-subtitle {
    font-size: var(--font-sm);
}

.text-big {
    font-size: var(--font-xs);
}

.text-small {
    font-size: var(--font-xxs);
}

.text-xsmall {
    font-size: var(--font-xxxs);
}

.padding-top {
    padding-top: var(--pt);
}

.padding-bottom {
    padding-bottom: var(--pb);
}

.text-color-primary {
    color: var(--blue);
}

.text-color-white {
    color: var(--white);
}

.lh-lg {
    line-height: 1.3;
}


/* Font Weight Utilities */

.thin {
    font-weight: 100;
}

.extra-light {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.black {
    font-weight: 900;
}

.container {
    max-width: 1440px;
}

.font-roboto {
    font-family: var(--font-roboto);
}

p {
    font-size: var(--font-xxs);
    line-height: 160%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a,
a:hover {
    text-decoration: none;
    transition: all 0.6s;
    color: inherit;
}


/* St Hero */

.hero-background {
    /* background: linear-gradient(to bottom, #332f91 0%, rgba(255, 242, 221, 0.5) 45%, rgba(255, 242, 221, 0.5) 100%); */
    background: linear-gradient(to bottom, #332f91 -5%, #FFF2DD 10%);
}

.about-background {
    background: linear-gradient(to bottom, #332f91 -5%, #FFF2DD 20%);
}

.hero-main-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hero-heading {
    width: 100%;
    height: 100%;
    max-width: 28%;
    gap: 100px;
    display: flex;
    flex-direction: column;
}

.hero-slider {
    width: 100%;
    max-width: 57%;
}

.hero-bm-heading {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-line {
    /* color: var(--yellow); */
    background-color: var(--yellow);
    height: 3px;
    width: 100%;
    margin: 0 auto;
    max-width: 200px;
    /* display: flex; */
}

.bottom-line-left {
    /* color: var(--yellow); */
    background-color: var(--yellow);
    height: 3px;
    width: 100%;
    margin: 0 auto 0 0;
    max-width: 200px;
    /* display: flex; */
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 848px;
    margin: 0 auto;
    text-align: center;
}

.hero-bm-pera {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-bm-btn {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    width: max-content;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 32px;
    border: 1px solid var(--white);
    font-family: 'Roboto', sans-serif;
}

.hero-bm-btn:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 1px solid var(--white);
    transition: all 0.4s;
}

.hero-slider-br {
    padding: 10px;
    border: 1px solid var(--white);
    width: 97%;
    position: absolute;
    height: 96%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-wrap {
    position: relative;
    display: flex;
    gap: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    color: var(--white);
    background-color: transparent;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 1px solid red;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--white);
}

.swiper-button-next::after {
    background-image: url('../images/right-arrow.svg');
}

.swiper-button-prev::after {
    background-image: url('../images/left-arrow.svg');
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: auto;
    right: auto;
}


/* END Hero */


/* ST Choose */

.bg-pink {
    background-color: #F7E1DF;
}

.bg-liteblue {
    background-color: #E3E3F9;
}

.choose-categories {
    background-image: url('../images/whay-choose-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.choose-main-wrap {
    display: flex;
    gap: 48px;
    flex-direction: column;
}

.choose-grid-wrap {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 0px;
}

.choose-grid-box {
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-width: 214px;
    height: -webkit-fill-available;
}

.choose-grid-img {
    height: 60px;
    width: 60px;
}

.image {
    width: 100%;
    max-width: 100%;
}


/* END Choose */


/* ST Our Brand */

.our-brand-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 50%;
    align-items: flex-start;
}

.our-brand-box {
    background-color: #F7E1DF;
    padding: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.brand-main-img {
    width: 100%;
    max-width: 70%;
}

.our-brand-content {
    width: 100%;
    display: flex;
    gap: 24px;
    max-width: 35%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-content-img {
    width: 100%;
    max-width: 160px;
}

.our-brand-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 45%;
}

.our-brand-marquee {
    height: 70px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff2dd;
    /* optional */
}

.marquee-text-box {
    display: flex;
    position: absolute;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-text-box span {
    font-size: 48px;
    color: #CECCF7;
    padding-right: 100px;
    /* space between duplicates */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.our-brand-main {
    display: flex;
    gap: 48px;
}

.partner-bg {
    background-image: url('../images/hand-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* or 'contain' depending on your needs */
    background-position: center;
}

.partner-main {
    padding: 60px;
    border: 1px solid var(--white);
    width: 100%;
    display: flex;
    gap: 48px;
    flex-direction: column;
    align-items: center;
}

.partner-main-wrap {
    padding: 15px;
}

.partner-cn-wrap {
    width: 100%;
    max-width: 550px;
    display: flex;
    gap: 50px;
    text-align: center;
    flex-direction: column;
}

.partner-bm-btn {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    width: max-content;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: 1px solid var(--white);
    font-family: 'Roboto', sans-serif;
}

.partner-bm-btn:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 1px solid var(--white);
    transition: all 0.4s;
}

.partner-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min-content;
    margin: 0 auto;
    padding: 10px;
    background-color: #FFF2DD;
}

.brand-slide-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    background-color: #E4E4F9;
}

.brand-slide-text {
    font-size: 24px;
    color: var(--blue);
    text-align: center;
}

.brand-slide-img {
    width: 100%;
    max-width: 450px;
}

.swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    /* white ring */
    background-color: transparent;
    border-radius: 50%;
    opacity: 1;
    /* override Swiper default */
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #ffffff;
    border-color: #ffffff;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 20px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}


/* End Our Brand  */


/* St Trusted  */

.trusted-main {
    display: flex;
    gap: 48px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.trusted-right-cn,
.trusted-left-cn {
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    padding: 10px;
}

.trusted-left-img {
    width: 100%;
    max-width: 100%;
}

.trusted-left-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 362px;
    padding-bottom: 12px;
}


/* End Trusted  */


/* St Reviews  */

.reviews-slider {
    display: flex;
    gap: 48px;
    flex-direction: column;
}

.reviewswiper-button-wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    justify-content: center;
}

.reviewswiper-button-next:hover,
.reviewswiper-button-prev:hover {
    background-color: var(--white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewswiper-button-next,
.reviewswiper-button-prev {
    position: relative;
    color: var(--white);
    background-color: transparent;
    width: 44px;
    display: flex;
    height: 44px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid #E1DFDF;
    justify-content: center;
    align-items: center;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.reviewswiper-button-next::after,
.reviewswiper-button-prev::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.reviewswiper-button-next::after {
    background-image: url('../images/right-arrow2.svg');
}

.reviewswiper-button-prev::after {
    background-image: url('../images/left-arrow2.svg');
}

.reviewswiper-button-prev,
.swiper-rtl .reviewswiper-button-next {
    left: auto;
    right: auto;
}


/* End  Reviews  */

.review-slide-box-wrap {
    background-color: transparent;
}

.bg-line-bt {
    border-bottom: 1px solid #e1e1e1;
}

.review-slide-box-wrap {
    display: flex;
    flex-direction: column;
    font-family: var(--font-khula);
}

.review-slide-box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
}

.review-cn-left {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding-top: 6px;
}

.review-title {
    max-width: 120px;
    width: 100%;
    font-weight: 500;
    text-align: left;
}

.text-red {
    color: red;
}

.review-slide-box {
    background: linear-gradient(to top, #FDD9C7 0%, #ffffff00 20%);
    background-size: 100% 200%;
    background-position: top;
    transition: background-position 0.5s ease;
    overflow: visible;
}

.review-slide-box:hover {
    background-position: bottom;
}

.view-btn {
    display: flex;
    text-transform: uppercase;
    width: max-content;
    letter-spacing: 1px;
    padding: 12px 32px;
    border: 1px solid var(--blue);
    gap: 8px;
    align-items: center;
    padding-right: 60px;
    padding-top: 16px;
    position: relative;
}

.view-icon-right {
    width: 29px;
    height: 30px;
    position: absolute;
    right: 18px;
    top: 10px;
}

.view-btn p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.view-btn:hover {
    background-color: #F8E2DF;
    color: var(--white);
    border: 1px solid transparent;
    transition: all 0.4s;
}

.view-btn:hover svg path {
    fill: var(--white);
    transition: all 0.4s;
}


/* About ST  */


/* About hero */

.about-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    max-width: 893px;
}

.about-hero-main-wrap {
    display: flex;
    gap: 48px;
}

.about-hero-img {
    max-width: 48%;
    width: 100%;
    position: relative;
    display: flex;
    height: max-content;
    align-items: center;
    justify-content: center;
}


/* .about-img-br {
    padding: 10px;
    border: 1px solid var(--white);
    width: 97%;
    position: absolute;
    height: 89%;
} */

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 44%;
    width: 100%;
}

.about-hero-content p {
    font-size: 16px;
}

.about-hero-heading {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.about-hero-pera {
    display: flex;
    flex-direction: column;
    gap: 10px;
}