 .swiper {
     width: 100%;
     height: 100%;
 }

 .swiper-slide {
     background: whitesmoke;
     border-radius: 10px;
     text-align: center;
     font-size: 18px;
     display: flex;
     flex-direction: column;
     padding: 10px;
     border-radius: 5px;
     color: #000;


 }

 .swiper-slide h5,
 .course-head {
     font-size: 1.45rem;
     font-weight: 600;

     padding-top: 10px;
 }

 .swiper-slide p {
     font-size: 0.87rem;
     font-weight: 400;
     margin-top: -2px;
     text-align: justify;
     width: 87%;
     margin: auto;

 }

 .swiper-button-next,
 .swiper-button-prev {
     font-weight: 900;
     font-size: 0.2rem;
     color: rgb(45 121 231);

     background: #fff;
     width: 45px;
     height: 45px;
     border-radius: 50%;

     display: flex;
     align-items: center;
     justify-content: center;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
     color: rgb(45 121 231);
     font-size: 1.3rem;
     font-weight: 900;
 }

 .swiper-slide img {
     width: 20%
 }

 .swiper-pagination {
     position: relative;
     padding-top: 20px
 }

.grid-card {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: hard-light;

}



.grid-card img {
    height: 130px;
    width: 130px;
    margin: auto;
    margin-top: 20px;

    background: #fff;
    padding: 12px;
    border-radius: 50%;
}

.grid-card p {
    text-align: justify;
    font-size: 0.85rem
}

.grid-card h6 {
    font-size: 1.25rem;
    font-weight: 600;
    padding-top: 20px
}

@media screen and (max-width: 800px) {
    .grid-card {
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .grid-card {
        flex: 100%;
        max-width: 100%;
    }

}