/* Swiper container styling */
.swiper {
    width: 100%;
    height: auto;
    padding: 20px 10px 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Card styling */
.testimonialscard {
    width: 100%;
    height: 100%;
    border: 1px solid #dddddd96;
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #fdfdfd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 0 0;
    transition: transform .4s;
    opacity: .5;
    box-shadow: none;
}

.swiper-slide-active .testimonialscard {
    transform: scale(1.4);
    max-width: 800px !important;
    box-shadow: 0 8px 30px -7px #dddddd;
    opacity: 1;
    background: white;
}

.testimonialscard .star-img {
    width: 70px;
    height: 12px;
    margin-bottom: 8px;
}

.testimonialscard .trust-img {
    width: 80px;
    height: 20px;
    margin-bottom: 8px;
}

.header {
    text-align: center;
    /* margin-bottom: 15px; */
    width: 100%;
}

.name {
    font-size: 12PX;
    font-weight: 700;
    color: #c4996f;
}

.quote-container {
    text-align: center;
    width: 100%;
}

.quote {
    font-size: 9px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-family: primary, primary Fallback;
}

/* Swiper pagination styling */
.swiper-pagination {
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 10px !important;
    background-color: #bbb !important;
    opacity: 1 !important;
    padding: 0;
}

.swiper-pagination-bullet-active {
    background:linear-gradient(179deg, #9a7255, #c4996f) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .testimonialscard {
        padding: 25px 20px;
    }

    .quote {
        font-size: 14px;
    }

    .name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonialscard {
        padding: 20px 15px;
    }

    .testimonialscard img:first-child {
        width: 70px;
        height: 20px;
    }

    .testimonialscard img[alt="Samm Helton"] {
        width: 100px;
    }

    .slick-track .box img {
        width: 100%;
    }

    section.Plans_plansFlod__JAFz0.bg-black .Plans_plansRow__nbqRM.row .slick-track {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .Plans_plans__1XIt2.flex.gap-2.items-center.justify-center {
        flex-direction: column;
        align-items: center;
    }
}

/* Placeholder images styling */
.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf0f1;
    color: #7f8c8d;
    font-weight: 600;
    border-radius: 50%;
}

.stars-placeholder {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
}

.stars-placeholder span {
    color: #f1c40f;
    font-size: 1.2rem;
}

.brand {
    margin-top: 30px;
    text-align: center;
    color: #3498db;
    font-weight: 600;
    font-size: 1.2rem;
}


@keyframes marqueeTop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes marqueeBottom {
    0% {
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.gallery .col {
    animation: marqueeTop 20s linear infinite;
}

.gallery .sec-col {
    animation: marqueeBottom 20s linear infinite;
}

.col.sec-col {
    align-items: flex-end !important;
    align-self: flex-start;
}


.tabcontent {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    height: 0;
}

.tabcontent.activetab {
    visibility: visible;
    opacity: 1;
    transition: 1s;
    height: auto;
}

.tab-vertical .tablinks.active {
    background-color: white !important;
    color: black;
}

.tab-vertical .tablinks.active span {
    background: linear-gradient(179deg, #9a7255, #c4996f);
}

.tablinks.active {
    background: linear-gradient(179deg, #9a7255, #c4996f) !important;
    color: white;
}

.faqquery[aria-expanded="true"]+.leading-normal {
    opacity: 1;
    max-height: 5000px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.faqquery[aria-expanded="false"]+.leading-normal {
    opacity: 0;
    max-height: 0;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.popup-form .MRHeroForm_leadforms__xJrZk {
    margin: 0;
    width: 100% !important;
}

.modal-header {
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 5px;
    padding: 0;
    background: white;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 20% 0% 20% 0%;
}

.modal-content {
    background: transparent !important;
    border: none !important;
}

.modal-content button.btn-close {
    margin: 8px !important;
}

.modal-dialog.modal-dialog-centered {
    max-width: 700px;
}