html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #ffffff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-container-wrapper {
  height: 90vh;
  /* width: 100vw; */
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-slide {
  text-align: left;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: start;
  /* Slide content */
}
.gallery-thumbs .swiper-slide {
  text-align: center;
  align-items: center;
  /* Slide content */
}
.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #fff;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
  font-size: 16px;
  color: #ffd644;
  transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
  position: relative;
  width: 100%;
  height: 75vh;
}

.gallery-thumbs {
  width: 100%;
  height: 17vh;
  padding-top: 10px;
}
.text{
  width: 40%;
padding: 30px;  
background: #00000099;  
margin: 20px;  
border-left: 6px solid #ffc107;
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.25;
  cursor: pointer;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .gallery-thumbs {
    width: 100%;
    height: 10vh;
  }
  .swiper-container-wrapper {
    height: 84vh;
  }
  .text{
    width: auto;
  }
  .swiper-slide {
    justify-content: end;
    align-items: center;
}
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.footer {
  background-color: #c79b00;
  color: #fff;
  padding: 10px;
}
