.program {
  position: relative;
}
.program .square-el {
  background-color: var(--white-05);
}
.program__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32.1875rem;
  height: 125.9375rem;
  z-index: -1;
  max-width: 120rem;
  margin: 0 auto;
}
.program__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.program__card {
  position: relative;
  padding: 1.875rem;
  outline: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.program__card-wrapper {
  max-width: 40.625rem;
  width: 100%;
  margin-right: 1.25rem;
}
.program__card-modules {
  font-size: max(0.875rem, 12px);
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.program__card-name {
  font-size: max(2rem, 12px);
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.program__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.program__card-list > li {
  padding: 0.5rem 1.25rem;
  line-height: 134%;
  border-radius: 0.5rem;
  background-color: rgba(211, 254, 255, 0.1);
}
.program__card:not(:last-child) .square-el--3, .program__card:not(:last-child) .square-el--4 {
  display: none;
}
.program__accordion {
  cursor: pointer;
  width: 100%;
}
.program__accordion-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.875rem;
  background-color: var(--black);
  border-radius: 1.25rem 1.25rem 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.program__accordion-text {
  color: var(--white-06);
  margin-right: 1.875rem;
}
.program__accordion-button {
  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;
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform var(--hover-transition);
  transition: -webkit-transform var(--hover-transition);
  transition: transform var(--hover-transition);
  transition: transform var(--hover-transition), -webkit-transform var(--hover-transition);
}
.program__accordion-button svg {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.program__accordion-content {
  display: none;
  background-color: var(--black);
}
.program__accordion-wrapper {
  padding: 0 1.875rem 1.875rem;
}
.program__accordion-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-bottom: 1.875rem;
}
.program__accordion-wrapper ul {
  counter-reset: list;
}
.program__accordion-wrapper ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  counter-increment: list;
  color: var(--white-06);
}
.program__accordion-wrapper ul li::before {
  content: counter(list);
  line-height: 120%;
  font-weight: 500;
  color: var(--green);
  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;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(211, 254, 255, 0.1);
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.program__accordion-wrapper ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.program__accordion-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 1.875rem;
  border-radius: 0 0 1.25rem 1.25rem;
  background-color: var(--dark-green);
}
.program__accordion-result span {
  font-size: max(0.875rem, 12px);
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--green);
  margin-right: 0.75rem;
}
.program__accordion.is-open .program__accordion-button {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.program__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3.75rem auto 0;
}
@media (max-width: 768px) {
  .program__bg {
    width: 768px;
    left: 50%;
    bottom: -430px;
    height: 1320px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .program__card {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .program__card-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: unset;
    margin-bottom: 20px;
    max-width: unset;
  }
  .program__card-modules {
    margin-bottom: 12px;
  }
  .program__card-name {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .program__card-list > li {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }
  .program__accordion-head {
    padding: 20px;
  }
  .program__accordion-text {
    font-size: 14px;
    line-height: 140%;
    margin-right: unset;
  }
  .program__accordion-wrapper {
    padding: 0 20px 20px;
  }
  .program__accordion-wrapper img {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .program__accordion-wrapper ul li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .program__accordion-wrapper ul li::before {
    font-size: 14px;
    line-height: 140%;
    width: 30px;
    height: 30px;
  }
  .program__accordion-result {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
  .program__accordion-result span {
    margin-right: unset;
    margin-bottom: 8px;
  }
  .program__button {
    margin-top: 40px;
  }
}
/*# sourceMappingURL=program.css.map */
/*# sourceMappingURL=program.css.map */