@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: 'Open Sans', serif !important;
    font-style: normal !important;
    overflow-x: hidden !important;
    width: 100% !important;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
}

.text-blue {
    color: #007bff;
}

.navbar-nav li {
    /* margin-right: 30 px; */
}

.bg-lt-blue {
    background-color: #f5f8fe;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-15 {
    border-radius: 15px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-25 {
    border-radius: 25px;
}

.custom-shadow {
    box-shadow: 0px 0px 10px #cacaca;
}

.text-purple {
    /* color: #873b93 !important; */
    color: #703489 !important;
}

.text-justify {
    text-align: justify;
}

.bg-lt-purple {
    background-color: #f9e5ff;
}

.border-bottom-purple {
    height: 2px;
    width: 75%;
    background-color: #873b93;
}

.border-gradient {
    position: relative;
    border-radius: 25px;
    padding: 10px;
    background: #fff;
    /* Ensure the card has a white background */
    z-index: 1;
}

.border-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Border thickness */
    border-radius: 25px;
    background: linear-gradient(45deg, #873b93, rgba(135, 59, 147, 0.2));
    /* Gradient from solid to transparent */
    -webkit-mask: linear-gradient(white 0 0) content-box,
        linear-gradient(white 0 0);
    mask: linear-gradient(white 0 0) content-box,
        linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.read-more-arrow {
    background-color: #eeedec;
    color: #746f7a;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 600;
    font-style: normal;
    color: #27222E !important;
}

.bg-placeholder {
    background-color: #f5f3f8;
    color: #aaa5ac !important;
}

.bg-placeholder::placeholder {
    color: #aaa5ac !important;
}

/* FAQ */
.faq-container {
    max-width: 100%;
    margin: 20px auto;
    height: 220px;

    max-height: 220px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 10px;
    color: #873b93;
    /* background: #f5f5f5; */
    border-radius: 5px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    /* background: #e0e0e0; */
}

.faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    color: #716a7d;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-arrow {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d0d0d1;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #d0d0d1;
}

.text-lt-gray {
    color: #716a7d;
}

.border-bottom-purple-1 {
    border-bottom: 1px solid #873b93;
}

.footer-icon {
    background-color: #873b93;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 0;
}

.address-text {
    color: #62556f !important;
    font-size: 14px;
    font-weight: 500;
}

.social-media {
    background-color: #873b93;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 13px;
    line-height: 0;
    transition: all 0.3s ease-in-out;
}

.social-media:hover {
    background-color: #ad4ebb;
    color: #f6f6f6;

}

.fw-7 {
    font-weight: 700 !important;
}

.fw-8 {
    font-weight: 800 !important;
}

.fw-9 {
    font-weight: 900 !important;
}


/* Position Navigation Below */
.swiper-nav-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* Custom Round Navigation Buttons */
.custom-nav {
    width: 40px !important;
    height: 40px !important;
    background-color: #873b93;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.swiper-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-pagination-bullet {
    width: 18px !important;
    height: 18px !important;
    /*background-color: #000; !* Optional: change bullet color *!*/
}

.swiper-pagination-bullet-active {
    background: #873b93 !important;
    width: 18px !important;
    height: 18px !important;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    width: 100px !important;
}

.custom-nav::after {
    font-size: 13px !important;
    color: white;
}

.custom-nav:hover {
    background-color: #a553b2;
}

.swiper-button-prev {
    left: 0px !important;
}

.swiper-button-next {
    right: 0px !important;
}

.text-lt-blue {
    color: #9ac1db;
}

.fw-bold {
    font-weight: 900;
    font-family: "Open Sans", serif !important;
}

.right-arrow {
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Menu */

.sidebar {
    position: fixed !important;
    top: 0;
    right: -300px;
    /* Initially Hidden */
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 999 !important;
    padding-top: 2rem;
}

/* Sidebar Active (When Open) */
.sidebar.active {
    right: 0;
}

/* Sidebar Navigation */
.sidebar .nav-link {
    font-size: 18px;
    color: #333;
    padding: 12px 20px;
    transition: 0.3s;
}

/* .sidebar .nav-link:hover {
    background: #f0f0f0;
} */

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Overlay (Dark Background when Sidebar Opens) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}


.res-slider-text {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 5%;
    z-index: 99 !important;
}

.font-lastai-bold {
    font-family: 'Open Sans', serif;
    font-weight: 700 !important;
    font-style: normal
}

.btn-rounded {
    padding: 15px 20px;
    border-radius: 25px;
    background-color: #ffffff;
    color: #5c5760;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-rounded:hover {
    border: 1px solid #efefef;
    background-color: #e075f9;
    color: #ffffff;
}

.text-lt-purple {
    color: #c6a8d8;
}

.font-3 {
    font-size: 2.5rem;
}

.testimonial-card {
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    /*max-height: 300px;*/
}

.expanded {
    max-height: 1000px;
}

.read-more-btn {
    background: none;
    border: none;
    color: #ffffffa6;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    justify-content: end;
    /* padding: 5px 10px; */
    text-align: end;
    font-size: 13px !important;
    transition: color 0.3s ease-in-out;
    text-transform: uppercase;
}

.read-more-btn:hover {
    color: #ddd;
}

.res-text {
    text-align: end;
}

.faq-btn {
    background: linear-gradient(30deg, #502375, #6a2d89);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

i {
    transition: all 0.7s ease-in-out;
}

.faq-btn:hover {
    border-radius: 17px;
    background: linear-gradient(30deg, #632c8f, #7d3b9e);
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);

    i {
        transform: rotate(360deg);
    }
}

.hidden-text {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    color: #6a2d89;
    line-height: 1.2;
}

.faq-btn:hover+.hidden-text {
    opacity: 1;
}

.res-testimonial-img {
    height: 80px;
    width: 80px;
    object-fit: cover
}

.nav-link {
    color: #655375 !important;
    transition: all 0.3s ease-in-out !important;
    padding: 8px 0px !important;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link:hover {
    /* background: linear-gradient(to right, #320159, #320053); */
    color: #863894 !important;
}

.nav-link.active {
    background: linear-gradient(to right, #320159, #320053);
    color: #ffffff !important;
    padding: 8px 16px !important;
    font-size: 14px;
}


/* Index Css */
.curve {
    position: absolute;
    top: -5%;
    left: 30%;
    z-index: 0 !important;
    opacity: 0.3;
}

.hover-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* right: -100%; */
    /* Start off-screen */
    opacity: 0;
    border-radius: 20px !important;

    transform: translateX(100%) translateY(40px);
    /* Start off-screen and slightly lower */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.hover-bg-image.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
    /* Move to original position */
}

.hover-bg-image-1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* right: -100%; */
    /* Start off-screen */
    opacity: 0;
    border-radius: 20px !important;
    transform: translateX(100%) translateY(40px);
    /* Start off-screen and slightly lower */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.hover-bg-image-1.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
    /* Move to original position */
}


.abs-right-top {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    border-radius: 25px !important;
}

.service-desc {
    color: #EAE5ED;
}

.abs-left-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 40%;
    transform: rotate(180deg);
    z-index: 0 !important;
    border-radius: 25px !important;
}

.z-9 {
    z-index: 99 !important;
}

.heading-hov {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #655375 !important;
}

.heading-hov:hover {
    color: #703489 !important;
}

.bg-gradient {
    background: #320053 !important;
}

.privacy-card {
    display: none;
    max-height: 470px;
    overflow-y: auto;
    overflow-x: hidden;
}

.privacy-content,
.terms-content {
    display: none;
    max-height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.privacy-content *,
.terms-content * {
    font-family: 'Open Sans', sans-serif !important;
    color: #655375 !important;
    font-size: 16px !important;
}

.privacy-content::-webkit-scrollbar,
.terms-content::-webkit-scrollbar {
    display: none;
}

.terms-card {
    display: none;
    max-height: 470px;
    overflow-y: auto;
    overflow-x: hidden;
}

.heading {
    color: #27222E !important;
}

.tighter-fit {
    width: 100%;
    max-width: auto;
    /* Adjust for larger screens */
    height: auto;
    aspect-ratio: 1 / 1;
    /* Ensures square shape */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-lt-purple ul li {
    margin-bottom: 10px !important;
}

.form-control-lg {
    font-size: 1.1rem !important;

}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    background-color: #f5f3f8;
    border: none !important;
    cursor: text;
    position: relative;
    width: 100%;
    vertical-align: middle;
    line-height: 1.2;
    font-size: 1.1rem !important;
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: 0.6rem 5px 0 0.5rem;
    border-radius: var(--bs-border-radius-lg);

}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 1.1rem !important;
    margin-top: 0px;
    vertical-align: middle;
    margin-left: 8px;
    color: #ADA8AF !important;
    /* padding: 0.6rem 5px 0 0.5rem; */

    height: 22px;
    /* font-family: sans-serif; */
    overflow: visible;
    word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
    color: #ADA8AF !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 90% !important;
}

.active-tab {
    position: relative;
    transition: all 0.9s ease;
}

.active-tab::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 6px;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.9s ease;
    background: linear-gradient(30deg, #502375, #6a2d89);
}


.max-h-card::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.overflow-lg-visible {
    overflow: visible;
}

.hero-banner {
    height: 35rem;

}

.res-des {
    width: 75%;
}

.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
    vertical-align: middle !important;
    /*line-height: 0 !important;*/

}

.list-gap ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.submit-btn {
    background: #F9E5FF;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
    background: #f4cfff;
    color: #393939;
}

/* From Uiverse.io by adamgiebl */
.button {
    font-family: inherit;
    font-size: 14px;
    background: #341859;
    color: #ffffffff;
    padding: 0.8em 1.2em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

.button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.button:hover {
    background: #4a237c;
    color: #fcfcfc;
}

.button:hover span {
    transform: translateX(5em);
}

.button:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

.w-80 {
    width: 45%;
}

.res-form-h {
    height: 700px;
    object-fit: cover;
}

.partner-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px 0;
}

.partner-slider-wrapper {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.partner-slide {
    flex-shrink: 0;
    /* Prevent shrinking */
    padding: 0 50px;
    /* Adjust spacing between logos */
}

.partner-slide img {
    height: 80px;
    /* Adjust height as needed */
    display: block;
}

/* Animation */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

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

.w-85 {
    width: 90% !important;
}

.description * {
    font-family: 'Open Sans', sans-serif !important;
    color: #655375 !important;
    font-size: 20px;
}

.col-image {
    height: 600px;
    object-fit: cover !important;
    /*max-width: 500px;*/
    width: 400px;
}

/* Media Queries */
/* Navbar for Large Screens */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        gap: 20px;
    }

    .overflow-lg-visible {
        overflow: visible !important;
    }

}

@media (max-width: 480px) {
    .res-slider-text {
        /*top: 5.5rem !important;*/
        left: 10px !important;
    }

    .container-fluid,
    .container {
        --bs-gutter-x: 2.5rem !important;
    }

    .sidebar .nav-link {
        font-size: 1rem !important;
        color: #655375;
        padding: 12px 20px;
        font-weight: 600 !important;
    }

    .res-text-slider {
        font-size: 0.6rem !important;
    }

    .description * {
        font-size: 1rem !important;
    }

    .border-lt-right {
        border-right: 0 !important;
        border-bottom: 1px solid #655375 !important;
    }

    .partner-slide {
        flex-shrink: 0;
        padding: 0 10px;
    }

    .border-rounded-left {
        border-top-left-radius: 25px !important;
        border-top-right-radius: 25px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .border-rounded-right {
        border-bottom-right-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    .border-rounded-left-lg {
        border-top-left-radius: 35px !important;
        border-top-right-radius: 35px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    .max-h-countries {
        height: auto;
        object-fit: cover;
    }

    .res-slider-text p {
        font-size: 14px !important;
    }

    .navbar-nav {
        display: flex;
        gap: 20px;
    }

    .bg-gradient {
        height: 50rem !important;
    }

    .res-des {
        width: 100% !important;
    }

    .hero-banner {
        height: 23rem !important;
    }

    .banner-graphic {
        top: 13rem !important;
        width: 23rem !important;
    }

    .earth {
        top: 5rem !important;
        right: 15px !important;
        width: 37rem !important;
    }

    .fs-4 {
        font-size: 1rem !important;
    }

    .overflow-lg-visible {
        overflow: hidden !important;
    }

    .res-testimonial-img {
        height: 65px !important;
        width: 65px !important;
        object-fit: contain !important;
        border-radius: 50%;
    }

    .res-text {
        text-align: center !important;
    }

    .res-flex {
        display: flex;
        justify-content: center;
    }

    .font-3 {
        font-size: 1rem !important;
    }

    .tighter-fit {
        height: 230px;
        width: 230px;
    }

    .border-start {
        border-left: 0 !important;
    }

    .social-media {
        margin-right: 5px !important;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .res-flex {
        display: flex;
        justify-content: center;
    }

    .bg-gradient {
        height: 33rem !important;
    }

    .square h1 {
        font-size: 2rem !important;
    }

    .square p {
        font-size: 0.8rem !important;
    }

    .res-testimonial-img {
        height: 75px !important;
        width: 75px !important;
        object-fit: contain !important;
        border-radius: 50%;
    }

    .overflow-lg-visible {
        overflow: visible !important;
    }

    /*.res-slider-text {*/
    /*    top: 26% !important;*/
    /*}*/
    .address-text {
        font-size: 13px !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .navbar-nav {
        display: flex;
        gap: 20px;
    }


    .res-text-slider {
        font-size: 0.7rem !important;
    }

    .border-lt-right {
        border-right: 0 !important;
        border-bottom: 1px solid #655375 !important;
    }

    partner-slide {
        flex-shrink: 0;
        /* Prevent shrinking */
        padding: 0 30px;
        /* Adjust spacing between logos */
    }

    .border-rounded-left {
        border-top-left-radius: 25px !important;
        border-top-right-radius: 25px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    .border-rounded-right {
        border-bottom-right-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    .border-rounded-left-lg {
        border-top-left-radius: 35px !important;
        border-top-right-radius: 35px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }


    .w-80 {
        width: 80% !important;
    }

    .bg-gradient {
        height: 50rem !important;
    }

    .res-form-h {
        height: 450px !important;
    }

    .square h1 {
        font-size: 2.2rem !important;
    }

    .square p {
        font-size: 0.9rem !important;
    }

    .res-des {
        width: 100% !important;
    }

    .hero-banner {
        height: 23rem !important;

    }

    .banner-graphic {
        top: 9rem;
        width: 31rem !important;
    }

    .earth {
        top: 5rem;
        right: 15px !important;
        width: 46rem !important;
    }

    .fs-4 {
        font-size: 1.25rem !important;
    }

    .overflow-lg-visible {
        overflow: hidden !important;
    }

    .res-testimonial-img {
        height: 65px !important;
        width: 65px !important;
        object-fit: contain !important;
        border-radius: 50%;
    }

    .res-text {
        text-align: center !important;
    }

    .res-flex {
        display: flex;
        justify-content: center;
    }

    .font-3 {
        font-size: 1.4rem !important;
    }

    .tighter-fit {
        height: 230px;
        width: 230px;

    }

    .border-start {
        border-left: 0 !important;
    }

    .res-slider-text {
        position: absolute !important;
        /*top: 32% !important;*/
        left: 2% !important;
        padding: 0px 5px 0px 0px;
        z-index: 999 !important;
    }

    .social-media {
        margin-right: 5px !important;
    }
}

@media (min-width: 1200px) {
    .square h1 {
        font-size: 2.7rem !important;
    }


    .square p {
        font-size: 1rem !important;
    }
}

@media (max-width: 339px) {
    .square h1 {
        font-size: 1.5rem !important;
    }

    .res-form-h {
        height: 450px !important;
    }

    .square p {
        font-size: 0.6rem !important;
    }

    .faq-btn {

        height: 35px !important;
        width: 35px !important;
    }

    .border-bottom-purple {
        width: 100% !important;
    }

    .w-80 {
        width: 100% !important;
    }
}

@media (max-width: 400px) {
    .bg-gradient {
        height: 52rem !important;
    }
}

@media (min-width: 340px) and (max-width: 480px) {
    .square h1 {
        font-size: 2.1rem !important;
    }

    .bg-gradient {
        height: 45rem !important;
    }

    .w-80 {
        width: 100% !important;
    }

    .res-form-h {
        height: 450px !important;
    }

    .border-bottom-purple {
        width: 100% !important;
    }

    .square p {
        font-size: 0.9rem !important;
    }

    .faq-btn {

        height: 35px !important;
        width: 35px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .col-image {
        width: 400px !important;
    }
}

@media (min-width: 1501px) and (max-width: 1700px) {
    .col-image {
        width: 450px !important;
    }
}

@media (min-width: 1701px) and (max-width: 1900px) {
    .col-image {
        width: 500px !important;
    }
}

@media (min-width: 1901px) and (max-width: 2100px) {
    .col-image {
        width: 550px !important;
    }
}

@media (min-width: 2101px) and (max-width: 2300px) {
    .col-image {
        width: 600px !important;
    }
}

@media (min-width: 2301px) and (max-width: 2500px) {
    .col-image {
        width: 650px !important;
    }
}

@media (min-width: 2501px) and (max-width: 2700px) {
    .col-image {
        width: 700px !important;
    }
}

@media (min-width: 2701px) and (max-width: 2900px) {
    .col-image {
        width: 750px !important;
    }
}

.description>p>strong {
    color: #703489 !important;
}

.read-more {
    color: #c6a8d8;
    transition: color 0.3s ease-in-out;
    text-decoration: none;

}

.read-more:hover {
    color: #703489 !important;

}

.bg-lt-gray {
    background-color: #F5F5F5;
}

.border-rounded-left {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.border-rounded-right {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.border-rounded-left-lg {
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
}

.white-span {
    background: #ffffff;
    color: #2A1451;
    height: 60px;
    width: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.bg-gray {
    background: #FCFCFC;
}

.border-lt-right {
    border-right: 1px solid #655375;
}

.faq-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.faq-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

.w-20 {
    width: 17%;
}

.border-down {
    border-bottom: 2px solid #f0f0f0 !important;
    border-radius: 0 !important
}