* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:Poppins;
}
.container{
  width:100%;
  height:80vh;
  background-image:url(../images/Leviathan6.jpg);
  background-position:center;
  background-size:cover;
  margin-bottom:10px;

}
.header{
  width:100%;
  height:20vh;
  background-color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 5%;
}
.title{
  font-size:45px;
  font-weight:600;
  color:rgb(11,13,23);
}
.logo img{
  width:200px;
  padding-right:50px;
}
.navigation ul li{
  display:inline-block;
  list-style:none;
  margin:10px 20px;
}
.navigation ul li a{
  text-decoration:none;
  color:rgb(11,13,23);
  font-weight:800;
  transition:0.3s;
}
.navigation ul li a:hover{
  color:#00f;
  text-decoration:underline 2px;
}
.gallery {
  width: 100%;
  height: auto;
  overflow: auto;
  background-color: rgb(11,13,23);
}
.gallery-content {
  display: flex;
  justify-content: center;
}
.presentation {
  margin-right: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.presentation .main-img {
  width: 70vw;
}
.chose-img {
  overflow-y: scroll;
  max-height: 100vh;
  padding-right: 12px;
}
.chose-img img {
  width: 20vw;
  display: block;
  margin-top: 12px;
  cursor: pointer;
}
.chose-img img:last-of-type {
  margin-bottom: 12px;
}
.chose-img::-webkit-scrollbar {
  width: 8px;
}
.chose-img::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.chose-img::-webkit-scrollbar-thumb {
  background: #fa4616;
}
@media screen and (max-width: 1180px) {
  /* .gallery-content {
    flex-direction: column;
    justify-content: flex-start;
  } */
  .presentation {
    width: 60vw;
    margin: auto;
  }
  .presentation .main-img {
    width: 100%;
    margin-top: 50px;
  }
  /* .chose-img {
    margin-top: 40px;
    overflow-y: auto;
    max-height: none;
    padding-right: 0;
    display: flex;
    min-width: 100vw;
  } */
  .chose-img::-webkit-scrollbar {
    height: 8px;
  }
  .chose-img img {
    width: 30vw;
    margin-bottom: 12px;
    margin-right: 12px;
  }
}

/* @media screen and (max-width: 700px) {
  .presentation {
    width: 95%;
  }
  .presentation .main-img {
    margin-top: 80px;
  }
} */
@media screen and (max-width:1500px){
  .header{
    display:block;
  }
  .logo{
    padding-left:20px;
    margin-left:auto;
    margin-right:auto;
    width:200px;
  }
  .title{
    text-align:center;
  }
  .navigation{
    text-align:center;
  }


@media screen and (max-width:620px){
  .title p{
    font-size:2.5rem;
  }

}
@media screen and (max-width:540px){
  .title p{
    font-size:1.8rem;
  }
  .header{
    height:30vh;
  }
  .container{
    height:70vh;
  }

}
