/* Styling the Container */
#slide-section {
  height: 100vh;
  background:rgb(199,156,44);
}
#slider-container {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden !important;
}

/*Styling the slides*/
.slider-slide {
  position: absolute;
  width: 100%;
  transition: 1500ms cubic-bezier(0.47, 0, 0.75, 0.72);
  top: 0;
  opacity: 0;
}
.hidden-slide {
  opacity: 0 !important;
  z-index: 0;
}
.current-slide {
  opacity: 1;
  left: 0;
  z-index: 999;
}

.slide-content-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.slide-content-holder {
    position: absolute;
    bottom: 0;
    width: 70%;
    max-width: 1200px;
    margin-bottom: 5%;
    opacity: 0;
    transition: opacity 1500ms cubic-bezier(0.47, 0, 0.75, 0.72);
}
.current-slide .slide-content-holder {
    opacity: 1;
    bottom: 0;
}

.slider-slide img {
    width: 100%;
}
.slide-content-holder h3 {
    color: white;
    text-shadow: 0px 0px 19px #000000a3;
    width: 60%;
    font-size: calc(2em + 3vw);
    line-height: 1.1;
}

.body-copy {
    color: white;
    text-shadow: 0px 0px 17px #0000009c;
    margin: 0;
    width: 48%;
    margin-bottom: 2em;
    font-size: calc(.25em + 1vw);
}
.link-out {
    color: white;
    border: 1px solid;
    padding: .5em 1em;
    text-transform: uppercase;
    font-weight: 900;
}

#thumbnail-holder {
    position: absolute;
    bottom: 0;
    width: 75px;
    list-style: none;
    display: flex;
    margin-left: calc(50% - 35.5px);
    justify-content: space-around;
    margin-bottom: 4%;
    z-index: 999;
}

#thumbnail-holder li {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  color: transparent;
  border: 1px solid;
  transition: 250ms cubic-bezier(0.47, 0, 0.75, 0.72);
  cursor: pointer;
}
#thumbnail-holder li:hover {
  background: rgba(255,255,255,1);
}
.not-current-thumbnail {
  background: rgba(255,255,255,.4);
}
.current-thumbnail{
  background: rgba(255,255,255,1);
}

@media (max-width:1275px) {
  #thumbnail-holder {
    margin-bottom:6%;
  }
  .slide-content-holder h3 {
        font-size: calc(1em + 3vw);
  }
}

@media (max-width:900px) {
  #thumbnail-holder {
    margin-bottom:10%;
  }
  .slide-content-holder h3 {
    width:75%
  }
  .body-copy {
    width: 60%;
  }
}
@media(max-width:750px) {
  #thumbnail-holder {
    margin-bottom: 4%;
    margin-left: calc(95% - 75px) !important;
}
}
@media(max-width:500px) {
  .slide-content-holder h3 {
    width: 100%;
  }
  .body-copy {
    display: none;
  }
  .link-out {
    font-size: .525em !important;
  }
  #slider-container > :before {
    background: #231f2087 !important;
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
}
