.program-card-div {
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}


.program-image-div {
    width: 100%;
    height: 100%;
    position: relative;
}


.program-image-div img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.program-image-div h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    transition: all 0.5s ease;
    font-size: 25px;
}

.program-image-div h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    transition: all 0.5s ease;
    font-size: 20px;
}

.program-details-div {
    color: white;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.717));
    padding: 20px;
    transition: all 0.2s ease;
    position: absolute;
}

.program-details-div h3 {
    font-size: 25px;
}

.program-details-div p {
    font-size: 20px;
}

.program-card-div:hover>.program-details-div {
    transform: translateY(-100%);
}

.program-card-div:hover>.program-image-div img {
    transform: scale(1.2);
}

.program-card-div:hover>.program-image-div h3 {
    transform: translateY(100px);
}

/* swiper css  */
.maindiv {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0 10px 0;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 0 50px 0px;
}

.swiper-slide {
    position: relative;
}

.swiper-pagination-bullet-active {
    background-color: rgb(41, 40, 40) !important;
}

.swiper-button {
    background-color: rgba(255, 255, 255, 0.329);
    font-size: 12px;
    padding: 30px;
    border-radius: 100%;
    color: rgb(41, 40, 40) !important;
}

.swiper-button-prev {
    margin-left: -10px;
}

.swiper-button-next {
    margin-right: -10px;
}

@media screen and (max-width:1200px) {
    .maindiv {
        width: 95%;
    }
}

@media screen and (max-width:768px) {
    .maindiv {
        width: 90%;
    }

    .program-details-div h3 {
        font-size: 20px;
    }

    .program-details-div p {
        font-size: 17px;
    }
}