.hero {
  position: relative;
  height: 100vh;
  color: #f07614;
  background-color: #001e47;
  overflow: hidden;
}

.hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 50px;
  width: 100%;
  background-color: #001e47;
}

.hero__background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  padding-left: 30vw;
  width: 100vw;
  height: 100%;
}

.hero .centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  text-align:center;
}

.hero p {
  font-size: 3.6rem;
  line-height: 3.7rem;
  font-weight: 400;
  text-align:center;
}

@media(max-width:860px) {
  .hero {
    height: 50vh;
    /* margin-top: 70px; */
  }

  .hero:after {
    display: none;
  }

  .hero .centered {
    margin-top: -30px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .hero p {
    font-size: 3rem;
    line-height: 2.9rem;
    width:100%;
  }
}


/* SLIDER */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media(max-width:860px) {
  .hero__background {
    padding-left: 40px;
  }

  .swiper-slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
