.hero {
    width: 100%;
    height: 100dvh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../image/bootcamp/index-hero.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#arrow-img {
    position: absolute;
    top: 75%;
    left: 50%;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}


.explore-offline-courses {
    background-color: black;
}

.about-button {
    padding: 8px 20px;
    border: 1px solid #ddef59;
    background-color: #ddef59;
    color: black;
    border-radius: 5px;
}

.explore-button {
    padding: 8px 20px;
    border: 1px solid #ddef59;
    background-color: transparent;
    color: silver;
    border-radius: 5px;
}

.about-button:hover {
    border: 1px solid #ef3f3f;
    background-color: #ef3f3f;
    color: white;
}

.explore-button:hover {
    border: 1px solid #ef3f3f;
    background-color: #ef3f3f;
    color: white;
}

.explore-courses {
    background-color: #1c1919;
}

.course-card {
    /* border: 1px solid silver; */
    border-radius: 8px;
    background-color: black;
}

.course-button {
    padding: 5px 40px;
    border: 1px solid #ddef59;
    background-color: #ddef59;
    color: black;
    border-radius: 20px;
    width: max-content;
    margin-top: 15px;
}

.course-button:hover {
    border: 1px solid #ef3f3f;
    background-color: #ef3f3f;
    color: white;
}

.see-allcourse-button {
    border: 1px solid silver;
    padding: 8px 30px;
    background-color: transparent;
    border-radius: 8px;
    color: silver;
}

.banner {
    background: url(/image/secondary-banner.png);
    padding-left: 15%;
    padding-right: 15%;
}

.accordion-button {
    background-color: transparent !important;
    color: rgb(255, 255, 255) !important;
    font-size: 20px;
    font-weight: 600;
}

.accordion-item {
    background: transparent !important;
}

.testimonials {
    background: #1c1919;
}

.testimonial-item {
    background-color: #ddef59;
    border-radius: 8px;
    margin: 0 10px;
}

.accordion-button::after {
    content: '⌄';
    /* background-image: url(../static/image/chevron-down.svg) !important; */
    background-image: none !important;
}








@media all and (max-width:992px) {
    .banner {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media all and (max-width:576px) {
    .hero {
        height: 60dvh;
        /* padding: 150px 10px 70px 10px; */
    }
}