.banner-full-width {
  display: flex;
  flex-direction: row;
  position: relative;
  background: #000000;
}

.banner-full-width .banner-back-drop {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
}

.banner-back-drop img {
  width: 100%;
  opacity: .5;
}

.banner-full-width #slide {
  position: absolute;
  right: -100%;
  width: 100%;
  /* height: 370px; */
  /* background: rgba(0, 0, 0, .75); */
  -webkit-animation: slide 1s forwards;
  -webkit-animation-delay: 0.5s;
  animation: slide 1s forwards;
  animation-delay: 0.5s;
  top: 33%;
}

.banner-full-width #slide h1 {
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: #f3f3f3;
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  margin-block-start: .4375em;
  margin-block-end: .4375em;
}

@-webkit-keyframes slide {
  100% {
    right: 0;
  }
}

@keyframes slide {
  100% {
    right: 0;
  }
}


/* ******************************************* */
/* ************** MIN WIDTH 768 ************** */
/* ******************************************* */
@media screen and (min-width: 768px) {
  .banner-full-width #slide {
    top: 35%;
  }

  .banner-full-width #slide h1 {
    letter-spacing: 3.5px;
    font-size: 3em;
    font-weight: 700;
  }

}
