@import url('https://fonts.googleapis.com/css2?family=Itim&family=Syne:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Syne:wght@400;500;600;700;800&display=swap');
:root {
    --title-font: 'Anton', sans-serif;
    --body-font: 'DM Sans', sans-serif;

    --blue: #06AED5;
    --red: #e83d4d;
    --yellow: #DBD053;
    --black: #030301;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

.text-green-500 {
    color: rgb(44, 156, 93) !important;
}

.text-red-500 {
    color: var(--red) !important;
}

.bg-primary {
    background-color: var(--blue) !important;
}

.btn {
    font-family: inherit;
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    background-color: var(--red);
    border-radius: 10px;
    border: 1px solid var(--red);
    text-transform: capitalize;
    padding: 12px 24px;
    margin: 0;
    box-shadow: 0px 11px 19px 0px rgba(232, 61, 77, 0.54);
    transition: 0.5s ease-in-out;
}

.btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    box-shadow: 0px 11px 19px 0px rgba(246, 157, 27, 0.54);
}

.btn-play {
    border: 1px solid var(--red);
    background-color: #fff;
    color: var(--red);
}

.online-badge {
    position: relative;
    display: block;
    font-family: 'Itim', cursive;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}

.online-badge::before {
    --size: 15px;
    content: '';
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: #25d366;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    box-shadow: 0 0 0 3px #25d36581;
    animation: ripple 1s ease-in-out infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0px #25d36581;
    }

    100% {
        box-shadow: 0 0 0 13px #25d36500;
    }
}


/*Header*/
.masthead {
    background-color: #fff;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

.masthead .navbar-brand {
    max-width: 80px;
}

.masthead .navbar-nav .nav-item .nav-link {
    color: var(--black);
}

.masthead .navbar-nav .nav-item .nav-link.active {
    color: var(--red);
}

@supports (backdrop-filter: saturate(180%) blur(20px)) {
    .masthead {
        background-color: #ffffff26;
    }

    nav#navbar-example3 {
        background-color: rgb(255 255 255 / 80%) !important;
        backdrop-filter: saturate(180%) blur(20px);
    }
}


.banner-section {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.banner-section .hero-text {
    padding: 0;
    margin: 0;
}

.banner-section .hero-text h1 {
    font-family: var(--title-font);
    font-size: 45px;
    color: var(--red);
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 0 20px 0;
    margin: 0;
}

.banner-section .hero-text p {
    padding: 0 0 30px 0;
    margin: 0;
}

/* Features Section */
.features-section {
    background-color: var(--blue);
    padding: 60px 0 30px 0;
    margin: 0;
}

.features-section h2{
    font-family: var(--title-font);
    font-size: 40px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px var(--black);
    padding: 0 0 30px 0;
    margin: 0;
}

.features-section p{
    color: #fff;
    margin-bottom: 20px;
}

.features-section .block .d-flex {
    align-items: flex-start;
    gap: 20px;
}

.features-section .block {
    margin-bottom: 30px;
}

.features-section .block .icon-block {
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--yellow);
    color: #fff;
    font-size: 25px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.features-section .block .text-block {
    width: calc(100% - 120px);
}

.features-section .block .text-block h2 {
    font-family: var(--body-font);
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
    text-shadow: none;
    /* letter-spacing: 1px; */
    padding: 0 0 10px 0;
    margin: 0;
}

.features-section .block .text-block p {
    color: #fff;
}

/* Who Can Enroll Section */
.who-can-enroll-section {
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
}

.who-can-enroll-section .text-block h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--red);
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 0 10px 0;
    margin: 0;
}

.who-can-enroll-section .text-block p > strong{
    font-family: var(--title-font);
    color: var(--red);
    font-weight: 400;
    text-transform: capitalize;
}


/* Courses Details Section */
.courses-details-section{
    background-color: var(--blue);
    padding: 60px 0;
    margin: 0;
}

.courses-details-section h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px var(--black);
    padding: 0 0 50px 0;
    margin: 0;
}

.courses-details-section .course-block{
    margin-bottom: 50px;
}

.courses-details-section .course-block .icon-block{
    background-color: var(--red);
    color: #fff;
    width: 250px;
    aspect-ratio: 1;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 120px;
    box-shadow: 0px 11px 19px 0px rgba(232, 61, 77, 0.54); 
    margin-inline: auto;
}

.courses-details-section .course-block .content-block{
    padding: 0;
    margin: 0;
}

.courses-details-section .course-block .content-block h3{
    font-family: var(--title-font);
    font-size: 30px;
    color: var(--yellow);
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 0 20px 0;
    margin: 0;
    text-shadow: 0 1px black;   
 }

.courses-details-section .course-block .content-block p,
.courses-details-section .course-block .content-block ul li{
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;    
 }

.courses-details-section .course-block .content-block ul li::before{
    content: '🌱';
    vertical-align: middle;
    margin-right: 6px;
}

.courses-details-section .course-block:last-child .content-block {
    padding: 30px;
    margin: 0;
    background: var(--red);
    border-radius: 10px;
}

.courses-details-section .course-block:last-child .content-block h3{
    color: #fff;
}



/* Watch Videos Section*/
.watch-videos-section{
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
}

.watch-videos-section h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--red);
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 50px 0;
    margin: 0;
}

.watch-videos-section .video-block{
    border-radius: 10px;
    padding: 0;
    margin: 0 0 30px 0;
}

.watch-videos-section .video-block iframe{
    width: 100%;
    height: 315px;
    border-radius: 10px;
}


/* Contact Us Section */
.contact-us-section {
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
}

.contact-us-section h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--red);
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 50px 0;
    margin: 0;
}

.contact-us-section .contact-links ul li a {
    font-size: 20px;
    color: var(--black);
    padding: 15px 20px 15px;
    margin: 0 0 20px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
}

.contact-us-section .contact-links ul li a>i {
    color: #fff;
    background: var(--red);
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 11px 19px 0px rgb(232 61 77 / 54%);
}

.contact-us-section textarea.form-control {
    resize: none;
    height: 120px;
}

.contact-us-section .form-control {
    height: 60px;
    padding: 12px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}

.contact-us-section small {
    display: block;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--black);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}

footer p {
    font-size: 12px;
    padding: 0;
    margin: 0;
}

/*Whatsapp Button*/
.whatsapp-btn {
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 999;
}

.whatsapp-btn a>img {
    filter: drop-shadow(0 0 20px #25d36680);
}


/* Blogs Page */
.banner-section--blogs-page {
    background-color: var(--red);
    padding: 0;
    margin: 0;
}

.banner-section--blogs-page .hero-text h1 {
    font-family: var(--title-font);
    font-size: 34px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    padding: 0 0 30px 0;
    margin: 0;
}

.main-content-area {
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
}

.main-content-area .inner-section {
    max-width: 650px;
    margin-inline: auto;
}

.main-content-area .inner-section h3 {
    font-family: var(--title-font);
    font-size: 23px;
    color: var(--red);
    line-height: 1.3;
    font-weight: 400;
    padding: 0;
    margin: 0 0 10px 0;
}

.main-content-area .inner-section p {
    font-size: 18px;
    line-height: 1.5;
    padding: 0;
    margin: 0 0 20px 0;
}

.main-content-area .inner-section .accordion {
    margin-bottom: 30px;
}


.main-content-area .inner-section .accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--blue);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.main-content-area .inner-section .social-share-links {
    padding: 0;
    margin: 0;
}





/*
Media Query
*/

@media only screen and (max-width: 1366px) {
    .banner-section .hero-text h1 {
        font-size: 40px;
    }

    .courses-offered-section .block {
        height: 195px;
    }
}

@media only screen and (max-width: 1199px) {
    .banner-section .hero-text h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    button.navbar-toggler {
        border: none;
    }

    button.navbar-toggler:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .banner-section {
        background-image: url('../images/banner.png');
        background-size: 50%;
        background-position: right center;
        background-repeat: no-repeat;
        padding: 60px 0;
        margin: 0;
    }

    .banner-section .hero-text {
        padding: 25px;
        margin: 0;
        background: #ffffff;
        border: 1px solid #d6d6d6;
        border-radius: 10px;
    }

    @supports (backdrop-filter: blur(16px)) {
        .banner-section .hero-text {
            background: #ffffff61;
            backdrop-filter: blur(16px);
        }
    }


    .banner-section .hero-img {
        display: none;
    }

    .who-can-enroll-section .img-block {
        display: none;
        text-align: center;
    }

    .courses-offered-section .block .icon-block {
        width: 85px;
        font-size: 35px;
    }

    .courses-offered-section .block .text-block h3 {
        font-size: 20px;
    }


    /*Blogs Page*/
    .banner-section--blogs-page {
        background-image: none;
        background-size: 50%;
        background-position: right center;
        background-repeat: no-repeat;
        padding: 60px 0;
        margin: 0;
    }

    .banner-section--blogs-page .hero-text {
        background: none;
        backdrop-filter: blur(0);
        padding: 30px 0 0 0 !important;
        margin: 0;
        border: 0;
    }

    @supports (backdrop-filter: blur(16px)) {
        .banner-section--blogs-page .hero-text {
            background: none;
            backdrop-filter: blur(0);
            padding: 0;
            margin: 0;
            border: 0;
        }
    }
}

@media only screen and (max-width: 768px) {
    .who-can-enroll-section .text-block h2 {
        text-align: left!important;
        padding: 30px 0!important;
    }
}

@media only screen and (max-width: 500px) {
    .banner-section {
        padding: 0 0 30px 0;
    }

    .banner-section .hero-text h1 {
        font-size: 24px;
        padding: 0 0 20px 0;
    }

    .courses-details-section .course-block:last-child {
        margin-bottom: 0;
    }

    .courses-details-section .course-block .icon-block {
        width: 170px;
        font-size: 88px;
        margin-inline: auto;
        margin-bottom: 30px;
    }

    .watch-videos-section .video-block iframe {
        width: 100%;
        height: 200px;
        border-radius: 10px;
    }
}

@media only screen and (max-width: 400px) {
    a.btn.me-4 {
        margin-bottom: 15px;
    }

    .masthead .navbar-brand {
        max-width: 60px;
    }

    .features-section .block .text-block h2 {
        font-size: 17px;
    }

    .who-can-enroll-section {
        background-color: #fff;
        padding: 40px 0;
        margin: 0;
    }

    .courses-offered-section {
        background-color: var(--blue);
        padding: 40px 0;
        margin: 0;
    }

    .contact-us-section {
        background-color: #fff;
        padding: 40px 0;
        margin: 0;
    }

}