.gift {
  padding: 64px 0;
}

.giftInner {
  display: flex;
  flex-direction: column;
}

.giftTitle {
  color: #151617;
  max-width: 800px;
  font-family: Manrope;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.giftBox {
  padding: 131px 0 131px 60px;
  border-radius: 20px;
  background: #f4f4f4;
  position: relative;
}

.giftBoxTitle {
  color: #151617;
  font-family: Manrope;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.giftBoxText {
  margin-top: 20px;
  color: #414548;
  max-width: 430px;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.giftBoxText span {
  color: #FF4085;
}

.giftImg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
}

.giftBtn {
  margin-top: 48px;
  align-self: center;
  color: #fff;
  width: 100%;
  max-width: 343px;
  height: 52px;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border-radius: 16px;
  background: #151617;
}

@media (max-width: 958px) {
  .gift {
    padding: 0;
  }

  .giftTitle {
    font-size: 24px;
  }

  .giftBox {
    padding: 16px 16px 0 16px;
    display: flex;
    flex-direction: column;
  }

  .giftBoxTitle {
    font-size: 28px;
  }

  .giftBoxText {
    margin-top: 16px;
    font-size: 16px;
  }

  .giftImg {
    position: unset;
    align-self: center;
    margin-top: 15px;
    width: 100%;
  }
}