/* CSS Wave */

.ocean { 
  height: 5%;
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
  /* background: #015871; */
}

.wave {
  background: url(../img/wave_g.svg) repeat-x; 
  position: absolute;
  top: -105px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  background: url(../img/wave_n.svg) repeat-x; 
  position: absolute;
  top: -95px;
  animation: wave 10s cubic-bezier(0.36, 0.45, 0.63, 0.53) -1.5s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

.wave:nth-of-type(3) {
  background: url(../img/wave_wx.svg) repeat-x; 
  position: absolute;
  top: -85px;
  animation: wave 13s cubic-bezier(0.36, 0.45, 0.63, 0.53) -1.5s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}


@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%, 100% {
    transform: translate3d(0,-25px,0);
  }
  50% {
    transform: translate3d(0,5px,0);
  }
}


.hero-radius{
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}


/* Glass */
.glass{
background: rgba(145, 145, 145, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(145, 145, 145, 0.3);
}