.h3--header {
  color: var(--mr-color--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 3px 2px 3px var(--mr-text--shadow);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .h3--header {
    font-size: 1.5rem;
  }
}

.h4--header {
  color: black;
  font-size: 14px;
  padding-bottom: 3.5rem;
  letter-spacing: 6px;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 992px) {
  .h4--header {
    padding-bottom: 7rem;
  }
}

.h4--header {
  padding-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .hero-title--box {
    position: absolute;
    bottom: 30px;
    left: 280px;
  }
}

@media (min-width: 1400px) {
  .hero-title--box {
    position: absolute;
    bottom: 160px;
    left: 280px;
    top: 50%;
  }
}

.hero-title {
  color: var(--mr-color--white);
  font-size: 15vw;
  font-weight: 300;
  line-height: 1.1;
  text-align: left;
  text-shadow: 3px 2px 3px var(--mr-text--shadow);
  font-family: 'Macondo';
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 13vw;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 7rem;
  }
}

@media (min-width: 1400px) {
  .hero-title {
    font-size: 10rem;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-12px, 0, 0);
    transform: translate3d(-12px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.animate {
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

.delay-800 {
  animation-delay: 0.8s;
}

.delay-1500 {
  animation-delay: 1.5s;
}

