.program-title-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.for-icon-title{
    display: flex;
    align-items: center;
    gap:20px;
}

.title span{
    color: var(--blue);
}

.for-icon img{
    height: 100px;
    width: 100px;
    border-radius: 5px;
}
.btn:hover,
.btn{
    background: var(--blue);
    color: var(--white);
}

.enroll-now-mobile{
    font-size: 13px;
    padding:7px 8px;
    display: none;
    transition: 0.5s;
}
.enroll-now{
    transition: 0.5s;
}
.enroll-now-mobile:hover,
.enroll-now:hover{
    background: var(--black);
    color: var(--white);
    transform: scale(1.08);
}

.duration,
.program-details p,
.program-description p{
    font-size:15px;
    font-weight: 400;
}
.details-item{
    line-height: 15px;
}

/*.prev-next .btn:hover{
    background: var(--black);
    color: var(--white);
}

.btn.disabled, .btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}*/


/*PROGRAM CAROUSEL*/

.program-carousel-section{
    background: #F7F7F7;
}
.program-carousel-container{
    padding: 30px 15px;
}

.carousel-container{
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(83, 91, 107, 0.2);
    overflow: hidden;
    margin: 10px 15px 20px 15px;
    height: 100%;
    cursor: grab;
    height: 100%;
}
/*.carousel-container:last-child {
    margin: 0 0 20px 0;
}*/
.carousel-container img{
    width: 100%;
    transition: 0.5s;
    z-index:-1;
}

.header-title{
    font-weight: 600;
    font-size: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.program-instructor-name{
    color: var(--black);
    font-size: 17px;
    text-align: center;
}
.carousel-container:hover img{
    transform: scale(1.08);
}
.carousel-description{
    padding: 20px 20px 30px 20px;
    z-index:5;
	position: relative;
    background: var(--white);
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: flex-start; /* Content stays at the top */
    height: 210px;
}
.program-description {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-details{
    transition: 0.5s;
    margin-top: auto; /* Push the <hr> to the bottom */

}

.view-details:hover{
    transform: scale(1.1);
}

.download_brochure{
    transition: 0.5s;
}
.download_brochure:hover{
    background: var(--black);
    color: var(--white);
    transform: scale(1.1);
}


/*SLICK ARROW*/
.slick-prev, .slick-next {
    background: var(--blue);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-prev:focus, .slick-next:focus{
    background: var(--blue);
}
.slick-prev {
    left: -30px;
    z-index: 1;
}

.slick-next {
    right: -30px;
}

.slick-prev:hover, .slick-next:hover {
    background: var(--black);
    color: var(--white);
}

.slick-prev::before, .slick-next::before {
    content: '';
}

.slick-prev::before {
    font-family: 'Font Awesome Kit';
    font: var(--fa-font-solid);
    content: '\f053';
    color: var(--white);
}

.slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font: var(--fa-font-solid);
    content: '\f054';
    color: var(--white);
}

.slick-prev:hover::before, .slick-next:hover::before {
    color: var(--white);
}
/*END*/

/*MEDIA QUERIES*/

@media(max-width:1350px){
    .carousel-description {
        height: 100%;
    }
    .view-details{
        margin-top:8px;
    }
}

@media(max-width:991px){
    .program-details-section{
        padding: 40px 10px;
    }
    li p{
        line-height: 20px;
    }
}
@media(max-width:768px){
    .program-details-container{
        margin-top:20px;
    }
    .title .program-title{
        font-size:18px;
    }
    .title h4{
        font-size:15px;
    }
    .enroll-now{
        display: none;
    }
    .enroll-now-mobile{
        display: block;
        width: 115px;
        margin-top:5px;
    }
    .duration,
    .program-details p,
    .program-description p{
        font-size:14px;
    }

    h5,h6{
        font-size:17px;
    }

    .container, .container-sm {
        max-width: 100% !important;
    }

    .slick-prev {
        left: -10px;
    }
    
    .slick-next {
        right: -10px;
    }
}

@media(max-width:600px){
    /*SLICK SLIDER*/
    .slick-prev {
        left: -10px;
        z-index: 1;
    }
    
    .slick-next {
        right: -10px;
    }
    /*END*/

    .for-icon img{
        height: 100px;
        width: 100px;
    }
    .breadcrumb-item{
        font-size:14px;
    }

    .title .program-title{
        font-size:16px;
    }
    .title h4{
        font-size:15px;
    }

    .enroll-now-mobile{
        width: 105px;
        margin-top:0;
    }
    h6{
        font-size: 15px;
    }
    .header-3{
        font-size:24px;
        text-align: center;
    }
    .header-title{
        font-size: 18px;
    }
    
    .program-instructor-name{
        font-size: 15px;
    }

    .program-carousel-container{
        padding: 15px;
    }
}


