/* MOBILE AND TABLET SLIDER */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto 12px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
 .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 91%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: gray;
}

/* Caption text */
.text {
  color: #f2f2f2;
  text-shadow: 2px 2px 4px #000000;
  font-size: 48px;
  font-family: "Almendra SC", "serif";
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

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

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media (min-width: 759px) and (max-width: 1024px) {
  .prev {
    right: 95%;
  }
  .text {
    font-size: 64px;
  }
  .slideshow-container {
    margin: auto 28px;
  }
}
@media (min-width: 600px) and (max-width: 760px) {
  .prev {
    right: 93%;
  }
}



/* DESTOP SLIDER */
#animate-slider{
  width: 100%;
  height: 100vh;
  overflow: hidden; 
  background: #22222A;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: white;
}

.content-width {
  width: 86%;
  height: 100vh;
  margin: 0 auto;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slideshow-items {
  position: relative;
  width: 100%;
  height: 300px;
}

.item {
  position: absolute;
  width: 100%;
  height: auto;
}

.item-image-container {
  position: relative;
  width: 42%;
}

.item-image-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 101%;
  height: 101%;
  z-index: 1;
}

.item-image {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
  /* transition: property name | duration | timing-function | delay  */
  transition: opacity .3s ease-out .45s;
}

.item.active .item-image {
  opacity: 1;
}

.item.active .item-image-container::before {
  opacity: .8;
}

.item-description {
  position: absolute;
  top: 182px;
  right: 0;
  width: 55%;
  padding-right: 4%;
  line-height: 1.8;
}
/* Staggered Vertical Items */
.item-header {
  position: absolute;
  top: 150px;
  left: 1%;
  z-index: 10;
}

.item-header .vertical-part {
  margin: 0 -4px;
  -webkit-font-smoothing: auto;
  font-size: 5vw;
  font-family: "Almendra SC", sans-serif;
  text-shadow: 2px 2px 4px #000;
  color: #fff;
}

.vertical-part {
  overflow: hidden;
  display: inline-block;
}

.vertical-part b {
  display: inline-block;
  transform: translateY(100%);
}

.item-header .vertical-part b {
  transition: .5s;
}

.item-description .vertical-part b {
  transition: .21s;
}

.item.active .item-header .vertical-part b {
  transform: translateY(0);
}

.item.active .item-description .vertical-part b {
  transform: translateY(0);
}
/* Controls */
.controls {
  position: relative;
  text-align: right;
  z-index: 10;
}

.controls ul {
  list-style: none;
  margin-right: 32px;
}

.controls ul li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: whitesmoke;;
  cursor: pointer;
}

.controls ul li.active {
  background:#f19722;;
}
@media (min-width: 1024px){
   .item-header, .item-description {
     top: 80px;
  }
}



/* Fixed 'Go to top button' */
#myBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  border-radius: 20px;
  border-bottom: 2px solid rgb(255, 132, 0);
  outline: none;
  background-color: rgba(255, 187, 0, 0.705);
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
}
#myBtn:hover {
  background-color: #555;
  border-bottom: #555;
}


/* Google form */
.box {
  position: relative;
  width: 100%;
  height: 1000px;
  overflow: hidden;
  padding-top: 100%;
}
.iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

