/* Text Elements */

span.text-element.text-slider {
  position: static;
  top: auto;
  right: auto;
  bottom: 100px;
  left: 100px;
  display: block;
  padding: 0 0 16px;
  color: #f2f2f2;
  text-align: left;
  text-transform: capitalize;
  text-shadow: rgba(0, 0, 0, .5) 2px 2px 20px;
  letter-spacing: -1px;
  font-weight: 600;
  font-size: 48px;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

span.text-element.subtext-slider {
  color: #fff;
  text-shadow: rgba(0, 0, 0, .5) 2px 2px 10px;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
}

/* Interaction Elements */

a.link-button.button-link-1 {
  margin-top: 32px;
  padding: 16px 32px;
  border-radius: 8px;
  background-color: #fff;
  color: #ff6835;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

a.link-button.button-link-1:hover {
  background-color: #ff6835;
  color: #fff;
}

/* Layout Elements */

.container.video-image-slider {
  position: relative;
  display: grid;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
  min-height: auto;
  max-width: none;
  max-height: none;
  width: 100%;
}

.container.mySlides {
  position: relative;
  display: grid;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  min-height: 90vh;
  max-height: none;

  grid-template-columns: auto;
  grid-template-rows: auto;
}

.container.content-text-slider {
  position: absolute;
  right: auto;
  bottom: 48px;
  left: 48px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-align: start;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  background-color: transparent;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.container.numbertext {
  display: block;
  min-height: 90vh;
  max-height: none;
  background-image: none;
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: 0 0;
  background-repeat: no-repeat;

  background-blend-mode: normal;
}

.container.bg-content-size-container {
  min-height: 90vh;
  height: 100%;
  background-image: none;
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: 0 0;
  background-repeat: no-repeat;

  background-blend-mode: normal;
}

div.responsive-picture.picture-slide {
  min-height: 90vh;
  max-height: none;
  height: 90vh;
}

div.responsive-picture.picture-slide > picture {
  height: 90vh;
}

div.responsive-picture.picture-slide > picture > img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

a.glyph.prev {
  position: absolute;
  top: 45%;
  left: auto;
  margin-top: 0;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 24px;
  line-height: 20px;
  cursor: pointer;
}

a.glyph.next {
  position: absolute;
  top: 45%;
  right: 0;
  margin-top: 0;
  padding: 16px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 24px;
  line-height: 20px;
  cursor: pointer;
}

a.glyph.prev:hover {
  border-radius: 0 8px 8px 0;
  background-color: #ff6835;
}

a.glyph.next:hover {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #ff6835;
}

@media screen and (max-width: 33rem) {
  /* Text Elements */

  span.text-element.text-slider {
    font-size: 32px;
  }

  span.text-element.subtext-slider {
    font-size: 16px;
  }
}