.hidden {
  display: none; }

.tabs__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap; }
  @media (max-width: 1099px) {
    .tabs__header {
      gap: 10px;
      justify-content: flex-start;
      margin-bottom: 30px; } }

.tabs__item {
  padding: 16px 32px;
  border: 2px solid #1e665a;
  color: #1e665a;
  border-radius: 50px;
  font-weight: 900;
  font-size: 24px;
  transition: opacity 0.3s ease; }
  @media (max-width: 1099px) {
    .tabs__item {
      padding: 8px 16px;
      font-size: 18px; } }
  .tabs__item.active {
    color: #fff;
    background-color: #1e665a;
    pointer-events: none; }
  @media (hover: hover) {
    .tabs__item:hover {
      cursor: pointer;
      opacity: 0.7; } }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1190px;
  margin: auto; }
  .faq-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    .faq-list__header:after {
      position: absolute;
      content: ""; }
  .faq-list__toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px; }
    @media (max-width: 1099px) {
      .faq-list__toggler {
        width: 15px;
        height: 15px; } }
    .faq-list__toggler:after {
      position: absolute;
      content: "";
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
      height: 2px;
      background-color: #1e665a; }
    .faq-list__toggler:before {
      position: absolute;
      content: "";
      height: 100%;
      width: 2px;
      left: 50%;
      transition: height .3s ease;
      transform: translateX(-50%);
      background-color: #1e665a; }
  .faq-list__title {
    font-size: 32px;
    color: #1e665a;
    line-height: 1.2; }
    @media (max-width: 1099px) {
      .faq-list__title {
        font-size: 20px; } }
  .faq-list__item {
    padding: 30px 38px;
    font-weight: 900;
    border: 1px solid #1e665a;
    border-radius: 46px;
    transition: opacity .3s ease; }
    @media (hover: hover) {
      .faq-list__item:hover {
        cursor: pointer;
        opacity: 0.7; } }
    .faq-list__item.active .faq-list__content {
      display: block; }
    .faq-list__item.active .faq-list__toggler::before {
      height: 0px; }
    @media (max-width: 1099px) {
      .faq-list__item {
        padding: 14px 20px;
        border-radius: 22px; } }
  .faq-list__content {
    margin-top: 24px;
    display: none;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1; }
    @media (max-width: 1099px) {
      .faq-list__content {
        margin-top: 20px;
        font-weight: 400;
        font-size: 18px; } }
    .faq-list__content span[style="font-size: 10pt;"] {
      display: flex;
      line-height: 1.1; }
  @media (max-width: 1099px) {
    .faq-list {
      gap: 14px; } }

.faq-more {
  display: flex;
  justify-content: center;
  margin-top: 40px; }
