h-faq{
    display: block;
}

h-faq .h-faq-container{
    display: flex;
    flex-direction: column;
}

h-faq .h-faq-item{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

h-faq .h-faq-item.is-hidden{ display: none; }

h-faq .h-faq-item:first-child{
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

h-faq .h-faq-item-header{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 22px 0;
    color: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

h-faq .h-faq-item-header-title{
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--font-akzidenz-grotesk-super);
}

h-faq .h-faq-item-header-icon{
    display: flex;
    flex: 0 0 auto;
    transform: rotate(180deg);
    transition: transform 0.35s ease;
}

h-faq .h-faq-item-header-icon svg{
    display: block;
    width: 24px;
    height: auto;
}

h-faq .h-faq-item-header[aria-expanded="true"] .h-faq-item-header-icon{
    transform: rotate(0deg);
}

h-faq:defined .h-faq-item-content{
    display: grid;
    grid-template-rows: 0fr;
    margin-bottom: 0;
    visibility: hidden;
    transition: grid-template-rows 0.35s ease, margin-bottom 0.35s ease, visibility 0s linear 0.35s;
}

h-faq:defined .h-faq-item.is-open .h-faq-item-content{
    grid-template-rows: 1fr;
    margin-bottom: 22px;
    visibility: visible;
    transition: grid-template-rows 0.35s ease, margin-bottom 0.35s ease, visibility 0s linear;
}

h-faq .h-faq-item-content-inner{
    min-height: 0;
    overflow: hidden;
}

h-faq .h-faq-item-content{
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    font-family: var(--font-gotham-medium);
}

h-faq .h-faq-item-content-inner > :first-child{
    margin-top: 0;
}

h-faq .h-faq-item-header:focus-visible{
    outline: 2px solid currentColor;
    outline-offset: 4px;
}
h-faq .h-faq__href{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 50px;
    width: 100%;
    max-width: 450px;
    color: #FFFFFF !important;
    background-color: #F78500;
    font-size: 26px;
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    margin-inline: auto;
    margin-top: 80px;
    border: 0;
    cursor: pointer;
}

@media(max-width:959px){
    h-faq .h-faq-item-header{
        gap: 20px;
        padding: 20px 0;
    }

    h-faq .h-faq-item-header-title{
        font-size: 18px;
    }

    h-faq .h-faq-item-content{
        font-size: 12px;
        font-weight: 300;
    }

    h-faq .h-faq-item-header-icon svg{
        width: 24px;
    }

    h-faq:defined .h-faq-item.is-open .h-faq-item-content{
        margin-bottom: 20px;
    }
    h-faq .h-faq__href{
        margin-top: 5.3333vw;
        max-width: 100%;
        font-size: 4vw;
        padding-block: 8px;
    }
}

@media (prefers-reduced-motion: reduce){
    h-faq:defined .h-faq-item-content,
    h-faq .h-faq-item-header-icon{
        transition: none;
    }
}
