*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
.banner{
    width: 100%;
    height: 106.4%;
    background-image: linear-gradient(rgba(0,0,0,0.50),rgba(0,0,0,0.50));
    background-position: center;
    background-size: center;
   
}
.navbar{
    width: 100%
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}
.logo{
    width: 100px;
    margin-top: -50px;
    margin-left: -10px;
    cursor: pointer;
}
.navbar ul li{
  
    list-style: none;
    display: inline-block;
    margin-left: -10px;
    
}
.navbar ul li a{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    padding: 15px;
    
}
li a:hover{
    background: transparent;
    transition: 0.6s;
}
.navbar a:hover{
    color: #2094D1;
}

.content{
    width: 100%;
    position: absolute;
    color: white;
    top: 55%;
    transform: translateY(-50%);
    text-align: center;
}

.content h1{
    
.   margin-top: 50px;
    font-size: 70px;
    font-weight: 700;
    font-family: sans-serif;
	opacity: 0;
}
.content h1:hover{
    -webkit-text-stroke: 1px #fff;
     color:#2094D1;
     
}

.content a{
     text-decoration: none;
     display: inline-block;
     color: #fff;
     font-size: 28px;
     border: 2px solid #fff;
     padding: 2px 50px;
     border-radius: 35px;
     margin-top: 50px;
	 opacity: 0;
	
}

.content a:hover{
	text-decoration: none;
	background:  #2094D1;
	color: white;
    transition: 0.5s;
}
button{
    width: 150px;
    padding: 15px;
    margin: 20px 5px;
    text-align: center;
    border-radius: 25px;
    color: black;
    border: 2px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
}
button:hover{
    background:  #2094D1;
    transition: 0.5s;

}
button:hover{
    color: white;
}
.banner video{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -100;
    object-fit: cover;
    
}
@media(min-aspect-ratio: 16/9){
    .banner video{
        width: 100%;
        height: auto;
	
    }

}


.overlay other{
   
    padding: 100px;
    top: 0;
    z-index: -100;
  
    
}
@media(min-aspect-ratio: 16/9){
    .overlay video{
		
		padding-left: 0px;
        width: 500PX;
        height: auto;
      
      	
    }

.text{
    position: absolute;
    margin-top: 10;
    padding: 20px;
    left: 0;
    font-size: 22;
    font-weight: 50;
    font-family: sans-serif;
}

.anim{
    animation: slideUp 1s linear forwards;
    animation-delay: 1s;
}
@keyframes slideUp{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

a.anim{
    animation-delay: 2s;
}
.links.anim{
    animation-delay: 3s;
}
@media (min-aspect-ratio: 16/9){
    .video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .video{
        width: auto;
        height: 100%;
    }
}
