/**
 * NEW HOME CSS
 *
 * @format
 */

/* HOME HERO */
.home-hero {
  position: relative;
  text-align: center;
  margin-top: 89px;
}

.home-hero-height-sync {
  height: 350px;
}

.home-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.home-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d1830;
  opacity: 60%;
}

.home-hero-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 50%;
  object-position: 50%;
}

.tagline-container {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 100%;
}

.tagline-container h2 {
  font-size: 2.2222rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.tagline-container .button {
  font-size: 0.7222rem;
  font-weight: 800;
  letter-spacing: 3.25px;
  padding: 17px 22px;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .home-hero {
    margin-top: 125px;
  }

  .tagline-container h2 {
    font-size: 3.0556rem;
    letter-spacing: -1.375px;
  }
}

@media screen and (min-width: 1600px) {
  .home-hero {
    margin-top: 151px;
  }

  .home-hero-height-sync {
    height: 530px;
  }

  .tagline-container h2 {
    font-size: 4.4444rem;
    letter-spacing: -2px;
    margin-bottom: 40px;
  }

  .tagline-container .button {
    font-size: 1rem;
    letter-spacing: 5.4px;
    padding: 22px 50px;
  }
}

/* Badges Slider Section */
.badges-slider-section {
  padding: 40px 0 60px;
  background: #fff;
}
.badges-slider-section h2 {
  margin-bottom: 40px;
}
.badges-slider {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.badges-slider-section .slick-prev:before,
.badges-slider-section .slick-next:before {
  font-family: 'Font Awesome\5 Pro';
  color: #3d8fba;
}

.badges-slider-section .slick-autoplay-toggle-button {
  display: none;
}

.badge-slide {
  padding: 0 15px;
  text-align: center;
  outline: none;
}
.badge-slide img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  transition: all 300ms ease-out;
}
@media (min-width: 768px) {
  .badges-slider-section {
    padding: 80px 0 100px;
  }
  .badges-slider-section h2 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .badges-slider {
    padding: 0 40px;
  }
}
