.nounderline {
  text-decoration: none !important;
}
body,
#slider,
.wrap,
.slide-content {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100vh;
}
#container {
  width: 100vw;
  height: 100vh;
  background: #0d0d0d;
}

.wrap {
  position: relative;
}

.slide_nb {
  width: 110vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 1s ease-out !important;
}
.slide1 {
  background-image: url("../ASSETS/Aerial-night.jpg");
}
.slide2 {
  background-image: url("../ASSETS/Triplex.jpg");
}
.slide3 {
  background-image: url("../ASSETS/villament.jpg");
}
.slide4 {
  background-image: url("../ASSETS/Night.jpg");
}
.slide5 {
  background-image: url("../ASSETS/Front.jpg");
}

.slide-content {
  position: absolute;
  top: 21vh;
  text-align: center;
  width: 100%;
  height: 75vh;
}

.arrow {
  cursor: pointer;
  position: absolute;
  font-size: 16px;
  top: 50%;
  color: #ffffff;
  margin-top: -50px;
  width: 80px;
  height: 69px;
  z-index: 3;
  padding-top: 4.2vh;
  opacity: 0.5;
  transition: 0.2s;
}
.arrow:hover {
  opacity: 1;
  font-size: 17px;
}
#arrow-left {
  border-left: 2px solid #fff;
  padding-left: 1vw;
  left: 0;
  margin-left: 3.5vw;
}
#arrow-left:hover {
  margin-left: 3vw;
}
#arrow-right {
  border-right: 2px solid #fff;
  padding-left: 3.5vw;
  right: 0;
  margin-right: 5vw;
}
#arrow-right:hover {
  margin-right: 4.5vw;
}
/* MY CODE */
h1 {
  /* font-family: "Dancing Script", cursive !important; */
  font-family: "Oswald", sans-serif !important;
  font-style: italic;
  font-size: 90px;
  color: #fff;
  opacity: 0;
}
.size-inc {
  animation: size-inc 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.5;
  top: 0;
}
.arrow.down {
  padding-top: 40vh;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@keyframes size-inc {
  from {
    font-size: 100px;
    opacity: 0;
  }
  to {
    font-size: 115px;
    opacity: 1;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(7px);
  }
  60% {
    transform: translateY(5px);
  }
}

/* Button inverted long */
#btn {
  display: flex;
  justify-content: center;
}
#btn > a {
  position: absolute;
  z-index: 3;
  margin-top: -23vh;
  border: 2px solid #ffc006;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  height: 58px;
  padding: 17px;
  transition: all 0.3s;
  letter-spacing: 1px;
}
#btn > a:hover {
  background-color: #ffc006;
  width: 170px;
  /* margin-left: 50vw; */
}
#btn > a:hover {
  padding-right: 15px;
  color: #0d0d0d;
}
@media screen and (max-width: 660px) {
  .footer-items {
    width: 100% !important;
  }
  #btn_con {
    padding: 1.7vh 3.5vw;
  }
}
