.price {
  padding: 50px 0;
}

.pricePreahead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 12px;
  background: #fe5171;
  width: fit-content;
}

.pricePreheadText {
  color: #fff;

  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24.889px;
}

.priceMain {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.priceTitle {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.priceSubTitle {
  margin-top: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.priceCount {
  max-width: 480px;
  width: 100%;
  padding: 13.5px 0;
  border-radius: 20px;
  background: #fad1ce;
  box-shadow: 0px 3.978px 39.95px 0px rgba(19, 16, 30, 0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.priceCount span {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.72px;
}

.priceBlocks {
  display: flex;
  margin-top: 40px;
}

.priceBlock {
  padding: 20px;
  border-radius: 12.662px;
  background: #f4f4f4;
}

.priceBlockTitle {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.priceBlockSubTitle {
  margin-top: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.6px;
}

@media screen and (max-width: 1244px) {
  .priceCount {
    max-width: 380px;
  }
}

@media screen and (max-width: 960px) {
  .priceBlocks {
    flex-direction: column;
  }

  .priceBlock {
    border-radius: unset;
    border-bottom: 1px solid #151617;
  }

  .priceBlock:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .priceBlock:last-of-type {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: unset;
  }

  .priceCount {
    max-width: 170px;
  }
}

@media screen and (max-width: 640px) {
  .priceCount {
    max-width: 143px;
    max-height: 100px;
  }

  .price {
    padding: 20px 0;
  }

  .pricePreahead {
    margin-top: 20px;
  }

  .pricePreheadText {
    font-size: 14px;
  }

  .priceTitle {
    font-size: 28px;
  }

  .priceSubTitle {
    font-size: 16px;
    margin-top: 15px;
  }

  .priceCount {
    font-size: 28px;
  }

  .priceCount span {
    font-size: 16px;
  }

  .priceBlocks {
    margin-top: 15px;
    padding: 0 20px;
    border-radius: 20px;
    background: #f4f4f4;

    box-shadow: 0px 4.528px 13.584px 0px rgba(0, 0, 0, 0.04);
  }

  .priceBlock {
    padding: 20px 0;
  }

  .priceBlockTitle {
    font-size: 20px;
  }

  .priceBlockSubTitle {
    margin-top: 8px;
    font-size: 16px;
  }
}