* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0; background-color: rgba(6.3, 8.2, 9.8, 1.0);}
.slides {display: none}
img {vertical-align: middle;}

.logo{
  max-width: 1000px;
  display: block;
  margin: auto;
}


.menu-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.arrow-container-prev, .arrow-container-next{
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  top: 0%;
  opacity: 0.5;
}

.arrow-container-next{
  background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.prev, .next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}


.next , .arrow-container-next{
  right: 0;
  border-radius: 3px 0 0 3px;
}


.arrow-container:hover {
  background-color: rgba(0,0,0,0.8);
}


.text {
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}




.animation {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

