.main {
  padding: 64px 0;
}

.mainInner {
  display: flex;
  gap: 24px;
}

.mainInfoHead {
  display: flex;
  flex-direction: column;
}

.mainInfoPreHeader {
  display: flex;
  gap: 24px;
}

.mainImg img {
  border-radius: 32px;
}

.mainInfoPreHeaderText {
  color: #151617;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  position: relative;
  display: inline-block;
}

.mainInfoPreHeaderText span {
  position: relative;

  z-index: 1;

  padding: 10px 20px;

}

.mainInfoPreHeaderText span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: #FAD1CE;
  z-index: -1;

  transform: rotate(-3.939deg);

}

h1 {
  color: #151617;
  margin-top: 26px;
  font-family: Manrope;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;

  text-transform: uppercase;
}

h1 span {
  color: #BC625C;

}

.mainInfoPoints {
  margin-top: 24px;
}

.mainInfoPoint {
  color: #151617;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  border-top: 1px solid #FAD1CE;
  border-bottom: 1px solid #FAD1CE;
  padding: 16px 0;
}

.mainInfoPoints .mainInfoPoint:nth-child(2) {
  border-top: unset;
  border-bottom: unset;
}

.mainInfoPoint span {
  color: #BC625C;
}

.mainButton {
  margin-top: 36px;
  text-align: center;
  padding: 16px 0;
  width: 100%;
  border-radius: 16px;
  background: #BC625C;
  color: #FFF;

  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.mainImg img {
  width: 600px;
}

@media screen and (max-width: 1244px) {
  .mainInner {
    align-items: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) {
  .mainInfoHead {
    flex-direction: column-reverse;
  }

  h1 {
    text-align: center;
    font-size: 28px;
    margin-top: 0px;
  }

  .mainInfoPreHeader {
    justify-content: center;
  }

  .mainInfoPreHeaderText {
    font-size: 14px;
    margin-top: 15px;
  }

  .mainInfoPreHeaderText span {
    border-radius: 8.066px;
    padding: 6.722px 13.444px;
  }

  .main {
    padding: 0 0 24px 0;
  }

  .mainImg img {
    width: 100%;
  }

  .mainInfoPoint {
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
  }

  .mainButton {
    font-size: 18px;
    margin-top: 20px;
    padding: 14px 0;
  }
}

@media screen and (max-width: 420px) {
  .mainInfoPreHeaderText {
    font-size: 12px;
  }

  .mainInfoPreHeader {
    gap: 15px;
  }
}