section.intro {
  width: 100%;

  min-height: calc(100vh - 119px);

  height: auto;
  background-image: url('../assets/img/intro-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;


  display: flex;
  justify-content: center;

  align-items: center;
  padding: 240px 0 120px;
}

section.advantages {
  margin: 90px auto;

}

section.advantages .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 64px;
}

section.advantages .cards .card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 42px;
  border-radius: 30px;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.15);
  background: #f7f7f7;

  position: relative;
}

.card--logo {
  position: absolute;
  top: -30px;
  right: 13px;
}

section.about {
  position: relative;
  margin-top: 188px;

}

section.about .map--icon {
  position: absolute;
  top: -120px;
  right: 0;
  z-index: -1;
}

section.about .about-title {
  width: 354px;
  height: 80px;
  border-radius: 30px;
  background: #000096;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;

}

section.about .marker--list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 86px;
}

section.about .marker--list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

section.reviews {
  margin-top: 180px;

}

section.reviews h2 {
  display: flex;
  gap: 20px;
}

section.reviews h2 span {
  display: block;
}

section.reviews .map-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 47px;

}

section.reviews .map-link a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #333;
  text-align: center;

}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 58px;
}

.reviews-list .review {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 33px 36px 43px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #f7f7f7;
  border-radius: 15px;
  /* padding-bottom: 5px; */
}

.reviews-list .review .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reviews-list .review .header .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-list .review .header .info .name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 19px;
  color: #333;
  padding-bottom: 12px;
}

.reviews-list .review .header .info .title-servises p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  color: #aaa;
}

.reviews-list .review p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  color: #333;
}

section.faq {
  margin-top: 180px;
  margin-bottom: 100px;
}

section.faq h2 {
  margin-bottom: 30px;
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid #aaa;
  padding: 32px 52px;
}

.faq-item:first-child {
  border-top: 1px solid #aaa;
}

.faq-question {

  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.5s ease;
}



.faq-question span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 113%;
  color: #000d96;
}

.faq-indicator {
  /* font-size: 18px; */
  transition: transform 0.5s ease;
}

.faq-question.active .faq-indicator {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  /* background-color: white; */
  /* padding-left: 20px;
  padding-right: 20px; */
}

.faq-answer.open {
  max-height: 500px;

}

.faq-answer-content {
  max-width: 1100px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.6;
  font-size: 22px;
}