html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

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

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

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin: 0;
  line-height: 1.5;
}

a {
  text-decoration: none;
  display: inline-block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  background-color: #221d1d;
  color: #fdfdfd;
  font-family: "Open sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}

body.lock {
  overflow: hidden;
}

[class*="__container"] {
  max-width: 1270px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* ---Preloader--- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #221d1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10000;
}

.preloader__content {
  padding-right: 2rem;
  font-family: "Open Sans", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #da131d;
  text-align: center;
  position: relative;
  text-shadow: 0.3rem 0.3rem 0.5rem rgba(128, 0, 0, 0.2);
}

.preloader__content::before,
.preloader__content::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #da131d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 0.5rem rgba(128, 0, 0, 0.2);
          box-shadow: 0.3rem 0.3rem 0.5rem rgba(128, 0, 0, 0.2);;
}

.preloader__content::before {
  right: 0;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.preloader__content::after {
  right: -1.6rem;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes preloader {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes preloader {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* ---Wrapper--- */
.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ---Headline--- */
.headline__title {
  margin: 0 0 1.1rem 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #da131d;
  text-transform: uppercase;
}

.headline__subtitle {
  font-size: 4rem;
  font-weight: 700;
  color: #fdfdfd;
  text-transform: capitalize;
}

/* ---Button--- */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #da131d;
  padding: 0.6rem 2.2rem;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: capitalize;
  color: #fdfdfd;
  -webkit-box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}

.button:hover {
  background-color: #ae282f;
}

.button--border {
  background-color: transparent;
  border: 1px solid #da131d;
  -webkit-transition: border 0.3s, color 0.3s, background-color 0.3s;
  -o-transition: border 0.3s, color 0.3s, background-color 0.3s;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
}

.button--border:hover {
  border: 0.1rem solid transparent;
  background-color: #fdfdfd;
  color: #221d1d;
}

/* ---Header--- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  min-height: 8rem;
  width: 100%;
  padding: 1rem 0;
  -webkit-box-shadow: 0 1rem 1rem rgba(34, 29, 29, 0.35);
          box-shadow: 0 1rem 1rem rgba(34, 29, 29, 0.35);
}

.header.open {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #161515;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.header__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15rem;
          flex: 0 0 15rem;
}

.header__column--logo {
  position: relative;
  z-index: 3;
}

.header__column--menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header__column--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  z-index: 3;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.8rem;
  position: relative;
  z-index: 3;
}

.menu__link {
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.menu__link.active {
  color: #da131d;
}

.menu__link:hover {
  color: #da131d;
}

.header__button {
  min-height: 3.5rem;
}

.burger {
  display: none;
}

/* ---Page--- */
.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page__features {
  margin: -3rem 0 15rem 0;
  position: relative;
  z-index: 2;
}

.page__about,
.page__programs,
.page__offer,
.page__pricing,
.page__gallery,
.page__team {
  margin-bottom: 15rem;
}

/* ---Intro--- */
.intro__inner {
  position: relative;
}

.intro__content {
  padding: 24.1rem 0.5rem 25.5rem;
  max-width: 52rem;
  position: relative;
  z-index: 5;
}

.intro__suptitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #da131d;
}

.intro__suptitle:not(:last-child) {
  margin-bottom: 1rem;
}

.intro__title {
  font-family: "Noto", serif;
  font-size: 6.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.intro__title:not(:last-child) {
  margin-bottom: 2rem;
}

.intro__text {
  max-width: 45rem;
  font-size: 2rem;
}

.intro__text:not(:last-child) {
  margin-bottom: 10rem;
}

.intro__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.intro__button {
  min-height: 5rem;
}

.intro__image {
  position: absolute;
  top: 6%;
  right: 0;
  height: 100%;
}

.intro__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  opacity: 0.6;
}

/* ---Features--- */
.features__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.features__body {
  max-width: 90.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1rem;
  row-gap: 2rem;
}

.features__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 0 1rem;
}

.features__item {
  background: #ae282f url("../image/dumbbel-icon.svg") 95% 8% no-repeat;
  padding: 2.5rem;
  height: 100%;
  min-width: 28rem;
  -webkit-box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.features__column:hover .features__item {
  -webkit-transform: translateY(-0.5rem);
      -ms-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}

.item-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-features > *:not(:last-child) {
  margin-bottom: 2rem;
}

.item-features__title {
  max-width: 20rem;
  font-size: 2rem;
}

.item-features__text {
  font-size: 1.6rem;
  font-weight: 400;
}

/* ---About--- */
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__video {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  height: 51rem;
  margin-right: 2.3rem;
}

.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.video__button {
  width: 5rem;
  height: 5rem;
  background-color: #fdfdfd;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__content {
  padding: 3rem 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  min-width: 0;
}

.slider-about__slide {
  padding: 0 1rem;
}

.slider-about__headline {
  margin-bottom: 3rem;
  max-width: 38rem;
}

.slider-about__text:not(:last-child) {
  margin-bottom: 3rem;
}

.slider-about__text p:not(:last-child) {
  margin-bottom: 1.6rem;
}

.slider-about__list > *:not(:last-child) {
  margin-bottom: 1.6rem;
}

.slider-about__item {
  padding-left: 2.5rem;
  position: relative;
}

.slider-about__item::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
  background: url("../image/check-icon.svg") 0 0 no-repeat;
}

.slider-about .slick-dots {
  margin-top: 3rem;
}

/* ---Programs--- */
.programs__headline {
  text-align: center;
  margin-bottom: 8rem;
}

.programs__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.programs__item {
  padding: 7rem 3rem;
  background: rgba(199, 184, 184, 0.1);
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.24);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.item-program {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.item-program__info {
  position: relative;
  z-index: 2;
}

.item-program__title {
  padding-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fdfdfd;
  text-transform: uppercase;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  position: relative;
}

.item-program__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.2rem;
  width: 15%;
  background-color: #fdfdfd;
}

.item-program__title:not(:last-child) {
  margin-bottom: 4rem;
}

.item-program__text {
  font-size: 1.6rem;
}

.item-program__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.item-program__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.programs__item:hover .item-program__image {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ---Offer--- */
.offer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("../img/offer/offer-bg.jpg");
  background: -o-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/offer/offer-bg.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/offer/offer-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.offer__inner {
  min-height: 65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.offer__content {
  padding-left: 10rem;
}

.offer__title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #da131d;
  text-transform: capitalize;
}

.offer__title:not(:last-child) {
  margin-bottom: 1.6rem;
}

.offer__text {
  max-width: 39.7rem;
  font-size: 2rem;
}

.offer__text:not(:last-child) {
  margin-bottom: 10rem;
}

.offer__button {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  min-height: 6rem;
}

/* ---Gallery--- */
.gallery__headline {
  text-align: center;
  margin-bottom: 8rem;
  padding: 0 1.5rem;
}

.gallery__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[9];
  grid-template-columns: repeat(9, 1fr);
  gap: 0.5rem;
}

.gallery__item {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.gallery__item--v1 {
  -ms-grid-column-span: 5;
  grid-column: span 5;
}

.gallery__item--v2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.gallery__item--v3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

.gallery__item--v4 {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---Pricing--- */
.pricing__headline {
  text-align: center;
  margin-bottom: 7rem;
}

.pricing__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -1.1rem;
  row-gap: 2.2rem;
}

.pricing__column {
  padding: 0 1.1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.pricing__item {
  background: rgba(199, 184, 184, 0.1);
  padding: 7rem 1.5rem;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
  border-radius: 0.2rem;
  height: 100%;
}

.pricing__item--padding {
  padding: 8rem 1.5rem;
}

.item-pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item-pricing__title {
  width: 100%;
  padding-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 0.1rem solid rgba(199, 184, 184, 0.1);
}

.item-pricing__title:not(:last-child) {
  margin-bottom: 3rem;
}

.item-pricing__price {
  font-size: 4rem;
  font-weight: 700;
}

.item-pricing__price sup {
  font-size: 2rem;
}

.item-pricing__price span {
  font-size: 1.6rem;
}

.pricing__item--padding .item-pricing__price {
  color: #da131d;
}

.item-pricing__price:not(:last-child) {
  margin-bottom: 4rem;
}

.item-pricing__list:not(:last-child) {
  margin-bottom: 6rem;
}

.item-pricing__item {
  font-size: 1.6rem;
  font-weight: 700;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 2rem;
}

.item-pricing__button {
  -webkit-box-shadow: none;
          box-shadow: none;
  min-height: 4.8rem;
  padding: 0.5rem 5.4rem;
}

/* ---Team--- */
.team__headline {
  margin-bottom: 7rem;
  text-align: center;
  padding: 0 1.5rem;
}

.slider-team__item {
  margin-right: 2.7rem;
  padding: 0 4.8rem;
  background: rgba(199, 184, 184, 0.1);
  max-width: 39.3rem;
  height: 45rem;
  position: relative;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
}

.slider-team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-team__info {
  background-color: rgba(34, 29, 29, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}

.slider-team__item:hover .slider-team__info {
  height: 100%;
}

.slider-team__name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slider-team__name:not(:last-child) {
  margin-bottom: 0.5rem;
}

.slider-team__more {
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.slider-team__item:hover .slider-team__more {
  display: block;
  opacity: 1;
  visibility: visible;
}

.slider-team__prof {
  font-size: 1.4rem;
}

.slider-team__prof:not(:last-child) {
  margin-bottom: 2rem;
}

.slider-team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-team__social .social__item:not(:last-child) {
  margin-right: 0.8rem;
}

.slider-team .slick-dots {
  margin-top: 7.5rem;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 0;
  gap: 0.8rem;
}

.slick-dots li {
  background-color: rgba(253, 253, 253, 0.8);
  width: 1.5rem;
  height: 0.5rem;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.slick-dots li.slick-active {
  background-color: #da131d;
}

.slick-dots button {
  font-size: 0;
}

/* ---Contacts--- */
.contacts {
  padding: 10rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.7))), url("../img/contacts/contacts-bg.jpg");
  background: -o-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../img/contacts/contacts-bg.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../img/contacts/contacts-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fdfdfd;
}

.contacts__details {
  max-width: 43rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.contacts__details > *:not(:last-child) {
  margin-bottom: 5rem;
}

.contacts__title {
  text-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
  font-size: 4rem;
}

.contacts__item:not(:last-child) {
  margin-bottom: 3rem;
}

.contacts__link {
  display: inline-block;
  padding-left: 3.8rem;
  font-size: 2rem;
  color: inherit;
  position: relative;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.contacts__link:hover {
  color: #ae282f;
}

.contacts__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
}

.contacts__link--phone::before {
  background: url("../image/phone-icon.svg") 0 0 no-repeat;
}

.contacts__link--email::before {
  top: 0.2rem;
  background: url("../image/mail-icon.svg") 0 0 no-repeat;
}

.contacts__link--address {
  background: url("../image/marker-icon.svg") 0 0 no-repeat;
}

.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts__social .social__item:not(:last-child) {
  margin-right: 1.5rem;
}

.social__link {
  width: 2.6rem;
  height: 2.6rem;
  background-color: #da131d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  padding: 0.2rem;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.social__link:hover {
  background-color: #ae282f;
}

.hours__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

.hours__title:not(:last-child) {
  margin-bottom: 2.6rem;
}

.hours__item {
  font-weight: 700;
}

.hours__item span {
  display: block;
  color: #ae282f;
  font-weight: 700;
}

.hours__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contacts__message {
  padding: 4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.message {
  background-color: rgba(199, 184, 184, 0.35);
  max-width: 48rem;
  border-radius: 0.5rem;
}

.message__title {
  font-size: 3.2rem;
  font-weight: 700;
}

.message__title:not(:last-child) {
  margin-bottom: 3rem;
}

.form__group:not(:last-child) {
  margin-bottom: 4rem;
}

.form__textarea,
.form__input {
  width: 100%;
  border: none;
  background-color: transparent;
  border-bottom: 0.1rem solid #fdfdfd;
  height: 4rem;
  outline: none;
  color: #fdfdfd;
  font-size: 1.6rem;
}

.form__textarea:focus,
.form__input:focus {
  border-bottom: 0.2rem dotted #fdfdfd;
}

.form__textarea::-webkit-input-placeholder, .form__input::-webkit-input-placeholder {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #fdfdfd;
}

.form__textarea::-moz-placeholder, .form__input::-moz-placeholder {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #fdfdfd;
}

.form__textarea:-ms-input-placeholder, .form__input:-ms-input-placeholder {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #fdfdfd;
}

.form__textarea::-ms-input-placeholder, .form__input::-ms-input-placeholder {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #fdfdfd;
}

.form__textarea::placeholder,
.form__input::placeholder {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #fdfdfd;
}

.form__input {
  font-size: 1.6rem;
}

.form__textarea {
  resize: vertical;
  height: 9rem;
}

.form__button {
  -webkit-box-shadow: none;
          box-shadow: none;
  min-height: 3.5rem;
  padding: 0.5rem 3.5rem;
}

/* ---Footer--- */
.footer {
  background-color: #161515;
}

.footer__container {
  min-height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  color: rgba(253, 253, 253, 0.8);
  gap: 1rem;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__item:not(:last-child) {
  border-right: 0.1rem solid rgba(253, 253, 253, 0.8);
}

.footer__link {
  color: inherit;
  padding: 0 1rem;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #ae282f;
}

.scroll-up__link {
  width: 3.5rem;
  height: 3.5rem;
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  border-radius: 50%;
  z-index: 50;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
  background-color: rgba(199, 184, 184, 0.35);
  opacity: 0.5;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  display: none;
}

.scroll-up__link img {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.scroll-up__link:hover {
  background-color: #da131d;
}

.scroll-up__link:active {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.939);
  z-index: 2000;
  min-height: 100vh;
  padding: 0 2rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__inner {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  overflow: auto;
}

.callback {
  padding: 7rem 4rem;
  background-color: rgba(199, 184, 184, 0.35);
  max-width: 48rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
  position: relative;
}

.callback__close {
  position: absolute;
  right: 2rem;
  top: 3rem;
}

.close {
  width: 2rem;
  height: 2rem;
}

.close__path {
  fill: #fdfdfd;
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.close:hover .close__path {
  fill: #da131d;
}

.callback__title {
  font-size: 2.5rem;
  text-align: center;
}

.callback__title:not(:last-child) {
  margin-bottom: 4rem;
}

.callback__form {
  max-width: 34rem;
  margin: 0 auto;
}

.callback .form__button {
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  /* Menu */
  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15rem 2rem 10rem;
    background-color: #161515;
    -webkit-transition: top 0.3s linear;
    -o-transition: top 0.3s linear;
    transition: top 0.3s linear;
    overflow: auto;
  }
  .menu.active {
    top: 0;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 3rem;
    text-align: center;
  }
  .menu__link {
    font-size: 2rem;
  }

  /* Burger */
  .burger {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3rem;
            flex: 0 0 3rem;
    height: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }
  .burger span,
  .burger::before,
  .burger::after {
    content: "";
    width: 100%;
    height: 0.2rem;
    background-color: #fdfdfd;
    position: absolute;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .burger span {
    width: 70%;
    top: calc(50% - 0.1rem);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .burger::before {
    top: 0;
  }
  .burger::after {
    bottom: 0;
  }
  .burger.active span {
    width: 0;
  }
  .burger.active::before {
    top: calc(50% - 0.1rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .burger.active::after {
    top: calc(50% - 0.1rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  /* About */
  .about__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .slider-about__headline {
    text-align: center;
    max-width: 100%;
  }
  .about__video {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 3.2rem 0 0 0;
  }
  .about__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* Programs */
  .programs__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3.2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }

  /* Offer */
  .offer__content {
    padding-left: 0;
  }

  /* Gallery */
  .gallery__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);

  }
  .gallery__item {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }

  /* Pricing */
  .pricing__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .pricing__item--padding {
    padding: 7rem 1.5rem;
  }
}

@media (max-width: 900px) {
  /* Contacts */
  .contacts__inner {
    row-gap: 8rem;
  }
  .contacts__details {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .contacts__message {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 auto;
  }
}

@media (max-width: 769px) {
  /* Header */
  .header__inner {
    gap: 1.5rem;
  }

  /* Features */
  .features__item {
    background: #ae282f url("../image/dumbbel-icon.svg") 94% 8% / 40px no-repeat;
  }

  /* Gallery */
  .gallery__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }

  /* Pricing */
  .pricing__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pricing__item {
    min-width: 40rem;
  }

  /* Offer */
  .offer__title {
    font-size: 4rem;
  }
}

@media (max-width: 680px) {
  /* Programs */
  .programs__body {
    gap: 2.5rem;
  }
  .programs__item {
    padding: 5rem 2rem;
  }
}

@media (max-width: 610px) {
  /* Features */
  .features__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .features__column:hover .features__item {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .item-features {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* Programs */
  .programs__body {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .item-program__image img {
    -o-object-position: center;
       object-position: center;
  }
}

@media (max-width: 500px) {
  /* Footer */
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__links {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 481px) {
  /* Headline */
  .headline__subtitle,
  .contacts__title {
    font-size: 3rem;
  }

  /* Page */
  .page__features,
  .page__about,
  .page__programs,
  .page__offer,
  .page__pricing,
  .page__gallery,
  .page__team {
    margin-bottom: 10rem;
  }

  /* Intro */
  .intro__title {
    font-size: 4.8rem;
  }

  /* Gallery */
  .gallery__items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery__item {
    -ms-grid-row-span: 4;
    grid-row: span 4;
  }

  /* Offer */
  .offer,
  .contacts {
    background-attachment: scroll;
  }

  .offer__title {
    font-size: 3.5rem;
  }

  /* Contacts */
  .contacts__message {
    padding: 4rem 3rem;
  }
  .message__title {
    font-size: 2.5rem;
  }

  /* Modal */
  .callback__title {
    font-size: 2rem;
  }
  .callback__form {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  /* Header */
  .header__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* Pricing */
  .pricing__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .pricing__item {
    min-width: auto;
  }

  /* Team */
  .slider-team__item {
    max-width: 100%;
  }
}