.hero {
  background-image: url("../assets/img/hero-bg.webp");
  background-size: cover;
  background-position: 0 -85px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero__title {
  font-size: 48px;
  color: #000;
  margin-bottom: 20px;
  max-width: 1000px;
  font-weight: 700;
}
.about {
  padding: 40px 0;
  display: flex;
  align-items: center;
}
.about__col:first-child {
  width: 40%;
  display: flex;
  justify-content: center;
}
.about__col:last-child {
  width: 60%;
}
.about__img {
  width: 270px;
  height: 330px;
  object-fit: cover;
  border-radius: 140px 140px 24px 24px;
  border: 18px solid #ffeec4;
  box-shadow: 2px 2px 4px #888;
}
.about__text {
  margin-top: 24px;
}
/* .about__points-list {
  margin-top: 60px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__points-item {
  display: flex;
  align-items: center;
}
.about__point-text {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}
.about__point-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.35);
  margin-right: 12px;
}
.about__point-circle--1 {
  background-color: #e5f8e7;
}
.about__point-circle--2 {
  background-color: #e5f8e7;
}
.about__point-circle--3 {
  background-color: #fecfce;
}
.about__point-circle--4 {
  background-color: #fecfce;
} */

.services {
  padding: 40px 0;
}
.services__list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  margin-top: 40px;
}
.services__item {
  width: calc(100% / 3 - 20px);
  min-height: 400px;
}
.services__item-link {
  width: 100%;
  height: 100%;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #000;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.services__item-link--1 {
  background-color: #ffeec4;
}
.services__item-link--2 {
  background-color: #e5f8e7;
}
.services__item-link--3 {
  background-color: #fecfce;
}
.services__item-link--4 {
  background-color: #e3d8fd;
}
.services__item-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.services__item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services__item-title {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
}

.feedbacks {
  padding: 40px 0;
  text-align: center;
}
.feedbacks__list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  margin-top: 40px;
}
.feedbacks__item {
  width: 100%;
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #e3d8fd;
}
.feedbacks__item-date {
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 12px;
  letter-spacing: 1%;
}
.feedbacks__item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #000;
}
.feedbacks__item-name {
  margin-top: 24px;
  font-size: 20px;
  font-family: "Montserrat Alternates Medium", sans-serif;
}
.feedbacks__item-text {
  margin-top: 16px;
}
