:root {
  --grey-color-100: #f8f8f8;
  --grey-color-200: #dadada;
  --grey-color-300: #c4c4c4;
  --font-color: #242121;
  --primary-color: #01353e;
  --accent-color: #00b2a0;
}
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;
  margin: 0;
  padding: 0;
}

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-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-style: normal;
  width: 100%;
  color: var(--font-color);
}
section {
  padding: 80px 20px;
}
.container {
  max-width: 1190px;
  padding: 0 10px;
  margin: 0 auto;
}

.title {
  font-size: 48px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  padding-right: 11px;
  position: relative;
  margin: 50px 0 120px;
}

.title::after {
  content: "/";
  position: absolute;
  color: var(--accent-color);
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.6 px;
}

a {
  text-decoration: none;
}

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

.header__top-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.logo {
  min-width: 30px;
}

.menu {
  margin-left: 185px;
}

.menu__btn {
  display: none;
}

.menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__list-item + .menu__list-item {
  margin-left: 35px;
}

.menu__list-link {
  padding: 0 5px 5px;
  font-size: 24px;
  font-weight: 400;

  text-align: left;
  color: #fff;
  transition: 0.5s;
}

.menu__list-link:hover {
  color: var(--accent-color);
}

.header__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-height: 100vh;
}

.header__title {
  font-family: Raleway;
  font-size: 180px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 70px 0 20px;
}

.header__subtitle {
  font-size: 28px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: auto;
}

.header__icon {
  margin-bottom: 92px;
}

.about {
  background-color: #fff;
}

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

.about__text {
  margin-right: 120px;
}

.about__text p {
  max-width: 480px;
  height: 87px;
  margin-bottom: 30px;
}

.benefits {
  background-color: var(--grey-color-100);
}

.benefits__items {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}

.benefits__item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__item-title {
  font-size: 24px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.6px;
  /*margin: 0 0 15px 65px;*/
  padding-left: 10px;
}
.benefits__item-img {
  margin-right: 15px;
}

.benefits__item-text {
  margin-top: 15px;
  margin-bottom: 102px;
  max-width: 350px;
}

.benefits__item-text + .benefits__item-text {
  margin-right: 75px;
}

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

.benefits__extra-wave {
  position: relative;
}

.benefits__extra-wave::after {
  content: "%";
  position: absolute;
  top: 0;
  right: 10px;
  width: 43px;
  height: 23px;
}

.benefits__extra-text {
  max-width: 600px;
  margin-bottom: 30px;
  margin-left: 254px;
}

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

.surfer__title {
  margin-bottom: 100px;
  text-align: right;
}
.surfer__info {
  margin-left: 30px;
}

.surfer__text p {
  margin-bottom: 30px;
}
.surfer__img {
  border-radius: 5px;
  width: 60%;
}

.gallery {
  padding-bottom: 100px;
}

.gallery__btn {
  margin-top: 100px;
  background-color: transparent;
  padding: 0;
  border: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: var(--font-color);
  text-transform: uppercase;
  margin-right: 20px;
}

.mixitup-control-active {
  color: var(--accent-color);
}

.gallery__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 32px;
  margin-top: 40px;
}
.gallery__item:nth-child(1),
.gallery__item:nth-child(6) {
  grid-column: span 2;
}
.gallery__item {
  min-height: 280px;
  border-radius: 5px;
}

.gallery__add {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 200px;
  padding: 23px 15px;
  max-width: 350px;
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--grey-color-300);
  color: var(--font-color);
}
.quote-container {
  background-color: var(--grey-color-100);
  min-height: 200px;
}

.blockquote {
  max-width: 670px;
  text-align: center;
  padding: 80px 15px;
  margin: 0 auto 140px;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
}

.blockquote__author {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  margin-top: 30px;
}

.gallery__video {
  background-image: url(../images/video-bg.jpg);
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 200px;
}

.gallery__numbers {
  display: flex;
  justify-content: space-around;
}

.gallery__numbers-item {
  font-size: 64px;
  font-weight: 700;
  line-height: 75px;
  color: var(--primary-color);
  text-align: center;
}

.gallery__numbers-item span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #242121;
  display: block;
  margin-bottom: 100px;
}

.slider__background {
  background-image: url(../images/slider-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
.slider__inner {
  padding: 20px;
}
.slider__item-link {
  color: #fff;
}

.slider__item-title {
  margin-top: 314px;
  margin-left: 600px;
  max-width: 600px;
  font-size: 48px;
  font-weight: 400;
}

.slick-dots {
  text-align: center;
  display: flex;
  justify-content: center;
  list-style: none;
}

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

.slick-dots button {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 0;
  padding: 0;
  border: none;
  margin-top: 259px;
  margin-bottom: 77px;
}

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

.team__items {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.team__name {
  font-size: 18px;
  font-weight: 700;
  padding: 25px 0 5px;
}

.team-position {
  font-weight: 400;
}

.packages {
  background-color: var(--grey-color-100);
}

.packages__title {
  margin-bottom: 212px;
}

.packages__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.packages__item {
  background-color: #fff;
  text-align: center;
  padding: 45px 31px;
  width: 370px;
  height: 577px;
  transition: transform 0.3s ease-in-out;
}
/*.packages__item:hover {
  transform: scale(1.06);
}*/
.packages__item li {
  font-weight: 400;
  margin-bottom: 20px;
}
.packages__item-name {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0px;
  font-weight: bold;
  margin-bottom: 58px;
  color: var(--primary-color);
}
#standard__price {
  margin-top: 157px;
}

.packages__item-num {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--primary-color);
  margin-top: 61px;
}

.packages__item-num sup {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--primary-color);
  position: relative;
  top: 10px;
}

.contacts {
  background-color: #fff;
}
.contacts__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts__form {
  width: 569px;
  margin-right: 31px;
}

.contacts__form input,
.contacts__form textarea {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 2px solid var(--grey-color-200);
  padding: 16px 0;
  margin: 16px 0;
  outline: none;
  cursor: pointer;
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
  font-size: 18px;
  color: #00b2a0;
  font-weight: 400;
  max-width: 260px;
}

.contacts__form textarea {
  min-height: 156px;
  resize: none;
  margin-top: 37px;
}

.contacts__form button {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 24px 111px 23px;
  border: 1px solid var(--accent-color);
  background: #fff;
  cursor: pointer;
  margin-top: 73px;
}
.contacts__form button:hover {
  background-color: var(--accent-color);
}

.contacts__info {
  background-color: var(--grey-color-100);
  width: 600px;
  height: 460px;
  padding: 39px 230px 81px 52px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.contacts__info-item {
  padding-bottom: 65px;
}

.footer__top {
  padding: 150px;
  color: #fff;
  text-align: center;
  margin-top: 190px;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__social-list {
  padding: 0 10px;
}

.footer__social-link {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #242121;
}

.footer__social-link:hover {
  color: var(--accent-color);
}

.footer__bottom {
  background: var(--accent-color);
  padding: 100px;
}

.footer__logo-img {
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .menu__list-link {
    font-size: 20px;
  }
  .header__title {
    font-size: 160px;
    margin-bottom: 25px;
  }
  .header__subtitle {
    font-size: 26px;
  }
  ul.slick-dots {
    margin-left: 60px;
  }
  .contacts__map {
    margin: 100px;
  }
}

.contacts__map-img {
  max-width: 1200px;
}
@media (max-width: 1270px) {
  .title {
    font-size: 48px;
    font-weight: 500;
    padding-right: 11px;
    position: relative;
  }

  .title::after {
    content: "/";
    position: absolute;
    color: var(--accent-color);
    font-family: "Raleway", sans-serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
  }

  .about__inner {
    display: block;
  }
  .about__text {
    margin: 0;
  }

  .about__text p {
    max-width: 100%;
    padding: 0 30px;
  }
  .benefits__item-text {
    max-width: 290px;
    text-align: center;
  }
  .benefits__extra {
    flex-direction: column;
  }
  .benefits__extra-waves {
    max-width: 100%;
    margin: 0 auto;
  }
  .benefits__extra-info {
    margin-top: 30px;
  }
  .benefits__extra-text {
    max-width: 100%;
    text-align: center;
    margin: 30px;
  }

  .surfer__title {
    text-align: center;
  }

  .surfer__text p {
    max-width: 100%;
    text-align: center;
  }
  .gallery__content {
    grid-gap: 10px;
  }
  .gallery__item {
    min-height: 250px;
  }
  .team__items,
  .packages__items {
    column-gap: 20px;
  }
  .slider__background {
    background-position: center center;
  }
  .slider__item-link {
    margin: 160px 40px 0 500px;
    padding-left: 30px;
  }
  .slider__item-title {
    margin-top: 200px;
    margin-left: 560px;
    max-width: 560px;
    font-size: 38px;
  }
  .contacts__info {
    width: 580px;
    height: auto;
    padding-right: 180px;
  }

  @media (max-width: 1024px) {
    .title {
      font-size: 44px;
    }
    .logo {
      max-width: 30px;
    }

    .menu__list-link {
      font-size: 18px;
      font-weight: 300;
    }
    .menu__list-item + .menu__list-item {
      margin-left: 25px;
    }

    .header__title {
      font-size: 130px;
      margin-bottom: 30px;
    }
    .about__inner {
      display: block;
    }
    .about__text p {
      max-width: 100%;
    }
    .benefits__item-title {
      font-size: 20px;
    }
    .benefits__item-text {
      max-width: 250px;
    }
    .surfer__inner {
      flex-direction: column;
      align-items: center;
    }
    .surfer__img {
      width: 100%;
    }
    .surfer__info {
      margin-left: 0;
    }
    .gallery__content {
      grid-gap: 8;
    }
    .gallery__item {
      min-height: 240px;
    }
    .slider__item-title {
      margin-top: 100px;
      margin-left: 500px;
      max-width: 500px;
      font-size: 36px;
    }
  }
  @media (max-width: 967px) {
    .gallery__content {
      grid-template-columns: repeat(3, 1fr);
    }
    .slider__item-title {
      margin-top: 80px;
      margin-left: 450px;
      max-width: 500px;
      font-size: 30px;
    }
    .packages__items {
      display: block;
    }

    ul.packages__item {
      margin: 0 auto 30px;
    }
  }
  @media (max-width: 869px) {
    section {
      padding: 50px 15px;
    }
    .logo {
      max-width: 24px;
    }
    .menu__list-link {
      font-size: 16px;
      font-weight: 300;
    }
    .menu__list-item + .menu__list-item {
      margin-left: 22px;
    }
    .benefits__items {
      display: block;
    }
    .benefits__item-text {
      max-width: 100%;
      padding-top: 30px;
    }
    .header__title {
      margin-bottom: 45px;
    }
    .gallery__item:nth-child(1),
    .gallery__item:nth-child(6) {
      grid-column: auto;
    }
    .gallery__item {
      max-width: 290px;
      min-height: 280px;
    }
    .gallery__content {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 30px;
    }
    .slider__item-title {
      margin-left: 430px;

      font-size: 28px;
    }
  }

  @media (max-width: 768px) {
    .title {
      font-size: 40px;
      font-weight: 400;
    }
    .title::after {
      font-size: 46px;
      font-weight: 400;
    }
    .header__top-inner {
      justify-content: space-between;
      padding: 25px;
    }
    .menu__list {
      position: absolute;
      left: 0;
      right: 0;
      top: 90px;
      background-color: var(--primary-color);
      display: block;
      text-align: center;
      transform: translateY(-300%);
    }
    ul.menu__list {
      padding: 5px 0;
    }
    .menu__list.menu__list--active {
      transform: translateY(0);
    }

    .menu__list-item + .menu__list-item {
      margin-left: 0;
    }
    .menu__list-item {
      display: block;
      padding: 10px 0;
    }
    .menu__btn {
      display: block;
      background-color: transparent;
      border: none;
      padding: 0;
      min-width: 18px;
    }

    .menu__btn {
      display: block;
      background-color: transparent;
      border: none;
      padding: 0;
      margin-top: 10px;
    }
    .header__title {
      font-size: 118px;
      margin-bottom: 55px;
    }
    .header__subtitle {
      font-size: 24px;
    }

    .about__text p {
      padding: 0 20px;
      text-align: center;
      height: 100%;
    }
    .gallery__btn {
      margin-top: 80px;
      font-size: 20px;
    }
    .gallery__content {
      grid-gap: 10px;
    }
    .gallery__add {
      margin-top: 40px;
      margin-bottom: 100px;
      padding: 16px 8px;
      max-width: 250px;
      font-size: 22px;
    }
    .blockquote {
      max-width: 320px;
      padding: 50px 10px;
      margin-bottom: 40px;
      font-size: 30px;
    }

    .blockquote__author {
      font-size: 14px;
      font-weight: 300;
      text-align: center;
      margin-top: 20px;
    }

    ul.slick-dots {
      margin-left: 0;
    }
    .slider__item-title {
      margin-left: 300px;
    }
    .contacts__info {
      width: auto;
      height: auto;
      padding-right: 80px;
    }
    .contacts__inner {
      flex-direction: column;
    }
    .contacts__form {
      width: 420px;
      margin: 0 auto;
    }
    .contacts__form button {
      font-size: 20px;
      padding: 16px 50px;
      margin: 50px;
    }
  }
  @media (max-width: 665px) {
    .gallery__item {
      width: 100%;
      min-height: 240px;
    }
    .team__items {
      display: block;
    }
    .team__item {
      margin-bottom: 50px;
    }
    .team__item img {
      margin: 0 auto;
    }
  }
  @media (max-width: 580px) {
    section {
      padding: 40px 10px;
    }
    .title {
      font-size: 32px;
      font-weight: 300;
      padding-left: 7px;
    }
    .title::after {
      font-size: 38px;
      font-weight: 300;
    }
    .menu {
      margin-left: 0;
    }
    .header__title {
      font-size: 90px;
      margin-bottom: 70px;
    }

    .about__title {
      padding-top: 30px;
    }
    .about__inner {
      padding-top: 30px;
    }
    .benefits__extra-wave {
      display: none;
    }
    .benefits__extra-info {
      margin-top: -100px;
    }

    .gallery__btn {
      display: block;
      margin: 30px auto 0;
    }
    .gallery__content {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
    }
    .gallery__item {
      width: 100%;
    }
    .gallery__add {
      margin-top: 30px;
      margin-bottom: 50px;
      padding: 12px 6px;
      max-width: 200px;
      font-size: 20px;
    }
    .blockquote {
      max-width: 280px;
      padding: 30px 10px;
      margin-bottom: 20px;
      font-size: 28px;
    }
    .blockquote__author {
      font-size: 13px;
      margin-top: 14px;
    }
    .gallery__numbers {
      flex-wrap: wrap;
    }
    .gallery__numbers-item {
      width: 50%;
    }
    .slider__item-title {
      margin-top: 200px;
      margin-left: 260px;
      font-size: 25px;
      font-weight: 300;
    }
  }
  @media (max-width: 467px) {
    .header__title {
      font-size: 70px;
    }
    .header__subtitle {
      font-size: 20px;
    }
    .about__title,
    .title {
      font-size: 28px;
      line-height: 42px;
    }
    .gallery__video {
      height: 400px;
      background-position: top right;
      margin-bottom: 100px;
    }

    .gallery__add {
      padding: 10px 5px;
      max-width: 180px;
      font-size: 18px;
    }
    .gallery__numbers-item {
      width: 100%;
    }
    .slider__background {
      background-position: bottom right;
    }
    .slider__item-title {
      margin-top: 200px;
      margin-left: auto;
      font-size: 25px;
      font-weight: 300;
    }
    .packages__item,
    .contacts__form {
      max-width: 290px;
    }

    .footer__social-link {
      font-size: 20px;
      font-weight: 300;
    }
    .footer__social {
      flex-direction: column;
    }
    .footer__social-list {
      margin-bottom: 20px;
    }
    .footer__social-link {
      margin: 0 auto;
    }
  }

  @media (max-width: 327px) {
    .header__title {
      font-size: 68px;
    }
    .header__subtitle {
      font-size: 16px;
    }
    .gallery__btn {
      font-size: 13px;
    }
    .packages__item,
    .contacts__form {
      max-width: 250px;
    }

    .packages__item-num,
    #standard__price {
      margin-top: auto;
    }
    .contacts__info {
      text-align: center;
    }
  }
}
