#crs25-page {
  display: grid;
  width: 100%;
  height: 100%;
  --color-yellow-top: #ffcc33;
  --color-yellow-top-secondary: #F4CB48;
  --color-black-main: #323338;
  --color-green-main: #049926;
  --color-green-light: #dfffe3;
  --color-white-main: #ffffff;
  --color-blue-main: #009aff;
  --color-blue-secondary: #0189E2;
  --color-blue-light: #DFF0FF;
  --color-black: #000000;
}
#crs25-page * {
  font-family: Heebo;
}
#crs25-page .crs25__header {
  display: flex;
  width: 100%;
  background-color: var(--color-yellow-top-secondary);
}
#crs25-page .crs25__header .crs25__header-wrapper {
  position: relative;
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 8px;
  overflow: hidden;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__signed-wrapper {
  padding: 82px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper {
  padding: 21px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 8px;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper .crs25__title {
  padding: 0 5px 0 15px;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper .crs25__title .crs25__title-bg {
  top: 50%;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper .crs25__button-unsigned {
  border: none;
  background-color: var(--color-black-main);
  padding: 0 10px;
  border-radius: 50px;
  height: 26px;
  width: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper .crs25__button-unsigned .crs25__button-unsigned-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-white-main);
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__header-bg_left {
  width: 427px;
  height: 320px;
  position: absolute;
  top: 0;
  left: calc(50% - 510px);
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__header-bg_right {
  width: 316px;
  height: 237px;
  position: absolute;
  top: 0;
  right: calc(50% - 600px);
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__header-lights {
  display: none;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__title {
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 10px 0 20px;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__title .crs25__title-label {
  font-weight: 700;
  font-size: 50px;
  line-height: 150%;
  color: var(--color-black-main);
  text-align: center;
  position: relative;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__title .crs25__title-bg {
  position: absolute;
  top: 55%;
  left: 49.6%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 100%;
  height: 80%;
}
#crs25-page .crs25__header .crs25__header-wrapper .crs25__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--color-black-main);
  position: relative;
  margin: 0;
  text-align: center;
  max-width: 400px;
}

.crs25__sections-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 36px 0;
}
.crs25__sections-wrapper .crs25-section {
  display: grid;
  width: 100%;
}
.crs25__sections-wrapper .crs25-section .crs25-s__wrapper {
  max-width: min(1202px, 100vw);
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 32px;
}
.crs25__sections-wrapper .crs25-section .crs25-s__header {
  display: flex;
  justify-content: flex-start;
}
.crs25__sections-wrapper .crs25-section .crs25-s__switcher {
  border: none;
  background: none;
  display: flex;
  padding: 0;
}
.crs25__sections-wrapper .crs25-section .crs25-s__switcher .crs25-s__switcher-label {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02px;
  color: var(--color-black-main);
}
.crs25__sections-wrapper .crs25-section .crs25-s__switcher .crs25-s__switcher-icon {
  transition: all 0.5s ease-in-out;
  transform: scaleY(1);
}
.crs25__sections-wrapper .crs25-section .crs25-s__switcher.is-open .crs25-s__switcher-icon {
  transform: scaleY(-1);
}
.crs25__sections-wrapper .crs25-section .crs25-s__switcher:hover {
  background: none;
}
.crs25__sections-wrapper .crs25-section .crs25-s__body {
  border-top: 1px solid #e1e1e1;
  padding-top: 8px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 263px);
  gap: 22px;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: min(1140px, 100vw);
}
.crs25__sections-wrapper .crs25-section .crs25-s__body.hide-border {
  border-top: none;
}

.crs25-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 263px;
  overflow: hidden;
}
.crs25-card .crs25-card__tag_completed,
.crs25-card .crs25-card__tag_end-is-near,
.crs25-card .crs25-card__certificate-link {
  display: none;
}
.crs25-card .crs25-card__tag_number-of-lessons {
  display: flex;
}
.crs25-card .crs25-card__header {
  position: relative;
  display: grid;
}
.crs25-card .crs25-card__header .crs25-card__preview-link {
  position: relative;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  background-color: #F5F6F9;
}
.crs25-card .crs25-card__header .crs25-card__preview-link .crs25-card__preview {
  width: 100%;
  height: 158px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: top center;
}
.crs25-card .crs25-card__header .crs25-card__preview-link .crs25-card__tag_end-is-near {
  border-radius: 14px;
  background-color: var(--color-green-light);
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02px;
  color: var(--color-green-main);
  width: 89px;
  height: 24px;
  justify-content: center;
  align-items: center;
}
.crs25-card .crs25-card__header .crs25-card__preview-link .crs25-card__tag_number-of-lessons {
  border-radius: 20px;
  background-color: var(--color-black-main);
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 78px;
  height: 20px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-white-main);
}
.crs25-card .crs25-card__header .crs25-card__preview-link .crs25-card__tag_completed {
  border-radius: 14px;
  background-color: var(--color-green-main);
  position: absolute;
  z-index: 20;
  bottom: 10px;
  right: 9px;
  justify-content: center;
  align-items: center;
  width: 121px;
  height: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02px;
  color: var(--color-green-light);
}
.crs25-card .crs25-card__progress-section {
  display: flex;
  flex-direction: column;
  padding: 4px 24px;
  gap: 4px;
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.02px;
  color: var(--color-black-main);
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-wrapper {
  display: grid;
  grid-template-areas: "lessons percent" "bar bar";
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  grid-template-rows: 21px auto;
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-lessons {
  grid-area: lessons;
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  color: var(--color-black);
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-percent {
  grid-area: percent;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: var(--color-black);
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-bar {
  border-radius: 64px;
  height: 8px;
  width: 100%;
  background-color: #e0e0e0;
  grid-area: bar;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.crs25-card .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-bar .crs25-card__progress-color {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--color-yellow-top);
  z-index: 1;
  width: 0%;
}
.crs25-card .crs25-card__content {
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 96px;
}
.crs25-card .crs25-card__content .crs25-card__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--color-black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.crs25-card .crs25-card__content .crs25-card__title .crs25-card__title-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.crs25-card .crs25-card__content .crs25-card__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #212529;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin: 0;
}
.crs25-card .crs25-card__footer {
  padding: 0 66px 16px;
  margin-top: auto;
  display: flex;
  justify-content: center;
}
.crs25-card .crs25-card__footer .crs25-card__certificate-link {
  display: none;
  width: 150px;
  height: 26px;
  border-radius: 20px;
  border: 1px solid var(--color-black);
  background-color: var(--color-white-main);
  /*! display: flex; */
  justify-content: center;
  align-items: center;
}
.crs25-card .crs25-card__footer .crs25-card__certificate-link .crs25-card__certificate-link-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #081018;
}
.crs25-card .crs25-card__footer .crs25-card__certificate-link:hover {
  background-color: var(--color-black);
  text-decoration: none;
}
.crs25-card .crs25-card__footer .crs25-card__certificate-link:hover .crs25-card__certificate-link-title {
  color: var(--color-white-main);
  text-decoration: none;
}
.crs25-card .crs25-card__footer .crs25-card__link {
  border-radius: 20px;
  background-color: var(--color-blue-main);
  width: 131px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.crs25-card .crs25-card__footer .crs25-card__link .crs25-card__link-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-white-main);
}
.crs25-card .crs25-card__footer .crs25-card__link:hover {
  background-color: var(--color-blue-secondary);
  text-decoration: none;
}
.crs25-card.completed .crs25-card__tag_completed {
  display: flex;
}
.crs25-card.completed .crs25-card__tag_number-of-lessons {
  display: none;
}
.crs25-card.completed .crs25-card__footer .crs25-card__certificate-link {
  display: flex;
}
.crs25-card.completed .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-percent {
  color: var(--color-green-main);
}
.crs25-card.completed .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-bar .crs25-card__progress-color {
  background-color: var(--color-green-main);
}
.crs25-card.end-is-near .crs25-card__tag_end-is-near {
  display: flex;
}
.crs25-card.end-is-near .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-percent {
  color: var(--color-green-main);
}
.crs25-card.end-is-near .crs25-card__progress-section .crs25-card__progress-wrapper .crs25-card__progress-bar .crs25-card__progress-color {
  background-color: var(--color-green-main);
}

@media only screen and (max-width: 400px) {
  .crs25-card {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper {
    justify-content: center;
    align-items: flex-start;
    padding: 74px 17px 16px;
    gap: 0;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__unsigned-wrapper .crs25__button-unsigned {
    margin-top: 16px;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__signed-wrapper {
    padding: 74px 17px 88px;
    align-items: flex-start;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__signed-wrapper .crs25__subtitle {
    line-height: 30px;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__subtitle {
    text-align: start;
    line-height: 20px;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__header-bg_right {
    display: none;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__header-bg_left {
    display: none;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__header-lights {
    display: flex;
    position: absolute;
    top: 0;
    left: 20px;
    height: 120px;
    width: auto;
  }
  #crs25-page .crs25__header .crs25__header-wrapper .crs25__title .crs25__title-label {
    font-size: 32px;
  }
  .crs25__sections-wrapper {
    gap: 32px;
    padding: 32px 0;
  }
  .crs25__sections-wrapper .crs25-section .crs25-s__body {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    justify-items: center;
  }
}

/*# sourceMappingURL=25-courses.css.map */
