/* Color Classes */
.red {
    color: #DC3545;
}

.green {
    color: #28A745;
}

.blue {
    color: #007BFF;
}

.root_color {
    color: var(--theme-color);
}

/* Swiper Slide Image */
.swiper-slide img {
    /* width: 100%; */
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 0s ease-in forwards;
    transition: opacity 1s ease;
    max-height: 649px;
}

.swiper-slide-active img {
    opacity: 1;
    z-index: 1000;
}

/* Fade-in Keyframe Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Text Styling */
.slide-text {
    text-align: left;
    opacity: 0;
    transform: translateX(550px);
    transition: opacity 1s ease, transform 1s ease;
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateX(0);
}

.slide-text>h2,
.btn-custom,
.btn-prev,
.btn-next {
    font-family: 'MB';
    color: var(--color);
}

.slide-text>h2 {
    margin-bottom: 0;
    font-size: 35px !important;
    line-height: 48.95px;
    display: inline;
}

.slide-text>p {
    font-size: 15px;
    line-height: 18.29px;
    text-align: left;
}

/* Custom Button */
.btn-custom,
.btn-prev,
.btn-next {
    background: #4A01941A;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: linear-gradient(90deg, #7B61FF 0%, #090039 100%);
    border-image-slice: 1;
    border-image-repeat: stretch;
    border: 1px solid;
    border-radius: 10px;
    color: #627EFF;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 300;
    transition: background 0.3s ease-in-out;
    cursor: pointer;
}

/* .btn-custom:hover,
.btn-prev:hover,
.btn-next:hover {
    color: #fff;
    background: linear-gradient(90deg, #7054fd 8.2%, #5573fa 90%);
} */

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Swiper Pagination */
.swiper-pagination {
    position: unset;
    display: flex;
    justify-content: center;
    width: 100% !important;
    padding-inline: 50px !important;
    margin-top: 20px;
    gap: 8px;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    height: auto;
    font-size: 16px;
    text-align: start;
    cursor: pointer;
    position: relative;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.swiper-pagination-bullet {
    width: 75px;
    color: #889c99;
    opacity: 1;
    background: transparent;
}

.swiper-pagination-bullet::after,
.swiper-pagination-bullet-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    transition: width 0.7s ease;
}

.swiper-pagination-bullet::after {
    background: #889c99;
}

.swiper-pagination-bullet-active {
    color: #637CFE;
    width: 300px;
    place-items: start;
}

.swiper-pagination-bullet-active::after {
    background: #637CFE;
}

/* Swiper Slide */
.swiper-slide {
    position: relative;
    cursor: grab;
}

/* Tabs */
.nav-tabs {
    border-bottom: none;
    justify-content: center;
}

.nav-link {
    color: #FFFFFF;
    background-color: #333333 !important;
    font-family: 'MR' !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    border-radius: 40px !important;
    margin-right: 10px !important;
    padding: 15px 26px !important;
    margin-bottom: 20px !important;
}

.nav-link.active,
.nav-link:hover {
    background-image: linear-gradient(90deg, #7B61FF 3.2%, #627EFF 90%) !important;
    color: #fff !important;
    font-weight: 600;
    border: none;
}

.tab-content {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
}

.scroll-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    touch-action: none;
    user-select: none;
    width: 98%;
}

.scroll-tabs .nav {
    min-width: 2450px;
    overflow-x: auto;
    overflow-y: hidden;
}

.scroll-tabs::-webkit-scrollbar {
    height: 2px;
    display: none;
}

.slide-text h4 {
    margin: 20px 0;
}


.img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: crosshair;
}

.zoom-image {
    width: 100%;
    transition: transform 0.2s ease-out;
}