@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

html,
body {
  height: 100%;
  line-height: 1;
  font-size: 14px;
  color: var(--main-grey);
  font-family: "Inter", sans-serif;
}

:root {
  --main-grey: #222532;
  --bg-grey: #2d3436;
  --bg-grey-opacity: #4c4c4cf0;
  --bg-rose: #ebe4e4;
  --text-hover: #df786d;
}

.container {
  width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container {
    width: 95vw;
  }
}
@media (max-width: 992px) {
  .container {
    width: 100vw;
  }
}

.btn-outline {
  padding: 15px;
  width: 230px;
  border: 1px solid var(--text-hover);
  background-color: #fff;
  font-size: 16px;
  color: var(--text-hover);
  text-transform: uppercase;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
.btn-outline:hover {
  background-color: var(--text-hover);
  color: #fff;
  border-color: #fff;
}
@media (max-width: 540px) {
  .btn-outline {
    width: 210px;
  }
}

.block__money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .block__money .btn-outline {
    max-width: 200px;
  }
}
@media (max-width: 540px) {
  .block__money button span {
    display: none;
  }
  .block__money .btn-outline {
    max-width: 120px;
  }
}
@media (max-width: 340px) {
  .block__money .btn-outline {
    padding: 12px;
    font-size: 15px;
  }
}
.block__money__tariff {
  display: flex;
  align-items: center;
}
.block__money__tariff svg {
  width: 40px;
  height: 35px;
  opacity: 0.5;
  margin-right: 10px;
  fill: var(--text-hover);
}
@media (max-width: 540px) {
  .block__money__tariff svg {
    width: 25px;
  }
}
.block__money__tariff p {
  display: flex;
  align-items: center;
  font-size: 24px;
}
@media (max-width: 540px) {
  .block__money__tariff p {
    font-size: 18px;
  }
}
.block__money__tariff .praice-text {
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
  width: 114px;
  display: block;
  text-align: start;
}
@media (max-width: 540px) {
  .block__money__tariff .praice-text {
    width: 80px;
    font-size: 11px;
  }
  .block__money__tariff .praice-text.long {
    width: 105px;
  }
}

.main-block {
  overflow: hidden;
}
.main-block__wrapper {
  display: flex;
  min-height: 640px;
}
@media (max-width: 1240px) {
  .main-block__wrapper {
    min-height: 510px;
  }
}
@media (max-width: 540px) {
  .main-block__wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
.main-block__img-wrapper {
  position: relative;
  background-image: url("./../img/index2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-basis: 50%;
}
@media (max-width: 1240px) {
  .main-block__img-wrapper {
    flex-basis: 35%;
  }
}
@media (max-width: 540px) {
  .main-block__img-wrapper {
    flex-basis: auto;
    height: 40vh;
    opacity: 1;
  }
}
.main-block__logo-mobile {
  position: absolute;
  left: calc(50% - 50px);
  bottom: -50px;
  background-color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-block__logo-mobile img {
  width: 140px;
  height: auto;
}
@media (min-width: 540px) {
  .main-block__logo-mobile {
    display: none;
  }
}
.main-block__content-wrapper {
  background-color: var(--bg-rose);
  flex-basis: 50%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 40px 40px 30px;
}
@media (max-width: 1240px) {
  .main-block__content-wrapper {
    flex-basis: 65%;
  }
}
@media (max-width: 540px) {
  .main-block__content-wrapper {
    flex-basis: auto;
    height: 58vh;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    padding: 55px 10px 25px;
  }
}
.main-block__title {
  font-family: "Philosopher", sans-serif;
  font-size: 52px;
  line-height: 54px;
  font-weight: 500;
  margin-bottom: 35px;
  width: 80%;
}
@media (max-width: 1240px) {
  .main-block__title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 540px) {
  .main-block__title {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.main-block__text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 2px;
  width: 85%;
  margin-bottom: 10px;
}
@media (max-width: 1240px) {
  .main-block__text {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .main-block__text {
    font-size: 14px;
    line-height: 18px;
  }
}

.about-block {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .about-block {
    flex-direction: column;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .about-block {
    margin-top: 40px;
  }
}
@media (max-width: 540px) {
  .about-block {
    max-width: 385px;
  }
}
.about-block__content {
  flex-basis: 50%;
  background-color: var(--bg-grey-opacity);
  padding: 60px;
}
@media (max-width: 992px) {
  .about-block__content {
    flex-basis: auto;
    order: 2;
    padding: 40px;
  }
}
@media (max-width: 540px) {
  .about-block__content {
    padding: 30px 10px;
  }
}
.about-block__image {
  flex-basis: 40%;
  background-image: url("./../img/IMG_5194.JPG");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .about-block__image {
    flex-basis: auto;
    order: 1;
    min-height: 75vh;
  }
}
@media (max-width: 540px) {
  .about-block__image {
    min-height: 65vh;
  }
}
.about-block__title {
  font-family: "Philosopher", sans-serif;
  color: #fff;
  font-size: 36px;
  line-height: 54px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 1240px) {
  .about-block__title {
    font-size: 28px;
  }
}
@media (max-width: 540px) {
  .about-block__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.about-block__text {
  color: var(--bg-rose);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .about-block__text {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 540px) {
  .about-block__text {
    line-height: 20px;
  }
}
.about-block__text-color {
  font-style: italic;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-hover);
}
.about-block__experience-number {
  color: var(--text-hover);
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 540px) {
  .about-block__experience-number {
    font-size: 42px;
  }
}
.about-block__experience-text {
  display: inline-block;
  color: var(--text-hover);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  width: 60px;
  margin-top: 20px;
  margin-left: 15px;
}
@media (max-width: 540px) {
  .about-block__experience-text {
    font-size: 16px;
    line-height: 18px;
    margin-left: 10px;
  }
}

.services-block {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .services-block {
    margin-top: 40px;
  }
}
.services-block__title {
  font-family: "Philosopher", sans-serif;
  font-size: 36px;
  line-height: 54px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 1240px) {
  .services-block__title {
    font-size: 28px;
  }
}
@media (max-width: 540px) {
  .services-block__title {
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.services-block__title span {
  color: var(--text-hover);
}
.services-block__description {
  color: var(--bg-grey-opacity);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 768px) {
  .services-block__description {
    display: none;
  }
}
.services-block__description.important-text {
  color: var(--text-hover);
  margin-top: 15px;
}
@media (max-width: 768px) {
  .services-block__description.important-text {
    display: block;
    font-size: 14px;
    line-height: 20px;
    width: 70%;
  }
}
.services-block__video {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .services-block__video {
    margin-bottom: 40px;
  }
}
.services-block__video .swiper-3d {
  perspective: 540px;
}
.services-block__video-content {
  width: 100%;
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .services-block__video-content {
    padding: 45px 30px;
  }
}
@media (max-width: 540px) {
  .services-block__video-content {
    padding: 20px 15px;
  }
}
.services-block__video .btn-outline {
  display: none;
}
.services-block__video-title {
  color: #fff;
  font-weight: 900;
  font-size: 36px;
  padding: 15px 65px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.3607843137);
}
@media (max-width: 992px) {
  .services-block__video-title {
    font-size: 32px;
  }
}
.services-block__video-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
@media (max-width: 540px) {
  .services-block__video-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    line-clamp: 8;
    box-orient: vertical;
  }
}
.services-block__master {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .services-block__master {
    margin-top: 40px;
  }
}
.services-block__master-item {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .services-block__master-item {
    flex-direction: column;
  }
}
.services-block__master-item__img {
  width: 40%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 380px;
}
@media (max-width: 768px) {
  .services-block__master-item__img {
    width: 100%;
    height: 180px;
  }
}
.services-block__master-item__img.class-one {
  background-image: url("./../img/class/class1.webp");
}
.services-block__master-item__img.class-two {
  background-image: url("./../img/class/class2.webp");
}
.services-block__master-item__img.class-three {
  background-image: url("./../img/class/class3.webp");
}
.services-block__master-item__img.class-four {
  background-image: url("./../img/class/master4.JPG");
}
.services-block__master-item__content {
  width: 60%;
  background-color: var(--bg-rose);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .services-block__master-item__content {
    width: 100%;
  }
}
.services-block__master-item__title {
  font-size: 26px;
  font-weight: 400;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .services-block__master-item__title {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  .services-block__master-item__title {
    font-size: 18px;
  }
}
.services-block__master-item__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.services-block__master-item__description .link {
  color: var(--text-hover);
}
.services-block__master-item__description .link:hover {
  text-decoration: underline;
}
.services-block__master-item .block__text {
  margin: 40px 60px 0;
}
@media (max-width: 992px) {
  .services-block__master-item .block__text {
    margin: 30px 30px 0;
  }
}
.services-block__master-item .block__money {
  margin: 20px 60px 30px 60px;
}
@media (max-width: 992px) {
  .services-block__master-item .block__money {
    margin: 20px 25px 30px 25px;
  }
}
@media (max-width: 540px) {
  .services-block__master-item .block__money {
    margin: 20px 15px 30px 15px;
  }
}

.category-course {
  font-family: "Philosopher", sans-serif;
  color: var(--text-hover);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}
.category-course svg {
  width: 15px;
  height: 15px;
  fill: var(--text-hover);
  margin-right: 10px;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 540px) {
  .swiper {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.swiper-slide {
  width: 30vw;
  height: 560px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}
@media (max-width: 1240px) {
  .swiper-slide {
    width: 40vw;
  }
}
@media (max-width: 992px) {
  .swiper-slide {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .swiper-slide {
    width: 60vw;
  }
}
@media (max-width: 540px) {
  .swiper-slide {
    width: 70vw;
    height: 400px;
  }
}
@media (max-width: 340px) {
  .swiper-slide {
    width: 90vw;
  }
}

.swiper-slide-active .services-block__video-title {
  color: var(--main-grey);
  font-size: 26px;
  font-weight: 400;
  padding: 15px 30px;
  background-color: transparent;
}
@media (max-width: 992px) {
  .swiper-slide-active .services-block__video-title {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  .swiper-slide-active .services-block__video-title {
    font-size: 18px;
  }
}
.swiper-slide-active .services-block__video-description {
  opacity: 1;
  visibility: visible;
}
.swiper-slide-active .btn-outline {
  display: block;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: var(--text-hover);
  width: 12px;
  height: 12px;
}

.swiper-slide--one {
  background: url("./../img/course/course_base.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--one {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course_base.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--two {
  background: url("./../img/course/course2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--two {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--three {
  background: url("./../img/course/course3.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--three {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course3.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--four {
  background: url("./../img/course/course4.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--four {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course4.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--five {
  background: url("./../img/course/course10.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--five {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course10.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--eight {
  background: url("./../img/course/course8.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--eight {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course8.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide--nine {
  background: url("./../img/course/course9.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slide-active.swiper-slide--nine {
  background: linear-gradient(to top, rgb(102, 102, 102), rgba(247, 247, 247, 0.7294117647), rgba(255, 255, 255, 0.9803921569)), url("./../img/course/course9.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.new-lebel {
  width: 140px;
  height: 140px;
  overflow: hidden;
  position: absolute;
}

.new-lebel::before, .new-lebel::after {
  position: absolute;
  content: "";
  display: block;
  border: 5px solid #f8b6af;
}

.new-lebel span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 16px 0;
  background-color: #f8b6af;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.new-lebel-top-right {
  top: -10px;
  right: -10px;
}
@media (max-width: 992px) {
  .new-lebel-top-right {
    right: 0;
  }
}

.new-lebel-top-right::before, .new-lebel-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.new-lebel-top-right::before {
  top: 0;
  left: 0;
}

.new-lebel-top-right::after {
  right: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  .new-lebel-top-right::after {
    display: none;
  }
}

.new-lebel-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

.faq-block {
  margin-top: 80px;
}
.faq-block__item {
  border-top: 1px solid var(--bg-rose);
  width: 80%;
  margin: 0 auto;
}
.faq-block__item:last-child {
  border-bottom: 1px solid var(--bg-rose);
}
@media (max-width: 540px) {
  .faq-block__item {
    width: 95%;
  }
}
.faq-block__question {
  position: relative;
  width: 100%;
  padding: 25px 55px 25px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 540px) {
  .faq-block__question {
    font-size: 16px;
  }
}
.faq-block__question:hover {
  color: var(--text-hover);
}
.faq-block__question:hover svg {
  fill: var(--text-hover);
}
.faq-block__question.active svg {
  transform: rotate(-180deg);
}
.faq-block__arrow {
  position: absolute;
  top: 20px;
  right: 5px;
}
.faq-block__arrow svg {
  fill: var(--bg-grey-opacity);
  width: 30px;
  height: 30px;
}
.faq-block__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
}
.faq-block__answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (max-width: 540px) {
  .faq-block__answer p {
    line-height: 18px;
  }
}

.payment-block {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .payment-block {
    margin-top: 40px;
  }
}
.payment-block__wrapper {
  min-height: 640px;
}

.tabs {
  width: 100%;
  list-style: none;
  position: relative;
  margin: 40px 0 0 0px;
  text-align: left;
}
.tabs ul {
  list-style: none;
  margin-bottom: 10px;
}
.tabs li {
  padding: 3px 0;
  font-size: 16px;
  letter-spacing: 1px;
}
@media (max-width: 540px) {
  .tabs li {
    padding: 0;
    font-size: 14px;
  }
}
.tabs-item {
  float: left;
  display: block;
}
.tabs-item .number {
  color: var(--text-hover);
  font-weight: 600;
  font-family: "Philosopher", sans-serif;
  font-size: 16px;
}
.tabs-item .title {
  display: inline;
}
@media (max-width: 768px) {
  .tabs-item .title {
    display: none;
  }
}
@media (max-width: 768px) {
  .tabs-item .subtitle {
    display: none;
  }
}
.tabs-item__doc-block {
  margin: 20px auto;
  text-align: center;
}
.tabs-item__doc-block img {
  max-width: 100%;
  width: 70%;
}
@media (max-width: 540px) {
  .tabs-item__doc-block img {
    width: 100%;
  }
}
.tabs-item__doc-block a {
  display: block;
  width: 220px;
  padding: 5px 20px;
  border-radius: 20px;
  border: 1px solid var(--bg-grey-opacity);
  color: var(--bg-grey-opacity);
  font-size: 14px;
  margin: 10px auto 0;
  transition: all 0.3s;
}
.tabs-item__doc-block a:hover {
  border-color: var(--text-hover);
  color: var(--text-hover);
}
.tabs input[type=radio] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 14px 22px;
  border-radius: 2px 2px 0 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  background: #fff0ee;
  border-top-right-radius: 20px;
  cursor: pointer;
  position: relative;
  top: 4px;
  border-bottom: 5px solid #fff;
  transition: 0.2s ease-in-out;
}
.tabs label:hover {
  background: rgba(245, 210, 207, 0.8078431373);
}
@media (max-width: 992px) {
  .tabs label {
    padding: 14px;
  }
}
@media (max-width: 540px) {
  .tabs label {
    font-size: 14px;
    padding: 15px 20px;
    font-size: 16px;
  }
}

.tab-content {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  min-height: 560px;
  max-height: 560px;
  overflow: hidden;
  overflow-y: auto;
  font-size: 17px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 53px;
  left: 0;
  background: #ebe9e9;
  transition: all 0.3s;
}
.tab-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (max-width: 540px) {
  .tab-content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.tab-content .bold-text {
  color: var(--main-grey);
  font-weight: 600;
}
.tab-content .red-text {
  font-weight: 600;
  color: var(--text-hover);
}
.tab-content .link-tab {
  color: var(--text-hover);
  font-weight: 600;
  text-decoration: underline;
}

[id^=tab]:checked + label {
  top: 0;
  padding-top: 17px;
  background-color: #ebe9e9;
  border-bottom: 5px solid #ebe9e9;
}
@media (max-width: 768px) {
  [id^=tab]:checked + label {
    padding: 17px 8px 15px 8px;
  }
  [id^=tab]:checked + label .title {
    display: inline;
    font-size: 12px;
  }
  [id^=tab]:checked + label .subtitle {
    display: block;
  }
}

[id^=tab]:checked ~ [id^=tab-content] {
  opacity: 1;
  visibility: visible;
}

.subtitle {
  font-style: italic;
  font-size: 10px;
  color: #409eff;
  text-align: end;
}

.popup-wrapper {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(235, 228, 228, 0.8901960784);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
@media (max-width: 992px) {
  .popup-wrapper {
    align-items: flex-start;
  }
}
.popup-wrapper.open {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
}
.popup-wrapper.open .popup-card {
  transform: scale(1);
}

.popup-card {
  background-color: #fff;
  width: 640px;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid var(--text-hover);
  margin-top: -150px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  .popup-card {
    width: 520px;
    margin-top: 30px;
    padding: 40px 15px 20px;
  }
}
@media (max-width: 540px) {
  .popup-card {
    width: 90vw;
    max-height: 70vh;
  }
}
@media (max-width: 340px) {
  .popup-card {
    width: 95vw;
  }
}
.popup-card__close {
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 5px;
  cursor: pointer;
}
.popup-card__close svg {
  pointer-events: none;
  width: 30px;
  height: 30px;
  fill: #000;
  transition: all 0.3s;
}
.popup-card__close:hover svg {
  fill: var(--text-hover);
}
.popup-card__content {
  text-align: start;
}
@media (max-width: 340px) {
  .popup-card__content .block__money svg {
    display: none;
  }
}
.popup-card__title {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 540px) {
  .popup-card__title {
    font-size: 16px;
  }
}
.popup-card .time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 20px;
}
.popup-card .time svg {
  opacity: 0.5;
  width: 26px;
  height: 26px;
  fill: var(--text-hover);
  margin-right: 10px;
}
.popup-card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-indent: 20px;
}
@media (max-width: 540px) {
  .popup-card__description {
    font-size: 14px;
    line-height: 18px;
  }
}
.popup-card__description span {
  display: inline;
  color: var(--text-hover);
  font-size: inherit;
}
.popup-card__list-description {
  font-size: 16px;
  text-align: start;
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .popup-card__list-description {
    font-size: 14px;
    line-height: 18px;
  }
}
.popup-card__list-description p {
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: -20px;
}
.popup-card__list-description li {
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
}

/* Окно выбора оплаты */
.popup-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.popup-buttons a {
  width: 280px;
  color: grey;
  cursor: not-allowed;
  pointer-events: none;
  border-color: gray;
}
.popup-buttons a.active {
  cursor: pointer;
  border-color: var(--text-hover);
  color: var(--text-hover);
  pointer-events: all;
}
.popup-buttons a.active:hover {
  background-color: var(--text-hover);
  color: #fff;
}

/* Согласие с обработкой персональных данных */
.consent {
  margin: 20px 0;
  font-size: 14px;
  color: #505050;
  font-style: italic;
  line-height: 18px;
}
.consent span {
  color: #777777;
}

.popup .consent label {
  display: block;
  text-align: left;
}

.input_link {
  display: inline-block;
  color: var(--text-hover);
}
.input_link:hover {
  text-decoration: underline;
  transition: all 0.3s;
}

.header {
  position: absolute;
  top: 40px;
  right: 0;
  width: 50vw;
  height: 100px;
  text-align: right;
  background-color: var(--bg-grey-opacity);
  color: #fff;
  font-size: 20px;
  z-index: 5;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 1240px) {
  .header {
    width: 65vw;
    justify-content: end;
    padding-right: 20px;
  }
}
@media (max-width: 540px) {
  .header {
    width: 100vw;
    justify-content: center;
    padding: 0;
    height: 70px;
    position: fixed;
    top: 0px;
    left: 0;
  }
}
.header__logo {
  position: absolute;
  left: 40px;
  background-color: #fff;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -121px;
}
@media (max-width: 540px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  width: 190px;
  height: auto;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .header__menu-list {
    gap: 22px;
  }
}
.header__menu-list.contacts {
  margin-left: 50px;
  gap: 10px;
}
@media (max-width: 992px) {
  .header__menu-list.contacts {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .header__menu-list.contacts {
    display: none;
  }
}
.header__menu-item {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
.header__menu-item:hover a {
  color: var(--text-hover);
}
.header__menu-item a {
  color: var(--bg-rose);
  transition: all 0.3s;
}
.header__menu-item .social-icon {
  display: block;
  overflow: hidden;
  height: 46px;
  width: 34px;
}
.header__menu-item .social-icon:hover svg {
  stroke: var(--text-hover);
}
.header__menu-item svg {
  width: 32px;
  height: 60px;
  stroke: #fff;
  transition: all 0.3s;
}
.header__menu-item .whatsapp-icon {
  width: 32px;
}

.footer-block {
  margin-top: 80px;
  min-height: 200px;
  background-color: var(--bg-grey);
}
.footer-block__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .footer-block__wrapper {
    flex-direction: column;
  }
}
.footer-block__description {
  padding: 50px 10px;
  flex-basis: 670px;
}
@media (max-width: 992px) {
  .footer-block__description {
    padding: 40px 20px;
    flex-basis: 460px;
  }
}
@media (max-width: 768px) {
  .footer-block__description {
    flex-basis: 370px;
    padding: 40px 10px;
  }
}
@media (max-width: 540px) {
  .footer-block__description {
    padding: 40px 15px;
  }
}
@media (max-width: 640px) {
  .footer-block__description {
    padding: 0 20px 10px;
    order: 2;
  }
}
.footer-block__contacts {
  flex-basis: 260px;
  padding: 50px 10px;
}
@media (max-width: 992px) {
  .footer-block__contacts {
    padding: 40px 20px;
    flex-basis: 300px;
  }
}
@media (max-width: 768px) {
  .footer-block__contacts {
    flex-basis: 250px;
  }
}
@media (max-width: 640px) {
  .footer-block__contacts {
    order: 1;
    padding: 30px 20px 0px;
    flex-basis: 230px;
  }
}
.footer-block__contacts h3 {
  font-family: "Philosopher", sans-serif;
  color: #8f8f8f;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
.footer-block__phone {
  display: block;
  color: var(--bg-rose);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s;
  margin-bottom: 25px;
  transition: all 0.3s;
}
.footer-block__phone:hover {
  color: var(--text-hover);
}
.footer-block__time {
  display: flex;
  align-items: center;
  color: var(--bg-rose);
  font-size: 14px;
  opacity: 0.8;
}
.footer-block__time svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.footer-block__social {
  margin: 10px 0;
  height: 30px;
}
.footer-block__social a:hover svg {
  stroke: #fff;
}
.footer-block__social svg {
  width: 40px;
  height: 60px;
  stroke: var(--text-hover);
  transition: all 0.3s;
}
.footer-block__item {
  margin: 10px 0;
  color: var(--bg-rose);
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-block__item.menu {
    display: none;
  }
}
.footer-block__menu-item {
  margin: 15px 0;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  display: block;
  transition: all 0.3s;
}
.footer-block__menu-item:hover {
  color: var(--text-hover);
}
.footer-block__link {
  color: var(--bg-rose);
  font-size: 14px;
  font-style: italic;
}
.footer-block__link:hover {
  color: #fff;
}
.footer-block__link:hover svg {
  fill: #fff;
}
.footer-block__link.read {
  display: flex;
  align-items: center;
}
.footer-block .icon-read {
  width: 20px;
  height: 20px;
  fill: #8f8f8f;
  margin-right: 5px;
  transition: all 0.3s;
}

.footer {
  background-color: #292d2e;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  color: #8f8f8f;
}
.footer__cards-img {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .footer__cards-img {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer__cards-img img {
  max-height: 80px;
}
@media (max-width: 768px) {
  .footer__cards-img img {
    max-height: 70px;
  }
}
@media (max-width: 540px) {
  .footer__cards-img img {
    max-height: 60px;
    max-width: 100%;
  }
}
.footer__cards-img .erip {
  max-height: 30px;
  border-radius: 5px;
  margin-top: 12px;
  margin-left: 3px;
}/*# sourceMappingURL=main.css.map */