@charset "UTF-8";
/* Общее */
.obuchayushchie-programmy {
  background-color: #FCF9F7;
  color: #20252E;
  overflow: hidden auto;
}
.obuchayushchie-programmy .red-btn {
  display: inline-block;
  width: unset;
  padding: 9px 40px;
  line-height: 120%;
  height: 40px;
}
.obuchayushchie-programmy p, .obuchayushchie-programmy ul, .obuchayushchie-programmy ol {
  margin-bottom: 25px;
}
.obuchayushchie-programmy p:last-child, .obuchayushchie-programmy ul:last-child, .obuchayushchie-programmy ol:last-child {
  margin-bottom: 0;
}
.obuchayushchie-programmy li {
  display: block;
  margin-bottom: 7px;
  padding-left: 25px;
  position: relative;
}
.obuchayushchie-programmy li:last-child {
  margin-bottom: 0;
}
.obuchayushchie-programmy li::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0px;
  background: #C28B5D;
}

.obuchayushchie-programmy__page {
  width: 100%;
  padding: 40px 100px 150px;
}

.section {
  margin-top: 100px;
}
.section--double-top {
  margin-top: 200px;
}

.white-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  padding: 112px;
}

.obuchayushchie-programmy__content {
  width: calc(100% - 64px);
  margin: 0 auto;
}

.text--32 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.text--24 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

/* Шапка */
.obuchayushchie-programmy__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}

/* Числа в начале */
.numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
}

.numbers__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
}

.numbers__value {
  font-size: 45px;
  font-weight: 700;
  line-height: 100%;
  flex-shrink: 0;
  line-height: 1;
  color: #C28B5D;
}

.numbers__text {
  flex: 1;
  padding-bottom: 2px;
}

/* Табы */
.tabs-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  border-bottom: 1px solid rgba(194, 138, 92, 0.3);
}
.tabs-links span {
  color: #C28B5D;
  display: block;
  padding: 20px 0;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.tabs-links span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0px;
  background: #20252E;
  opacity: 0;
  transition: 0.2s;
}
.tabs-links span.active {
  color: #20252E;
}
.tabs-links span.active::before {
  opacity: 1;
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

/* Программы */
.programm {
  display: flex;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: flex-start;
}
.programm:nth-child(even) .programm__image {
  order: 1;
}

.programm__image {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.programm__image img {
  max-width: 80%;
  max-height: 80%;
}

.programm__info {
  width: 50%;
}

/* Список спойлеров */
.spoiler-list {
  display: flex;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: flex-start;
  gap: 5px;
}

.spoiler {
  background: #fff;
  width: calc((100% + 5px) / 3 - 5px);
}

.spoiler__title {
  padding: 15px 30px 15px 15px;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}
.spoiler__title::before, .spoiler__title::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 26px;
  right: 15px;
  background: #C28B5D;
}
.spoiler__title::after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.spoiler__title.open::after {
  transform: rotate(90deg);
}

.spoiler__content {
  padding: 5px 15px 15px;
  display: none;
}

/* Тренеры */
.treners .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  background-size: auto 10px;
}
.treners .slick-arrow.slick-prev {
  left: -64px;
  transform: translateY(-50%) rotate(180deg);
}
.treners .slick-arrow.slick-next {
  right: -64px;
}

.trener {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.trener__image {
  width: 320px;
  height: 320px;
}
.trener__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  overflow: hidden;
}

.trener__info {
  width: calc(100% - 320px - 60px);
}

.trener__title {
  margin-bottom: 7px;
}

.trener__name {
  margin-bottom: 7px;
}

.trener__position {
  margin-bottom: 38px;
  color: rgba(32, 37, 46, 0.8);
}

/* Как проходят тренинги */
.how {
  text-align: center;
  padding-bottom: 100px;
}

.how__title {
  margin-bottom: 50px;
}

.how__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
}

.how__item {
  width: calc((100% + 50px) / 3 - 50px);
}

.how__number {
  color: #C28B5D;
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}

/* Отзывы */
.reviews__title {
  text-align: center;
  margin-bottom: 50px;
}

.reviews__list .slick-list {
  margin-left: -50px;
}
.reviews__list .slick-slide {
  margin-left: 50px;
}

.review__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.review__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.review__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.review__info {
  width: calc(100% - 80px - 25px);
}

.review__company {
  margin-top: 7px;
  color: rgba(32, 37, 46, 0.8);
}

/* Текст + картинка */
.text-image {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.text-image__image {
  width: 320px;
}
.text-image__image img {
  width: 100%;
}

.text-image__text {
  width: calc(100% - 320px - 60px);
}
.text-image__text .h2 {
  margin-bottom: 38px;
}
.text-image__text .red-btn {
  margin-top: 12px;
}

@media (max-width: 1280px) {
  .obuchayushchie-programmy__page {
    padding: 20px 32px 50px;
  }
  .obuchayushchie-programmy__content {
    width: 100%;
  }
  .section {
    margin-top: 64px;
  }
  .section--double-top {
    margin-top: 100px;
  }
  .white-block {
    padding: 64px;
  }
}
@media (max-width: 900px) {
  .text--32 {
    font-size: 24px;
  }
  .text--24 {
    font-size: 16px;
  }
  .obuchayushchie-programmy__header {
    gap: 25px;
  }
  .obuchayushchie-programmy__header img {
    height: 32px;
  }
  .section {
    margin-top: 48px;
  }
  .section--double-top {
    margin-top: 80px;
  }
  .white-block {
    padding: 48px;
  }
  .numbers {
    margin-top: 30px;
    gap: 10px;
  }
  .numbers__item {
    gap: 5px;
  }
  .numbers__value {
    font-size: 30px;
  }
  .tabs-links {
    gap: 25px;
  }
  .tabs-links span {
    padding: 10px 0;
  }
  .programm {
    align-items: flex-start;
  }
  .programm__image {
    width: 150px;
    padding: 6px 32px 0 0;
  }
  .programm__info {
    width: calc(100% - 150px);
  }
  .trener__image {
    width: 150px;
    height: 150px;
  }
  .trener__info {
    width: calc(100% - 150px - 32px);
  }
  .how {
    padding-bottom: 32px;
  }
  .how__number {
    font-size: 64px;
  }
  .text-image__image {
    width: 150px;
  }
  .text-image__text {
    width: calc(100% - 150px - 32px);
  }
  .spoiler-list {
    gap: 4px;
  }
  .spoiler {
    width: calc(50% - 2px);
  }
}
@media (max-width: 650px) {
  .text--32 {
    font-size: 16px;
  }
  .text--24 {
    font-size: 14px;
  }
  .obuchayushchie-programmy__page {
    padding: 15px 15px 30px;
  }
  .obuchayushchie-programmy__header img {
    height: 28px;
  }
  .section {
    margin-top: 32px;
  }
  .section--double-top {
    margin-top: 56px;
  }
  .white-block {
    padding: 16px;
  }
  .numbers {
    margin-top: 16px;
  }
  .numbers__item {
    width: 100%;
  }
  .numbers__value {
    font-size: 26px;
  }
  .tabs-links {
    gap: 5px;
    border: none;
  }
  .tabs-links span {
    padding: 5px;
    border-radius: 4px;
    background: #fde4d0;
    color: #20252E;
  }
  .tabs-links span.active {
    background: #C28B5D;
    color: #fff;
  }
  .tabs-links span::before {
    display: none;
  }
  .programm {
    margin-bottom: 24px;
  }
  .programm__image {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
  .programm__info {
    width: 100%;
    order: 2;
  }
  .obuchayushchie-programmy p, .obuchayushchie-programmy ul, .obuchayushchie-programmy ol {
    margin-bottom: 15px;
  }
  .obuchayushchie-programmy p:last-child, .obuchayushchie-programmy ul:last-child, .obuchayushchie-programmy ol:last-child {
    margin-bottom: 0;
  }
  .trener__info {
    width: 100%;
    margin-top: 15px;
  }
  .treners .slick-arrow {
    top: 0;
    transform: none;
    width: 24px;
    height: 24px;
    background-color: transparent;
    box-shadow: none;
  }
  .treners .slick-arrow.slick-prev {
    left: calc(100% - 114px);
    transform: rotate(180deg);
  }
  .treners .slick-arrow.slick-next {
    right: 14px;
  }
  .how__title {
    margin-bottom: 25px;
  }
  .how__list {
    gap: 25px;
  }
  .how__item {
    width: 100%;
  }
  .text-image__text {
    order: 1;
    width: 100%;
    margin-top: 15px;
  }
  .spoiler {
    width: 100%;
  }
}/*# sourceMappingURL=obuchayushchie-programmy.css.map */