*,*::before, *::after{
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
html, body{
  height: 100%;
}
body {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(
    315deg,
    rgba(101, 0, 94, 1) 3%,
    rgba(60, 132, 206, 1) 38%,
    rgba(48, 238, 226, 1) 68%,
    rgba(255, 25, 25, 1) 98%
  );
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}

/*
.wrapper{

}
*/
.container{
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 10px;
}

.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.header::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003b46;
  z-index: 2;
  
}
.header__body{
  position: relative;
  display: flex;
  justify-content: end;
  height: 80px;
  align-items: center;
}
.header__burger{
  display: none;
}

.header__list{
  display: flex;
  position: relative;
  z-index: 2;
}
.header__list li{
  list-style: none;
  margin: 0px 0px 0px 20px;
}
.header__link{
  color: #c4dfe6;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
}

@media (max-width:767px){

  body.lock{
    overflow: hidden;
  }
  .header__body{
    height: 50px;
  }
  .header__burger{
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 3;
  }
  .header__burger span{
    position: absolute;
    background-color: #66a5ad;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before,
  .header__burger:after{
    content: '';
    background-color: #66a5ad;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before{
    top: 0;
  }
  .header__burger:after{
    bottom: 0;
  }
  .header__burger.active::before{
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active::after{
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header__burger.active span{
    transform: scale(0);
  }

  .header__menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.3s ease 0s;
    background-color: #07575b;
    padding: 70px 10px 20px 10px;
  }
  .header__menu.active{
    top: 0;
  }
  .header__list{
    display: block;
  }
  .header__list li{
    margin: 0px 0px 20px 0px;
  }
  .header__link{
    font-size: 24px;
  }
}


.content{
  padding: 100px 0px 0px 0px;
}
.content__text{
  font-size: 18px;
  line-height: 25px;
}
.content__text p{
  margin-bottom: 20px;
}

@media (max-width:767px){
  .content{
    padding: 70px 0px 0px 0px;
  }
}