html {
  scroll-behavior: smooth;
}

.svg-symbol {
  display: none;
}

@media screen and (min-width: 768px) {
  .faq .content {
    scroll-margin-top: 7.625rem;
  }
  .faq .lead__text {
    margin-top: 26px;
  }
  .faq .anchor {
    margin-top: 60px;
  }
  .faq .anchor__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
  }
  .faq .anchor__item {
    width: 25%;
  }
  .faq .anchor__link {
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 10px;
    height: 100%;
    border: 1px solid #0064B2;
    border-radius: 60px;
    background-color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-align: center;
    color: #0064B2;
    transition: opacity 0.3s;
  }
  .faq .anchor__link:hover {
    opacity: 0.7;
  }
  .faq .anchor__icon {
    display: block;
    margin-inline: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #0064B2;
    border-right: 2px solid #0064B2;
    rotate: 135deg;
  }
  .faq-contents {
    display: grid;
    gap: 74px;
    padding-bottom: 100px;
    margin-top: 80px;
  }
  .faq .accordions {
    display: grid;
    gap: 18px;
    margin-top: 18px;
  }
  .faq .accordion__icon {
    flex-shrink: 0;
    display: grid;
    place-content: center;
    margin-top: 0.125rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }
  .faq .accordion__text {
    flex: 1;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .faq .accordion__text a {
    color: #0064B2;
    text-decoration: underline;
    transition: opacity 0.3s;
  }
  .faq .accordion__text a:hover {
    opacity: 0.7;
  }
  .faq .accordion__marker {
    display: block;
    position: relative;
    margin-top: 0.125rem;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #FFF622;
  }
  .faq .accordion__marker::before, .faq .accordion__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background-color: #0064B2;
    translate: -50% -50%;
    transition: rotate 0.3s;
  }
  .faq .accordion__marker::after {
    rotate: 90deg;
  }
  .faq .accordion__summary {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    list-style-type: none;
    border-radius: 15px;
    background-color: #0064B2;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .faq .accordion__summary:hover {
    opacity: 0.7;
  }
  .faq .accordion__summary::-webkit-details-marker {
    display: none;
  }
  .faq .accordion__summary::marker {
    display: none;
  }
  .faq .accordion__summary .accordion__icon {
    background-color: #fff;
  }
  .faq .accordion__summary .accordion__icon > svg {
    width: 12px;
    height: 12px;
  }
  .faq .accordion__summary .accordion__text {
    color: #fff;
  }
  .faq .accordion__content {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #fff;
  }
  .faq .accordion__content .accordion__icon {
    background-color: #0064B2;
  }
  .faq .accordion__content .accordion__icon > svg {
    width: 12px;
    height: 13px;
  }
  .faq .accordion:open .accordion__summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .faq .accordion:open .accordion__marker::after {
    rotate: 0deg;
  }
  .faq .faq-contact {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .faq .content {
    scroll-margin-top: 3.75rem;
  }
  .faq .lead__text {
    margin-top: 26px;
  }
  .faq .anchor {
    margin-top: 40px;
  }
  .faq .anchor__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .faq .anchor__link {
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 10px 0;
    height: 100%;
    border: 1px solid #0064B2;
    border-radius: 60px;
    background-color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-align: center;
    color: #0064B2;
    transition: opacity 0.3s;
  }
  .faq .anchor__link:hover {
    opacity: 0.7;
  }
  .faq .anchor__icon {
    display: block;
    margin-inline: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #0064B2;
    border-right: 2px solid #0064B2;
    rotate: 135deg;
  }
  .faq-contents {
    display: grid;
    gap: 74px;
    padding-bottom: 60px;
    margin-top: 60px;
  }
  .faq .accordions {
    display: grid;
    gap: 14px;
    margin-top: 14px;
  }
  .faq .accordion__icon {
    flex-shrink: 0;
    display: grid;
    place-content: center;
    margin-top: 0.125rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }
  .faq .accordion__text {
    flex: 1;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .faq .accordion__text a {
    color: #0064B2;
    text-decoration: underline;
    transition: opacity 0.3s;
  }
  .faq .accordion__text a:hover {
    opacity: 0.7;
  }
  .faq .accordion__marker {
    align-self: center;
    display: block;
    position: relative;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #FFF622;
  }
  .faq .accordion__marker::before, .faq .accordion__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background-color: #0064B2;
    translate: -50% -50%;
    transition: rotate 0.3s;
  }
  .faq .accordion__marker::after {
    rotate: 90deg;
  }
  .faq .accordion__summary {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    list-style-type: none;
    border-radius: 15px;
    background-color: #0064B2;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .faq .accordion__summary:hover {
    opacity: 0.7;
  }
  .faq .accordion__summary::-webkit-details-marker {
    display: none;
  }
  .faq .accordion__summary::marker {
    display: none;
  }
  .faq .accordion__summary .accordion__icon {
    background-color: #fff;
  }
  .faq .accordion__summary .accordion__icon > svg {
    width: 12px;
    height: 12px;
  }
  .faq .accordion__summary .accordion__text {
    color: #fff;
  }
  .faq .accordion__content {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #fff;
  }
  .faq .accordion__content .accordion__icon {
    background-color: #0064B2;
  }
  .faq .accordion__content .accordion__icon > svg {
    width: 12px;
    height: 13px;
  }
  .faq .accordion:open .accordion__summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .faq .accordion:open .accordion__marker::after {
    rotate: 0deg;
  }
  .faq .faq-contact {
    padding-bottom: 60px;
  }
}/*# sourceMappingURL=style.css.map */