.banner {
  position: relative;
  overflow: hidden;
}
.banner .inner-content {
  opacity: 0;
}
.basic-hero {
  width: 100vw;
  display: table;
  table-layout: fixed;
  overflow: hidden;
}
.basic-hero .cta{
  display: inline-block;
}
@media (max-width: 450px) {
  .basic-hero .cta{
  display: block;
}
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #000;
  opacity: .5;
  z-index: 3;
  transition: opacity .5s;
  
}
.hero-bg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.image-container {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: 50%;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out,-webkit-transform 1s ease-in-out;
}
.banner .content {
  width: 100%;
  position: relative;
  z-index: 4;
  display: table-cell;
  vertical-align: middle;
}
.banner .hero-title {
  padding-bottom: 24px;
}
.banner .hero-title h2 {
  color: #fff;
  padding: 0;
  font-size: 6rem;
}
.banner .subtitle {
  padding-bottom: 32px;
}
.copy.introText h5 {
  color: #fff;
  padding: 0;
}
.copy.introText h5 span {
  font-family: Neue Helvetica Bold,Arial,sans-serif;
}
.cta.light.no-margin {
  margin-top: 0 !important;
}
.banner .cta .label {
  font-family: Neue Helvetica Light,Arial,sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #FFF;
  display: inline-block;
  border: 1px solid #fff;
}
.banner .cta .label:hover {
  background-color: #fff;
  color: #212a34;   
  border-color: #fff;
  text-decoration: none;
}
.down-arrow {
  position: absolute;
  width: 100%;
  bottom: 40px;
  left: 0;
  height: 25px;
  z-index: 5;
  background-size: contain;
  cursor: pointer;
  -webkit-animation: flickerAnimation 3s infinite;
  -moz-animation: flickerAnimation 3s infinite;
  -o-animation: flickerAnimation 3s infinite;
  animation: flickerAnimation 3s infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.down-arrow a {
  display: block;
}

.banner .page-center {
  padding: 0 24px;
}

.badges{
  display:flex;
  grid-gap: 25px;
  margin-top:25px;
}

@media (min-width:767px){
  .badges{
    justify-content:flex-end;
  }
}

@media (min-width: 767px) {
  .banner .page-center {
    padding: 0 104px;
  }

}


@media (min-width: 940px) {
  .banner .page-center {
    padding: 0 40px;
  }

}

@media (min-width: 1240px) {
  .banner .page-center {
    padding: 0;
  }

}
@media(max-width: 1239px) {
  .home_banner .page-center {
    max-width: 100%;
  }
}

@media(max-width: 767px) {
  .banner .page-center {
    padding-bottom: 16px;
  }
  .copy.introText {
    padding-bottom: 16px;
  }
  
}

@media (max-height: 560px) {
  .down-arrow {
    display: none;
  }

}

@media (max-width: 414px) {
  .banner .hero-title {
    padding-bottom: 14px;
  }
  .banner .hero-title h2 {
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.17;
    letter-spacing: -1.6px;
  }
  .banner .subtitle {
    padding-bottom: 22px;
  }
  .banner .cta .label {
    padding: 11.5px 20px;
  }

}

@media (max-width: 375px) {
  .banner .hero-title h2 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.11;
    letter-spacing: -1.2px;
  }


}

.fadeIn {
  opacity: 0;
  animation: fadeIn 1s;
  animation-fill-mode: forwards;
}

.hero-title {
  animation-delay: .7s;
}

.subtitle {
  animation-delay: .9s;
}

.copy {
  animation-delay: 1.1s;
}

.cta:nth-child(1) {
  animation-delay: 1.3s;
}

.cta:nth-child(2) {
  animation-delay: 1.4s;
}

@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}