.gift {
  padding: 65px 0;
}

.giftInner {
  display: flex;
  flex-direction: column;
}

.giftTop {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.giftTopButtons {
  display: flex;
  gap: 15px;
}

.giftTopButton {
  padding: 10px 24px;
  border-radius: 12px;
  background: #FAD1CE;
  color: #151617;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26.154px;
  /* 130.769% */
  letter-spacing: 0.6px;
}

.giftMain {
  margin-top: 24px;
  padding: 60px 60px 60px 47%;
  position: relative;
  border-radius: 20px;
  background: #F7F7F9;
}

.giftMainImg {
  position: absolute;
  left: 0;
  top: 10%;
  width: 525px;
  height: 525px;
}

.giftMainInfo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.giftMainInfoTitle {
  color: #151617;

  font-family: Manrope;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.giftMainInfoTitleText {
  color: #151617;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 15px 0 0 25px;
}

li.giftMainInfoTitleText::marker {
  margin: 0 !important;
}


.giftButton {
  margin-top: 48px;
  align-self: center;
  padding: 17px 20px;
  color: #FFF;

  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  letter-spacing: 0.18px;
  border-radius: 16px;
  background: #BC625C;
}


@media screen and (max-width: 1244px) {
  .giftMainImg {
    width: 325px;
    height: 325px;
    top: 30%;
  }


}

@media screen and (max-width: 960px) {

  .giftMain {
    padding: 16px;
  }

  .giftMainImg {
    position: unset;
    width: 100%;
  }

  .giftMainInfo {
    margin-top: 24px;
  }

  .giftMainInfoTitle {
    font-size: 20px;
  }

  .giftMainInfoTitleText {
    font-size: 16px;
    margin: 10px 0 0 15px;
  }

  .giftButton {
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 24px;
  }

  .giftTopButton {
    padding: 10px 20px;
    font-size: 14px;
  }

  .gift {
    padding: 24px 0;
  }

}