@charset "UTF-8";
@font-face {
  font-family: 'Montserrat-Black';
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

.middleGreyAndOpacity, .header__nav-item-btn {
  background: #3333337a;
}

body {
  margin: 0;
  background-color: #FDFEFF;
}

* {
  box-sizing: border-box;
}

.mb-10 {
  margin-bottom: 10px;
}

.container {
  width: 1280px;
  margin: auto;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1300px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 420px) {
  .container {
    padding: 0 10px;
  }
}

.title {
  font-family: 'Montserrat-Bold';
}

.paragraph {
  margin: 0 0 20px 0;
}

.list-item {
  padding: 5px 0;
}

@media screen and (max-width: 420px) {
  .list-item {
    padding: 3px 0;
  }
}

.btn {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat-Bold';
  background: #FFD700;
  color: #212121;
  cursor: pointer;
}

.btn:hover {
  background: #313131;
  color: #FFD700;
}

.btn:active {
  background: #212121;
  color: #FFD700;
}

.regular-text {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .regular-text {
    font-size: 14px;
    font-family: 'Montserrat-Regular';
  }
}

@media screen and (max-width: 420px) {
  .regular-text {
    font-size: 12px;
  }
}

.mobile-menu-btn {
  display: none;
  width: 20px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 40px;
}

.mobile-menu-btn__line {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: #212121;
}

@media screen and (max-width: 1200px) {
  .mobile-menu-btn {
    display: flex;
  }
}

@media screen and (max-width: 340px) {
  .mobile-menu-btn {
    margin-left: 20px;
  }
}


.mobile-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__left-side {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #212121;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu__right-side {
  width: 30%;
  height: 100%;
  background: #FDFEFF;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .mobile-menu__right-side {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu__right-side {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .mobile-menu__right-side {
    width: 60%;
  }
}

@media screen and (max-width: 420px) {
  .mobile-menu__right-side {
    width: 100%;
  }
}

.mobile-menu__header {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  color: #212121;
  padding-left: 10px;
  margin-bottom: 36px;
}

.mobile-menu__item {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat-Regular';
  color: #212121;
  font-size: 14px;
  padding-left: 10px;
  margin-top: 20px;
}

.mobile-menu__right-side-top {
  margin-top: 30px;
}

.mobile-menu__close-btn {
  width: 19px;
  height: 19px;
  position: absolute;
  top: 30px;
  right: 35px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu__social-networks {
  padding-left: 10px;
  margin-bottom: 25px;
  width: 80px;
  height: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__phone {
  display: block;
  text-decoration: none;
  padding-left: 10px;
  font-family: 'Montserrat-Medium';
  color: #212121;
  font-size: 18px;
  margin-bottom: 25px;
}

.mobile-menu__sign-up-btn {
  height: 50px;
}

.mobile-nav {
  display: none;
  overflow-x: scroll;
  overflow-x: hidden;
  white-space: nowrap;
  user-select: none;
  background: #333333;
}

@media screen and (max-width: 700px) {
  .mobile-nav {
    display: flex;
  }
}

.mobile-nav__item {
  padding: 12px 25px;
  color: #FDFEFF;
  font-family: 'Montserrat-Medium';
  font-size: 12px;
  text-decoration: none;
}

.mobile-nav_active {
  background: #5f5f5f;
  transition: background-color 0.3s ease;
}

.header {
  width: 100%;
  padding-bottom: 100px;
}

.header_main {
  background-image: url("../images/jc-header-2.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

@media screen and (max-width: 1024px) {
  .header_main {
    background-position: 80% 50%;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 420px) {
  .header {
    padding-bottom: 0;
  }
}

.header__container {
  position: relative;
}

.header__social-networks {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  top: 140px;
  right: 0;
}

@media screen and (max-width: 1300px) {
  .header__social-networks {
    right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header__social-networks {
    position: unset;
    flex-direction: row;
    height: 24px;
    width: 60px;
    margin: 80px 0 20px 0;
  }
}

.header__social-icon {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header__social-icon {
    cursor: auto;
  }
}

.header__nav-bar {
  background-color: #fdfeff2d;
}

.header__top {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-text {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  margin-left: 10px;
  width: 100px;
  user-select: none;
  color: #212121;
}

.header__info {
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__menu-item {
  text-decoration: none;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  color: #212121;
  margin-right: 40px;
  display: block;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .header__menu-item {
    display: none;
  }
}

.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
}

.header__menu-item:hover::after {
  width: 100%;
}

.header__phone {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat-Medium';
  font-size: 18px;
  color: #212121;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .header__phone {
    margin-right: 0px;
  }
}

@media screen and (max-width: 500px) {
  .header__phone {
    font-size: 12px;
  }
}

.header__sign-up-btn {
  height: 46px;
  width: 204px;
}

@media screen and (max-width: 768px) {
  .header__sign-up-btn {
    display: none;
  }
}

.header__title-box {
  margin-top: 45px;
}

@media screen and (max-width: 420px) {
  .header__title-box {
    margin-top: 5px;
  }
}

.header__title {
  width: 700px;
  font-size: 44px;
  line-height: 135.5%;
}

@media screen and (max-width: 800px) {
  .header__title {
    width: 440px;
    font-size: 28px;
  }
}

@media screen and (max-width: 550px) {
  .header__title {
    width: 280px;
    font-size: 18px;
  }
}

.header__title_ocr, .header__title_crossfit {
  height: 120px;
}

@media screen and (max-width: 768px) {
  .header__title_ocr, .header__title_crossfit {
    height: auto;
  }
}

.header__text {
  margin-top: 20px;
  width: 507px;
  line-height: 150%;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .header__text {
    width: 325px;
  }
}

@media screen and (max-width: 420px) {
  .header__text {
    display: none;
  }
}

.header__first-training-btn {
  width: 400px;
  height: 60px;
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  .header__first-training-btn {
    width: 350px;
    height: 47px;
  }
}

@media screen and (max-width: 420px) {
  .header__first-training-btn {
    display: none;
  }
}

.header__mobile-first-training-btn {
  display: none;
}

@media screen and (max-width: 420px) {
  .header__mobile-first-training-btn {
    display: flex;
    height: 47px;
  }
}

@media screen and (max-width: 700px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item {
  position: relative;
  height: 300px;
}

@media screen and (max-width: 768px) {
  .header__nav-item {
    height: 200px;
  }
}

.header__nav-item-btn {
  text-decoration: none;
  position: absolute;
  width: 20%;
  height: 60px;
  color: #FDFEFF;
  font-family: 'Montserrat-Medium';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn {
    font-size: 12px;
    height: 40px;
  }
}

.header__nav-item-btn:active {
  background: #FFD700;
  opacity: 75%;
  color: #212121;
}

.header__nav-item-btn:hover {
  background: #FFD700;
  opacity: 75%;
  color: #212121;
  cursor: pointer;
}

.header__nav-item-btn:nth-child(1) {
  top: 0px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn:nth-child(1) {
    top: 0px;
  }
}

.header__nav-item-btn:nth-child(2) {
  top: 60px;
  right: 20%;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn:nth-child(2) {
    top: 40px;
  }
}

.header__nav-item-btn:nth-child(3) {
  top: 120px;
  left: 40%;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn:nth-child(3) {
    top: 80px;
  }
}

.header__nav-item-btn:nth-child(4) {
  top: 180px;
  left: 20%;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn:nth-child(4) {
    top: 120px;
  }
}

.header__nav-item-btn:nth-child(5) {
  top: 240px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .header__nav-item-btn:nth-child(5) {
    top: 160px;
  }
}

.groups {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 768px) {
  .groups {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 420px) {
  .groups {
    display: none;
  }
}

.groups__item {
  width: 20%;
  padding: 40px 35px;
  border-right: 1px solid #E5E5E5;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .groups__item {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 768px) {
  .groups__item {
    flex: 30%;
    border: 1px solid #E5E5E5;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.groups__item_single {
  margin-top: 20px;
}


@media screen and (max-width: 768px) {
  .groups__item:hover {
    background: #FDFEFF;
  }
}

.groups__item:nth-child(5) {
  border: none;
}

@media screen and (max-width: 768px) {
  .groups__item:nth-child(5) {
    flex: 30%;
    border: 1px solid #E5E5E5;
    margin: 20px;
  }
}

.groups__item-list {
  height: 390px;
}

@media screen and (max-width: 1024px) {
  .groups__item-list {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .groups__item-list {
    height: auto;
  }
}

.groups__header {
  font-family: 'Montserrat-Bold';
  font-size: 18px;
  color: #212121;
  margin-bottom: 30px;
}

.groups__header_mobile {
  font-family: 'Montserrat-Bold';
  font-size: 16px;
  color: #212121;
  margin-bottom: 10px;
}

@media screen and (max-width: 420px) {
  .groups__header_mobile {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .groups__header {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .groups__header {
    height: 30px;
  }
}

.groups__list-item {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .groups__list-item {
    font-size: 14px;
  }
}

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

@media screen and (max-width: 1024px) {
  .groups__price-box {
    flex-direction: column;
  }
}

.groups__price-text {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  color: #333333;
  width: 120px;
  line-height: 22px;
}

@media screen and (max-width: 1024px) {
  .groups__price-text {
    font-size: 14px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .groups__price-text {
    margin-top: 20px;
  }
}

.groups__price {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  color: #212121;
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  .groups__price {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .groups__price-arrow {
    display: none;
  }
}

.groups-photo {
  width: 100%;
  height: 800px;
  background-size: cover;
  padding-top: 150px;
}

@media screen and (max-width: 420px) {
  .groups-photo {
    display: none;
  }
}

.groups-photo_main {
  background-image: url("../images/jc5.jpg");
  background-color: #212121;
  background-position: 50% 50%;
}

.header-swimming {
  background-image: url("../images/swim-3.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

.header-athletics {
  background-image: url("../images/jc2.jpg");
  background-size: cover;
  background-position: 50% 0%;
}

.header-ocr {
  background-image: url("../images/ocr.jpg");
  background-size: cover;
  background-position: 10% 0%;
}

.header-combat {
  background-image: url("../images/combat.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

.header-crossfit {
  background-image: url("../images/crossfit.jpg");
  background-size: cover;
  background-position: 80% 50%;
}

@media screen and (max-width: 768px) {
  .groups-photo {
    height: 450px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 420px) {
  .groups-photo {
    height: 406px;
    padding-top: 40px;
  }
}

.groups-photo__header {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  color: #FDFEFF;
  width: 500px;
  height: 100px;
  line-height: 32px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .groups-photo__header {
    font-size: 18px;
    width: 360px;
    height: 70px;
    line-height: 24px;
  }
}

@media screen and (max-width: 420px) {
  .groups-photo__header {
    font-size: 16px;
    width: 100%;
    height: 65px;
    line-height: 21px;
  }
}

.groups-photo__characteristics {
  width: 480px;
  height: 320px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .groups-photo__characteristics {
    width: 390px;
    height: 260px;
  }
}

@media screen and (max-width: 420px) {
  .groups-photo__characteristics {
    width: 300px;
    height: 200px;
    margin: auto;
  }
}

.groups-photo__characteristics-item {
  font-family: 'Montserrat-Bold';
  font-size: 16px;
  color: #FDFEFF;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .groups-photo__characteristics-item {
    font-size: 14px;
    width: 130px;
    height: 130px;
  }
}

@media screen and (max-width: 420px) {
  .groups-photo__characteristics-item {
    font-size: 10px;
    width: 100px;
    height: 100px;
  }
}

.groups-photo__characteristics-item span {
  margin-top: 10px;
}

.groups-photo__characteristics-item:nth-child(1) {
  border-right: 1px solid #FDFEFF;
  border-bottom: 1px solid #FDFEFF;
}

.groups-photo__characteristics-item:nth-child(2) {
  border-right: 1px solid #FDFEFF;
  border-bottom: 1px solid #FDFEFF;
}

.groups-photo__characteristics-item:nth-child(3) {
  border-bottom: 1px solid #FDFEFF;
}

.groups-photo__characteristics-item:nth-child(4) {
  border-right: 1px solid #FDFEFF;
}

.groups-photo__characteristics-item:nth-child(5) {
  border-right: 1px solid #FDFEFF;
}

.news {
  color: #FDFEFF;
}

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

@media screen and (max-width: 1024px) {
  .news__container {
    justify-content: unset;
    flex-wrap: wrap;
  }
}

.section__title {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  color: #212121;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
  padding-top: 100px;
}

@media screen and (max-width: 420px) {
  .section__title {
    font-size: 18px;
    text-align: center;
    padding-top: 30px;
  }
}

.news__item {
  width: 32%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  padding: 55px 40px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .news__item {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .news__item:nth-child(3) {
    margin-bottom: 0;
  }
}

.news__item-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212121;
  opacity: 0.7;
  z-index: 1;
}

.news__item-front {
  position: relative;
  z-index: 2;
}

.news__date {
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  margin-bottom: 25px;
}

.news__header {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 1279px) {
  .news__header {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1024px) {
  .news__header {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 420px) {
  .news__header {
    font-size: 16px;
    line-height: 20px;
  }
}

.news__text {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .news__text {
    font-size: 14px;
    line-height: 21px;
  }
}

@media screen and (max-width: 420px) {
  .news__text {
    font-size: 12px;
    line-height: 18px;
  }
}

.news__text p {
  margin-top: 25px;
}

.news__details {
  width: 90%;
  height: 50px;
  background-color: #58585857;
  font-family: 'Montserrat-SemiBold';
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: #FDFEFF;
}

@media screen and (max-width: 767px) {
  .news__details {
    width: 80%;
  }
}

.sign-up {
  padding: 100px 0;
}

@media screen and (max-width: 1024px) {
  .sign-up {
    padding: 40px 0;
  }
}

.sign-up__container {
  margin: auto;
  width: 100%;
}

.sign-up__form {
  width: 50%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sign-up__form {
    width: 100%;
  }
}

.sign-up__info {
  width: 200px;
  height: 110px;
  background: #212121;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFD700;
  padding: 15px 0 0 15px;
}

@media screen and (max-width: 420px) {
  .sign-up__info {
    width: 100%;
  }
}

.sign-up__address {
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  line-height: 19px;
}

.sign-up__phone {
  font-family: 'Montserrat-Bold';
  font-size: 16px;
  margin-top: 20px;
}

.sign-up__form-header {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  color: #212121;
  width: 300px;
  margin: auto;
  padding-bottom: 20px;
}

@media screen and (max-width: 420px) {
  .sign-up__form-header {
    font-size: 18px;
    text-align: center;
    padding-top: 30px;
  }
}

.sign-up__input {
  width: 100%;
  border: 1px #212121 solid;
  outline: none;
  height: 60px;
  margin-bottom: 30px;
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  padding: 0 10px;
}

@media screen and (max-width: 420px) {
  .sign-up__input {
    font-size: 14px;
    height: 50px;
  }
}

.sign-up__btn {
  border: none;
  width: 100%;
  height: 60px;
}

@media screen and (max-width: 420px) {
  .sign-up__btn {
    font-size: 14px;
    height: 50px;
  }
}

.sign-up input::placeholder {
  font-family: 'Montserrat-Medium';
  color: #BDBDBD;
  font-size: 16px;
}

.footer {
  background: #212121;
  min-height: 280px;
  padding-top: 75px;
  margin-top:auto; 
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}
/*
@media screen and (max-width: 565px) {
  .footer {
    min-height: 380px;
  }
}
*/
@media screen and (max-width: 670px) {
  .footer {
    min-height: 460px;
  }
}

@media screen and (max-width: 349px) {
  .footer {
    min-height: 520px;
  }
}

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

@media screen and (max-width: 1024px) {
  .footer__container {
    flex-wrap: wrap;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  height: 56px;
  order: 1;
  width: 100px;
}

@media screen and (max-width: 670px) {
  .footer__logo {
    width: 100%;
    margin-bottom: 40px;
  }
}

.footer__logo-text {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  color: #FDFEFF;
  margin-left: 10px;
  width: 100px;
}

.footer__site-map {
  width: 130px;
  height: 135px;
  order: 2;
}

@media screen and (max-width: 670px) {
  .footer__site-map {
    height: 150px;
  }
}

.footer__site-map-item {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  line-height: 25px;
  color: #FDFEFF;
}

.footer__site-map-item:hover {
  color: #FFD700;
}

.footer__shedule {
  width: 200px;
  height: 50px;
  order: 3;
}

@media screen and (max-width: 349px) {
  .footer__shedule {
    margin-top: 20px;
  }
}

.footer__shedule-item {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  line-height: 25px;
  color: #FDFEFF;
}

.footer__shedule-item:hover {
  color: #FFD700;
}

.footer__contacts {
  width: 140px;
  height: 50px;
  order: 4;
}

@media screen and (max-width: 1024px) {
  .footer__contacts {
    order: 5;
    width: 100%;
    text-align: right;
  }
}

@media screen and (max-width: 670px) {
  .footer__contacts {
    order: 4;
    width: 85%;
    padding-top: 53px;
    margin-top: 10px;
  }
}

.footer__contacts-item {
  text-decoration: none;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  line-height: 25px;
  color: #FDFEFF;
}

.footer__social-networks {
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  order: 5;
}

@media screen and (max-width: 1024px) {
  .footer__social-networks {
    order: 4;
  }
}

@media screen and (max-width: 670px) {
  .footer__social-networks {
    order: 5;
    padding-top: 60px;
  }
}

.footer__social-icon {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .footer__social-icon {
    cursor: auto;
  }
}

/* далее стилизация выпадающих списков*/
.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  border: 1px #212121 solid;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  padding: 0 10px;
}

@media screen and (max-width: 420px) {
  .select-selected {
    font-size: 14px;
    height: 50px;
  }
}

/*стрелка внутри заголовка выпадающего меню*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-3px);
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #212121 transparent transparent transparent;
}

/*разворот стрелки вверх, когда меню активно:*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #212121 transparent;
  top: 50%;
  transform: translateY(-12px);
}

.select-items div {
  color: #212121;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px #21212144 solid;
  height: 60px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  padding: 0 10px;
}

@media screen and (max-width: 420px) {
  .select-items div {
    font-size: 14px;
    height: 50px;
  }
}

.select-items {
  position: absolute;
  background-color: #fafafa;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: #FFD700;
}

.calendar-title {
  font-family: 'Montserrat-Bold';
  font-size: 28px;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .calendar-title {
    margin-top: 0;
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  .calendar-title {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.calendar-title__year {
  color: #212121;
}

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

@media screen and (max-width: 700px) {
  .activity__box {
    display: none;
  }
}

.activity__item {
  display: block;
  text-decoration: none;
  background: #D2D2D2;
  padding: 12px 0;
  width: 19%;
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  color: #5f5f5f;
  text-align: center;
}

.activity__item_active {
  background: #FFD700;
  color: #212121;
}

.activity__item:hover {
  background: #FFD700;
  color: #212121;
}

.activity__item:active {
  background: #FFD700;
  color: #212121;
}

@media screen and (max-width: 1024px) {
  .activity__item {
    font-size: 12px;
  }
}

.activity__mobile-box {
  display: none;
}

@media screen and (max-width: 700px) {
  .activity__mobile-box {
    display: block;
  }
}

.activity__submit-btn {
  position: absolute;
  top: 80px;
  height: 46px;
  width: 100%;
  border: none;
}

@media screen and (max-width: 420px) {
  .activity__submit-btn {
    top: 70px;
  }
}

.month {
  margin: 40px 0;
}

.month__box {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  background: #FDFEFF;
}

@media screen and (max-width: 700px) {
  .month__box {
    display: none;
  }
}

.month__item {
  text-decoration: none;
  display: block;
  flex: 1;
  height: 30px;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  color: #212121;
  border-right: 1px solid #E5E5E5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.month__item:hover {
  background: #FFD700;
}

.month__item:active {
  background: #FFD700;
}

@media screen and (max-width: 1024px) {
  .month__item {
    font-size: 12px;
  }
}

@media screen and (max-width: 900px) {
  .month__item {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .month__item {
    min-width: 25%;
  }
}

.month__item:nth-child(12) {
  border-right: none;
}

@media screen and (max-width: 767px) {
  .month__item:nth-child(4) {
    border-right: none;
  }
}

@media screen and (max-width: 767px) {
  .month__item:nth-child(8) {
    border-right: none;
  }
}

.competitions {
  font-family: 'Montserrat-Medium';
  font-size: 14px;
  color: #212121;
  margin: 50px 0;
}

@media screen and (max-width: 768px) {
  .competitions {
    font-size: 12px;
  }
}

@media screen and (max-width: 700px) {
  .competitions {
    margin-top: 80px;
  }
}

.competitions__item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 10px;
  align-items: center;
  
}

@media screen and (max-width: 550px) {
  .competitions__item {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.competitions__date {
  min-width: 120px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #FFD700;
}

@media screen and (max-width: 550px) {
  .competitions__date {
    order: 2;
    min-width: 30%;
    margin-right: 0;
  }
}

.competitions__title {
  padding-right: 40px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .competitions__title {
    padding-right: 20px;
  }
}

@media screen and (max-width: 550px) {
  .competitions__title {
    order: 3;
    width: 70%;
    padding-left: 20px;
  }
}

.competitions__place {
  min-width: 150px;
  text-align: right;
}

@media screen and (max-width: 550px) {
  .competitions__place {
    order: 1;
    min-width: 100%;
    margin-bottom: 10px;
    text-align: left;
  }
}

.mt-50 {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .mt-50 {
    margin-top: 0;
  }
}

.shedule-title {
  font-size: 28px;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
  .shedule-title-first {
    margin-top: 120px;
  }
  .shedule-title {
    font-size: 21px;
  }
}

.coaching-staff__box {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .coaching-staff__box {
    justify-content: space-between;
  }
}

.coaching-staff__photo {
  width: 170px;
  height: 170px;
  background: #212121;
  border-radius: 170px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coaching-staff__photo img {
  width: 100%;
  height: 100%;
}

.coaching-staff__item {
  width: 100%;
  margin-bottom: 30px;
}

.coaching-staff__name {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  color: #212121;
  line-height: 32px;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .coaching-staff__name {
    font-size: 18px;
  }
}

.coaching-staff__description {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  color: #212121;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .coaching-staff__description {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .coaching-staff__description {
    font-size: 12px;
  }
}

.shedule__header {
  display: flex;
}

.shedule__header-item {
  font-family: 'Montserrat-Bold';
  font-size: 18px;
  color: #212121;
  padding: 20px 20px 20px 0;
}

.shedule__header-item:nth-child(1) {
  width: 150px;
}

.shedule__header-item:nth-child(2) {
  width: 150px;
}

.shedule__header-item:nth-child(3) {
  width: 150px;
}

@media screen and (max-width: 1024px) {
  .shedule__header-item {
    font-size: 16px;
  }
}

.shedule__row {
  display: flex;
}

.shedule__row-item {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  color: #212121;
  line-height: 24px;
  padding: 10px 10px 10px 0;
}

.shedule__row-item:nth-child(1) {
  width: 150px;
}

.shedule__row-item:nth-child(2) {
  width: 150px;
}

.shedule__row-item:nth-child(3) {
  width: 150px;
}

@media screen and (max-width: 1024px) {
  .shedule__row-item {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .shedule__header-item:nth-child(1) {
    width: 30%;
  }
  
  .shedule__header-item:nth-child(2) {
    width: 20%;
  }
  
  .shedule__header-item:nth-child(3) {
    width: 50%;
  }
  .shedule__row-item:nth-child(1) {
    width: 30%;
  }
  
  .shedule__row-item:nth-child(2) {
    width: 20%;
  }
  
  .shedule__row-item:nth-child(3) {
    width: 50%;
  }
  .shedule__header-item {
    font-size: 12px;
  }
  .shedule__row-item {
    font-size: 12px;
  }
}

.shedule__row-item div {
  width: 100%;
}


/*Стили админки*/

.admin-page {
  background-color: #e0e0e0;
  position: fixed;
  width: 100%;
  height: 100%;
}

.admin-form {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.admin-form__input {
  width: 100%;
  height: 40px;
  outline: none;
  border: 1px solid #333333;
  margin-bottom: 15px;
  padding: 0 15px;
}

.admin-form__textarea {
  width: 100%;
  height: 200px;
  outline: none;
  border: 1px solid #333333;
  margin-bottom: 15px;
  padding: 15px;
  resize: none;
  font-family: Arial;
  font-size: 14px;
}

.news-tex-add-area {
  width: 100%;
  height: 100px;
  outline: none;
  border: 1px solid #333333;
  margin-bottom: 15px;
  padding: 10px;
  font-family: Arial;
  font-size: 14px;
  overflow-y: scroll;
}

.admin-form__textarea::placeholder {
  font-family: Arial;
  font-size: 14px;
}

.admin-form__submit-btn {
  width: 100%;
  height: 40px;
  background-color: #333333;
  color: #fafafa;
  border: none;
}

.admin-form__submit-btn:hover {
  background-color: #555555;
  cursor: pointer;
}

.alert-warning {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: 5px 0;
}

.admin-menu-panel {
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.admin-menu-panel_btn {
  display: flex;
  text-decoration: none;
  color: #fafafa;
  font-family: Calibri;
  font-size: 16px;
  text-align: center;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.admin-menu-panel__to-site-btn {
  width: 200px;
}

.admin-menu-panel__logout-btn {
  width: 100px;
}

.admin-menu-panel_btn:hover {
  background-color: #555555;
}

.admin-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 200px;
  background-color: #e0e0e0;
  padding-top: 60px;
}

.admin-nav__btn {
  display: flex;
  width: 100%;
  height: 40px;
  text-decoration: none;
  color: #333333;
  font-family: Calibri;
  font-size: 16px;
  padding: 0 5px;
  align-items: center;
}

.admin-nav__btn:hover {
  background-color: #333333;
  color: #fafafa;
}

.admin-content {
  padding: 20px 20px 0 220px;
}

.admin-content__header {
  font-family: Calibri;
  font-size: 25px;
  color: #333333;
  margin-bottom: 20px;
}

.add-form {
  width: 500px;
  margin-bottom: 50px;
}

.admin-content__shedule {
  font-family: Calibri;
  font-size: 16px;
  color: #333333;
  border-collapse: collapse;
  max-width: 100%;
}

.admin-content__shedule th{
  background-color: #333333;
  color: #fafafa;
  padding: 10px;
  border: 1px #333333 solid;
}

.admin-content__shedule td{
  padding: 10px;
  border: 1px #333333 dashed;
  text-align: center;
}

.admin-form-edit-del-btn {
  text-decoration: none;
  background-color: #e0e0e0;
  color: #212121;
  border: 1px #333333 solid;
  border-radius: 3px;
  padding: 1px 3px;
  font-size: 14px;
  cursor: pointer;
}

.admin-form-edit-del-btn:hover {
  background-color: #e69172;
}

.admin-content__coach-photo {
  max-width: 120px;
}

.current-category {
  user-select: none;
  opacity: 0;
}

.add-news-text-btn {
  background-color: #349755;
  color: #fafafa;
  font-family: Arial;
  font-size: 14px;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
}

.add-news-text-btn:hover {
  background-color: #45a866;
}

.add-news-img-btn {
  background-color: #349755;
  color: #fafafa;
  font-family: Arial;
  font-size: 14px;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
}

.add-news-img-btn:hover {
  background-color: #45a866;
}

.p-del-btn {
  background-color: #ac493c;
  color: #fafafa;
  font-family: Arial;
  margin-bottom: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-del-btn div {
  width: 10px;
  height: 2px;
  background-color: #fafafa;
}

.admin-form__input_file {
  font-family: Arial;
  font-size: 14px;
  margin-bottom: 20px;
}

label {
  font-family: Arial;
  font-size: 14px;
}

.photo-preview {
  border: #212121 1px solid;
  width: 250px;
  height: 250px;
  margin-left: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-preview__image {
  height: 100%;
}

.admin-img-preview {
  width: 200px;
}

.add-form-flex {
  display: flex;
  position: relative;
}

.error, .sended {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
}

.error__container, .sended__container {
  width: 300px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.error__404 {
  font-family: 'Montserrat-Bold';
  color: #212121;
  font-size: 120px;
  text-align: center;
}

.error__text {
  font-family: 'Montserrat-Bold';
  color: #212121;
  font-size: 14px;
  text-align: center;
}

.sended__title {
  font-family: 'Montserrat-Bold';
  color: #212121;
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
}

.sended__back {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  width: 200px;
  height: 40px;
  background-color: #212121;
  text-decoration: none;
  color: #fafafa;
  font-family: 'Montserrat-Regular';
  margin: auto;
}

.sended__back:hover {
  background-color: #414141;
}

.admin-btn {
  width: 150px;
  height: 40px;
  background-color: #333333;
  color: #fafafa;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Calibri;
  font-size: 16px;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}

.admin-btn:hover {
  background-color: #555555;
  cursor: pointer;
}

.mini-img-box-container {
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-img-box-container button {
  margin-top: 1px;
  width: 150px;
}

.images-box {
  display: flex;
  flex-wrap: wrap;
}

.mini-img-box {
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-img {
  height: 100%;
}

.select-img-box {
  background-color: #d4d4d4;
  width: 100%;
  height: 600px;
  filter: drop-shadow(0 0 5px #292929);
  overflow-y: scroll;
  padding: 10px;
  margin-top: 5px;
}

.news-preview-img-select, .news-main-img-select {
  position: absolute;
  z-index: 5;
  background-color: #d4d4d4;
  width: 100%;
  height: 500px;
  filter: drop-shadow(0 0 5px #292929);
  overflow-y: scroll;
  padding: 10px;
  top: 330px;
  left: 0;
}

.preview-img-box {
  display: flex;
  flex-direction: column;
}

.choose-preview-btn {
  width: 250px;
  margin: 10px 0 0 20px;
}

.news-preview-img-select-closer {
  width: 70px;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 230px;
  right: 0;
  filter: drop-shadow(0 0 5px #292929);
}

.news-preview-img-select-closer img {
  width: 70px;
}

.news-add-img {
  max-width: 100%;
}


.full-news-text {
  padding: 30px 0 0 0;
}

.full-news-text__title {
  font-family: 'Montserrat-Bold';
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
}

.full-news-text .news-paragraph {
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  margin: 20px 0;
}

.news-back-btn {
  width: 150px;
  height: 40px;
  background-color: #333333;
  color: #fafafa;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Calibri;
  font-size: 16px;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 80px;
}

.news-back-btn:hover {
  background-color: #555555;
  cursor: pointer;
}

@media screen and (max-width: 420px) {
  .news-back-btn {
    width: 100%;
  }
}

.del-file-message {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.add-from-flex {
  display: flex;
}

.cancel-btn {
  width: 100%;
  margin-top: 10px;
}

.font-white {
  color: #FDFEFF;
}

.bgc-white {
  background-color: #FDFEFF;
}

.mb-0 {
  margin: 0 0 0 0;
}

.hide {
  display: none;
}


/*# sourceMappingURL=style.css.map */