header {
  overflow: hidden;
}

.hero-text h2 {
  margin-bottom: 50px;
}

.hero-text .hero {
  position: relative;
}

.hero-text .hero .hero-slide a:hover span {
  color: #033a71;
}

.hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media screen and (orientation:portrait) {
    .hero .hero-slide img {
        width: auto;
        height: 100vh;
    }
}
/* Landscape */
@media screen and (orientation:landscape) {
    .hero .hero-slide img {
        width: 100vw;
        height: auto
    }
}
.hero .hero-slide .header-content {
  top: 30%;
  margin-left: auto;
  width: 100%;
  padding: 2rem;
}
@media (max-height: 380px) {
    .hero .hero-slide .header-content {
        top: 20%;
    }
}
.slide-content {
  padding: 10px 20px 10px 0;
}

.slide-content .h1, .slide-content h1 {
  font-size: 5.25rem;
  text-align: center;
  color: #ffffff;
  filter: drop-shadow(4px 4px #333);
}

.btn-primary {
  background-color: #5302FE;
  border: #111;
  border-radius: 0;
}

@media (min-width: 768px) {
  .slide-content .h1, .slide-content h1 {
    font-size: 3.25rem;
  }
  @media (max-height: 480px) {
	  .slide-content .h1, .slide-content h1 {
		font-size: 3.0rem;
	  }
  }
}
@media (max-width: 768px) {
	.slide-content .h1, .slide-content h1 {
	font-size: 2.5rem;
	}
}
@media (min-width: 992px) {
  .slide-content .h1, .slide-content h1 {
    font-size: 5.25rem;
  }
}
/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

.slick-active .slide-content {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
  width: 100%;
  padding: 10px 20px 30px 0;
}

/* Text Animation End **/

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-active button {
  background: #d60e96;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  border: 0;
  outline: none;
}

.slick-dots li button::before {
  font-size: 18px;
  color: #fff;
  opacity: 1;
}


/* Media Queries */

@media (max-width: 768px) {
  .hero-text .hero .hero-slide a {
    padding-top: 0.8rem;
  }

  .hero-text .hero .hero-slide a span {
    font-size: 20px;
    margin-top: 0.5rem;
  }

  .hero .hero-slide .header-content {
    /*left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);*/
    margin: 0 auto;
  }
}