* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html::-webkit-scrollbar {
  width: 0px;
}

html,
body {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  height: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration-line: underline;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: calc(50px + 30 * (100vw - 320px) / 1980);
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  z-index: 52;
  padding: 0px calc(180px + 100 * (100vw - 1024px) / 1980);
}
.header__body {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  display: flex;
  justify-content: space-between;
}
.header__menu-icon {
  display: none;
}
.header__contacts {
  display: flex;
  justify-content: end;
}
.header__contact {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 2px;
}
.header__phone {
  margin: auto;
  margin-left: 5px;
  color: #282828;
  font-size: calc(12px + 12 * (100vw - 320px) / 1980);
}
.header__menu-link {
  padding: 0 5px;
  margin: auto;
  color: #282828;
  font-size: calc(12px + 12 * (100vw - 320px) / 1980);
}

.menu-anchor {
  position: absolute;
  bottom: 0;
  height: calc(47px + 30 * (100vw - 320px) / 1980);
  opacity: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .header__menu {
    position: relative;
    flex-direction: column;
    margin: auto;
  }
  .header__body {
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: right 0.3s ease 0s;
    z-index: 99;
  }
  .header__contacts {
    display: none;
  }
  .header__body._active {
    right: 0;
  }
  .header_.header__body {
    overflow: hidden;
  }
  .header__menu-icon {
    margin-top: 15px;
    margin-left: 10px;
    display: block;
    position: absolute;
    width: 40px;
    height: 30px;
    right: 15px;
    z-index: 100;
  }
  .header__menu-icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .header__menu-icon:before {
    top: 0;
    content: "";
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #333333;
    z-index: 100;
  }
  .header__menu-icon._active:before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .header__menu-icon:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #333333;
    z-index: 100;
  }
  .header__menu-icon._active:after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .header__menu-icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #333333;
    z-index: 100;
  }
  .header__menu-link {
    padding: 0;
    margin: 15px auto;
    font-size: 40px;
  }
}
.welcome {
  position: relative;
  width: 100%;
  height: 100vh;
}
.welcome:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.welcome__photo {
  background: url("../img/fon.webp") top/cover no-repeat;
  width: 100%;
  min-height: 100%;
}
.welcome__logo {
  width: 30%;
  margin: 0px auto;
}
.welcome__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
}
.welcome__title {
  font-size: calc(24px + 26 * (100vw - 320px) / 1980);
  margin: 20px 0px;
}
.welcome__text {
  font-size: calc(12px + 12 * (100vw - 320px) / 1980);
  margin: 0px 0px 20px 0px;
}

.workouts {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 20px calc(180px + 100 * (100vw - 1024px) / 1980);
}
.workouts__items {
  display: grid;
  margin: 0 auto;
  width: 100%;
  grid-template-columns: repeate(3, 1fr);
  grid-auto-rows: auto;
  gap: 10px;
}
.workouts__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
}
.workouts__item-content {
  padding: 15px;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.workouts__name {
  color: #f0f0f0;
  font-size: calc(12px + 12 * (100vw - 320px) / 1980);
}
.workouts__link {
  text-align: end;
  font-size: calc(12px + 12 * (100vw - 320px) / 1980);
}
.workouts__link a, .workouts__link span {
  color: #f0f0f0;
  cursor: pointer;
}

.personal {
  grid-row: 1/3;
  background: url("../img/workouts/1_personal.webp") top/cover no-repeat;
  height: calc(350px + 110 * (100vw - 320px) / 1660);
}

.personal-photo {
  background: url("../img/workouts/1_personal.webp") center/cover no-repeat;
}

.group {
  grid-row: 1/4;
  background: url("../img/workouts/2_groups.webp") top/cover no-repeat;
  height: calc(500px + 110 * (100vw - 320px) / 1660);
}

.group-photo {
  background: url("../img/workouts/2_groups.webp") center/cover no-repeat;
}

.online {
  grid-row: 1/3;
  background: url("../img/workouts/3_online.webp") top/cover no-repeat;
  height: calc(350px + 110 * (100vw - 320px) / 1660);
}

.online-photo {
  background: url("../img/workouts/3_online.webp") center/cover no-repeat;
}

.test {
  grid-row: 3/5;
  background: url("../img/workouts/5_test.webp") top/cover no-repeat;
  height: calc(290px + 110 * (100vw - 320px) / 1660);
}

.test-photo {
  background: url("../img/workouts/5_test.webp") center/cover no-repeat;
}

.sert {
  grid-row: 4/5;
  background: url("../img/workouts/4_sert.webp") top/cover no-repeat;
  height: calc(150px + 110 * (100vw - 320px) / 1660);
}

.corp {
  background: url("../img/workouts/6_corp.webp") top/cover no-repeat;
  grid-row: 3/5;
  height: calc(290px + 110 * (100vw - 320px) / 1660);
}

.corp-photo {
  background: url("../img/workouts/6_corp.webp") center/cover no-repeat;
}

.email {
  background: url(/img/contact_icons/email.png) center/cover no-repeat;
}

.telegram {
  background: url(/img/contact_icons/telegram.png) center/cover no-repeat;
}

.whatsapp {
  background: url(/img/contact_icons/whatsapp.png) center/cover no-repeat;
}

.vk {
  background: url(/img/contact_icons/vk.png) center/cover no-repeat;
}

.command {
  position: relative;
  width: 100%;
  padding: 20px calc(20px + 160 * (100vw - 320px) / 1980);
  background-color: #ffffff;
}
.command__items {
  display: flex;
  width: 100%;
  min-height: 100px;
  align-items: baseline;
  justify-content: space-evenly;
}
.command__item {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
  width: calc(300px + 200 * (100vw - 320px) / 1980);
}
.command__text {
  padding: 5px 15px;
  background-color: #fff;
}
.command__coach-photo {
  height: 500px;
}
.command__coach-name {
  padding: 10px;
  text-align: center;
  font-style: 20px;
}
.command__coach-desc {
  padding-top: 10px;
  text-align: center;
}
.command__coach-credo {
  padding-top: 10px;
  text-align: end;
  font-weight: 600;
  font-style: italic;
}

.sasha {
  background: url("../img/coach1.jpg") top/cover no-repeat;
}

.valya {
  background: url("../img/coach2.jpg") top/cover no-repeat;
}

.partition-title {
  text-align: center;
  font-size: calc(20px + 22 * (100vw - 320px) / 1980);
  color: #000;
  padding: 25px 0px 15px 0px;
}

.partition-desc {
  text-align: center;
  font-size: calc(14px + 6 * (100vw - 320px) / 1980);
  padding-bottom: 20px;
  color: #000;
}

.footer {
  background-color: #282828;
  display: flex;
  justify-content: space-between;
  padding: 40px calc(20px + 160 * (100vw - 320px) / 1980);
  width: 100%;
}
.footer__column {
  display: flex;
}
.footer__general {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 30%;
}
.footer__menu-link {
  color: #f0f0f0;
  display: block;
  flex-basis: 50%;
  margin-bottom: 5px;
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.footer__policy {
  padding-bottom: 10px;
}
.footer__policy p {
  color: #f0f0f0;
  font-weight: 700;
  padding-bottom: 5px;
}
.footer__policy a {
  color: #f0f0f0;
  display: block;
  flex-basis: 50%;
}
.footer__email {
  padding-bottom: 10px;
}
.footer__email p {
  color: #f0f0f0;
  font-weight: 700;
  padding-bottom: 5px;
}

.footer__sign-up {
  display: flex;
  color: #fff;
  background-color: #af6464;
  text-align: center;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  font-size: large;
  justify-content: center;
  align-items: center;
}

.footer__sent-email-text {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  padding-left: 10px;
  font-size: large;
}
.footer__dog p {
  color: #f0f0f0;
  font-size: medium;
  font-weight: 200;
}
.footer__central {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.footer__central p {
  text-align: center;
  color: #f0f0f0;
  margin-bottom: 5px;
}
.footer__logo {
  flex: 1 1 auto;
  width: 100%;
  background: url(/img/logo.png) center/contain no-repeat;
  margin-bottom: 5px;
}
.footer__contacts {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.footer__contact {
  width: 25px;
  height: 25px;
  padding: 10px;
  margin: 0 2px;
}
.footer__map {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex-basis: 60%;
}
.footer__map p {
  color: #f0f0f0;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
}
.footer__yandex-wrapper {
  width: 100%;
  flex: 1 1 auto;
}
.footer__yandex {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 60;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.popup__wrapper {
  display: flex;
  background-color: #fff;
  color: #000;
  max-width: 1000px;
  min-height: 700px;
  position: relative;
  transition: all 0.8 ease 0s;
}
.popup__title {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}
.popup__close-button {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #af6464;
  background: url("../img/icons/xmark-solid.svg") center/cover no-repeat;
}
.popup__open {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  opacity: 0;
  visibility: hidden;
}
.popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
.popup__img {
  min-width: 45%;
  min-height: 700px;
}
.popup__time {
  margin-top: 10px;
  font-size: calc(18px + 8 * (100vw - 320px) / 1980);
}
.popup__cost {
  margin-top: 10px;
  font-size: calc(18px + 8 * (100vw - 320px) / 1980);
}
.popup__sing-up-button {
  color: #000;
  margin-top: 15px;
  width: 100%;
  height: 50px;
  background-color: #FF4A4A;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .header {
    padding: 0px 10px;
  }
  .workouts {
    padding: 20px;
  }
  .command {
    padding: 20px;
  }
  .footer {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .command__items {
    flex-direction: column;
    align-items: center;
  }
  .command__item {
    width: calc(300px + 400 * (100vw - 320px) / 768);
    margin-bottom: 20px;
  }
  .popup__img {
    display: none;
  }
  .workouts__items {
    grid-template-columns: 1fr;
  }
  .workouts__items > div {
    grid-row: auto;
  }
}
@media (max-width: 568px) {
  .footer {
    flex-direction: column;
  }
  .footer__map {
    padding-top: 20px;
  }
  .footer__yandex-wrapper {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */