.swiper {
  width: 100%;
  height: 50vh;
  background: #000;
  position: relative;
  border-radius: 10px
}

.swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Omnes Termina'
}



.mySwiper .parallax-bg {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(64, 115, 82);
  background: linear-gradient(45deg, rgba(64, 115, 82, 1) 0%, rgba(64, 115, 82, 1) 20%, rgba(64, 115, 82, 1) 16%, rgba(165, 209, 218, 0) 100%);
  z-index: 1;
}



.swiper-slide .title {
  font-size: 41px;
  font-weight: 400;
}

@media all and (max-width: 768px) {
  .swiper-slide .title {
    font-size: 1.75em;
  }
}

.swiper-slide .subtitle {
  font-size: 26px;
}

@media all and (max-width: 768px) {
  .swiper-slide .subtitle {
    font-size: 1.2em;
  }
}

.swiper-slide .text {
  font-size: 18px;
  max-width: 550px;
  line-height: 1.35;
}

@media all and (max-width: 768px){
  .swiper-slide .text{
    font-size: 1em;
  }
}

.btn-slider-cta{
	background: #5A9971!important;
    color: white!important;
    border-radius: 5px 5px 5px 5px;
    padding: 8px 20px 10px 20px;
    font-family: "Omnes Termina", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all .4s;
    position: relative;
    z-index: 9999
}

.btn-slider-cta:hover{
  background: #64c587;
}