@charset "utf-8";

.faqContainer {
  max-width: 1082px;
  margin: 0 auto;
  padding: 0 16px;
}

.faqSection {
  margin: 0 min(calc(50% - 50vw), -16px);
  padding: 60px max(calc(50vw - 50%), 16px) 70px;
}

.faqHeading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .faqSection {
    padding-top: 50px;
    padding-bottom: 55px;
  }

  .faqHeading {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.faq__categoryBtnsContainer {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 65px;
}

.faq__categoryBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28%;
  height: 54px;
  background-color: #fff;
  color: #2aab9f;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #2aab9f;
  border-radius: 27px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.faq__categoryBtn:hover {
  opacity: 0.7;
}

.faq__categoryBtn:nth-of-type(2) {
  margin: 0 15px;
}

.faq__categoryBtn--active {
  background-color: #2aab9f;
  color: #fff;
}

.faq__categoryBtn--active:hover {
  opacity: 1;
}

.faq__itemsContainer {
  display: none;
}

.faq__itemsContainer--active {
  display: block;
}

.faq__item {
  min-height: 80px;
  padding: 0 50px;
  border-radius: 40px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.faq__item--open {
  background-color: #f4fafb;
}

.faq__item:not(:last-of-type) {
  margin-bottom: 25px;
}

.faq__questionContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.faq__question {
  flex:1;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
}

.faq__btn {
  position: relative;
  width: 41px;
  height: 41px;
  background-color: #2aab9f;
  border-radius: 50%;
  transition: all 0.3s;
}

.faq__btn:hover {
  opacity: 0.7;
}

.faq__btn::before,
.faq__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq__btn::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s;
}

.faq__item--open .faq__btn::after {
  transform: translate(-50%, -50%);
}

.faq__answer {
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

.faq__answerInner {
  padding-bottom: 25px;
}

.faq__answerInner ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq__answerInner ul > li {
  display: list-item;
  list-style: disc;
}

.faq__answerInner ul > li:not(:last-of-type) {
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .faq__categoryBtnsContainer {
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .faq__categoryBtn {
    flex-direction: column;
    width: 32%;
    height: 45px;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 15px;
  }

  .faq__categoryBtn:nth-of-type(2) {
    margin: 0;
  }

  .faq__item {
    padding-left: 15px;
    padding-right: 10px;
    border-radius: 20px;
  }

  .faq__item:not(:last-of-type) {
    margin-bottom: 15px;
  }

  .faq__questionContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq__question {
    font-size: 14px;
    margin-right: 10px;
  }

  .faq__answer {
    font-size: 13px;
  }

  .faq__answerInner {
    padding-bottom: 20px;
    padding-right: 5px;
  }
}

.ctaEmail {
  position: relative;
  background-image: url(/furnished/img/new-faq/meeting.jpg);
  background-size: cover;
  background-position: center;
}

.ctaEmail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 67, 65, 0.7);
}

.ctaEmail__content {
  position: relative;
  z-index: 1;
}

.ctaEmail__heading {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ctaEmail__description {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.ctaEmail__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 70px;
  background-color: #2aab9f;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 35px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .ctaEmail__heading {
    font-size: 20px;
    line-height: 1.4;
  }

  .ctaEmail__description {
    font-size: 15px;
    margin-bottom:25px;
  }

  .ctaEmail__btn {
    width: 300px;
    height: 64px;
    border-radius: 32px;
  }
}

.ctaTel {
  padding: 30px 0;
  background-color: #0d2725;
}

.ctaTel__content {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}

.ctaTel__number {
  position: relative;
  width: auto;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 15px;
  padding-left: 50px;
}

.ctaTel__number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(/furnished/img/new-faq/tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .ctaTel {
    padding: 20px 0;
  }

  .ctaTel__content {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .ctaTel__number {
    font-size: 24px;
    margin: 8px 0;
    padding-left: 38px;
  }

  .ctaTel__number::before {
    width: 30px;
    height: 30px;
  }
}
