/* CSS */


ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Style the navigation bar */
  nav {
    background-color: #333;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #000000;
    width: 80px;
    overflow: hidden;
    transition: width 0.2s linear;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    /*height: 40px;
    */margin-bottom: 100px;
    -webkit-transition: width 0.2s linear;
    -moz-transition: width 0.2s linear;
    -ms-transition: width 0.2s linear;
    -o-transition: width 0.2s linear;
}
  
.nav-elem{
  text-align: center;
  display: flex;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nav-elem span{
  font-weight: bold;
  margin-left: 0px;
  padding: 0px;
  font-size: 18px;
  text-transform: uppercase;

}



a{
  position: relative;
  color: rgb(85, 83, 83);
  font-size: 14px;
  display: table;
  width: 300px;
  padding: 10px;

}

.nav-item{
  position: relative;
  top: 12px;
  
}

.fas{
  position: relative;
  width: 80px;
  height: 50px;
  top: 14px;
  font-size: 20px;
  text-align: center;
}

a:hover{
  background: #827eb9;
  ;
}

nav:hover{
  width: 220px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}


  
  body {
    background-image: url('bg7.jpg');
    
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 

    
  }  

  

  .card {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    justify-content: center;
    background-color: #827eb9;
    margin-top: 150px;
    height: 500px;
    width: 1500px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
  
  .image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  
  .description {
    flex: 1;
    padding: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .vid{
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .fill{
    display: flex;
    justify-content: center;
    height: 100px;
    width: 1000px;
  }
  
  .cnt span{
    display: flex;
    justify-content: center;
    background: #ccc;
  }

  /* Add media query for responsiveness */
  @media (max-width: 768px) {
    .card {
      flex-direction: column;
    }
  }

  