html{
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background-blend-mode: normal, lighten, soft-light;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.mySwiper {
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.SwiperText {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 60px;
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.SwiperText .title {
  font-size: 41px;
  font-weight: 300;
}

.SwiperText .subtitle {
  font-size: 21px;
}

.SwiperText .text {
  font-size: 14px;
  max-width: 400px;
  line-height: 1.3;
}

.slideanim {visibility:hidden;}
  .slide {
      animation-name: slide;
      -webkit-animation-name: slide;	
      animation-duration: 1s;	
      -webkit-animation-duration: 1s;
      visibility: visible;			
  }
  @keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }	
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
  }

  .sticky{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }

  .wrapper {
    position: absolute;
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
    border-radius: 5px;
    background-image: linear-gradient(to top, #fff 0%, #FFE15D 80%, #FF5858 100%);
    overflow: hidden;
    z-index: -1;
  }
  
  .wave {
    width: 550px;
    height: 560px;
    position: absolute;
    top: -25%;
    left: 30%;
    margin-left: -500px;
    margin-top: -500px;
    border-radius: 35%;
    background: rgba(255, 255, 255, .75);
    animation: wave 30s infinite linear;
  }

  .wave1 {
    width: 550px;
    height: 560px;
    position: absolute;
    top: -25%;
    left: 60%;
    margin-left: -500px;
    margin-top: -500px;
    border-radius: 35%;
    background: rgba(255, 255, 255, .75);
    animation: wave 30s infinite linear;
  }

  .wave2 {
    width: 550px;
    height: 560px;
    position: absolute;
    top: -25%;
    left: 90%;
    margin-left: -500px;
    margin-top: -500px;
    border-radius: 35%;
    background: rgba(255, 255, 255, .75);
    animation: wave 30s infinite linear;
  }
  
  @keyframes wave2 {
    from { transform: rotate(0deg);}
    from { transform: rotate(360deg);}
  }
  
  @keyframes wave {
    from { transform: rotate(0deg);}
    from { transform: rotate(360deg);}
  }

  @keyframes wave1 {
    from { transform: rotate(0deg);}
    from { transform: rotate(360deg);}
  }

