.slideshow {
  position: relative;
  width: 100%;
  height: calc(110vh - 70px);
  overflow: hidden;
}

.slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 28s infinite;
}

.slideshow .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 22, 40, 0.6);
  z-index: 1;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.slideshow .slide:nth-child(2) {
  animation-delay: 7s;
}

.slideshow .slide:nth-child(3) {
  animation-delay: 14s;
}

.slideshow .slide:nth-child(4) {
  animation-delay: 21s;
}

.slideshow .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.slideshow .text-overlay h1 {
  font-size: 2em;
  margin: 0;
}

.slideshow .text-overlay p {
  font-size: 1.2em;
  margin: 10px 0;
}

.slideshow .button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: transparent;
  border: 3px solid #FFFF;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}

.slideshow .button:hover {
  background-color: #FFFF;
  color: #000;
}

/************************** HOME SECTION 2 *****************************************/
#home-explanation {
  background-color: #8f6f5c;
  padding: 0 12% 0 12%;
  width: 100%;
  height: auto;
}

#home-explanation h2 {
  font-size: 56px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  padding: 2% 0 5% 0;
}

#home-explanation h4 {
  font-size: 28px;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  color: black;
}

#home-explanation p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

#home-explanation img {
  width: 200px;
  height: 200px;
  border-radius: 4%;
}

/**************************** HOME SECTION 3 ********************************/
#home-offer {
  background-color: #fff;
  width: 100%;
  min-height: 50vh;
  padding-bottom: 8%;
}

#home-offer .row img {
  height: 400px;
}

#home-offer h2 {
  font-size: 56px;
  color: #735240;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  padding: 3% 0 5% 0;
}

#home-offer .row .card {
  width: 300px;
  margin: 2%;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 34px;
  }

  #home-explanation h2 {
    font-size: 45px;
  }

  #home-offer h2 {
    font-size: 45px;
  }
}

@media screen and (max-width: 576px) {

  .slideshow {
    height: calc(90vh - 70px);
  }

  #home-explanation h2 {
    font-size: 40px;
  }

  #home-offer h2 {
    font-size: 45px;
  }
}

