/* banner start */
.banner{
    height: 200px;
    background-image: url(../../images/banners/secondary.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px){
    .banner{
        height: 150px;
    }
}
/* banner end */


/* about section start */
.about-us{
    margin-top: 40px;
}
.about-us p{
    font-size: 18px;
}
/* about section end */



/* bebefits section start */
.benefits{
    background-color: black;
    margin-top: 60px;
    padding: 50px;
}
.benefits p{
    font-size: 18px;
    color: #bbb9b9;
}

@media only screen and (max-width: 767px){
    .benefits{
        padding: 30px;
    }
}
/* benefits section end */



/* course carousel area start */
.course-carousel{
    margin-top: 60px;
    padding: 0px 44px;
}
.course-carousel .swiper-wrapper .swiper-slide{
    border: none;
}
.course-carousel .swiper-wrapper .swiper-slide a{
    text-decoration: none;
}
.course-carousel .swiper-wrapper .swiper-slide img{
    width: 100%;
}
.course-carousel .swiper-wrapper .swiper-slide h2{
    font-size: 18px;
    text-align: center;
    color: black;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
}
.course-carousel .swiper-button-prev:after,
.course-carousel .swiper-button-next:after{
    color: black;
    font-size: 30px;
    font-weight: 900;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    top: 34%;
    left: 0;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    top: 34%;
    right: 0;
}
.course-carousel h2.button{
    text-align: center;
    margin: 0;
    margin-top: 30px;
}
.course-carousel h2.button a{
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
}
.course-carousel h2.button a i{
    margin-top: -17px;
    vertical-align: middle;
    color: var(--primary-bg);
    font-size: 22px;
}

@media only screen and (max-width: 1024px){
    .course-carousel {
        padding: 0px 39px;
    }
}
@media only screen and (max-width: 767px){
    .course-carousel {
        padding: 0px 29px;
    }
    .course-carousel .swiper-button-prev:after, 
    .course-carousel .swiper-button-next:after{
        font-size: 24px;
    }
    .course-carousel h2.button a{
        font-size: 18px;
    }
}
@media only screen and (max-width: 512px){
    .main .banner{
        height: 150px;
    }
    .main .banner h1 {
        font-size: 30px;
    }
    .main .banner p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 425px){
    .main .banner h1 {
        font-size: 26px;
    }
    .main .banner p{
        font-size: 14px;
    }
}
/* course carousel area end */


/* information section start */
.information{
    background-color: #F0F0F0;
    margin-top: 60px;
    padding: 50px;
}
.information p{
    font-size: 18px;
}

@media only screen and (max-width: 767px){
    .information{
        padding: 30px;
    }
    .information p{
        font-size: 16px;
    }
}
/* information section end */



/* courses section start */
section.courses{
    margin-top: 60px;
    background: black;
    padding: 80px 5px;
}
section.courses .course{
    border: 1px solid #363636;
    width: calc(33% - 20px);
}
section.courses .course img{
    width: 100%;
}
section.courses .course .content .price{
    letter-spacing: 0.6px;
}
section.courses .course .content .price b{
    font-size: 18px;
}
section.courses .course .content .description{
    color: #b1b1b1;
    font-size: 14px;
} 
section.courses .course .content .btn{
    float: right;
}
section.courses .subtitle{
    color: #b1b1b1;
    font-size: 20px;
}
section.courses .course .content .btn{
    padding: 8px 30px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px){
    section.courses {
        padding: 60px 5px;
    }
    section.courses .d-flex{
        gap: 40px !important;
    }
    section.courses .subtitle{
        font-size: 17px;
    }
    section.courses .course{
        width: calc(50% - 20px);
    }
    section.courses .course .btn{
        margin-top: 18px;
    }
}
@media only screen and (max-width: 512px){
    section.courses {
        padding: 45px 5px;
    }
}
@media only screen and (max-width: 425px){
    section.courses .course{
        width: 100%;
    }
    section.courses .d-flex {
        gap: 30px !important;
    }
}
/* courses section end */