.title-1, .title-2, .title-3, .title-4, .title-5 {
  text-transform: uppercase;
  color: #1f2a36;
}

.title-2, .title-3, .title-4, .title-5 {
  letter-spacing: 0.03em;
}

.title-1, .title-1 * {
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .title-1, .title-1 * {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.03em;
  }
}

.title-2, .title-2 * {
  font-weight: 600;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .title-2, .title-2 * {
    font-size: 18px;
  }
}

.title-3, .title-3 * {
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .title-3, .title-3 * {
    font-size: 16px;
  }
}

.title-4, .title-4 * {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .title-4, .title-4 * {
    font-size: 16px;
  }
}

.title-5, .title-5 * {
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .title-5, .title-5 * {
    font-size: 16px;
  }
}

.description-1, .description-1 * {
  font-weight: 500;
  color: #1f2a36;
}

.body-1, .body-1 * {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .body-1, .body-1 * {
    font-size: 16px;
  }
}

.quote-big, .quote-big * {
  font-family: Lora;
  font-size: 32px;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .quote-big, .quote-big * {
    font-size: 16px;
  }
}

.quote-1, .quote-1 * {
  font-family: Lora;
  font-size: 28px;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .quote-1, .quote-1 * {
    font-size: 16px;
  }
}

.quote-2, .quote-2 * {
  font-family: Lora;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .quote-2, .quote-2 * {
    font-size: 16px;
  }
}

.quote-3, .quote-3 * {
  font-family: Lora;
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .quote-3, .quote-3 * {
    font-size: 16px;
  }
}

.quote-4, .quote-4 * {
  font-family: Lora;
  font-style: italic;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .quote-4, .quote-4 * {
    font-size: 16px;
    line-height: 150%;
  }
}

.button-text, .default-link, .button-text *, .default-link * {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .button-text, .default-link, .button-text *, .default-link * {
    font-size: 16px;
  }
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}
.faq .col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq__title {
  margin-bottom: 10px;
}
.faq-item {
  box-shadow: 5px 10px 20px 0 rgba(87, 177, 199, 0.2);
  border-radius: 20px;
  background: linear-gradient(136deg, #fff 0%, rgba(255, 255, 255, 0.4980392157) 100%);
  padding: 30px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.faq-item__bg {
  position: absolute;
  right: -30px;
  bottom: -40px;
}
.faq-item__bg img {
  max-width: 256px;
  transform: rotate(-15deg);
  opacity: 0;
  transition: 0.4s;
}
.faq-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item-head__text {
  width: fit-content;
  max-width: 510px;
}
.faq-item-head .default-arrow {
  width: 50px;
  z-index: 1;
}
.faq-item-head .default-arrow img {
  width: 25px;
}
.faq-item-body {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: 0.7s;
}
.faq-item-body__text {
  padding-top: 30px;
  position: relative;
  min-height: 70px;
  max-width: 510px;
  z-index: 1;
}
.faq-item-body__text p {
  margin-bottom: 6px;
}
.faq-item-body__text ul {
  margin-left: 22px;
}
.faq-item-body__text ul li {
  position: relative;
  margin-bottom: 6px;
}
.faq-item-body__text ul li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #57B1C7;
  left: -14px;
  top: 7px;
}
.faq-item.-open .faq-item__bg img {
  opacity: 1;
}
.faq-item.-open .faq-item-head .default-arrow {
  transform: rotate(-90deg);
}
@media screen and (max-width: 1329px) {
  .faq {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    margin-bottom: 56px;
    gap: 8px;
  }
  .faq .col {
    gap: 8px;
  }
  .faq-item {
    padding: 18px 8px;
    border-radius: 5px;
  }
  .faq-item-head .default-arrow {
    width: 30px;
  }
  .faq-item-head .default-arrow img {
    width: 10px;
  }
}