

/* Start:/bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?166307218251*/
font.errortext{color:red}font.notetext{color:green}
/* End */


/* Start:/local/templates/public/components/bitrix/news.list/courses_detail_page_list/style.css?17712361296133*/
.another-courses {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
  font-family: Golos;
  position: relative;
  z-index: 1;
}
.another-courses__slider-container {
  position: relative;
  gap: 100px;
}
.another-courses__wrapper {
  width: 100%;
  margin-top: 100px;
  background: linear-gradient(to bottom, #252525, #000);
  position: relative;
}
.another-courses__wrapper::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/upload/assets/images/backgrounds/dark-background-circles.png);
  background-repeat: no-repeat;
  background-position: bottom;
}
.another-courses__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.another-courses__header {
  font-size: 2.5rem;
  color: #fff;
}
.another-courses__description {
  color: #828d9d;
}
.another-courses__cards {
  min-height: 500px;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
  transition: transform 0.5s ease;
  position: relative;
}
.another-courses__slider-controls {
  display: none;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 0 0;
  padding: 0 10px;
}
.another-courses__slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0052f1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.another-courses__slider-arrow:hover {
  background: #0039b3;
  transform: scale(1.1);
}
.another-courses__slider-arrow:active {
  transform: scale(0.95);
}
.another-courses__slider-arrow svg {
  width: 24px;
  height: 24px;
}
.another-courses__card {
  flex: 1;
  max-width: 416px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
}
.another-courses__card:hover {
  box-shadow: 0 4px 50px #0084ff;
}
.another-courses__card-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.another-courses__card-title, .another-courses__card-header, .another-courses__card-age, .another-courses__card-description {
  opacity: 0.8;
  line-height: 133%;
  text-align: center;
}
.another-courses__card-title {
  font-weight: 400;
  font-size: 14px;
  color: #525b6c;
}
.another-courses__card-header {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
.another-courses__card-age {
  font-weight: 600;
  font-size: 14px;
  color: #525b6c;
}
.another-courses__card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.another-courses__card-content img {
  max-width: 348px;
  margin: 0 auto;
  height: unset;
}
.another-courses__card-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 14px;
  color: #525b6c;
}
.another-courses__card-remaining-places {
  font-weight: 600;
  text-align: center;
}
.another-courses__card-remaining-places.--lot {
  color: green;
}
.another-courses__card-remaining-places.--some {
  color: orange;
}
.another-courses__card-remaining-places.--few {
  color: #9c211b;
}
.another-courses__card .leave-request-button {
  align-self: center;
}

@media (max-width: 1180px) {
  .another-courses__cards {
    gap: 20px;
    padding: 0 50px;
  }
  .another-courses__card-image {
    width: 100%;
  }
}
@media (max-width: 880px) {
  .another-courses__cards {
    padding: 0 24px;
  }
  .another-courses__card-description {
    font-size: 14px;
  }
  .another-courses__card-image {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .another-courses {
    gap: 70px;
    padding: 50px 0;
  }
  .another-courses__wrapper {
    margin-top: 50px;
  }
  .another-courses__head {
    width: 80%;
    margin: 0 auto;
  }
  .another-courses__header {
    text-align: center;
  }
  .another-courses__description {
    text-align: center;
  }
  .another-courses__cards {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .another-courses__card {
    position: absolute;
    width: 85%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  .another-courses__card:not(.active):not(.prev):not(.next) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .another-courses__card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    filter: blur(0);
    box-shadow: 0 4px 50px #0084ff;
  }
  .another-courses__card.active .another-courses__card-description {
    -webkit-line-clamp: 4;
  }
  .another-courses__card.active .another-courses__card-image {
    width: 100%;
    max-width: 260px;
  }
  .another-courses__card.prev {
    transform: translateX(-70%) scale(0.85);
    opacity: 0.8;
    z-index: 2;
    filter: blur(2px);
  }
  .another-courses__card.prev .another-courses__card-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .another-courses__card.prev:hover {
    transform: translateX(-70%) scale(0.9);
    filter: blur(1px);
  }
  .another-courses__card.next {
    transform: translateX(70%) scale(0.85);
    opacity: 0.8;
    z-index: 2;
    filter: blur(2px);
  }
  .another-courses__card.next .another-courses__card-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .another-courses__card.next:hover {
    transform: translateX(70%) scale(0.9);
    filter: blur(1px);
  }
  .another-courses__card-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .another-courses__slider-controls {
    margin: 70px 0 0 0;
    display: flex;
  }
}
@media (max-width: 480px) {
  .another-courses__card.prev {
    transform: translateX(-75%) scale(0.8);
  }
  .another-courses__card.next {
    transform: translateX(75%) scale(0.8);
  }
  .another-courses__slider-arrow {
    width: 40px;
    height: 40px;
  }
  .another-courses__slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}

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

/* End */
/* /bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?166307218251 */
/* /local/templates/public/components/bitrix/news.list/courses_detail_page_list/style.css?17712361296133 */
