.vid-content>p>span{
    margin-left: 9px;

}

body {
    transition: filter 0.3s ease;
}

.blurred {
    filter: blur(8px);
    pointer-events: none;
}

.nav-outer-div-course{
    
}



.content-box {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.content-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.mission-box1{
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;   
  
}
.mission-box1:-webkit-scrollbar { 
    width: 0;
    height: 0;   /* Safari and Chrome */
}
.dropdown-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    background: #242B33;
    padding: 0;
    max-height: 1050px;
    border-radius: 25px;
    color: #A6ADBA;
}

.dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #2A323C;
    border: none;
    cursor: pointer;
    color: #A6ADBA;
}

.dropdown-button:focus {
    outline: none;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dropdown-content.open {
    max-height: 1000px;
}

/* .open {
    max-height: 1000px;
}
.closed {
    max-height: 0;
} */

.content-item {
    padding: 20px;
    background: #242B33;
    border-top: 1px solid #3A3F47;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content.open .content-item {
    opacity: 1;
    transform: translateY(0);
}

.content-item:hover {
    background-color: #2A323C;
}

.content-item h5 {
    margin: 0 0 10px;
    color: white;
}

.content-item p {
    margin: 0;
}

.fa-caret-down {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
}