/* Hero Slider - Basit ve Modern */
.hero-slide {
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.min-vh-50 {
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

/* Course Tabs Navigation */
.nav-pills .nav-link {
    color: #6c757d;
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    color: #cb0001;
    border-color: #cb0001;
    background: rgba(203, 0, 1, 0.05);
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #cb0001 0%, #a00001 100%);
    border-color: #cb0001;
    color: white;
    box-shadow: 0 4px 15px rgba(203, 0, 1, 0.3);
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(203, 0, 1, 0.15);
}

.course-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.course-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.course-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex: 1;
}

.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.course-price {
    display: flex;
    flex-direction: column;
}

.price-original {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.price-discount {
    color: #cb0001;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Carousel Controls - Modern Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: none;
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background: rgba(203, 0, 1, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(203, 0, 1, 0.4);
}

.carousel-control-prev:hover .carousel-control-prev-icon i {
    transform: translateX(-3px);
}

.carousel-control-next:hover .carousel-control-next-icon i {
    transform: translateX(3px);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    width: 40px;
    border-radius: 6px;
    background-color: white;
    border-color: rgba(203, 0, 1, 0.5);
}

/* Stats Section - Minimalist & Eye-catching */
.stats-section {
    background: #ffffff;
    border-top: 4px solid #cb0001;
    border-bottom: 1px solid #f0f0f0;
}

.stats-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(203, 0, 1, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cb0001, #ff4444);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(203, 0, 1, 0.2);
    border-color: #cb0001;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(203, 0, 1, 0.3);
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
}

.stats-icon i {
    font-size: 36px;
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #cb0001, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-label {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Feature Cards - Clean & Modern */
.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f5f5f5;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(203, 0, 1, 0.05));
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(203, 0, 1, 0.15);
    border-color: #cb0001;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 30px rgba(203, 0, 1, 0.4);
}

.feature-icon i {
    font-size: 40px;
    color: #cb0001;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

/* Category Cards - Bold & Simple */
.category-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    height: 100%;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #cb0001, #ff4444);
    border-radius: 20px 0 0 20px;
    transition: height 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(203, 0, 1, 0.18);
    border-color: #cb0001;
}

.category-card:hover::before {
    height: 100%;
}

.category-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(203, 0, 1, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(203, 0, 1, 0.4);
}

.category-icon i {
    font-size: 34px;
    color: white;
}

/* Category Cards with Images */
.category-card-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(203, 0, 1, 0.25);
}

.category-card-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card-img:hover .category-card-img-bg {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(203,0,1,0.9) 100%);
    transition: opacity 0.4s ease;
}

.category-card-img:hover .category-card-overlay {
    opacity: 0.95;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.category-card-img:hover .category-card-content {
    transform: translateY(-10px);
}

.category-icon-img {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.category-card-img:hover .category-icon-img {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(360deg);
}

.category-icon-img i {
    font-size: 28px;
    color: white;
}

.category-card-content h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Feature Cards with Images */
.feature-card-with-img {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-card-with-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(203, 0, 1, 0.2);
}

.feature-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card-with-img:hover .feature-img-wrapper img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(203,0,1,0.7) 100%);
    transition: opacity 0.4s ease;
}

.feature-card-with-img:hover .feature-overlay {
    opacity: 0.9;
}

.feature-icon-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.feature-card-with-img:hover .feature-icon-float {
    transform: translate(-50%, -50%) scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
}

.feature-icon-float i {
    font-size: 32px;
    color: #cb0001;
    transition: color 0.4s ease;
}

.feature-card-with-img:hover .feature-icon-float i {
    color: white;
}

.feature-content {
    padding: 25px;
    text-align: center;
}

.feature-content h5 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid #f5f5f5;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(203, 0, 1, 0.15);
    border-color: #cb0001;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cb0001 0%, #ff4444 100%);
    transition: transform 0.4s ease;
}

.blog-image-placeholder i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.blog-card:hover .blog-image-placeholder {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #cb0001, #ff4444);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(203, 0, 1, 0.3);
}

.blog-date span {
    font-size: 24px;
    line-height: 1;
}

.blog-date small {
    font-size: 11px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

.blog-meta span i {
    color: #cb0001;
}

.blog-link {
    color: #cb0001;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #ff4444;
    padding-left: 5px;
}

/* Newsletter Section */
.newsletter-section {
}

.newsletter-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cb0001, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(203, 0, 1, 0.3);
}

.newsletter-icon i {
    font-size: 36px;
    color: white;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #cb0001;
}

.newsletter-btn {
    flex: 0 0 auto;
    padding: 16px 30px;
    background: linear-gradient(135deg, #cb0001, #ff4444);
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #a00001, #cb0001);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(203, 0, 1, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slide {
        padding: 60px 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        font-size: 20px;
    }
    
    .stats-card {
        padding: 30px 20px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon i {
        font-size: 28px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 32px;
    }
    
    .newsletter-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 50px 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        font-size: 18px;
    }
    
    .stats-card {
        padding: 25px 18px;
    }
    
    .stats-icon {
        width: 55px;
        height: 55px;
    }
    
    .stats-icon i {
        font-size: 24px;
    }
    
    .stats-number {
        font-size: 1.8rem;
    }
    
    .stats-label {
        font-size: 12px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .newsletter-icon i {
        font-size: 28px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        font-size: 14px;
        padding: 14px 15px;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
        width: 100%;
    }
    
    .newsletter-btn {
        font-size: 14px;
        padding: 14px 20px;
        border-radius: 12px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        padding: 40px 0;
    }
    
    .min-vh-50 {
        min-height: auto;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
    
    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        font-size: 16px;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .carousel-indicators [data-bs-target].active {
        width: 24px;
    }
    
    .stats-card {
        padding: 20px 15px;
    }
    
    .stats-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stats-icon i {
        font-size: 22px;
    }
    
    .stats-number {
        font-size: 1.6rem;
    }
    
    .stats-label {
        font-size: 11px;
    }
    
    /* Mobile: Tabs scroll */
    .tabs-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tabs-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .tabs-scroll-wrapper .nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0;
        gap: 10px;
        display: flex;
    }
    
    .tabs-scroll-wrapper .nav-item {
        flex-shrink: 0;
    }
    
    .tabs-scroll-wrapper .nav-item:first-child .nav-link {
        margin-left: 0;
    }
    
    .tabs-scroll-wrapper .nav-link {
        white-space: nowrap;
        margin: 0;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Mobile: Courses scroll */
    .courses-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(203, 0, 1, 0.3) transparent;
        padding-bottom: 20px;
    }
    
    .courses-scroll-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .courses-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .courses-scroll-container::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #cb0001 0%, #a00001 100%);
        border-radius: 10px;
    }
    
    .courses-scroll-container .row {
        margin-right: -15px;
        margin-left: -15px;
        flex-wrap: nowrap;
    }
    
    .courses-scroll-container [class*="col-"] {
        flex: 0 0 320px;
        max-width: 320px;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .courses-scroll-container .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet ve Desktop'ta normal grid */
@media (min-width: 768px) {
    .tabs-scroll-wrapper .nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .courses-scroll-container {
        overflow-x: visible;
    }
    
    .courses-scroll-container .row {
        flex-wrap: wrap;
    }
    
    .courses-scroll-container [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .courses-scroll-container [class*="col-lg-"] {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
