html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
}

a[class] {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* font-family: 'Raleway', sans-serif; */

body{
  min-height: 100vh;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #242121;
}

.title{
  font-family: 'Raleway';
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: #01353E;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

.title sub{
  font-size: 72px;
  line-height: 85px;
  color: #00B2A0;
  margin-top: 5px;
}

.about__title,
.servise__title,
.coach__title,
.galery__title,
.title__blog,
.team__title,
.services__title,
.contact__title,
.servise__info,
.coach__text,
.blockquote{
  transition: 2s;
  opacity: 0;
  transform: translateX(-150px);
}

.anime.about__title.active,
.anime.servise__title.active,
.anime.coach__title.active,
.anime.galery__title.active,
.anime.title__blog.active,
.anime.team__title.active,
.anime.services__title.active,
.anime.servise__info.active,
.anime.coach__text.active,
.anime.blockquote.active,
.anime.contact__title.active{
  opacity: 1;
  transform: translateX(0);
}

.about__content,
.servise__item{
  transition: 2s;
  opacity: 0;
  transform: translateY(150px);
}

.anime.about__content.active,
.anime.servise__item.active{
  opacity: 1;
  transform: translateY(0);
}

.servise__info-text{
  transition: 2s;
  opacity: 0;
  transform: translateY(150px);
}

.anime.servise__info-text.active{
  opacity: 1;
  transform: translateY(0);
}

.header{
  overflow: hidden;
  min-height: 100vh;
  background-image: url(../images/bg-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-attachment: fixed;
}

.container{
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.header__top{
  display: flex;
  padding-top: 35px;
}

.menu{
  margin-left: 185px;
}

.menu-burger{
  display: none;
}

.menu__list{
  align-items: center;
  display: flex;
  height: 63px;
}

.menu__item{
  padding: 0 1px 4px;
  border-bottom: 1px solid transparent;
}

.menu__list li + li{
  margin-left: 45px;
}

.menu__item-link{
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  transition: .3s;
}

.menu__item-link:hover{
  text-shadow: 
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #fff,
    0 0 82px #fff;
}

.header__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 130px);
  position: relative;
}

.header__title-1,
.header__title-2{
  position: absolute;
  margin-top: 100px;
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 200px;
  line-height: 235px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
} 

.header__title-1{
  color: transparent;
  -webkit-text-stroke: 5px #01353E;
}
.header__title-2{
  color: #01353E;
  animation: wave 8s ease-in-out infinite;
}

@keyframes wave{
  0%, 100%{
    clip-path: polygon(1% 47%, 5% 40%, 10% 32%, 15% 25%, 21% 25%, 26% 32%, 29% 39%, 32% 47%, 35% 55%, 44% 58%, 51% 54%, 57% 47%, 59% 39%, 63% 30%, 67% 23%, 75% 22%, 82% 28%, 86% 36%, 91% 42%, 96% 49%, 100% 50%, 100% 100%, 1% 100%);
  }
  50%{
    clip-path: polygon(1% 47%, 6% 55%, 12% 60%, 17% 68%, 25% 69%, 27% 61%, 29% 53%, 32% 44%, 35% 35%, 39% 27%, 46% 23%, 51% 30%, 55% 40%, 60% 50%, 66% 58%, 72% 65%, 80% 66%, 86% 62%, 91% 56%, 96% 49%, 100% 42%, 100% 100%, 1% 100%);
  }
}

.header__subtitle{
  margin-top: 330px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  margin-bottom: auto;
}

.header__link{
  margin-bottom: 38px;
  overflow: hidden;
  animation: header__link 8s infinite;
}

@keyframes header__link {
  0%, 100% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 30px);
  }
}

.about{
  padding: 190px 0 200px;
}

.about__title{
  margin-bottom: 100px;
}

.about__content{
  display: grid;
  grid-template-columns: 480px 480px;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 120px;
}

.servise{
  padding: 200px 0 170px;
  background-color: #F8F8F8;
}

.servise__title{
  margin-bottom: 100px;
}

.servise__inner{
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.servise__item{
  max-width: 350px;
}

.servise__items{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.servise__items-title{
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  padding-left: 10px;
  max-width: 150px;
}

.servise__info{
  display: flex;
}

.servise__inner-wawe{
  width: 50%;
  flex: none;
}

.servise__info-wawe{
  margin-bottom: 20px;
}

.servise__info-item{
  max-width: 310px;
  position: relative;
  margin-bottom: 2px;
}

.servise__info-item span{
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 18px;
  z-index: 1;
}

.servise__info-item span::before{
  content: "";
  position: absolute;
  width: 100%;
  border-radius: -50%;
  left: -10px;
  top: 0;
  height: 15px;
  background-color: #F8F8F8;
  z-index: -1;
}

.servise__info-text p{
  margin-bottom: 30px;
}

.coach{
  padding: 200px 0 350px;
  background-image: url(../images/serf.jpg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center right;
}

.coach__inner{
  margin-right: auto;
  width: 50%;
}

.coach__title{
  margin-bottom: 100px;
  justify-content: flex-start;
}

.coach__text{
  margin-bottom: 30px;
  max-width: 507px;
}

.galery{
  padding: 50px 0 200px;
}

.galery__title{
  margin-bottom: 210px;
}

.galery__btn{
  margin-bottom: 50px;
}

.galery__btn-link{
  padding: 0;
  border: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  margin-right: 20px;
  cursor: pointer;
  transition: .5s;
}

.galery__btn-link:hover{
  color: #00B2A0;
}

.galery__foto{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.galery__foto-item{
  margin-bottom: 40px;
  position: relative;
}

.galery__foto-link{
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.7);
  opacity: 0;
  transition: .5s;
}

.galery__foto-link:hover{
  opacity: 1;
}

.galery__link{
  display: block;
  max-width: 350px;
  text-align: center;
  padding: 24px 90px;
  border: 1px solid #C4C4C4;
  font-weight: 400;
  text-transform: uppercase;
  color: #242121;
  margin: 0 auto 225px;
  transition: .8s;
}

.galery__link:hover{
  max-width: 370px;
  border: 2px solid #00B2A0;
  color: #fff;
  background-color: #00B2A0;
}

.blockquote{
  padding: 80px 150px 60px;
  background-color: #F8F8F8;
  text-align: center;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  font-style: italic;
}

.blockquote span{
  display: block;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  text-align: right;
}

.video{
  margin: 200px 0;
  min-height: 600px;
  background-image: url(../images/bg-video.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 2s;
  overflow: hidden;
}

.video:hover{
  transform: scale(1.1);
}

.video__play{
  transition: 1s;
}

.video__play:hover{
  transform: scale(1.3);
}

.statistics__inner{
  display: flex;
  justify-content: center;
}

.statistics__item{
  padding: 0 50px;
  text-align: center;
}

.statistics__item-title{
  font-weight: 700;
  font-size: 64px;
  line-height: 75px;
  color: #01353E;
  margin-bottom: 5px;
}

.blog{
  padding-bottom: 200px;
}

.title__blog{
  margin-bottom: 230px;
}

.blog__bg{
  min-height: 800px;
  background-image: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)), url(../images/bg-blog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.blog__title{
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
  width: 600px;
}

.blog__text{
  color: #fff;
}

.slick-list{
  width: 600px;
  margin-left: auto;
  min-height: 800px;
  padding-top: 335px;
}

ul.slick-dots{
  display: flex;
  justify-content: center;
  padding-bottom: 77px;
}

ul.slick-dots button{
  padding: 0;
  border: none;
  font-size: 0;
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
}

ul.slick-dots li + li{
  margin-left: 15px;
}

li.slick-active button{
  background-color: #00B2A0;
}

.slick-prev,
.slick-next {
  border: none;
  font-size: 0;
  background-color: transparent;
  position: absolute;
  top: 48%;
  transform: translateY(-80px);
  cursor: pointer;
}

.slick-prev {
  right: -95px;
  background-image: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
}

.slick-next {
  left: 470px;
  background-image: url(../images/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
}

.team{
  padding-bottom: 200px;
}

.team__title{
  margin-bottom: 210px;
}

.team__inner{
  display: flex;
  justify-content: space-between;
}

.team__item{
  width: 330px;
  text-align: center;
}

.team__foto{
  height: 450px;
  margin-bottom: 25px;
}

.team__name{
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 5px;
}

.team__profession{
  font-weight: 400;
}

.services{
  padding: 200px 0;
}

.services__title{
  margin-bottom: 180px;
}

.services__inner{
  display: flex;
  justify-content: space-between;
}

.services__item{
  width: 360px;
  min-height: 580px;
  padding: 45px 30px;
  position: relative;
}

.services__list li{
  margin-bottom: 20px;
  font-weight: 400;
  text-align: left;
}

li.services__list-title{
  text-align: center;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #01353E;
  padding-bottom: 58px;
}

li.services__list-price{
  position: absolute;
  bottom: 0;
  left: 40%;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #01353E;
}

.services__list-price sup{
  font-size: 18px;
  line-height: 22px;
  position: absolute;
  right: -10px;
  top: 10px;
}

.services__map img{
  margin: 0 auto;
}

.contact{
  padding-bottom: 200px;
}

.contact__title{
  margin-bottom: 210px;
}

.contact__inner{
  margin-bottom: 200px;
  display: flex;
}

form{
  width: 50%;
}

.form__input{
  border: none;
  border-bottom: 2px solid #DADADA;
  width: calc(100% - 30px);
  padding: 34px 0 16px;
}

.form__textarea{
  border: none;
  border-bottom: 2px solid #DADADA;
  padding: 55px 0 100px;
  width: calc(100% - 30px);
  resize: none;
  margin-bottom: 73px;
}

.form__input::placeholder,
.form__textarea::placeholder{
  width: 260px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #00B2A0;
}

.form__button{
  font-weight: 400;
  font-size: 24px;
  padding: 24px 110px;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  transition: .5s;
}

.form__button:hover {
  border: 1px solid #00B2A0;
  color: #fff;
  background-color: #00B2A0;
}

.contact__item{
  padding: 50px;
}

.contact__text{
  width: 327px;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 65px;
}

.contact__social{
  display: flex;
  justify-content: center;
}

.contact__social li + li{
  margin-left: 30px;
}

.contact__social-link{
  font-weight: 400;
  font-size: 24px;
  color: #242121;
  transition: .5s;
}

.contact__social-link:hover{
  color: #00B2A0;
}

.footer{
  min-height: 200px;
  background-color: #00B2A0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1919px){
  .coach{
    padding: 150px 0 130px;
  }
}

@media (max-width: 1372px){
  .slick-prev,
  .slick-next {
    display: none;
  }
}

@media (max-width: 1200px){

  .title{
    font-size: 34px;
    line-height: 40px;
  }
  .title sub{
    font-size: 51px;
    line-height: 77px;
  }
  .menu{
    margin-left: auto;
    margin-top: 17px;
  }
  .menu__list{
    flex-direction: column;
    position: absolute;
    left: 100px;
    right: 100px;
    top: 0;
    text-align: center;
    height: auto;
    transform: translateY(-700px);
    transition: all 0.7s;
    position: fixed;
    z-index: 20;
    background-color: #fff;
  }
  
  .menu__list.menu__list--active{
    transform: translateY(0px);
  }

    .menu-burger {
      display: block;
      width: 40px;
      height: 24px;
      position: fixed;
      transform: rotate(0deg);
      transition: .5s ease-in-out;
      cursor: pointer;
      right: 15px;
      z-index: 15;
    }
  
    .menu-burger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #00B2A0;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: .25s ease-in-out;
    }
  
    .menu-burger span:nth-child(1) {
      top: -2px;
    }
  
    .menu-burger span:nth-child(2),
    .menu-burger span:nth-child(3) {
      top: 6px;
    }
  
    .menu-burger span:nth-child(4) {
      top: 14px;
    }
  
    .menu-burger span:nth-child(5) {
      top: 22px;
    }
  
    .menu-burger.open span:nth-child(1) {
      top: 6px;
      width: 0%;
      left: 50%;
    }
  
    .menu-burger.open span:nth-child(2) {
      transform: translateX(5px) translateY(5px) rotate(45deg);
      width: 75%;
    }
  
    .menu-burger.open span:nth-child(3) {
      transform: translateX(5px) translateY(5px) rotate(-45deg);
      width: 75%;
    }
  
    .menu-burger.open span:nth-child(4) {
      top: 6px;
      width: 0%;
      left: 50%;
    }
  
    .menu-burger.open span:nth-child(5) {
      top: 6px;
      width: 0%;
      left: 50%;
    }
  
  .menu__item-link{
    color: #0D302C;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    transition: .5s;
  }
  .menu__item-link:hover{
    color: #00B2A0;
  }

  .menu__list li+li {
    margin-left: 0;
  }

  .menu__item {
    padding: 15px 0;
    border: none;
  }

  .menu__item:hover {
    border: none;
  }

  .menu__btn{
    position: fixed;
    right: 20px;
    display: block;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 20;
  }
  .header__title{
    font-size: 120px;
    line-height: 160px;
    padding-top: 90px;
  }
  .header__subtitle{
    font-size: 22px;
    line-height: 24px;
  }
  .about{
    padding: 100px 0 80px;
  }
  .about__title,
  .servise__title,
  .coach__title,
  .galery__title,
  .title__blog,
  .team__title,
  .services__title,
  .contact__title
  {
    margin-bottom: 50px;
  }
  .about__content{
    display: block;
  }
  .about__content p{
    margin-bottom: 20px;
  }
  .servise{
    padding: 0 0 50px;
  }
  .servise__inner{
    display: block;
  }
  .servise__item{
    max-width: 100%;
    margin-bottom: 20px;
  }
  .servise__info{
    display: block;
    margin-bottom: 50px;
  }
  .servise__inner-wawe{
    margin: 0 auto;
    margin-bottom: 30px;
    width: 350px;
  }
  .servise__info-text p{
    margin-bottom: 15px;
  }
  .coach{
    padding: 0 0 80px;
    background: none;
  }
  .coach__inner{
    width: 100%;
  }
  .coach__title {
    justify-content: center;
  }
  .coach__text {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .galery{
    padding: 0 0 100px;
  }
  .galery__foto{
    justify-content: center;
  }
  .galery__foto-item{
    margin: 20px 20px;
  }
  .galery__btn{
    text-align: center;
  }
  .galery__link{
    margin-bottom: 100px;
  }
  .blockquote{
    padding: 0;
  }
  .video{
    margin: 100px 0;
  }
  .blog{
    padding-bottom: 100px;
  }
  .team{
    padding-bottom: 100px;
  }
  .team__foto{
    height: 320px;
  }
  .services{
    padding: 0;
  }
  .services__item{
    width: 270px;
  }
  li.services__list-title {
    font-size: 22px;
    line-height: 26px;
    padding-bottom: 30px;
  }
  li.services__list-price{
    font-size: 22px;
    line-height: 26px;
  }
  li.services__list-price sup{
    font-size: 16px;
    line-height: 20px;
    top: 4px;
  }
  .contact{
    padding-bottom: 100px;
  }
  .contact__inner{
    margin-bottom: 100px;
  }
}

@media (max-width: 768px){
  .title {
    font-size: 20px;
    line-height: 30px;
  }

  .title sub {
    font-size: 30px;
    line-height: 40px;
  }
  .header__title {
    font-size: 80px;
    line-height: 120px;
  }

  .header__subtitle {
    font-size: 20px;
    line-height: 22px;
  }
  .about,
  .coach,
  .servise,
  .galery,
  .blog,
  .team,
  .services{
    padding: 50px 0 50px;
  }
  .about__title,
  .title__blog,
  .team__title
   {
    margin-bottom: 50px;
  }
  .servise__inner{
    margin-bottom: 50px;
  }
  .servise__items-title{
    font-size: 18px;
    line-height: 22px;
  }
  .servise__info-item span{
    font-size: 18px;
  }
  .galery__btn-link{
    font-size: 18px;
  }
  .galery__foto{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .galery__link{
    margin: 0 auto 100px;
  }
  .blockquote{
    font-size: 26px;
    line-height: 28px;
    padding: 0;
  }
  .blockquote span{
    text-align: center;
  }
  .video{
    margin: 100px 0;
  }
  .statistics__inner{
    flex-wrap: wrap;
  }
  .statistics__item {
    padding: 25px 0px;
    text-align: center;
    width: 50%;
  }
  .statistics__item-title{
    font-size: 40px;
    line-height: 50px;
  }
  .blog{
    margin-bottom: 0;
  }
  .blog__title{
    font-size: 30px;
    line-height: 40px;
    width: 345px;
  }
  .blog__text{
    width: 345px;
  }
  .slick-list{
    height: 690px;
  }
  .team__inner{
    flex-direction: column;
    align-items: center;
  }
  .team__item{
    margin-bottom: 30px;
  }
  .team__foto{
    height: 450px;
    margin-bottom: 10px;
  }
  .services__inner {
    display: block;
  }
  .services__item{
    width: 100%;
  }
  .services__title{
    margin-bottom: 0;
  }
  .services__item {
    min-height: auto;
    padding: 25px 30px;
    padding: 25px 30px;
    position: relative;
  }
  li.services__list-price{
    position: relative;
    display: inline-block;
    left: 47%;
  }
  li.services__list-price sup{
    right: -10px;
  }
  .services__list li{
    text-align: center;
  }
  .contact__inner{
    flex-direction: column-reverse;
  }
  .form{
    width: 100%;
  }
  .form__input,
  .form__textarea {
    width: 100%;
  }
  .form__button{
    display: block;
    margin: auto;
  }
}
@media (max-width: 440px){
  .title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .title sub {
    font-size: 24px;
    line-height: 32px;
  }
  .about,
  .coach,
  .servise,
  .galery,
  .blog{
    padding: 20px 0 20px;
  }
  .header__subtitle{
    text-align: center;
  }
  .about{
    padding: 40px 0;
  }
  .about__title {
    margin-bottom: 20px;
  }
  .about__content p {
    margin-bottom: 10px;
  }
  .servise__title{
    margin-bottom: 30px;
  }
  .servise__items-title {
    font-size: 14px;
    line-height: 20px;
  }
  .servise__info-item {
    max-width: 240px;
  }
  .servise__info-img{
    width: 95%;
  }
  .galery__btn-link{
    font-size: 14px;
  }
  .blockquote span{
    font-size: 12px;
    line-height: 16px;
  }
  .video{
    min-height: 280px;
    margin: 50px 0;
  }
  .blog__title {
    font-size: 20px;
    line-height: 26px;
    width: 305px;
  }
  .blog__text{
    width: 280px;
  }
  .form__button{
    padding: 24px 90px;
  }
  .contact__item{
    padding: 30px;
  }
  .contact__text{
    width: 270px;
    font-size: 18px;
    line-height: 22px;
  }
  .contact__social-link{
    font-size: 18px;
  }
  .footer{
    min-height: 100px;
  }
}


