.introMenu {
    width: 100%;
    height: 100vh;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    position: fixed;
    top: 80px;
    background-color: white;
    z-index: 20;
    right:0px;
}

.introMenu.active{
    visibility: visible;
    opacity: 1;
}

.material-symbols-outlined{
    transition: all 0.5s ease;
}

.material-symbols-outlined.active {
    transform: rotate(180deg)
}

/*.introhelp {
    text-decoration: none;
    color: black;
    font-size: 20px;
}*/
@media (max-width:998px){
   .introhelp{
       font-size:16px;
   }
    .material-symbols-outlined{
        font-size:18px !important;
    }
}
.navbar-li {
    position: relative;
    display: flex;
    /* padding-top: 20px;
    padding-bottom: 10px; */
    cursor: pointer;
}


    .navbar-li::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 0;
        width: 100%;
        background-color: #1d90c9;
        transition: height 0.2s ease;
    }

   
.section1,
.section2 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2 {
    background-color: #f7f7f7;
}


.container {
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100% !important;
     padding-top: 0px !important;
    gap: 50px;
    overflow-y: auto;
    margin-top: 170px !important;
}

.container .containerHeading {
    display: flex;
    gap: 5px;
    font-size: 18px;
}

.container .span1 {
    color: black;
}

.container .span2 {
    color: #1d90c9;
}

.lists {
    /* background-color: blue; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.lists ul {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lists li {
    list-style: none;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    width: fit-content;

}

    .lists li:hover {
        color: #1d90c9 !important;
        transition: 0.3s;
    }

.lists ul li::after {
    content: '';
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #1d90c9 !important;
    transition: width 0.3s ease;
}

    .lists ul li::before {
        content: '➔';
        position: absolute;
        color: #1d90c9 !important;
        left: 0;
        top: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

.lists ul li:hover::after {
    width: calc(100% - 25px);
}

.lists ul li:hover::before {
    opacity: 1;
    transform: translate(0);
}



.navbar-li.active::after {
    height: 3px;
}


.video{
    height: 100vh;
    width: 100%;
    background-color: green;
}