*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/***********NavBar***********/

.logo{
    height: 40px;
}

#logoimg{
    position: absolute;
    top: -80px;
    height: 250px;
}

.navbar {
    color: #081F59;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F49B04;
}

.nav-links{
    display: none;
}
  
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 2rem;
    font-weight: bold;
    color: #081F59;
    height: 40px;  
    
}
  
.nav-links, .nav li {
    margin-right: 2rem;
    list-style: none;
}
  
.nav a{
    text-decoration: none;
    color: #081F59;
}

.nav :hover {
    color: white;
}
  
.burger {
    display: none;
    cursor: pointer;
}
  
.line1, .line2, .line3 {
    width: 30px;
    height: 3px;
    background-color:#081F59;
    margin: 5px;
}

.active{
    color: #081F59;
}


.links{
    background-color: #081F59;
    width: 100%;
    font-size: larger;
    color: white;
    height: 150px;
}

#shoop{
    padding-top: 20px;
    text-align: center;
    font-size: 50px;
    
}

.sublink a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: white;
}

li {
    text-decoration: none;
    list-style: none;
    color: white;
}

.sublink{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    
}

.circle{
    margin-top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    color: white ;
    background-color: #fff;
    
}

.advert{
    display: flex;
    justify-content: center;
}

#myvideo{
    margin-top: 30px;
    width: 50%;
    height: 300px;
    padding-bottom: 20px;
}


.footer{
    font-size: 20px;
    height: auto;
    background-color: #081F59;
    color: white;
}

.op{
    padding-bottom: 10px;
}

.containers{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

#final{
    display: flex;

}
.list{
    margin-top: 20px;
}

#limg{
    background-color: white;
    height: 200px;
}

.partners{
    display: flex;
    gap: 10px;
}

.last{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.line{
    width: 100%;
    height: 4px;
    background-color: white;
}

.icons{
    display: flex;
    gap: 20px;
}

#hs:hover{
    color: #F49B04;
}

#ev{
    color: white;
}


/* Responsive Styles */
@media (max-width: 768px) {
    
    .op{
        margin-top: 20px;
        color: #F49B04;
    }

    .logo{
        height: 40px;
    }
    
    #logoimg{
        position: absolute;
        top: -50px;
        height: 200px;
    }
    

    .nav-links li {
            padding: 0.2rem;
            }
        
        
            .burger {
            display: block;
            }
        
        .nav{
            display: none;
        }
        
        .nav-links,  a {
            color: #fff;
            text-decoration: none;
        }

        #myvideo{
            margin-top: 30px;
            width: 70%;
            height: 300px;
            padding-bottom: 20px;
        }


        /*************responsive footer*************/  
        .footer{
            background-color: #081F59;
         } 
            .linkss{
                display: none;
            }
            #limg{
                justify-content: center;
                background-color: white;
                height: 100px;
                margin-top: 10px;
            }
    
            .last{
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                text-align: center;
            }
    
            .icons{
                padding-top: 15px;
            }
}

  
  /* Toggle Navbar Style */
  .navbar.active {
    background-color: white;
    color: white;
    z-index: 1;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .nav-links.active {
    display: block;
    position: absolute;
    text-align: center;
    top: 72px;
    left: 0;
    background-color: #F49B04;
    color: black;
    width: 100%;
    height: 27vh;
    padding: 10px;
  }




