.program {
  padding: 60px 0;
  position: relative;
}

.programSvg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 500px;
}

.programTop {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.programTopDate {
  padding: 10px 25px;
  color: #151617;
  border-radius: 12px;
  background: #FAD1CE;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  max-width: 250px;
}

.programMain {
  margin-top: 24px;
  display: flex;
  gap: 25px;
}

.programImg {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 496px;
}



.programImgText {
  color: #151617;

  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.programPoint {
  padding: 24px 0;
  border-top: 1px solid #BC625C;
  border-bottom: 1px solid #BC625C;
  color: #151617;

  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.programPoints .programPoint:nth-child(2) {
  border-top: unset;
}

.programPoints .programPoint:nth-child(3) {
  border-bottom: unset;
  border-top: unset;
}

.programButtonBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.probramButtonIcon {
  display: flex;
  gap: 10px;
}

.probramButtonIconText {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.225px;
}

.programBtn {
  color: #FFF;
  padding: 11px 0;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  max-width: 701px;
  width: 100%;
  border-radius: 16px;
  background: #BC625C;
}

@media (max-width: 960px) {
  .programMain {
    flex-direction: column;
  }

  .programButtonBox {
    margin-top: 25px;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .program {
    padding: 24px 0;
  }

  .programTopDate {
    padding: 10px 20px;
    font-size: 14px;
  }

  .programTitle {
    font-size: 28px;
  }

  .programMain {
    margin-top: 15px;
  }

  .programImg {
    flex-direction: column-reverse;
  }

  .programPoints {
    margin-top: 24px;
  }

  .programPoint {
    padding: 12px 0;
    font-size: 16px;
  }

  .programBtn {
    font-size: 18px;
  }

  .programTopDate {
    max-width: 172px;
  }

  .programImgText {
    font-size: 16px;
  }

  .programImg {
    width: unset;
  }

  .programTop {
    gap: unset;
  }
}