

/* Start:/faq/faq.css?17816178883349*/
.faq-title {
  margin-bottom: 74px;
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
}

.faq-head-content {
  background-color: var(--default-color-black);
  border-radius: 10px;
  padding: 32px 48px 43px 56px;
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-head-content.mob {
  display: none;
}

.faq-head__question {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  color: var(--default-color-white);
  margin-bottom: 15px;
}

.faq-head__writeus {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.faq-head__send {
  color: var(--default-color-black);
  font-size: 17px;
  font-weight: 400;
  padding: 15px 125px;
  background-color: #fff;
  border-radius: 10px;
  transition: background 0.2s ease-in-out;
}

.faq-head__send:hover {
  background-color: var(--green);
}

.faq-item__title-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 70px;
}
.faq-item__title {
  color: var(--secondary-grey-medium);
  font-size: 20px;
}

.faq-item__title:hover {
  color: var(--default-color-black);
  transition: color 0.2s ease-in-out;
}

.faq-item__title.active {
  color: var(--default-color-black);
}

.faq-subtitle {
  color: #232323;
  font-size: 32px;
  font-weight: 500;
  line-height: 41px;
  margin-bottom: 50px;
}

.faq-content {
  max-width: 810px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-content.tab-content.active {
  display: flex;
}

.faq-item {
  border-radius: 10px;
  background: var(--bg-light-grey);
  padding: 20px 33px;
}
.faq-item-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-item-title {
  margin-bottom: 20px;
}

.faq-title-text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.faq-answer {
  padding-right: 50px;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}

.faq-arrow {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-top: 2px solid var(--default-color-black);
  border-left: 2px solid var(--default-color-black);
  rotate: -135deg;
  transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-arrow {
  rotate: 45deg;
}

@media (max-width: 880px) {
  .faq-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .faq-head-content {
    display: none;
    flex-direction: column;
    padding: 15px 24px;
    align-items: start;
    margin-bottom: 30px;
  }
  .faq-head-content.mob {
    display: flex;
  }

  .faq-head__question {
    font-size: 18px;
  }

  .faq-head__writeus {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .faq-head__send {
    font-size: 14px;
    padding: 14px 50px;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .faq-subtitle {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .faq-item {
    padding: 15px 25px;
  }

  .faq-item__title {
    font-size: 16px;
    flex-shrink: 0;
  }

  .faq-item__title-links {
    margin-bottom: 25px;
    overflow-x: auto;
    gap: 16px;
    overflow-y: hidden;
    justify-content: start;
    scrollbar-width: none;
  }
  .faq-item__title-links::-webkit-scrollbar {
    display: none;
  }
  .faq-title-text,
  .faq-answer {
    font-size: 14px;
    padding: 0;
  }
}

/* End */
/* /faq/faq.css?17816178883349 */
