header{
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    
}


.nav-right{
    text-align: right;
    align-items: end;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    justify-items: flex-end;
    gap: 20px;

}


header nav .dropdown-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dropdown-item {
    text-decoration: none;
    color: #fff;
}



.video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}


.video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.content {
    
    position: relative;
    z-index: 1; 
    color: #fff; 
    padding: 20px; 
}
.bloc-images {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px; 
}




.left{
    margin-left: 40px;
    color: #fff;
    margin-top: 250px;
}

.left p {
    width: 40%;
}

.left h1{
    margin-top: 80px;
}


footer {
	background: #000;
	padding: 5px;
}


  footer ul li a{
   
    
    color:white;
    text-decoration: none;
    font-weight: normal;
    list-style-type: none;
    padding: 0px;
    font-weight: bold;
    
  }

  footer ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  
  
  footer section {
    display: flex;
    justify-content: space-around;
    margin-left: 90px;
    margin-top: 70px;
    margin-right: 90px;
    margin-bottom : 70px;
    overflow: hidden; 
    position: relative;
    bottom: 20px;
  }

 

  footer a:hover {
    text-decoration: underline;
  }















  @media (max-width: 1200px) {
    
    header {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .nav-right {
      display: none; 
    }
  
    .video-container {
      height: 80vh; 
    }
  
    .left {
      margin-top: 150px; 
  
    .left p {
      width: 60%; 
  }
}
  
  @media (max-width: 768px) {
    
  
    .video-container {
      height: 60vh; 
    }
  
    .left {
      margin-top: 100px; 
    }
  
    .left p {
      width: 80%; 
    }
  
    footer section {
      flex-direction: column; 
      align-items: center; 
      text-align: center; 
  }
  }
  }