/* ================== hero ================== */

.hero {
  height: 100vh;
  position: relative;
}

.hero__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: 100%;
}

.hero__bg-img-1,
.hero__bg-img-2 {
  width: 50%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero__content {
  padding-top: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__title {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  max-width: 768px;
}

.hero__title span {
  font-style: italic;
}

.hero__btn {
  margin-top: 24px;
  text-align: center;
  max-width: 213px;
}

/* ================== about ================== */

.about {
  padding: 80px 0;
}

.about__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  font-family: "Baskervville", serif;
  margin-bottom: 80px;

}

.about__title span {
  font-style: italic;
}

.about__list {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__percent {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  margin-bottom: 4px;
}

.about__subtitle {
  max-width: 352px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about__text {
  max-width: 352px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

/* ================== banner ================== */

.banner {
  position: relative;
  height: 100vh;
  max-height: 768px;
  margin-bottom: 80px;
}

.banner__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.banner__text-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}

.banner__title {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  color: #fff;
  max-width: 768px;
}

.banner__title span {
  font-style: italic;
}

/* ================== questions ================== */

.questions {
  margin-bottom: 80px;
}

.questions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.questions__title {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  max-width: 768px;
  margin-bottom: 40px;
  text-align: center;
}

.questions__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.questions__dropdown {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  padding: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-height: 56px;
  max-width: 768px;

  transition: max-height 0.2s;
}

.questions__dropdown>span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
}

.questions__dropdown--opened {
  max-height: 1000px;
}

.questions__dropdown--opened .questions__dropdown-btn {
  transform: rotate(45deg);
}

.questions__dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}

.questions__dropdown-btn {
  user-select: none;
  background: #FFF0F7;
  cursor: pointer;
  padding: 6px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transform: rotate(0deg);

  transition: transform 0.2s;
}

/* ====================== */
/* ====================== */
/* ====================== */


@media (max-width: 700px) {
  .about__list {
    flex-direction: column;
  }

  .about__title {
    margin-bottom: 40px;
  }

  .banner__title{
    font-size: 55px;
  }
}
@media (max-width: 500px) {
.hero__title{
  font-size: 50px;
}
.about__title{
  font-size: 30px;
}
.about__percent{
  font-size: 50px;
}
.banner__title{
  font-size: 40px;
}
.questions__title{
  font-size: 30px;
}
}