@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;600;800&display=swap');

body {
    font-family: 'Nunito', sans-serif;
}

.bold {
    font-weight: bold;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    z-index: 999;
    color: #fff !important;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 20px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width:540px) {
    .btn-whatsapp-pulse {
        background: #25d366;
        color: white;
        position: fixed;
        bottom: 20px;
        left: 20px;
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 0;
        height: 0;
        padding: 24px;
        text-decoration: none;
        border-radius: 50%;
        animation-name: pulse;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;

    }

    @keyframes pulse-border {
        0% {
            padding: 15px;
            opacity: 0.75;
        }

        75% {
            padding: 30px;
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

}

.course-footer {
    padding: 9px;
    background: #140000;
    border-radius: 4px;
    text-align: center;
    transition: 300ms ease;
    -webkit-transition: 300ms ease;
    -moz-transition: 300ms ease;
    -ms-transition: 300ms ease;
    -o-transition: 300ms ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.course-footer:hover {
    background: #ac2422;
}

.course-footer .lab-btn-text,
.course-footer .lab-btn-text i {
    color: #ffffff;
}

@media screen and (max-width:991px) {
    .lab-ul.social-icons.d-flex.align-items-center {
        display: none !important;
    }
}


@media screen and (max-width: 575px) {
    .header-wrapper .menu-area {
        padding: 15px 0;
        display: flex;
        flex-wrap: nowrap;
    }

    .banner-section {
        padding-top: 250px;
    }
}

.header-wrapper {
    flex-wrap: nowrap;
}

.category-item .category-inner .category-thumb img {
    width: 92px;
    height: 92px;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    opacity: .4;
}

.course-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-inner .course-thumb {
    height: 240px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-section .section-wrapper .col .category-item .category-inner .category-content span {
    font-weight: 500;
    background: #f7f7f7;
    border-radius: 50%;
    width: 46px;
    height: 47px;
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.banner-section .section-wrapper .banner-content .banner-catagory ul li a {
    text-transform: lowercase;
}
 

.spinner {
    width: 56px;
    height: 56px;
    display: grid;
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    background: var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 13.4px 13.4px;
    background-repeat: no-repeat;
    animation: spinner-3hs4a3 1s infinite;
}

.spinner::before {
    --c: radial-gradient(farthest-side, #ac2422 92%, #0000);
    margin: 4.5px;
    background-size: 9px 9px;
    animation-timing-function: linear;
}

.spinner::after {
    --c: radial-gradient(farthest-side, #ac2422 92%, #0000);
}

@keyframes spinner-3hs4a3 {
    100% {
        transform: rotate(.5turn);
    }
}

.spinner_container {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    background: #ffffff80;
    display: grid;
    place-items: center;
}

@media screen and (max-width: 992px) {

    .menu-item-has-children>a::after,
    .menu-item-has-children>a::before {
        display: none;
    }
    .menu > ul li a{
        color: #ffffff !important;
    }
}

