/* Mixins --------------------------------------------------------------------------------------------------------*/
/* Banner Secondary --------------------------------------------------------------------------------------------------------*/
.banner-secondary {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
}
.banner-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #0069B4;
  background: linear-gradient(to right, #0069B4 0%, #0AC3FF 100%);
}

.theme-dark .banner-secondary:before {
  background: #000000;
}

.banner-secondary-body {
  margin: 0 -20px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.banner-secondary-body .slick-dots {
  display: flex;
  margin-top: 20px;
  justify-content: flex-start;
  padding: 0;
  position: static;
  transform: none;
}
.banner-secondary-body .slick-dots li {
  display: block;
}
.banner-secondary-body .slick-dots li button {
  display: block;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
}
.banner-secondary-body .slick-dots li.slick-active button {
  background: #ffffff;
}
.banner-secondary-body .slick-dots li + li {
  margin-left: 20px;
}

.banner-secondary-body-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.75rem;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.banner-secondary-body-subtitle {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  padding-bottom: 20px;
}

.banner-secondary-body-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25rem;
  padding-bottom: 30px;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  .banner-secondary-body .slick-dots {
    margin-top: 40px;
  }

  .banner-secondary-body-title {
    font-size: 3.75rem;
    line-height: 4.0625rem;
    padding-bottom: 40px;
  }

  .banner-secondary-body-subtitle {
    font-size: 2.5rem;
    line-height: 2.875rem;
    padding-bottom: 20px;
  }

  .banner-secondary-body-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .banner-secondary {
    background-image: none !important;
  }
}

/*# sourceMappingURL=banner-secondary.css.map */