:root {
  --font-family: "Montserrat";
  --content-width: 1350px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --primary: #333333;
  --secondary: #FF8B2E;
  --dark: #111111;
  --darkGray: #AFAFAF;
  --lightGray: #F8F8F8;
  --whiteColor: #ffffff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: white;
}
.all_pages ul {
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 55%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}
.all_pages ul li a:hover {
  text-decoration: underline;
}

body.active {
  overflow: hidden;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  position: relative;
  color: var(--primary);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.btn-outline {
  border: 2px solid var(--secondary);
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  padding: 5px 38px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 30px;
}
.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--whiteColor);
}
@media (max-width: 1200px) {
  .btn-outline {
    font-size: 15px;
  }
}

.btn {
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--whiteColor);
  padding: 5px 32px;
  line-height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
@media (max-width: 1200px) {
  .btn {
    font-size: 15px;
  }
}

.burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--primary);
  background-color: transparent;
  cursor: pointer;
  display: none;
  z-index: 100;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
}
.title {
  font-weight: 900;
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 768px) {
  .title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.white-theme .header .logo-dark {
  display: none;
}
.white-theme .header .logo-white {
  display: block;
}
.white-theme .header .nav-menu > ul > li > a {
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .white-theme .header .nav-menu > ul > li > a {
    color: var(--primary);
  }
}
.white-theme .header .nav-menu > ul > li > a:after {
  background-color: var(--whiteColor);
}
.white-theme .header__btns .btn-outline {
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .white-theme .header__btns .btn-outline {
    color: var(--primary);
  }
  .white-theme .header__btns .btn-outline:hover {
    color: var(--whiteColor);
  }
}
.white-theme .header__btns .btn:hover {
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .white-theme .header__btns .btn:hover {
    color: var(--primary);
  }
}
.white-theme .header .burger {
  color: var(--whiteColor);
}
.white-theme .header .burger--active {
  color: var(--primary);
}
.white-theme .header.backgroundWhite {
  background-color: rgba(0, 0, 0, 0.7);
}

.header {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 99;
}
.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  position: relative;
  z-index: 99;
}
.header__logo .logo-white {
  display: none;
}
@media (max-width: 480px) {
  .header__logo img {
    max-width: 80%;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.header__btns {
  margin-left: 60px;
}
@media (max-width: 992px) {
  .header__btns {
    position: fixed;
    left: 0;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__btns.active {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .header__btns {
    -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;
  }
}
.header__btn-outline {
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .header__btn-outline {
    padding: 5px 20px;
  }
}
@media (max-width: 992px) {
  .header__btn-outline {
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .header__btn-outline {
    width: 90%;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0;
    line-height: 120%;
  }
}
@media (max-width: 1200px) {
  .header__btn {
    padding: 5px 20px;
  }
}
@media (max-width: 992px) {
  .header__btn {
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .header__btn {
    width: 90%;
    text-align: center;
    line-height: 120%;
  }
}
.header .nav-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 100;
}
@media (max-width: 992px) {
  .header .nav-menu > ul {
    width: 100%;
    height: 100vh;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: var(--lightGray);
    display: none;
  }
}
.header .nav-menu > ul > li {
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .header .nav-menu > ul > li {
    margin-right: 20px;
  }
}
.header .nav-menu > ul > li:last-child {
  margin-right: 0;
}
.header .nav-menu > ul > li > a {
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}
@media (max-width: 1200px) {
  .header .nav-menu > ul > li > a {
    font-size: 15px;
  }
}
.header .nav-menu > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header .nav-menu > ul > li > a:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 992px) {
  .header .nav-menu.menu--active > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 992px) {
  .header .nav-menu > ul {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -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;
  }
  .header .nav-menu > ul > li {
    margin: 0;
    margin-bottom: 15px;
  }
  .header .nav-menu > ul > li:last-child {
    margin-bottom: 0;
  }
  .header .nav-menu > ul > li > a {
    font-size: 25px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .header .nav-menu > ul > li > a {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .header .nav-menu > ul > li > a:hover:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
}
.header.backgroundWhite {
  background-color: var(--whiteColor);
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-profile__prof {
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1400px) {
  .header-profile__prof {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .header-profile__prof {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.header-profile__avatar {
  cursor: pointer;
}
@media (max-width: 576px) {
  .header-profile__avatar img {
    width: 40px;
    height: 40px;
  }
}
.header-profile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.header-profile__profile {
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}
.header-profile__profile:after {
  content: "";
  position: absolute;
  top: 8px;
  right: -20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid var(--primary);
  border-left: none;
  border-top: none;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .header-profile__profile:after {
    right: 5px;
    width: 6px;
    height: 6px;
  }
}
.header-profile__profile.open:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 11px;
}
@media (max-width: 576px) {
  .header-profile__profile {
    font-size: 0;
  }
}
.header-profile__list {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--whiteColor);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  width: 110px;
  text-align: center;
  border-radius: 8px;
  display: none;
}
@media (max-width: 576px) {
  .header-profile__list {
    left: -65px;
  }
}
.header-profile__list > li {
  width: 100%;
  padding: 6px 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-profile__list > li:first-child {
  border-radius: 8px 8px 0 0;
}
.header-profile__list > li:last-child {
  margin-bottom: 0;
  border-radius: 0 0 8px 8px;
}
.header-profile__list > li:hover {
  background-color: #f7e3d2;
}
.header-profile__list > li > a {
  text-transform: uppercase;
  color: var(--primary);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: block;
  text-transform: capitalize;
}
.header-profile__list.open {
  display: block;
}

.promo {
  padding-top: 330px;
  padding-bottom: 340px;
  text-align: center;
  background-image: url("../img/bg-home.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1400px) {
  .promo {
    padding-top: 250px;
    padding-bottom: 250px;
  }
}
@media (max-width: 768px) {
  .promo {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.promo__title {
  font-weight: 900;
  font-size: 60px;
  line-height: 80px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .promo__title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 576px) {
  .promo__title {
    font-size: 35px;
    line-height: 45px;
  }
}
.promo__subtitle {
  max-width: 712px;
  margin: 20px auto 0 auto;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .promo__subtitle {
    font-size: 20px;
    line-height: 25px;
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .promo__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.promo__btn {
  padding: 10px 85px;
  margin-top: 40px;
  display: inline-block;
  border-radius: 25px;
}
.promo__btn:hover {
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .promo__btn {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .promo__btn {
    padding: 10px 50px;
  }
}

.cat {
  padding-top: 150px;
  padding-bottom: 160px;
}
@media (max-width: 1200px) {
  .cat {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .cat {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .cat {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cat__title {
  text-align: center;
}
.cat__subtitle {
  max-width: 1120px;
  margin: 20px auto 0 auto;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 576px) {
  .cat__subtitle {
    font-size: 14px;
  }
}
.cat__items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .cat__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cat__items {
    margin-top: 35px;
  }
}
.cat__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 430px;
  flex: 0 1 430px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.cat__item:hover .cat__img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .cat__item:hover .cat__img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.cat__item:hover .cat__name {
  color: var(--secondary);
  background-image: url("../img/arrow-cat-hover.svg");
  background-size: 24px 17px;
  background-repeat: no-repeat;
  background-position: 100% center;
}
@media (max-width: 1200px) {
  .cat__item:hover .cat__name {
    background-size: 20px 15px;
  }
}
@media (max-width: 992px) {
  .cat__item:hover .cat__name {
    background-size: 17px 13px;
  }
}
.cat__img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cat__content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  .cat__content {
    left: 20px;
    bottom: 20px;
    height: 90px;
  }
}
@media (max-width: 992px) {
  .cat__content {
    left: 15px;
    bottom: 15px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .cat__content {
    height: 70px;
  }
}
.cat__name {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--whiteColor);
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  display: inline-block;
  padding-right: 35px;
}
@media (max-width: 1200px) {
  .cat__name {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 992px) {
  .cat__name {
    font-size: 15px;
    line-height: 20px;
    margin-top: auto;
  }
}
@media (max-width: 768px) {
  .cat__name {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .cat__name {
    font-size: 15px;
  }
}
.cat__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--whiteColor);
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .cat__text {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .cat__text {
    font-size: 10px;
    line-height: 13px;
  }
}
@media (max-width: 768px) {
  .cat__text {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 576px) {
  .cat__text {
    font-size: 12px;
    line-height: 15px;
  }
}

.perf-class {
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .perf-class {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .perf-class {
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .perf-class {
    padding-bottom: 40px;
  }
}
.perf-class__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .perf-class__wrap {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
}
.perf-class__item:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 545px;
  flex: 0 1 545px;
}
@media (max-width: 1400px) {
  .perf-class__item:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 38%;
    flex: 0 1 38%;
  }
}
@media (max-width: 992px) {
  .perf-class__item:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
    margin-top: 40px;
  }
}
.perf-class__item:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 660px;
  flex: 0 1 660px;
}
@media (max-width: 1400px) {
  .perf-class__item:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 58%;
    flex: 0 1 58%;
  }
}
@media (max-width: 992px) {
  .perf-class__item:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 992px) {
  .perf-class__title {
    text-align: center;
  }
}
.perf-class__text {
  margin-top: 20px;
}
.perf-class__text p {
  line-height: 26px;
}
@media (max-width: 1200px) {
  .perf-class__text p {
    font-size: 15px;
  }
}
.perf-class__btn {
  margin-top: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 992px) {
  .perf-class__btn {
    margin: 30px auto 0 auto;
  }
}

.teacher {
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .teacher {
    padding-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .teacher__title {
    text-align: center;
  }
}
.teacher__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .teacher__items {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .teacher__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.teacher__item {
  cursor: pointer;
}
.teacher__img {
  overflow: hidden;
}
.teacher__img img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.teacher__img img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.teacher__descr {
  margin-top: 15px;
}
.teacher__name {
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
}
.teacher__prof {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
}

.teacher2 {
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .teacher2 {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .teacher2 {
    padding-bottom: 40px;
  }
}
.teacher2__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .teacher2__wrap {
    gap: 0;
  }
}
.teacher2__item:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
}
@media (max-width: 768px) {
  .teacher2__item:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.teacher2__item:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}
@media (max-width: 768px) {
  .teacher2__item:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 0%;
    flex: 0 1 0%;
  }
}
.teacher2__text {
  margin-top: 2px;
}
.teacher2__text p {
  font-weight: 400;
  line-height: 26px;
}
.teacher2__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .teacher2__img img {
    display: none;
  }
}

.join {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--lightGray);
}
@media (max-width: 576px) {
  .join {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.join__title {
  text-align: center;
}
.join__subtitle {
  text-align: center;
  line-height: 26px;
  margin-top: 30px;
}
.join__items {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.join__items:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .join__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.join__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding: 60px 30px 50px 60px;
  background-color: var(--whiteColor);
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px) {
  .join__item {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .join__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 576px) {
  .join__item {
    padding: 30px 15px;
  }
}
.join__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .join__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.join__prices {
  margin-right: 70px;
}
@media (max-width: 1200px) {
  .join__prices {
    margin-right: 40px;
  }
}
.join__month {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
}
.join__price {
  font-weight: 900;
  font-size: 48px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--secondary);
}
@media (max-width: 992px) {
  .join__price {
    text-align: center;
  }
}
.join__price span {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
  display: block;
  text-align: center;
}
.join__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.join__list > li {
  padding-left: 20px;
  background-image: url("../img/bird-join.png");
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 10px;
}
.join__list > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .join__list {
    margin-top: 20px;
  }
}
.join__btn {
  margin: 40px auto 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.members {
  padding-top: 100px;
  padding-bottom: 200px;
  background-color: var(--lightGray);
}
@media (max-width: 992px) {
  .members {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .members {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.members .swiper-wrapper {
  padding-bottom: 65px;
  padding-top: 15px;
}
@media (max-width: 576px) {
  .members .swiper-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.members__title {
  text-align: center;
}
.members__slider {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .members__slider {
    margin-top: 30px;
  }
}
.members__slide {
  width: 430px;
  height: auto;
  background-color: var(--whiteColor);
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .members__slide {
    max-width: 100% !important;
  }
}
@media (max-width: 576px) {
  .members__slide {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 14px;
    padding: 20px;
  }
}
.members__text {
  margin-top: 20px;
  line-height: 26px;
}
.members__author {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.members__img {
  margin-right: 15px;
}
.members__name {
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
}
.members .swiper-pagination-bullet {
  width: 40px;
  height: 8px;
  background: #a9a8a8;
  border-radius: 0;
}
.members .swiper-pagination-bullet-active {
  width: 80px;
  height: 8px;
  background: var(--secondary);
}
.members .swiper-pagination {
  bottom: -5px;
}
@media (max-width: 576px) {
  .members .swiper-pagination {
    display: none;
  }
}
.members .swiper-slide-active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  .members .swiper-slide-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.info {
  background-color: #FFE2CB;
}
@media (max-width: 768px) {
  .info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}
@media (max-width: 768px) {
  .info__wrap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .info__wrap {
    gap: 30px;
  }
}
.info__item {
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
}
@media (max-width: 768px) {
  .info__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 48%;
    flex: 0 1 48%;
  }
}
@media (max-width: 576px) {
  .info__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.info__img {
  height: 120px;
  width: 120px;
  background-color: var(--whiteColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.info__name {
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .info__name {
    height: 60px;
  }
}
@media (max-width: 576px) {
  .info__name {
    height: auto;
  }
}
.info__descr {
  margin-top: 10px;
  line-height: 26px;
}

.connected {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--darkGray);
}
.connected__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .connected__wrap {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .connected__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.connected__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 768px) {
  .connected__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.connected__name {
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--whiteColor);
}
@media (max-width: 576px) {
  .connected__name {
    font-size: 20px;
    line-height: 25px;
  }
}
.connected__descr {
  font-weight: 600;
  line-height: 30px;
  color: var(--whiteColor);
}
@media (max-width: 576px) {
  .connected__descr {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }
}
.connected .form-connected {
  position: relative;
}
.connected .form-connected input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid var(--whiteColor);
  opacity: 0.5;
  padding: 10px;
  color: var(--whiteColor);
  font-weight: 600;
}
.connected .form-connected input::-webkit-input-placeholder {
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 400;
}
.connected .form-connected input::-moz-placeholder {
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 400;
}
.connected .form-connected input:-ms-input-placeholder {
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 400;
}
.connected .form-connected input::-ms-input-placeholder {
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 400;
}
.connected .form-connected input::placeholder {
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 400;
}
.connected .form-connected__btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 16px;
  background-image: url("../img/arrow-connected-form.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.connected .form-connected__btn:hover {
  right: -5px;
}

.footer {
  background-color: var(--dark);
  position: relative;
  z-index: 10;
}
.footer .logo-footer img {
  max-width: 80%;
}
.footer__top {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .footer__top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu > li {
  margin-right: 30px;
}
.footer__menu > li:last-child {
  margin-right: 0;
}
@media (max-width: 992px) {
  .footer__menu > li {
    margin-right: 15px;
  }
}
@media (max-width: 576px) {
  .footer__menu > li {
    margin-right: 0px;
  }
}
.footer__menu > li > a {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--whiteColor);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__menu > li > a:hover {
  color: var(--secondary);
}
@media (max-width: 992px) {
  .footer__menu > li > a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #333333;
}
@media (max-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .footer__bottom {
    text-align: center;
  }
}
.footer__copy {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 576px) {
  .footer__copy {
    font-size: 12px;
  }
}
.footer__copy a {
  color: var(--whiteColor);
}
.footer__copy a:hover {
  text-decoration: underline;
}
.footer__links a {
  font-size: 14px;
  line-height: 20px;
  color: var(--whiteColor);
  margin-right: 15px;
}
.footer__links a:last-child {
  margin-right: 0;
}
.footer__links a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .footer__links a {
    font-size: 12px;
  }
}
.footer .footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer .footer-social__link img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0.7;
}
.footer .footer-social__link img:hover {
  opacity: 1;
}

.create, .signin, .contact {
  padding-top: 250px;
  padding-bottom: 160px;
  background-color: var(--lightGray);
}
@media (max-width: 1200px) {
  .create, .signin, .contact {
    padding-top: 160px;
  }
}
@media (max-width: 992px) {
  .create, .signin, .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .create, .signin, .contact {
    padding-bottom: 50px;
  }
}
.create h2, .signin h2, .contact h2 {
  margin: 0;
}
.create__wrap, .signin__wrap, .contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1200px) {
  .create__wrap, .signin__wrap, .contact__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.create__left, .signin__left, .contact__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 1200px) {
  .create__left, .signin__left, .contact__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.create__form, .signin__form, .contact__form {
  width: 545px;
  margin-top: 55px;
}
.create__form input, .signin__form input, .contact__form input {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #cccccc;
  padding: 9px 0;
  background-color: transparent;
  margin-bottom: 30px;
  font-size: 16px;
}
.create__form input::-webkit-input-placeholder, .signin__form input::-webkit-input-placeholder, .contact__form input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.create__form input::-moz-placeholder, .signin__form input::-moz-placeholder, .contact__form input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.create__form input:-ms-input-placeholder, .signin__form input:-ms-input-placeholder, .contact__form input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.create__form input::-ms-input-placeholder, .signin__form input::-ms-input-placeholder, .contact__form input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.create__form input::placeholder, .signin__form input::placeholder, .contact__form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.create__form input[type=checkbox], .signin__form input[type=checkbox], .contact__form input[type=checkbox] {
  display: inline;
  width: auto;
  opacity: 1;
  margin: 0;
  margin-right: 5px;
}
.create__form input[type=submit], .signin__form input[type=submit], .contact__form input[type=submit] {
  border: 2px solid var(--secondary);
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  padding: 5px 38px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 30px;
}
.create__form input[type=submit]:hover, .signin__form input[type=submit]:hover, .contact__form input[type=submit]:hover {
  background-color: var(--secondary);
  color: var(--whiteColor);
}
@media (max-width: 1200px) {
  .create__form input[type=submit], .signin__form input[type=submit], .contact__form input[type=submit] {
    font-size: 15px;
  }
}
.create__form label, .signin__form label, .contact__form label {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
}
.create__form label.custom-checkbox, .signin__form label.custom-checkbox, .contact__form label.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  font-size: 14px;
  line-height: 20px;
}
.create__form label.custom-checkbox a, .signin__form label.custom-checkbox a, .contact__form label.custom-checkbox a {
  color: var(--secondary);
  display: block;
  margin-left: 5px;
}
.create__form label.custom-checkbox a:hover, .signin__form label.custom-checkbox a:hover, .contact__form label.custom-checkbox a:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .create__form, .signin__form, .contact__form {
    width: 100%;
  }
}
.create__btn, .signin__btn, .contact__btn {
  display: block;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .create__btn, .signin__btn, .contact__btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.create__link, .signin__link, .contact__link {
  font-size: 14px;
  line-height: 20px;
}
.create__link a, .signin__link a, .contact__link a {
  color: var(--secondary);
}
.create__link a:hover, .signin__link a:hover, .contact__link a:hover {
  text-decoration: underline;
}
.create__right, .signin__right, .contact__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 1200px) {
  .create__right, .signin__right, .contact__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.create__text, .signin__text, .contact__text {
  line-height: 26px;
}
.create .join__items, .signin .join__items, .contact .join__items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .create .join__items, .signin .join__items, .contact .join__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.create .join__item, .signin .join__item, .contact .join__item {
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .create .join__item, .signin .join__item, .contact .join__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .create .join__prices, .signin .join__prices, .contact .join__prices {
    margin-right: 15px;
  }
}
@media (max-width: 992px) {
  .create .join__prices, .signin .join__prices, .contact .join__prices {
    margin-right: 0;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .create .join__list, .signin .join__list, .contact .join__list {
    margin-top: 20px;
  }
}
.create .custom-checkbox, .signin .custom-checkbox, .contact .custom-checkbox {
  padding-left: 20px;
}
.create .custom-checkbox__field, .signin .custom-checkbox__field, .contact .custom-checkbox__field {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.create .custom-checkbox__content, .signin .custom-checkbox__content, .contact .custom-checkbox__content {
  position: absolute;
  width: 1em;
  height: 1em;
  opacity: 0.5;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
  margin-left: -20px;
}
.create .custom-checkbox__field:checked + .custom-checkbox__content, .signin .custom-checkbox__field:checked + .custom-checkbox__content, .contact .custom-checkbox__field:checked + .custom-checkbox__content {
  background-color: var(--secondary);
}
.create input[type=checkbox]:checked + span:after, .signin input[type=checkbox]:checked + span:after, .contact input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
}
.create input[type=checkbox]:checked + span:after, .signin input[type=checkbox]:checked + span:after, .contact input[type=checkbox]:checked + span:after {
  left: 1px;
  top: 2px;
  width: 10px;
  height: 6px;
  border-radius: 1px;
  border-left: 3px solid var(--whiteColor);
  border-bottom: 3px solid var(--whiteColor);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.signin {
  position: relative;
  padding-top: 100px;
  padding-bottom: 0;
  background-color: var(--lightGray);
}
.signin__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 75vh;
  min-height: 450px;
}
@media (max-width: 1200px) {
  .signin__wrap {
    display: block;
  }
}
.signin__title {
  text-align: center;
}
.signin__item {
  overflow: hidden;
  width: 50%;
}
.signin .signin__item_form {
  width: 545px;
  margin-top: 55px;
  margin-left: auto;
  margin-right: 125px;
}
@media (max-width: 1200px) {
  .signin .signin__item_form {
    width: 100%;
    max-width: 75vw;
    padding-right: 0;
    margin-left: 0;
    margin: 55px auto 0;
  }
}
@media (max-width: 768px) {
  .signin .signin__item_form {
    width: 50%;
    margin: 55px auto 0 auto;
  }
}
@media (max-width: 576px) {
  .signin .signin__item_form {
    width: 100%;
    margin-top: 30px;
  }
}
.signin .signin__item_form .signin__form {
  width: 100%;
}
.signin .signin__item_form .signin__form input[type=submit] {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .signin .signin__item_image {
    display: none;
  }
}
.signin__check-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.signin__forgott {
  font-size: 14px;
  line-height: 20px;
  color: var(--secondary);
}
.signin__forgott:hover {
  text-decoration: underline;
}
.signin__img img {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 450px;
}
@media (max-width: 768px) {
  .signin__img img {
    display: none;
  }
}

@media (max-width: 768px) {
  .create__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .create__btn {
    max-width: 100%;
  }
}

.contact {
  padding-top: 180px;
  padding-bottom: 100px;
  background-color: var(--lightGray);
}
@media (max-width: 768px) {
  .contact {
    padding-top: 130px;
    padding-bottom: 70px;
  }
}
.contact label span {
  color: red;
}
.contact__wrap {
  -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;
  max-width: 890px;
  margin: 0 auto;
  gap: 0;
}
.contact__title {
  text-align: center;
}
.contact__subtitle {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  margin-top: 15px;
}
.contact__form {
  margin-top: 40px;
}
.contact__select {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  outline: none;
  border: none;
  border-bottom: 1px solid #cccccc;
  background-color: transparent;
  padding: 9px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
}
.contact__select > option {
  background-color: #f7e3d2;
}
.contact textarea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #cccccc;
  height: 100px;
  background-color: transparent;
  resize: none;
  font-size: 16px;
}
.contact textarea::-webkit-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
  opacity: 0.5;
}
.contact textarea::-moz-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
  opacity: 0.5;
}
.contact textarea:-ms-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
  opacity: 0.5;
}
.contact textarea::-ms-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
  opacity: 0.5;
}
.contact textarea::placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary);
  opacity: 0.5;
}
.contact__btn {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 68px auto 0 auto;
}
@media (max-width: 768px) {
  .contact__btn {
    margin-top: 40px;
  }
}

.terms {
  padding-top: 180px;
  padding-bottom: 160px;
  background-color: var(--lightGray);
}
@media (max-width: 1200px) {
  .terms {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .terms {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .terms {
    padding-top: 80px;
  }
}
.terms h2 {
  text-align: center;
  margin-bottom: 85px;
  font-weight: 900;
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 992px) {
  .terms h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .terms h2 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .terms h2 {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 30px;
  }
}
.terms p {
  line-height: 26px;
}
.terms h3 {
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

.classes {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .classes {
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .classes {
    padding-bottom: 50px;
  }
}
.classes__wrap {
  margin-bottom: 65px;
}
@media (max-width: 992px) {
  .classes__wrap {
    margin-bottom: 45px;
  }
}

.head {
  text-align: center;
  background-color: var(--lightGray);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .head {
    padding: 40px 0;
  }
}

.filter {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .filter {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.filter__item label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .filter__item label {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .filter__item label {
    font-size: 0;
  }
}
.filter__select {
  margin-right: 60px;
  outline: none;
  border: none;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary);
  text-transform: uppercase;
  -webkit-background-color: transparent;
  -moz-background-color: transparent;
  -ms-background-color: transparent;
  background-color: transparent;
  cursor: pointer;
}
.filter__select > option {
  -webkit-background-color: #f7e3d2;
  -moz-background-color: #f7e3d2;
  -ms-background-color: #f7e3d2;
  background-color: #f7e3d2;
  font-weight: 600;
}
.filter__select:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .filter__select {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .filter__select {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .filter__select {
    font-size: 8px;
  }
}

.filtered {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .filtered {
    margin-bottom: 20px;
  }
}
.filtered span {
  background: #FFE2CB;
  border-radius: 10px;
  font-weight: 600;
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.filtered span:last-child {
  margin-right: 0;
}
.filtered span:hover {
  background: #eec29e;
}
@media (max-width: 576px) {
  .filtered span {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .filtered span {
    font-size: 8px;
  }
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  row-gap: 60px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .flex-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .flex-container {
    row-gap: 30px;
  }
}
.flex-container__item {
  width: calc(33.3333333333% - 30px);
}
@media (max-width: 992px) {
  .flex-container__item {
    width: calc(50% - 30px);
  }
}
@media (max-width: 575px) {
  .flex-container__item {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }
}
.flex-container__block {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.flex-container__block img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.flex-container__block:hover img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}
@media (max-width: 576px) {
  .flex-container__block {
    width: 100%;
    height: auto;
  }
}
.flex-container__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 13px;
  line-height: 20px;
  color: var(--whiteColor);
}
.flex-container__easy {
  position: absolute;
  left: 20px;
  bottom: 15px;
  padding-left: 15px;
  background-image: url("../img/status-bg.png");
  background-repeat: no-repeat;
  background-size: 8px 10px;
  background-position: left 5px;
}
.flex-container__time {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.flex-container__favorite {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.flex-container__name {
  margin-top: 18px;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
}
.flex-container__descr {
  font-size: 15px;
  line-height: 22px;
}
.flex-container .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .flex-container .play {
    max-width: 40px;
    height: auto;
  }
}

.pagination {
  text-align: center;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.page-numbers {
  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;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary);
  border: 2px solid var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.page-numbers:hover {
  background-color: var(--secondary);
}
@media (max-width: 576px) {
  .page-numbers {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}

.current {
  background-color: var(--secondary);
}

.dots {
  border: none;
}
.dots:hover {
  background-color: transparent;
}

.practice {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #FFE2CB;
}
.practice__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 344px;
}
@media (max-width: 1200px) {
  .practice__wrap {
    gap: 150px;
  }
}
@media (max-width: 992px) {
  .practice__wrap {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .practice__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.practice__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .practice__title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .practice__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.practice__subtitle {
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 768px) {
  .practice__subtitle {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .practice__subtitle {
    font-size: 14px;
  }
}
.practice__btn {
  padding: 10px 85px;
}
@media (max-width: 992px) {
  .practice__btn {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 576px) {
  .practice__btn {
    padding: 8px 25px;
  }
}

.one-class {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .one-class {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .one-class {
    padding-bottom: 50px;
  }
}
.one-class__block {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .one-class__block {
    max-width: 100%;
  }
}
.one-class__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 50px;
  grid-template-rows: 50px;
  grid-auto-rows: 50px;
  row-gap: 50px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .one-class__info {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .one-class__info {
    row-gap: 15px;
  }
}
@media (max-width: 576px) {
  .one-class__info {
    margin-top: 25px;
  }
}
.one-class__item {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  align-self: flex-end;
}
@media (max-width: 1200px) {
  .one-class__item:nth-child(1) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
  }
  .one-class__item:nth-child(2) {
    -ms-grid-column: 8;
    -ms-grid-column-span: 3;
    grid-column: 8/11;
  }
  .one-class__item:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
  }
  .one-class__item:nth-child(4) {
    -ms-grid-column: 8;
    -ms-grid-column-span: 3;
    grid-column: 8/11;
  }
}
@media (max-width: 992px) {
  .one-class__item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6;
  }
  .one-class__item:nth-child(2) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
    grid-column: 7/12;
  }
  .one-class__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6;
  }
  .one-class__item:nth-child(4) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
    grid-column: 7/12;
  }
}
@media (max-width: 768px) {
  .one-class__item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/7;
  }
  .one-class__item:nth-child(2) {
    -ms-grid-column: 8;
    -ms-grid-column-span: 5;
    grid-column: 8/13;
  }
  .one-class__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/7;
  }
  .one-class__item:nth-child(4) {
    -ms-grid-column: 8;
    -ms-grid-column-span: 5;
    grid-column: 8/13;
  }
}
@media (max-width: 480px) {
  .one-class__item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
  .one-class__item:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
  .one-class__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
  .one-class__item:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1/13;
  }
}
.one-class__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .one-class__wrapper {
    gap: 15px;
  }
}
.one-class__img img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .one-class__img img {
    max-width: 80%;
  }
}
.one-class__name {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 576px) {
  .one-class__name {
    font-size: 12px;
    line-height: 14px;
  }
}
.one-class__time {
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  margin-top: 5px;
}
@media (max-width: 576px) {
  .one-class__time {
    font-size: 16px;
    line-height: 18px;
  }
}
.one-class__text {
  font-size: 15px;
  line-height: 22px;
}
.one-class .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .one-class .play {
    max-width: 40px;
    height: auto;
  }
}
.one-class .locked {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.one-class .locked__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .one-class .locked__block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .one-class .locked__block {
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .one-class .locked__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .one-class .locked__img img {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .one-class .locked__img img {
    max-width: 70%;
  }
}
@media (max-width: 576px) {
  .one-class .locked__img img {
    max-width: 50%;
    margin-bottom: 5px;
  }
}
.one-class .locked__title {
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--whiteColor);
}
@media (max-width: 992px) {
  .one-class .locked__title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .one-class .locked__title {
    font-size: 17px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .one-class .locked__title {
    font-size: 11px;
    line-height: 13px;
  }
}
.one-class .locked__btn:hover {
  color: var(--whiteColor);
}
@media (max-width: 768px) {
  .one-class .locked__btn {
    padding: 3px 15px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .one-class .locked__btn {
    padding: 3px 3px;
    font-size: 8px;
  }
}

.tabs__header {
  padding: 40px 0;
  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;
}
@media (max-width: 992px) {
  .tabs__header {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .tabs__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.tabs__wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.tabs__wrapper .flex-container__item {
  width: 100%;
}
.tabs__item {
  margin-right: 40px;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.tabs__item:last-child {
  margin-right: 0;
}
.tabs__item:hover {
  color: var(--secondary);
}
.tabs__item.active {
  color: var(--secondary);
}
@media (max-width: 992px) {
  .tabs__item {
    font-size: 17px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .tabs__item {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .tabs__item:last-child {
    margin-bottom: 0;
  }
}
.tabs__info {
  display: none;
}
.tabs__info.active {
  display: block;
}
.tabs__info .classes {
  padding-top: 0;
  padding-bottom: 0;
}
.tabs__info .classes .flex-container__block {
  position: relative;
  width: 100%;
  height: auto;
}
.tabs__info .classes__wrap {
  row-gap: 30px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .tabs__info .classes__wrap {
    row-gap: 15px;
  }
}
.tabs__overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .tabs__overview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.tabs__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  font-size: 15px;
  line-height: 22px;
  padding: 30px;
}
@media (max-width: 992px) {
  .tabs__text {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .tabs__text {
    padding: 0;
    padding-bottom: 30px;
  }
}
.tabs .flex-container__block {
  position: relative;
  width: 100%;
  height: auto;
}
.tabs .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .tabs .play {
    max-width: 40px;
    height: auto;
  }
}

.filter-content {
  padding-bottom: 100px;
}
.filter-content .head span {
  display: inline-block;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  margin-left: 10px;
  cursor: pointer;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
@media (max-width: 576px) {
  .filter-content .head span {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@media (max-width: 768px) {
  .filter-content {
    padding-bottom: 50px;
  }
}
.filter-content .nav-filter {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .filter-content .nav-filter {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.filter-content .nav-filter > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .filter-content .nav-filter > ul {
    -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;
  }
}
.filter-content .nav-filter > ul > li {
  margin-right: 40px;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.filter-content .nav-filter > ul > li.active {
  color: var(--secondary);
}
.filter-content .nav-filter > ul > li:hover {
  color: var(--secondary);
}
.filter-content .nav-filter > ul > li:last-child {
  margin-right: 0;
}
@media (max-width: 992px) {
  .filter-content .nav-filter > ul > li {
    font-size: 17px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .filter-content .nav-filter > ul > li {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.filter-content .block-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}
.filter-content .block-cover:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .filter-content .block-cover {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.filter-content .box {
  width: calc(33.3333333333% - 30px);
  float: left;
}
@media (max-width: 992px) {
  .filter-content .box {
    width: calc(50% - 30px);
  }
}
@media (max-width: 575px) {
  .filter-content .box {
    width: 100%;
    max-width: 430px;
  }
}
.filter-content .box:last-child {
  margin-right: 0;
}
.filter-content .box.hide {
  display: none;
}
@media (max-width: 576px) {
  .filter-content .box {
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100%;
    padding: 0;
  }
}
.filter-content .box .flex-container__item {
  width: 100%;
  height: auto;
}
.filter-content .box .flex-container__block {
  position: relative;
  width: 100%;
  height: auto;
}
.filter-content .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .filter-content .play {
    max-width: 40px;
    height: auto;
  }
}

.recipes .flex-container__easy {
  background-image: url("../img/cutlery.svg");
  background-repeat: no-repeat;
  background-size: 9px 9px;
  background-position: left 6px;
}

.recipes-ind {
  padding-top: 100px;
  background-color: var(--lightGray);
}
.recipes-ind__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .recipes-ind__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.recipes-ind__wrap > img {
  margin-left: -285px;
  /* @media (max-width: 768px) {
    display: none;
  } */
}
@media (max-width: 1350px) {
  .recipes-ind__wrap > img {
    margin-left: -15px;
    height: auto;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .recipes-ind__wrap > img {
    max-width: 100%;
    margin-left: 0;
  }
}
.recipes-ind__item {
  padding: 60px;
}
@media (max-width: 1350px) {
  .recipes-ind__item {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .recipes-ind__item {
    padding: 0;
    padding-bottom: 40px;
  }
}
.recipes-ind__filter {
  margin-bottom: 15px;
}
.recipes-ind__addfavorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 15px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}
.recipes-ind__addfavorite img {
  cursor: pointer;
}
@media (max-width: 576px) {
  .recipes-ind__addfavorite {
    font-size: 14px;
  }
  .recipes-ind__addfavorite img {
    width: 20px;
    height: 20px;
  }
}
.recipes-ind__cooking {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .recipes-ind__cooking {
    margin-top: 25px;
  }
}
.recipes-ind__accordion {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .recipes-ind__accordion {
    margin-top: 25px;
  }
}
.recipes-ind .cooking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 10px;
}
@media (max-width: 1400px) {
  .recipes-ind .cooking {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .recipes-ind .cooking {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.recipes-ind .cooking__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.recipes-ind .cooking__item span {
  font-weight: 600;
}
.recipes-ind .cooking__item:first-child p {
  margin-bottom: 3px;
}
.recipes-ind .cooking__item:first-child p:last-child {
  margin-bottom: 0;
}
.recipes-ind .cooking__item p {
  margin: 0;
  padding: 0;
}
@media (max-width: 576px) {
  .recipes-ind .cooking__item:last-child {
    margin-bottom: 0;
  }
}
.recipes-ind .accordion__title {
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 1200px) {
  .recipes-ind .accordion__title {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .recipes-ind .accordion__title {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .recipes-ind .accordion__title {
    font-size: 12px;
  }
}
.recipes-ind .accordion__icon {
  position: relative;
}
.recipes-ind .accordion__icon:after {
  content: "";
  position: absolute;
  top: 0px;
  right: -25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 3px solid var(--primary);
  border-left: none;
  border-top: none;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .recipes-ind .accordion__icon:after {
    width: 6px;
    height: 6px;
    border-width: 2px;
    top: 5px;
    right: -20px;
  }
}
.recipes-ind .accordion__icon.open:after {
  -webkit-transform: rotate(225deg) translateY(-7px);
  -ms-transform: rotate(225deg) translateY(-7px);
  transform: rotate(225deg) translateY(-7px);
}
@media (max-width: 576px) {
  .recipes-ind .accordion__icon.open:after {
    top: 4px;
  }
}
.recipes-ind .accordion__content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.recipes-ind .accordion__content.open {
  opacity: 1;
  visibility: visible;
}
.recipes-ind .calories {
  padding-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1400px) {
  .recipes-ind .calories {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .recipes-ind .calories {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.recipes-ind .calories__item {
  width: 80px;
  height: 90px;
  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;
  background-color: var(--whiteColor);
  text-align: center;
}
@media (max-width: 576px) {
  .recipes-ind .calories__item {
    width: 60px;
    height: 70px;
  }
}
.recipes-ind .calories__name {
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
}
@media (max-width: 576px) {
  .recipes-ind .calories__name {
    font-size: 12px;
    line-height: 15px;
  }
}
.recipes-ind .calories__meaning {
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  color: var(--secondary);
  margin-top: 4px;
}
@media (max-width: 576px) {
  .recipes-ind .calories__meaning {
    font-size: 15px;
  }
}

.ingredients {
  padding-top: 60px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .ingredients {
    padding-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .ingredients {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.ingredients__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
}
@media (max-width: 1400px) {
  .ingredients__wrap {
    gap: 45px;
  }
}
@media (max-width: 1300px) {
  .ingredients__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.ingredients__left > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.ingredients__left > ul > li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}
@media (max-width: 1300px) {
  .ingredients__left > ul > li {
    width: 400px;
  }
}
@media (max-width: 420px) {
  .ingredients__left > ul > li {
    width: 100%;
    font-size: 14px;
  }
}
.ingredients__left > ul > li:last-child {
  margin-bottom: 0;
}
.ingredients__left > ul > li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
}
@media (max-width: 1300px) {
  .ingredients__left > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.ingredients__list {
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
}
.ingredients__right > ol {
  counter-reset: li;
  padding-left: 0;
  max-width: 890px;
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .ingredients__right > ol {
    max-width: 100%;
  }
}
.ingredients__right > ol > li {
  position: relative;
  list-style: none;
  padding-left: 40px;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 25px;
}
.ingredients__right > ol > li:last-child {
  margin-bottom: 0;
}
.ingredients__right > ol > li:before {
  content: counter(li) ".";
  counter-increment: li;
  position: absolute;
  top: 2px;
  left: 0;
  width: 50px;
  height: 50px;
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
  color: var(--primary);
}
@media (max-width: 576px) {
  .ingredients__right > ol > li {
    padding-left: 25px;
  }
}

.notfound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.notfound .not-found {
  max-width: 680px;
  text-align: center;
}
.notfound .not-found__title {
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .notfound .not-found__title {
    font-size: 50px;
    line-height: 55px;
  }
}
.notfound .not-found__name {
  margin-top: 40px;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .notfound .not-found__name {
    margin-top: 20px;
    font-size: 22px;
    line-height: 26px;
  }
}
.notfound .not-found__subtitle {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .notfound .not-found__subtitle {
    margin-top: 15px;
    font-size: 15px;
    line-height: 23px;
  }
}
.notfound .not-found__btns {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .notfound .not-found__btns {
    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;
  }
}
@media (max-width: 480px) {
  .notfound .not-found__btns {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.notfound .not-found__btn {
  margin-right: 10px;
}
.notfound .not-found__btn:last-child {
  margin-right: 0;
}
@media (max-width: 576px) {
  .notfound .not-found__btn {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.notfound .header {
  position: static;
}
.notfound .footer {
  width: 100%;
  background-color: transparent;
}
.notfound .footer__bottom {
  border-top: 1px solid #eeeeee;
}
.notfound .footer__copy {
  color: rgba(51, 51, 51, 0.6);
}
.notfound .footer__copy a {
  color: var(--primary);
}
.notfound .footer__links a {
  color: var(--primary);
}

.profile .classes__wrap {
  margin-bottom: 60px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 919px) {
  .profile .classes__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.profile .classes__wrap:last-child {
  margin-bottom: 0;
}
.profile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
}
@media (max-width: 768px) {
  .profile__wrap {
    -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;
  }
}
@media (max-width: 576px) {
  .profile__wrap {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }
}
.profile__left {
  width: 300px;
  padding-top: 45px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--lightGray);
  text-align: center;
}
@media (max-width: 992px) {
  .profile__left {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .profile__left {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
.profile__img {
  position: relative;
}
.profile__img input[type=file] {
  display: none;
}
.profile__img label {
  background-image: url("../img/edit.svg");
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  cursor: pointer;
}
.profile__name {
  margin-top: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
}
.profile__names {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
}
.profile__plan {
  margin-top: 35px;
  font-weight: 900;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
}
.profile__month {
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
}
.profile__price {
  font-weight: 900;
  font-size: 36px;
  line-height: 45px;
  text-transform: uppercase;
  color: var(--secondary);
}
.profile__price span {
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  display: block;
  color: var(--primary);
}
.profile__btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .profile__btn {
    font-size: 13px;
  }
}
.profile__cancel {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #C80000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.profile__cancel:hover {
  color: #944747;
}
@media (max-width: 992px) {
  .profile__cancel {
    font-size: 13px;
  }
}
.profile__right {
  max-width: 660px;
}
.profile__form label {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
}
.profile__form input {
  width: 100%;
  outline: none;
  border: none;
  padding: 11px 11px 11px 0;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.profile__form input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.4;
}
.profile__form input::-moz-placeholder {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.4;
}
.profile__form input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.4;
}
.profile__form input::-ms-input-placeholder {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.4;
}
.profile__form input::placeholder {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.4;
}
.profile__form input[type=submit], .profile__form input[type=reset] {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 0;
}
.profile__pass {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .profile__pass {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
}
.profile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.profile__wrapper label {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.33%;
  flex: 0 1 33.33%;
}
@media (max-width: 576px) {
  .profile__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.profile__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.profile__btns input {
  max-width: 200px;
  border: 2px solid var(--secondary);
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .profile__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .profile__btns input {
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 0;
  }
}
.profile .tabs__header {
  margin-bottom: 10px;
}
.profile .cancel {
  border: 2px solid #E5E5E5;
}
@media (max-width: 992px) {
  .profile {
    padding-top: 85px;
  }
}
@media (max-width: 576px) {
  .profile {
    padding-top: 83px;
  }
}
/*# sourceMappingURL=main.css.map */