@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Apply the font globally to all elements */
* {
    font-family: "Roboto", Sans-serif;
}

/* Alternatively, apply it to the root elements */
html,
body {
    font-family: "Roboto", Sans-serif;
    color: #424242;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1160px !important
}

.container-test,
.container-test-lg,
.container-test-md,
.container-test-sm,
.container-test-xl {
    max-width: 1160px !important;
    margin: auto;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1160px !important;
    }
}

.custom-navbar {
    background-color: #FFFF;
    width: 100%;
    height: 90px;
}

h2.wp-block-heading {
    padding: 0px 50px;
}

.custom-navbar.scrolled {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Shadow line under navbar */
}

.site-logo {
    max-width: 100%;
    height: 85px;
}

.login-btn {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    color: #FFFF;
    padding: 6px 15px;
    transition: background-color 0.3s;
    border: none;
}

.login-btn:hover {
    color: #FFFF;
    background: linear-gradient(-90deg, #ff3b58, #f92c95);
}

.journey-btn {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #3f5bfc 40%, #3fd8f1 100%);
    color: #FFFF;
    padding: 6px 15px;
    transition: background-color 0.3s;
    border: none;
}

.journey-btn:hover {
    color: #FFFF;
    background: linear-gradient(-90deg, #3f5bfc 40%, #3fd8f1 100%);
}

.custom-navbar {
    background-color: #ffffff;
    z-index: 9999;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.custom-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 9999;
}

/* Customize link colors */
#navbarNav ul li .nav-link {
    color: #3f5bfc;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 11px;
}

#navbarNav ul li .nav-link:hover {
    font-weight: 600;
    color: #ff3b58;
}

.row {
    margin: auto;
    width: 100%;
    overflow: hidden;
}

.row>* {
    padding-left: 0;
    padding-right: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar-collapse {
        padding: 0 20px 20px;
        background: #fff;
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        border-top: 4px solid #1d3aff !important;
        border: .5px solid rgba(0, 0, 0, .09);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
    }
}


/* #navbarNav ul li:first-child .nav-link {
    color: #ff3b58;
    font-weight: bold;
}

#navbarNav ul li:not(:first-child) .nav-link {
    color: #3f5bfc;
    font-weight: bold;
} */

.wellness-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
}

.wellness-text {
    font-family: "Roboto", Sans-serif;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    max-width: 50%;
}

.wellness-text p {
    color: #424242;
    font-family: "Roboto", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1px;
}

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

/* Gradient text styling */
.wellness-text h1 {
    font-weight: 600;
    font-size: 48px;
    background: linear-gradient(90deg, #3f5bfc 30%, #3fd8f1 100%);
    background-size: 200%;
    /* Makes the gradient cover a larger area for smoother movement */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 3s infinite linear;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.text-btn {
    /* font-size: 1.2em; */
    /* font-weight: bold; */
    color: #1b1818;
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 1px;
}

.wellness-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    color: #FFF;
    /* font-size: 1em; */
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 1.3em;
    transition: transform 0.3s ease;
}

.wellness-btn:hover {
    background-color: #ff1a70;
    transform: scale(1.10);
}

.wellness-image img {
    max-width: 100%;
    /* border-radius: 50%; */
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

/* .simply-weight {
    display: flex;
    padding: 50px;
    justify-content: center;
    background: url('assets/images/simplyweight-logo.png') center/cover no-repeat; 
} */

.simply-weight {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0px 110px;
}

.simply-weight::before {
    content: "";
    position: absolute;
    /* width: 100%; */
    top: 15px;
    left: 15px;
    right: 0;
    bottom: 0;
    background: url('../../assets/images/simportion-food-icon.webp') left/contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.simply-weight-text {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    font-family: "Roboto", sans-serif;
}

.simply-weight h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: 600;
}

.simply-weight p:not(:last-of-type) {
    font-family: "Roboto", Sans-serif;
    margin: 0 auto 20px;
    text-align: justify;
    font-size: 1.1rem;
    /* line-height: 1.8; */
}

.simply-weight p span {
    font-weight: bold;
}

.simply-weight-text {
    text-align: center;
}

@media (max-width: 768px) {
    .simply-weight {
        padding: 20px;
    }

    .simply-weight h1 {
        font-size: 2rem;
    }

    .simply-weight p {
        font-size: 1rem;
    }
}

.tellme-btn {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    color: #FFFF;
    padding: 10px 30px;
    border-radius: 100px;
    border: none;
    background-size: 200%;
    cursor: pointer;
    line-height: 1.3em;
    transition: transform 0.3s ease;
}

.tellme-btn:hover {
    color: #FFFF;
    background-color: #ff1a70;
    transform: scale(1.10);
}



.benefits-heading {

    text-align: center;

    /* Centers the text inside the h1 itself */

    width: 100%;

    padding: 40px 70px 0px;

    margin: 0;

    font-size: 48px;

    font-weight: 600;

}





.benefits-main {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    padding: 30px 30px;
}

@media (max-width: 768px) {
    .benefits-main {
        flex-direction: column;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-text-container {
    max-width: 500px;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
}

.benefits-text {
    margin-bottom: 20px;
}

.benefit-item img {
    /* width: 24px;
    height: 24px; */
    width: 5%;
}

.benefit-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.benefit-description {
    margin: 10px 0 0 34px;
}

.benefits-image-container {
    width: 50%;
    position: relative;
    /* display: flex; */
    /* gap: 10px;  */
    overflow: none;
}

.benefits-image-container img {
    max-width: 100%;
    transform: scale(1.0);
}

.benefit-img1 {
    position: absolute;
    left: 0%;
    animation: example1 10s ease infinite;
}

@keyframes example1 {
    0% {
        top: 0%;
    }

    25% {
        top: 5%;
    }

    50% {
        top: 5%;
    }

    100% {
        top: 0%;
    }
}

.benefit-img2 {
    position: absolute;
    right: 33%;
    z-index: 3;
    animation: example2 10s ease infinite;
}

@keyframes example2 {
    0% {
        top: 30%;
    }

    25% {
        top: 23%;
    }

    50% {
        top: 23%;
    }

    100% {
        top: 30%;
    }
}

.benefit-img3 {
    position: absolute;
    left: 39%;
    animation: example3 10s ease infinite;
}

@keyframes example3 {
    0% {
        top: 43%;
    }

    25% {
        top: 48%;
    }

    50% {
        top: 48%;
    }

    100% {
        top: 40%;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        width: 100%;
        padding: 30px;
    }

    .benefits-image-container {
        width: 100%;
    }

    .benefits-image-container img {
        /* height: 230px; */
    }

    .benefits-description {
        margin-top: 120px;
    }

    .benefit-img1 {
        /* , .benefit-img2, .benefit-img3 */
        position: static;
        left: 0%;
        animation: example1 10s ease infinite;
        margin: 10px auto;
    }

    .benefit-img2 {
        position: absolute;
        right: -7%;
        z-index: 3;
        animation: example2 10sease infinite;
    }
}

.benefits-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* padding: 10px 70px; */
    text-align: justify;
    line-height: 1.4em;
    font-size: 18px !important;
}

.benefits-description p span {
    font-weight: bold;
}

.story-section {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.story-container {
    width: 900px;
    height: 400px;
    /* margin-top: 50px; */
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .29);
}


.story-section h1 {

    font-size: 48px;

    font-weight: 600;

    padding-bottom: 15px;

}

.story-container p {
    z-index: 1;
    /* position: absolute; */
    padding: 0px 65px;
    margin-top: 100px;
    text-align: justify;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
    font-size: 100px;
    color: #b0c4de;
    z-index: 0;
    max-height: 375px;
}

.story-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: justify;
}

.author-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    /* margin-top: 10px; */
}

.carousel-indicators [data-bs-target] {
    background-color: #dee0e1;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
}

.carousel-indicators .active {
    background-color: #0d6efd;
}

.nav-item.active .nav-link {
    color: #ff3b58 !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .story-container {
        /* width: 480px;  */
        width: 330px;
        height: auto;
        /* margin-top: 20px; */
        position: relative;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .29);
    }

    .story-container p {
        z-index: 1;
        padding: 0px 30px;
        margin-top: 40px;
        text-align: justify;
    }

    .quote-icon {
        position: absolute;
        top: 10px;
        left: 10px;
        opacity: 0.1;
        font-size: 100px;
        color: #b0c4de;
        z-index: 0;
        max-height: 200px;
        display: none;
    }


}

.high-light-section {
    padding: 70px;
    display: flex;
    flex-direction: column;
    height: 250px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    background-image: linear-gradient(45deg, #3f5bfc 0%, #3fd8f1 100%);
}

.high-light-container {
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}


.high-light-container p {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 55px;
    letter-spacing: 0px;
}

@media (max-width: 768px) {
    .high-light-container p {
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: 0px;
    }
}


.article-section h1 {

    font-size: 48px;

    font-weight: 600;

}

.article-section {
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-card {
    width: 325px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.article-link {
    text-decoration: none !important;
    color: #000;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.10);
}

.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

.article-image:hover .plus-icon {
    transform: translate(-50%, -50%) scale(1.10);
    color: #ffffff;
}

.article-content {
    padding: 20px;
    text-align: center;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.article-description {
    font-size: 14px;
    color: #555;
}

.client-section {
    padding: 0px 110px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-section h1 {

    font-size: 48px;

    font-weight: 600;

}

.client-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.client-slide {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    transition: transform 0.5s ease;
}

.client-image {
    min-width: calc(100% / 4 - 20px);
}

@media (max-width: 768px) {
    .client-image {
        /* min-width: 100%; */
    }
}

.client-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Keyframe animation for auto-slide */
@keyframes slide {

    0%,
    25% {
        transform: translateX(0);
    }

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

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

.client-slide.active {
    opacity: 1;
}

.feature-section {
    padding: 30px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-section p {
    font-size: 30px;
    font-weight: 600;
}

.feature-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.feature-image img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.feature23-image img {
    height: 85px;
    width: 185px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.footer-section {
    padding-top: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 550px; */
    width: 100%;
    background-color: #3f5bfc;
}

.footer-content {
    /* padding-top: 55px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #3f5bfc;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: start;
    width: 100%;
    gap: 20px;
    padding: 40px 100px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #9be1ff 0%, #3f5bfc 100%);
}

.footer-left {
    width: 510px;
}

.footer-left p {
    color: #fff;
    font-size: 20px;
}

.footer-left p:first-child {
    font-family: "Roboto", Sans-serif;
    font-size: 40px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.3em;
}

.footer-right img {
    max-width: 100%;
    height: 250px;
    margin-left: 150px;
}

.footer-link {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.footer1 img {
    height: 80px;
    max-width: 100%;
    /* vertical-align: middle; */
    /* display: inline-block; */
}

.footer2,
.footer3,
.footer4 {
    color: #fff;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
}

.footer2 h4,
.footer3 h4,
.footer4 h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.footer2 ul,
.footer3 ul,
.footer4 ul {
    list-style: none;
    padding: 0;
}

.footer2 ul li,
.footer3 ul li,
.footer4 ul li {
    margin-bottom: 5px;
}

.footer2 ul li a,
.footer3 ul li a,
.footer4 ul li a {
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.6em;
    letter-spacing: -.45px;
    color: #fff;
}

.footer2 ul li a:hover,
.footer3 ul li a:hover,
.footer4 ul li a:hover {
    /* text-decoration: underline; */
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 0;
}

.social-icons .icon {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icons .icon:hover {
    color: #007bff;
    transform: scale(1.1);
}

.icon.youtube:hover {
    color: #FF0000;
}

.icon.facebook:hover {
    color: #4267B2;
}

.icon.instagram:hover {
    color: #C13584;
}

.icon.twitter:hover {
    color: #1DA1F2;
}

.icon.pinterest:hover {
    color: #E60023;
}

.additional-link {
    display: flex;
    gap: 100px;
    justify-content: center;
    padding: 10px 0;
    font-size: 15px;
}

.additional-link a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.copyright span {
    font-weight: bold;
}

.our-story {
    padding: 40px 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.our-story-text h1 {
    font-size: 56px;
    /* line-height: 1.4em; */
    padding-bottom: 26px;
}

.our-story p {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 10px 0px;
}

.our-story-text,
.our-story-image {
    width: 50%;
}

.our-story-image img {
    width: 80%;
    height: auto;
}

.our-story-description p {
    font-size: 16px;
    font-weight: normal;
    font-family: "Roboto", Sans-serif;
    padding: 10px;
}

.how-it-works {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 12px 70px;
    background-color: #f9fafa;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 15px;
    }
}

.work-text {
    width: 95%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 10px 70px;
    line-height: 35px;
}

.simportion-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.simportion-image {
    width: 55%;
}

.simportion-text {
    width: 45%;
    /* overflow: hidden; */
}

.animated-item {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.7s ease-in-out;
}

.animated-item.show {
    opacity: 1;
    transform: translateX(0);
}

.animated-item1 {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.7s ease-in-out;
}

.animated-item1.show {
    opacity: 1;
    transform: translateX(0);
}

.animated-bottom {
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.7s ease-in-out;
}

.simportion-image img,
.simpeace-image img {
    max-width: 100%;
    height: auto;
    padding: 20px;
}

.simportion-text,
.simpeace-text {
    padding: 20px;
}

.simpeace-text {
    text-align: right;
}

.simportion-text h3,
.simpeace-text h3 {
    font-size: 12px;
    color: #3f5bfc;
    font-weight: 600;
}

/* .simportion-text p:first-of-type, .simpeace-text p:first-of-type {
    font-size: 22px;
    font-weight: 600;
} */

.simportion-text hr,
.simpeace-text hr {
    width: 78px;
    color: #3f5bfc !important;
    border-style: solid;
    border-width: 2px;
    opacity: 1;
}

.simpeace-text hr {
    margin-left: auto;
}

.simportion-text p,
.simpeace-text p:not(:first-of-type) {
    /* margin: 10px; */
    /* font-size: 17px; */
    padding-bottom: 10px;
}

.simpeace-text p:not(:first-of-type) {
    text-align: right;
}

.simpeace-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.simpeace-text {
    width: 45%;
}

.simpeace-image {
    width: 55%;
}

.section-container {
    padding: 0px 20px;
    margin: 0 auto;
    /* max-width: 800px; */
    line-height: 1.6;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 65px;
}

.section-description {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: justify;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-list li {
    padding: 5px 0px 5px;
    margin: 0;
    font-size: 18px;
}

.single-article {
    width: 100%;
    position: relative;
    /* height: 300px; */
    /* background-color: #ffce1d; */
}

.single-article-banner {
    max-width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
}

.single-article-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.banner-text {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.banner-text p:first-child {
    font-size: 45px;
    padding-top: 25px;
    font-weight: bold;
    color: white;
}

.banner-text p:not(:first-child) {
    font-size: 18px;
}

.article-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* Space between icons */
    margin-top: 15px;
}

.icon {
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #3f5bfc;
    background-color: #3f5bfc;
    text-decoration: none;
}

.icon i {
    font-size: 18px;
    color: #fff;
    padding: 8px;
}

.article-populated {
    width: 100%;
    padding: 0px 90px;
    /* height: 1250px; */
    background-color: #fff;
    /* position: relative; */
}

.article-populated-banner {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -125px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.article-populated-banner img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    padding: 0px 0px;
    border: none;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    margin-top: 30px;
}

.article-populated-banner p {
    font-size: 16px;
    padding: 25px 50px 0px;
    text-align: justify;
    line-height: 25px;
}

.article-populated-banner p:not(:first-child):not(:first-of-type) {
    font-weight: bold;
}

.article-populated-banner span {
    color: #3f5bfc;
}

.single-article-section {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-article-section h1 {
    font-size: 20px;
    font-weight: bold;
}

.single-article-container {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.single-article-card {
    width: 31%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0.7;
}

.single-article-card:hover {
    opacity: 0.9;
}

.single-article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0px 0px;
    border: none;
    margin-top: 0px;
}

.single-article-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 20px 5px 0px 5px;
}

.single-article-content p {
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
    line-height: 1.5em;
    font-size: 14px;
}

.articles-btn {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(-90deg, #ff3b58, #f92c95);
    color: #FFFF;
    padding: 6px 15px;
    border: none;
    cursor: pointer;
    line-height: 1.3em;
    transition: transform 0.3s ease;
    margin-bottom: 40px;
}

.articles-btn:hover {
    color: #FFFF;
}

/* FAQ */

.faq-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 70px;
    box-sizing: border-box;
}

.faq-text-section {
    width: 50%;
    font-family: "Roboto", Sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    box-sizing: border-box;
}

.faq-text {
    width: 50%;
}

.faq-text h1 {
    font-size: 50px;
    font-weight: 600;
}

.faq-image-section {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    box-sizing: border-box;
}

.faq-image {
    width: 65%;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 0px;
    }

}

/* Accordion Item */
.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    /* Added space below each accordion item */
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    /* Ensure no extra space below the last item */
}

/* Accordion Header */
.accordion-header {
    background-color: #f7f7f7;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

/* Accordion Toggler */
.accordion-toggler {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    flex-grow: 1;
}

.accordion-toggler:focus {
    outline: none;
}

/* Accordion Icon */
.accordion-icon {
    font-size: 20px;
    color: #555;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content {
    background-color: #fff;
    padding: 15px;
    display: none;
}

.accordion-content.show {
    display: block;
}

/* Accordion Container */

.faq-title {
    padding: 20px;
}

.faq-accordion {
    /* font-family: Arial, sans-serif; */
    /* max-width: 1300px; */
    width: 100%;
    height: auto;
    margin: 20px auto;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #eaedf2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 20px;
}

/* Accordion Item */
.accordion-section {
    width: 100%;
    padding: 10px 30px;
}



.accordion-item {
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    /* Space between each accordion item */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

/* Accordion Header */
.accordion-header {
    background-color: #f7f7f7;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

/* Accordion Toggler */
.accordion-toggler {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    /* flex-grow: 1; */
    height: 30px;
}

.accordion-toggler:focus {
    outline: none;
}

/* Accordion Icon */
.accordion-icon {
    font-size: 20px;
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    margin-left: auto;
    /* top: 50%; */
    transform: translateY(-90%);
}

.accordion-item.active .accordion-icon {
    transform: translateY(-90%);
}

/* Accordion Content */
.accordion-content {
    background-color: #fff;
    padding: 15px;
    display: none;
}

.accordion-content.show {
    display: block;
}

/* Blog */
.blog-section {
    width: 100%;
    box-sizing: border-box;
    background-image: url("https://www.simplyweight.in/wp-content/uploads/2022/03/Banner-images-SW-WP-site-10.png");
    padding: 100px 250px 250px;
    background-repeat: no-repeat;
    background-position: center center;
}

.blog-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.blog-image {
    width: 50%;
}

.blog-image img {
    width: 100%;
}

.blog-text {
    max-width: 260px;
    margin: auto;
}

.blog-text :where(h1) {
    font-size: 50px;
    font-weight: 700;
}

.blog-tab {
    width: 100%;
    height: auto;
    background-color: #f6f6f6
}

.blog-tab-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.blog-tab-section ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-left: 0px;
}

.blog-tab-section ul li {
    list-style: none;
    padding: 10px;
    color: #3f5bfc;
    font-weight: bold;
}

.blog-tab-section ul li.active {
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    width: 75px;
    border-radius: 7px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.blog-search {
    display: flex;
    align-items: center;
}

.blog-search input {
    width: 280px;
    height: 35px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.blog-search .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    background-color: #000;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    color: #fff !important;
    font-size: 20px;
    /* position: relative; */
}

.blog-search .search-icon::before {
    content: '\1F50D';
    font-size: 17px;
    padding: 3px;
    color: #fff;
}

.blog-article-section {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6
}

.blog-article-section h1 {
    font-size: 22px;
    font-weight: 600;
}

.blog-article-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 35px 35px;
}

.blog-article-card {
    width: 370px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.blog-article-image {
    position: relative;
    overflow: hidden;
}

.blog-article-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.blog-article-image:hover img {
    /* transform: scale(1.10); */
}

.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

.blog-article-image:hover .plus-icon {
    transform: translate(-50%, -50%) scale(1.10);
    color: #ffffff;
}

.blog-article-content {
    padding: 20px;
}

.blog-article-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.blog-article-description {
    font-size: 14px;
    color: #555;
}

.article-link {
    text-decoration: none;
}

/* General Pagination Styling */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.blog-pagination a,
.blog-pagination span {
    margin: 0 3px;
    /* Reduced gap between items */
    text-decoration: none;
    color: blue;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.blog-pagination a:hover {
    background-color: #e0e0e0;
    color: #0056b3;
}

.blog-pagination .active {
    font-weight: bold;
    color: red;
}

.blog-pagination .dots {
    color: gray;
}

/* Navigation Buttons */
.blog-pagination .prev,
.blog-pagination .next {
    font-weight: bold;
}

.article-read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #3f5bfc;
}

/* Pager Pagination */
/* General styling for the pager */
.pager {
    display: flex;
    justify-content: center;
    /* Centers the items horizontally */
    align-items: center;
    /* Aligns the items vertically */
    list-style-type: none;
    /* Removes default list bullets */
    margin: 20px 0;
    padding: 0;
}

.pager ul {
    display: flex;
    list-style: none;
}

/* Style for each pager item */
.pager__item {
    margin: 0 10px;
    /* Adds spacing between items */
}

/* Style for the links inside pager items */
.pager__item a {
    display: inline-block;
    /* Ensures the links are inline */
    padding: 8px 12px;
    text-decoration: none;
    color: blue;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

/* Hover effect for the links */
.pager__item a:hover {
    background-color: #e0e0e0;
    color: #0056b3;
}

/* Style for the active page */
.pager__item.is-active a {
    background-color: #007bff;
    color: white;
    /* Active page with a blue background */
    font-weight: bold;
    cursor: default;
    /* Disables clicking on the active page */
}

/* Style for 'Next' and 'Last' buttons */
.pager__item--next,
.pager__item--last {
    font-weight: bold;
}

/* Visually hide elements but keep them accessible for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}


.article-read-more p {
    font-weight: bold;
    text-align: center;
    margin: 0;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.article-read-more:hover p {
    color: #ff3b58;
}


/* login */
.login {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    min-height: 620px;
    height: 100vh;
}

.login-col-1 {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.login-col-2 {
    width: 50%;
    padding: 50px 50px;
    float: left;
}

.login-bg {
    background-image: url(https://app.simplyweight.in/static/media/subscribe-bg.ba8d5746.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-clip: padding-box;
    height: 100%;
    min-height: 620px;
    z-index: 0;
}

.shadow-logo {
    width: 58%;
    height: auto;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 28%;
}

.circle-overlay {
    position: absolute;
    border-radius: 50%;
    top: -37%;
    left: 80%;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    height: 100%;
    width: 100%;
    min-width: 1000px;
    min-height: 1100px;
}

.form-sec-logo {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    height: 20%;
    min-height: 100px;
    overflow: hidden;
    margin-bottom: 1.6rem;
    z-index: 1;
    vertical-align: middle;
}

.logo-col-1 {
    width: 75%;
}

.logo-col-2 {
    width: 25%;
}

.main-logo {
    width: 65%;
}

.leaf-logo {
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 8px;
    height: 100%;
    opacity: 0.6;
    width: 65%;
}

.form h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .08rem;
    margin-bottom: 0.8em;
}

.form p {
    margin-bottom: 0.8em;
    font-weight: 500;
    font-size: 16px;
}

.form-input input {
    font-size: 1.2em;
    letter-spacing: 0.8px;
    border: 1px solid rgba(34, 36, 38, 0.15);
    padding: 0.8em 1.2em;
    border-radius: 0.4em;
    position: relative;
    width: 70%;
    font-weight: 500;
    margin-bottom: 0.8em;
}

.form .btn {
    font-size: 1rem;
    line-height: 1em;
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(255, 59, 88) 0%, rgb(249, 44, 149) 100%) 0% 0% no-repeat padding-box padding-box transparent;
    border: 0.1rem solid rgb(249, 44, 149);
    margin-bottom: 0.4em;
    padding: 0.8em 2em;
    border-radius: 25px;
    font-weight: 500
}

.form .btn:hover {
    background: linear-gradient(90deg, rgb(235, 27, 110) 0%, rgb(235, 27, 110) 100%) 0% 0% no-repeat padding-box padding-box transparent;
}

.h-divider {
    margin: 1rem 0rem;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.or-label {
    margin-right: 0.8em;
    font-size: 1rem;
}

.hr-divider {
    border-top: 0.3px solid rgba(137, 137, 137, 0.3);
    width: 60%;
}

.g-login {
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 0.8em 2.6em;
    border: none;
    border-radius: 25px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
    border: 1px solid #d8d8d8;
}

.g-login:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
}

.g-login:active {
    background-color: #eeeeee;
}

.g-login:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
}

.other-login {
    margin-bottom: 1.5em;
}

.subscribe-section p {
    margin-bottom: 1em;
    font-size: 16px;
    font-weight: 500;
}

.subscribe-btn {
    font-size: 1rem;
    line-height: 1em;
    background-color: transparent;
    box-shadow: unset;
    border: 0.1rem solid;
    font-weight: 600;
    color: rgb(235, 27, 110) !important;
    border-radius: 25px;
    padding: 0.8em 2em;
}

.subscribe-btn:hover {
    border-color: rgb(235, 27, 110);
    color: rgb(255, 255, 255) !important;
    background-color: rgb(255, 59, 88) !important;
}

.main-logo {
    width: 65%;
    height: 75px;
}

/* clinics */
.page-title {
    display: block;
    position: relative;
    padding: 150px 0;
    background-image: url("https://www.simplyweight.in//wp-content/uploads/2022/03/Untitled-design-98-e1634989078592.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 79.8px;
    height: 90vh;
}

.page-title1 {
    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(100deg, #fff 50%, #FFFFFF3D 75%);
        opacity: 0.9;
    }

    padding: 150px 0px;
}

.page-title h2 {
    color: #424242;
    font-size: 50px;
    line-height: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.clinic-page h2 {
    color: #fff !important;
    text-align: center !important;
}

.page-title {
    display: block;
    position: relative;
}

.page-title h2 {
    color: #424242;
    font-size: 50px;
    line-height: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.page-title1 h2 {
    color: #424242;
    font-size: 50px;
    line-height: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.page-title p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

.page-body {
    /* padding: 3em 1em; */
    color: #424242;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.clinics p {
    padding: 0.5rem 0.2rem;
    font-size: 1.1rem;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.page-body a {
    color: #3f5bfc;
    font-weight: 600;
    text-decoration: unset;
}

.page-body a:hover {
    color: #ff3a5c;
    font-weight: 600;
}

.page-body section {
    padding: 80px 0;
}

.receipe-page-title {
    display: block;
    position: relative;
    padding: 150px 0;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(180deg, #00131BCC 54%, #fff 87%);
        opacity: .6;
    }
}

.receipe-page-title h2 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
}

.receipe-page-body section {
    padding: 25px 0 60px;
}

.coming-soon h1 {
    font-size: 48px;
    font-weight: 900;
    color: #424242;
    text-align: center;
    line-height: 1;
}

.our-location {
    background: #f6f6f6;
}

.our-location h2 {
    font-weight: 600;
    padding-bottom: 2rem;
}

.our-location p {
    font-size: 1.1rem;
    padding-bottom: 1rem;
}

.book-constant {
    background: #f6f6f6;
}

.book-constant .form-control {
    border: 1px solid #3f5bfc;
}

.constant-btn {
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    color: #FFFF;
    padding: 6px 15px;
    transition: background-color 0.3s;
    border: none;
    box-shadow: 3px 3px 10px 0px rgba(255, 59.00000000000004, 88.00000000000006, .64);
}

.constant-btn:hover {
    background: linear-gradient(-90deg, #ff3b58, #f92c95);
}

.good-img {
    height: auto;
    width: unset;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    padding: 30px 0px;
}


/* All-plans */
.plans {
    /* font-family: Roboto, Montserrat, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important; */
    display: flex;
    flex-direction: row;
    color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem !important;
    overflow: hidden;
}

.could-bg {
    background-image: url(https://app.simplyweight.in/static/media/subscribe-bg.ba8d5746.png) !important;
    background-repeat: no-repeat, no-repeat !important;
    background-size: cover !important;
    width: 100%;
    height: 100vh;
    /* overflow-y: hidden; */
}

.subscribe-back-btn {
    align-self: flex-start;
    margin: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: white;
    border-radius: 2rem;
    padding: 0.6em 1.2em 0.6em 0.8em;
    color: rgb(101, 119, 128);
    align-self: center;
    cursor: pointer;
    width: 60px;
    display: flex;
    align-items: center;
}

.btn-txt {
    padding-left: 6px;
}

.price-detail {
    background-color: rgba(16, 103, 232, 0.6);
    min-height: 18em;
    height: auto;
    width: 50rem;
    margin: 0 auto;
    border-radius: 1.6rem;
    padding: 2rem;
    position: relative;
}

.price-detail::after {
    content: "";
    clear: both;
    display: table;
}

.plan-tab-col {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    float: left;
    height: auto;
    min-height: 18em;
    width: 40%;
}



@media only screen and (max-width: 768px) {
    .plan-tab-col {
        width: 100%;
        margin: 0 auto;
        display: contents;
    }
    
    .price-detail {
        background-color: unset;
    }
}

@media only screen and (max-width: 350px) {
    .plan-tab-col {
        width: 100%;
    }
}

.tabs {
    margin: 0 auto;
    display: flex;
    position: relative;
}

.tab-content {
    padding: 15px 0px;
    margin-top: 10px;
    display: none;
    left: 0;
}

.tab {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: -1px;
    transition: background-color 0.3s;
    border-radius: 3rem;
    height: 20px;
}

.tab:hover {
    background-color: #ddd;
    height: 35px;
    width: 95px;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked+.tab {
    background-color: #fff;
    border-radius: 3rem;
    background-color: white;
    color: rgb(14, 75, 193);
    height: 35px;
    width: 95px;
}

input[type="radio"]:checked+.tab+.tab-content {
    position: absolute;
    display: block;
}

.feature {
    color: white;
    height: fit-content;
    margin-bottom: 0.6em;
    margin-left: 12px;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.feature-img {
    height: 16px;
    vertical-align: middle;
}

.feature-txt {
    margin-left: 12px;
    font-size: .9rem;
    font-weight: 400;
}

.price-bottom {
    height: 3rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-end;
    display: flex;
    flex-direction: row !important;
}

.price-wrapper {
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

.price-col {
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    line-height: 1em;
}

.strike-col::before {
    position: absolute;
    color: red;
    content: "";
    left: 0px;
    top: 45%;
    right: 0px;
    border-top-width: 3px;
    border-top-style: solid;
    border-color: inherit;
    transform: skewY(-10deg);
}

.popular-pill {
    padding: 0rem 1rem;
    background: linear-gradient(90deg, rgb(255, 59, 88) 0%, rgb(249, 44, 149) 100%) 0% 0% no-repeat padding-box padding-box transparent;
    border-radius: 2em;
    margin-bottom: 0.4rem;
    font-size: .9rem;
    color: #fff;
}

.per-label {
    font-size: .9rem;
    line-height: 1em;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.highlight-price {
    padding: 0rem 1rem;
    float: right;
}

@media only screen and (min-width: 720px) {
    .highlight-price {
        width: 60%;
    }
}

.highlight-price-logo {
    width: 130px;
    justify-content: center;
    display: flex;
    flex-direction: row;
    border-radius: 60px;
    padding: 0.3rem 0.8rem;
    background-color: white;
}

.highlight-price-logo img {
    width: 96%;
    height: 20px;
}

.price-row {
    height: 5rem;
    margin: 1rem 0rem 1rem 1rem;
    display: flex;
    align-items: stretch;
    flex-direction: row !important;
}

.price-duration {
    font-size: 2rem;
    line-height: 1em;
    font-weight: 300;
    display: flex;
    width: 40%;
    align-items: center;
}

.popular-container {
    width: 60%;
    position: relative;
}

.popular-container .popular-txt {
    margin-left: 1rem;
    position: relative;
    background-color: white;
    color: rgb(255, 59, 88);
    padding: 0.4em 0.8em;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    width: 7em;
}

.popular-container .popular-txt .price-btn {
    top: 1.5rem;
    left: -25%;
}

.popular-container .price-btn {
    width: 12rem;
    position: absolute;
    top: 1rem;
    left: 0px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    user-select: none;
    border-radius: 6rem;
    background: linear-gradient(90deg, rgb(255, 59, 88) 0%, rgb(249, 44, 149) 100%) 0% 0% no-repeat padding-box padding-box transparent;
}

.popular-container .price-btn .price-wrapper {
    font-size: 1.1rem;
    color: #fff;
    transition: 0.2s linear;
}

.currency-col {
    font-size: 1.6em;
    font-weight: 900;
}

.value-col {
    font-size: 2rem;
    position: relative;
    font-weight: 600;
}

.per-label {
    font-size: 1.2rem;
    line-height: 1em;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.price-hover-arrow {
    align-self: center;
    font-size: 1.6rem;
    width: 0px;
}

svg:not(:root) {
    overflow: hidden;
}

.doctor-clipart {
    position: absolute;
    height: 85%;
    top: 0px;
    right: 0px;
    opacity: 1;
    transform: translate(70%, 27%);
    pointer-events: none;
}

.free-trial {
    background-color: rgba(255, 255, 255, 0.733);
    color: #000;
    width: 40rem;
    margin: 0 auto;
    border-radius: 1.6rem;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: stretch;
    flex-direction: row !important;
}

.para-col {
    margin-right: 2rem;
}

.free-title {
    margin-bottom: 0.4rem;
    line-height: 1em;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .08rem;
}

.free-para {
    line-height: 1.2em;
    font-size: 0.8rem;
    font-weight: 400;
}

@media only screen and (max-width: 720px) {
   .free-trial {
      width: 100%;
      background: unset;
   }

   .para-col {
      display: none;
   }
}

.btn-col {
    width: 30rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column !important;
}

.start-btn {
    padding: 0.9rem 1.8rem;
    background-color: rgb(17, 98, 225);
    color: white;
    border-radius: 4rem;
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
    font-weight: 600;
}

.blog-menu .active a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
    text-decoration: none !important;
    color: #fff !important;
}

a {
    text-decoration: none !important;
}

.form-group {
    display: inline-block;
    /* Ensures the fields are displayed inline */
    margin-right: 10px;
    /* Optional spacing between fields */
    width: 98%;
    /* Full width by default */
}

.form-group.col-6 {
    width: 49%;
    /* Two fields side by side, adjust to your needs */
}

.form-group.col-12 {
    width: 100%;
    /* Full width for Name and Message fields */
}

/* Ensuring the button styles */
.consultation-btn {
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff3b58, #f92c95);
    color: #FFFF;
    padding: 6px 15px;
    border-radius: 100px;
    border: none;
    background-size: 200%;
    cursor: pointer;
    line-height: 1.3em;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Error Message */
[data-drupal-messages] {
    margin-bottom: 20px;
}

[data-drupal-messages] ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

[data-drupal-messages] li {
    color: red;
    font-size: 15px;
    margin-bottom: 5px;
    text-align: center
}

[data-drupal-messages] h2.visually-hidden {
    display: none;
    /* Optional: Hide the "Error message" header if not needed */
}

[data-drupal-messages] li[style] {
    color: red !important;
    /* Override any inline styles */
}

/* Business  */
.business-page-title {
    display: block;
    position: relative;
    padding: 150px 0;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(100deg, #fff 60%, #FFFFFF3D 86%);
        opacity: 0.9;
    }
}

.business-page-title h2 {
    color: #424242;
    font-size: 50px;
    line-height: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.page-body {
    /* padding: 3em 1em; */
    color: #424242;
}

.page-body p {
    font-size: 18px;
}

.page-body h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.page-body section {
    padding: 80px 0;
}

.terms-page-title {
    display: block;
    position: relative;
    min-height: 400px;
    background-attachment: scroll;
    background-image: url(https://www.simplyweight.in/wp-content/uploads/2022/05/SW-India-banner-images-1.webp);
    background-position: 331px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 0;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(100deg, #fff 50%, #FFFFFF3D 75%);
        opacity: 0.9;
    }
}

.terms-page-title h2 {
    color: #424242;
    /* font-size: 30px; */
    line-height: 2.8rem;
    font-weight: 600;
    /* margin-bottom: 1.5rem; */
    position: relative;
    text-align: left;
    width: 50%;
    font-weight: bold;
}

.terms-page-body p {
    font-size: 18px;
    position: relative;
}

i.fas.fa-play-circle {
    position: absolute;
    bottom: 5px;
    right: 12px;
    color: #ffffff;
}

.terms-page-body section {
    /* padding: 30px 0; */
}

.e-tabs-title {
    font-size: 16px;
    padding: 15px;
    font-weight: 700;
    border-bottom: 1px solid
}

.testimonials {
    margin-inline: auto;
    margin-block: 5rem;
    inline-size: min(88%, 70rem);
}

.card {
    margin: 15px 25px 20px 20px;
    padding: 10px !important;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 11px 22px 6px rgba(141.61304347826086, 149.9666666666667, 197.99999999999997, .27);
    color: #000;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.card header {
    display: flex;
    gap: 1rem;
}

.review {
    opacity: .8;
    text-align: left;
    padding: 10px;
    /* letter-spacing: 0.3px; */
    line-height: 1.6;
    font-size: 18px;
    font-weight: 500;
}

.footer {
    font-weight: Bold;
    padding: 10px;
}

.ktrans {
    padding: 40px 0px;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 25px;
}

.img-card {
    padding: 15px;
    border-radius: 10px;
    /* box-shadow: 12px 35px 97px -55px rgba(0, 0, 0, 0.55); */
}

.img-responsive {
    width: 100%;
    height: auto;
}

.sha-rad {
    border-radius: 10px;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, .3);
}


.title {
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
}

.caption {
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
    padding: 20px 0;
}

.vid-main-wrapper {
    width: 100%;
    /* max-width: 1100px; */
    /* min-width: 440px; */
    background: #fff;
    /* margin: 0 auto; */
}

.vid-container {
    position: relative;
    padding: 30vh;
    height: 0;
    width: 66%;
    float: left;
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 360px;
}

.vid-list-container {
    width: 34%;
    height: 360px;
    overflow: hidden;
    float: right;
}

.vid-list-container {
    overflow-y: auto;
}


ol#vid-list {
    margin: 0;
    padding: 0;
    color: #000;
    background: #ffffff;
}

ol#vid-list li {
    list-style: none;
    /* border: 1px solid #ccc; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 13px;
}

ol#vid-list li a {
    text-decoration: none;
    background-color: #fff;
    display: block;
    padding: 5px;
    height: 40px;
}

ol#vid-list li a:hover {
    background-color: #d5d8dc;
}

.vid-thumb {
    float: left;
    /* margin-right: 8px; */
}

.active-vid {
    background: #3A3A3A;
}

#vid-list .desc {
    color: #3f5bfc;
    font-weight: 800;
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    flex-grow: 1;
}

#vid-list .desc:hover {
    color: #556068;
}

.list-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
}

.timer {
    float: inline-end;
    color: #000;
    font-weight: 500;
    margin: auto;
    font-size: 12px;
}

.li-tit {
    border: 1px solid #000;
    padding: 15px 10px;
    font-weight: 600;
}

.thank-you-message {
    color: red;
    text-align: center;
    padding: 25px;
}

.world-section {
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.world-section p {
    margin: 30px auto;
    text-align: center;
    font-size: 1.2rem;
}

.flight-area {
    vertical-align: middle;
    display: inline-block;
}

.flight-img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.world-map-bg {
    background-color: #054b5e;
    padding-right: 180px;
    padding-left: 180px;
    padding-top: 150px;
    border-radius: 1000px 1000px 0 0;
}

.title-divider {
    border-bottom: 2px solid #000;
    width: 172px;
    margin: 0 auto;
    display: flex;
    direction: ltr;
}

.map-container {
    position: relative;
    width: 960px;
    height: 500px;
}

.country-point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #e7a50c;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

.country-name {
    position: absolute;
    background-color: white;
    padding: 2px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
    font-size: 14px;
    z-index: 1000;
}

.title-text {
    text-align: left !important;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.title-text1 {
    text-align: center !important;
    font-size: 1.7rem;
    font-weight: 700;
    position: relative;
    z-index: 100;
}

.img-responsive {
    width: 100%;
    height: auto;
}

@media (max-width: 624px) {
    .caption {
        margin-top: 40px;
    }

    .vid-list-container {
        padding-bottom: 20px;
    }

}

@media (max-width: 768px) {
    .footer-left p:first-child {
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .footer-left p {
        font-size: 13px;
    }

    .tellme-btn {
        font-size: 15px;
    }

    .footer-section,
    .footer-content {
        height: auto;
    }

    .footer-right img {
        height: auto;
        max-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    .footer-link {
        display: contents;
    }

    .additional-link {
        /* gap:10px;
            font-size: 12px; */
        display: none;
    }

    .copyright p:first {
        font-size: 12px;
        text-align: center;
        font-family: "Roboto", Sans-serif;
        font-size: 16px;
        font-weight: 300;
        text-transform: none;
        font-style: normal;
        text-decoration: none;
        line-height: 1.6em;
        letter-spacing: -.45px;
        padding: 10px;
    }

    .copyright p:not(:first-child) {
        display: none;
    }

    .our-story {
        padding: 30px;
    }

    .our-story-text,
    .our-story-image {
        width: 100%;
    }

    .our-story-text h1 {
        font-size: 50px;
        line-height: 1.4em;
        padding-bottom: 35px;
    }

    .our-story-image img {
        width: 100%;
        height: auto;
        padding-bottom: 35px;
    }

    .work-text {
        padding: 0;
    }

    .simportion-image,
    .simportion-text,
    .simpeace-text,
    .simpeace-image {
        width: 100%;
    }

    .single-article {
        width: 100%;
        height: 300px;
    }

    .banner-text p:first-child {
        font-size: 18px;
        padding-top: 25px;
        font-weight: bold;
    }

    .article-populated {
        width: 100%;
        height: 435vh;
        padding: 0px 30px;
    }

    .article-populated-banner {
        width: 100%;
        position: relative;
        box-shadow: none;
        top: 0;
        display: block;
    }

    .article-populated-banner img {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .article-populated-banner p {
        font-size: 16px;
        padding: 25px 0px 0px;
        text-align: justify;
        line-height: 25px;
        width: 100%;
    }

    .article-social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .banner-icon {
        width: 100%;
    }

    .single-article-container {
        display: block;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .single-article-section {
        padding: 30px 0px;
        display: block;
    }

    .single-article-section h1 {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .single-article-card {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .single-article-image img {
        width: 100%;
        height: auto;
        border: none;
        object-fit: cover;
    }

    .single-article-content p {
        text-align: center;
        font-size: 14px;
        padding: 10px;
    }

    .accordion-toggler {
        height: 40px;
    }

    .blog-tab-section {
        display: flex;
        flex-direction: column;
    }

    .blog-tab-section ul {
        gap: 10px;
    }

    .blog-pagination {
        font-size: 16px;
    }

    .blog-pagination a,
    .blog-pagination span {
        padding: 6px 10px;
        margin: 0 2px;
        /* Reduce space further on smaller screens */
    }

    .blog-pagination .dots {
        display: none;
    }

    .blog-article-section h1 {
        font-size: 22px;
        font-weight: 600;
        padding: 0px 20px;
    }

    .blog-section {
        padding: 40px 160px 210px 0px;
        background-repeat: no-repeat;
        background-size: 780px auto;
    }

    .blog-text :where(h1) {
        font-size: 36px;
        font-weight: 700;
        text-align: right;
    }

    .event-title {
        font-size: 28px;
    }

    .iframe-container {
        margin: 40px;
        width: 80%;
        height: 500px;
        border: 1px solid #cccccc;
    }
}

.carousel-control-next-icon {
    background-image: url('../../assets/images/greater-than.png') !important;
    right: -15px;
    position: relative;
}

.carousel-control-prev-icon {
    background-image: url('../../assets/images/greater-than.png') !important;
    right: 20px;
    position: relative;
    transform: scaleX(-1);
    top: 0px;
}

/* Blog auto search */
.b-search-icon {
    padding: 5px 8px;
    background: #424242;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.auto-list {
    z-index: 99;
}

.list-group-item a {
    font-weight: 600;
}

.list-group-item:hover {
    background: #edeffc;
}

#autocomplete-list {
    width: 350px !important;
    margin-left: -30px !important;
    min-height: 360px !important;
    overflow-y: auto !important;
    padding: 10px 15px;
}

.blog-search-list-section {
    padding: 100px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6
}

#loading-icon {
    right: 35px;
    position: relative;
    top: 5px;
    content: url('../../assets/images/spinner.gif') !important;
    /* background-repeat: no-repeat; */
    /* background-size: contain; */
    /* height: 20px; */
    display: none;
}

.blog-search-title {
    font-size: 54px !important;
    font-weight: 600 !important;
}

.blog-article-card {
    opacity: 0.8;
}

.blog-article-card:hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    opacity: 1;
}

/* #canada {
    top: 50px;
    left: 125px;
  }
  
  #usa {
    top: 120px;
    left: 140px;
  }
  
  #mexico {
    top: 180px;
    left: 110px;
  }
  
  #Russia {
    top: 70px;
    right: 220px;
  }
  
  #pakistan {
    top: 172px;
    right: 295px;
  }
  
  #india {
    top: 205px;
    right: 276px;
  }
  
  #srilanka {
    top: 245px;
    right: 265px;
  }
  
  #uae {
    top: 195px;
    right: 370px;
  }
  
  #jordan {
    top: 160px;
    right: 402px;
  }
  
  #egypt {
    top: 168px;
    right: 425px;
  }
  
  #cyprus {
    top: 155px;
    right: 410px;
  }
  
  #israel {
    top: 165px;
    right: 410px;
  }
  
  #kenya {
    top: 276px;
    right: 400px;
  }
  
  #ghana {
    top: 245px;
    left: 415px;
  }
  
  #burkinafaso {
    top: 236px;
    left: 417px;
  }
  
  #nigeria {
    top: 236px;
    left: 445px;
  }
  
  #libya {
    top: 170px;
    left: 460px;
  }
  
  #italy {
    top: 140px;
    left: 465px;
  }
  
  #malta {
    top: 150px;
    left: 465px;
  }
  
  #romania {
    top: 122px;
    right: 450px;
  }
  
  #portigal {
    top: 130px;
    left: 400px;
  }
  
  #irelanduk {
    top: 80px;
    left: 410px;
  }
  
  #france {
    top: 90px;
    left: 420px;
  }
  
  #netherland {
    top: 76px;
    left: 425px;
  }
  
  #belgium {
    top: 86px;
    left: 425px;
  }
  
  #denmark {
    top: 70px;
    left: 432px;
  }
  
  #germany {
    top: 80px;
    left: 435px;
  }
  
  #southafrica {
    bottom: 105px;
    right: 430px;
  } */

/* Tooltip styles */
.country-point:hover::after {
    content: attr(data-country);
    position: absolute;
    bottom: 120%;
    /* Position the tooltip above the point */
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.country-point:hover::after {
    visibility: visible;
    opacity: 1;
}


.user-login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    margin: auto;
}

.form-text {
    margin-top: .25rem;
    font-size: 1em;
    width: 100%;
}

#edit-submit1 {
    width: 100px;
    background: linear-gradient(90deg, #3f5bfc 40%, #3fd8f1 100%);
    color: #FFFF;
    padding: 10px 25px;
    transition: background-color 0.3s;
    border: none;
    border-radius: 10px;
    margin-top: 25px;
}

[data-drupal-messages] {
    display: none !important;
}

#calendar-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.event-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.4em;
    padding: 30px 15px;
    text-align: center;
}

.event-page p {
    padding: 15px 10px;
    font-size: 18px;
    line-height: 1.4;
}

#filter {
    display: block;
    margin: 10px auto;
    padding: 5px;
}

.iframe-container {
    margin: 50px;
    width: 94%;
    height: 800px;
    border: 1px solid #cccccc;
}

@media (max-width: 430px) {
    .benefits-heading {
        padding: 0px 0px 0px;
        font-size: 35px;
    }

    .benefits-main {
        padding: 30px 0px;
    }

    .benefits-section {
        padding: 15px;
    }

    img.benefit-img1 {
        position: relative;
        left: -45px;
    }

    img.benefit-img2 {
        right: 35px;
    }

    img.benefit-img3 {
        left: 115px;
    }

    .benefit-item {
        text-align: center;
        display: block;
    }

    .benefit-description {
        margin: 0px 0 0 0px;
        text-align: center;
    }

    section#carouselExampleIndicators {
        padding: 0px;
    }

    h1.text-center {
        font-size: 35px;
    }

    .benefits-description.mt-5 {
        padding-bottom: 30px;
        margin: 0px !important;
    }

    section.high-light-section {
        padding: 15px;
    }

    section.article-section {
        padding: 15px;
        margin-top: 20px;
    }

    .article-container.mt-5 {
        margin: 10px !important;
    }

    section.client-section {
        padding: 15px;
    }

    .client-slide.client-image-slider .client-image {
        min-width: 50%;
    }

    .footer-container {
        padding: 15px;
        text-align: center;
    }

    section.world-section {
        padding-top: 30px;
    }

    .world-map-bg {
        padding: 0px !important;
        border-radius: 0px;
    }

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

    section.faq-section {
        display: block;
    }

    section.faq-section {
        display: block;
    }
     
    section.faq-section {
        display: block;
    }
     
    .faq-text-section {
        display: block;
        text-align: center;
        width: 100%;
    }
     
    .faq-text {
        width: 100%;
    }
     
    .faq-image-section {
        display: block;
        text-align: center;
        width: 100%;
    }
     
    .faq-image {
        width: 100%;
    }
     
    svg {
        width: auto !important;
    }

    .login-col-1 {
        display: none;
    }
     
    .login-col-2 {
        width: 100%;
        text-align: center;
        align-items: center;
        place-items: anchor-center;
        padding: 15px;
    }
     
    .subscribe-section {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
     
    .subscribe-section > p {
        width: 200px !important;
    }

    .parent-container {
	display: none;
    }
}

.proceed-btn {
    padding: 10px 50px;
    background-color: rgb(17, 98, 225);
    color: white;
    border-radius: 4rem;
    cursor: pointer;
    user-select: none;
}

.navbar-toggler:focus {
   box-shadow :unset ;
}
/* Ensure the navbar-toggler button is visible */
.custom-toggler {
    border: none;
    background: none;
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1050; /* Ensures it stays above content */
}

/* Custom Toggler Icon (Three Bars) */
.toggler-icon {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Styling the three bars */
.toggler-icon span {
    width: 30px;
    height: 3px;
    background-color: #3f5bfc; 
    border-radius: 2px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
