.rates {
  position: relative;
  padding: 100px 0;
  background-color: #000;
  color: white;
}
.rates-title {
  font-size: clamp(23px, 7vw, 64px);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 78px;
}
.rates-title__line {
  width: 332px;
  height: 2px;
  margin-top: 21px;
  border: 2px solid #b00707;
  box-shadow: 0px 0px 25px 13px rgba(176, 7, 7, 0.2);
  border-radius: 3px;
}
.rates-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rates-item {
  border-radius: 15px;
  padding: 20px 10px;
  flex: 0 0 390px;
  border: 1px solid #fff;
}
.rates-item__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}
.rates-item__subtitle {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}
.rates-item__subtitle span {
  display: block;
  font-weight: 700;
}
.rates-item__descr {
  font-size: clamp(16px, 4vw, 18px);
  color: rgb(185, 185, 185);
  text-align: center;
  width: 70%;
  margin: 0 auto;
}