*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;  
}
.aakash{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
  .back-video{
    width: 100%;
    height: auto;
  }  
}
@media (max-aspect-ratio:16/9) {
    .back-video{
      width: auto;
      height: 100%;
    } 
}

/* HEADER */
.logo b{
    width: 100px;
    height: 80px;
    cursor: pointer;
    }
    
    nav{
     width: 84%;
     margin: auto;
     padding: 20px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
    }
   .p{
    color:white
   }
    nav ul li{
        display: inline-block;
        list-style: none;
        margin: 10px 20px;
    }
    
    nav ul li a{
        text-decoration: none;
        color: #606163;
    }
    
    nav ul li a:hover{
        color: #ff4321;
    } 
   
    .d {
     display: flex;
     align-items: center;
   }
   
   
    .align-center {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
    @media only screen and (max-width: 768px) {
     nav {
       padding: 16px 0;
     }
   
   
     .icons{
       display: none;
     }
   
    
     .logob{
       width: 100px;
       height: 80px;
       cursor: pointer;
       } 
     }
     .content{
        text-align: center;
     }
     .content a{
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-size: 24px;
        border: 2px solid white;
        padding: 14px 70px;
        border-radius: 50px;
        margin-top: 20px;
     }
     .content p :hover{
        color: white;
        background-color: rgba(1, 0, 0, 0.547);

     }