.faq-big-button-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    list-style: none;
    width: 100%;
    max-width: 884px;
}

.faq-big-button {
    list-style: none;
    border-radius: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14);
    transition: transform 0.4s ease-out;
    cursor: pointer;
    padding: 0;
    width: calc(50% - 10px);
}

.faq-big-button:hover {
    transform: scale(0.95);
}

.faq-big-button:first-child {
    margin-right: 10px;
}

.faq-big-button:last-child {
    margin-left: 10px;
}

.faq-big-button a {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
}

.faq-big-button-title {
    font-size: 21px;
    padding: 6px 18px 8px;
    border-radius: 20px;
    font-weight: 600;
    width: fit-content;
    margin: 15px auto 0;
}

.faq-big-button-b2c .faq-big-button-title {
    background-color: var(--yellow-main);
    color: var(--font-black);
}

.faq-big-button-b2b .faq-big-button-title {
    background-color: var(--red-main);
    color: #fff;
}

@media (max-width: 768px) {
    .faq-big-button {
        width: calc(50% - 5px);
    }

    .faq-big-button:first-child {
        margin-right: 5px;
    }
    
    .faq-big-button:last-child {
        margin-left: 5px;
    }
    .faq-big-button-title {
        font-size: 1em;
        padding-left: 12px;
        padding-right: 12px;
    }
    .faq-big-button a {
        padding: 17px 5px;
    }

    .faq-big-button img {
        padding-bottom: 10%;
        width: 120px;
    }
}

/* FAQ navigation */

.faq-nav-box {
    border-radius: 20px;
    margin-bottom: 26px;
    padding: 17px 30px 42px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.14);
}

.faq-nav-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.faq-nav-box-title {
    margin-bottom: 0;
    margin-left: 21px;
    font-size: 32px;
    font-weight: 400;
}

.faq-nav-box-body {
    position: relative;
    overflow: hidden;
}

.faq-nav-mask {
    position: relative;
    /* display: flex;
    justify-content: space-between;
    row-gap: 54px; */
    display: grid;
    grid-template-columns: 33% 32% 28%;
    grid-gap: 40px;
}

.faq-nav-list {
    text-align: left;
    overflow: hidden;
    padding-right: 20px;
    transition: all 0.25s;
}

.faq-nav-list:not(:nth-child(3)) {
    border-right: 1px solid #bdbdbd;
}

.faq-nav-list:last-child {
    border-right: none;
}

.faq-nav-list-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-nav-list-header .dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
}
.faq-nav-list-header a {
    color: inherit;
}

.faq-nav-list-header a:hover {
    text-decoration: none;
}

.faq-nav-list-title {
    font-size: 21px;
    font-weight: 700;
    margin: 0;
}

ul.faq-nav-list-items {
    list-style: none;
    padding: 0 0 5px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.faq-nav-list-items li {
    margin-bottom: 10px;
}

.faq-nav-list-items a {
    color: #252525;
    font-size: 1.1em;
    line-height: 20px;
}

.faq-nav-btn {
    border: 1px solid #252525;
    border-radius: 10px;
    color: var(--font-black);
    padding: 1px 6px 1px 8px;
    font-size: 12px;
    background: #fff;
    outline: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: max-content;
}

.faq-nav-btn-mobile {
    padding: 0;
    height: 22px;
    width: 22px;
    border-radius: 100%;
}

.faq-nav-btn img {
    margin-left: 4px;
}

.faq-nav-btn.faq-nav-btn-mobile img {
    margin: 0 auto;
    width: 10px;
}

.faq-nav-tag {
    width: fit-content;
    color: #252525;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 600;
    padding: 0 20px 2px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.faq-nav-tag.red {
    background-color: #d0103a;
    color: #fff;
}

.faq-nav-tag .close-icon {
    width: 0;
    display: inline-block;
    opacity: 0;
    transition: all 0.2s;
    font-size: 16px;
    padding-top: 2px;
}

.faq-nav-tag:hover {
    padding-right: 12px;
    text-decoration: none;

}

.faq-nav-tag:hover .close-icon {
    width: 1em;
    opacity: 1;
    margin-left: 12px;
}

.faq-nav-container {
    margin-top: 26px;
}

/* FAQ copy */

.faq-main-title {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 39px;
    padding-left: 10px;
    width: 100%;
}

.faq-main-title h2 {
    margin: 0px 0 0px 20px;
    font-weight: 400;
    font-size: 42px;
}


.faq-section {
    padding: 85px 13px;
    border-bottom: 1px solid #252525;
}

.faq-section:first-of-type {
    padding-top: 40px;
}

.faq-content:last-child .faq-section:last-of-type {
    border-bottom: none;
}

.faq-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    padding-bottom: 30px;
    margin-bottom: 15px;
}

.faq-el {
    margin-bottom: 15px;
}

.faq-header {
    border: none;
    flex: 1;
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding: 10px 30px 11px 0;
    text-align: start;
}

.faq-header:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-left: 9px;
    margin-bottom: 0;
}

.faq-header * {
    display: initial;
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.5s;
}

.faq-answer a {
    color: #d0103a;
    text-decoration: underline;
}

/* side navigation */

.faq-side-nav {
    position: absolute;
    transform: translateY(95px);
    right: 0;
    padding: 30px 30px 26px 20px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 20px 40px -4px #00000014;
    transition: opacity 0.3s;
}

.faq-side-nav.fixed {
    position: fixed;
    top: 100px;
    z-index: 1;
}

.faq-side-nav.hide {
    pointer-events: none;
}

.faq-side-nav-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-left: 10px;
}

.faq-side-nav a.faq-section-link:hover {
    text-decoration: none;
}

.faq-side-nav .faq-section-link a:hover {
    text-decoration: none;
}

.faq-side-nav-subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-left: 10px;
}

.faq-side-nav-subtitle img {
    width: 27px;
    height: 27px;
    margin-right: 8px;
}

.faq-side-nav ul {
    list-style: none;
    padding-left: 20px;
    padding-bottom: 30px;
}

.faq-side-nav .faq-side-nav-links {
    padding: 3px 0;
    display: flex;
    align-items: baseline;
}

.faq-side-nav .faq-side-nav-links.current {
    font-weight: 600;
}

.faq-side-nav .faq-side-nav-links.current .dot {
    transform: scale(1.4);
    transform-origin: center;
}

.faq-side-nav a {
    color: unset;
}

.faq-side-nav .faq-side-nav-links span:nth-child(2) {
    max-width: 87%;
}

.faq-side-nav .dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    margin-right: 18px;
}

.dot.red {
    background-color: #d0103a;
}

.faq-side-nav .scroll-top-btn {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    margin-left: 5px;
}

.faq-scroll-top-btn {
    display: none;
    bottom: 50px;
    right: 0;
    position: fixed;
    z-index: 2;
}

.faq-scroll-top-btn .scroll-top-button {
    right: 23px;
    width: 40px;
    height: 40px;
}

/* tablet */

@media (max-width: 1024px) {
    .faq-side-nav {
        display: none;
    }

    .faq-nav-container {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 18px;
    }

    section.faq-nav-box {
        padding: 18px 20px 10px;
        margin-bottom: 0;
    }

    .faq-nav-box-header {
        justify-content: center;
        padding-right: 18px;
    }

    .faq-nav-box-header img {
        width: 44px;
        height: 44px;
    }

    .faq-nav-box-title {
        font-size: 24px;
    }

    .faq-nav-mask {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .faq-nav-list:not(:nth-child(3)) {
        border-right: none;
    }

    .faq-nav-list {
        width: 100% !important;
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 18px;
        flex-wrap: wrap;
        padding-right: 0;
        row-gap: 7px;
    }

    .faq-nav-list-header {
        margin-bottom: 0;
        flex-grow: 1;
        max-width: 75%;
    }

    .faq-nav-list-header a {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .faq-nav-separator,
    ul.faq-nav-list-items {
        display: none;
    }

    .faq-nav-list-title {
        font-size: 1.1em;
    }

    a.faq-link:hover {
        text-decoration: none;
    }
}

/* mobile */

@media (max-width: 768px) {

    .faq-section {
        padding: 80px 0 50px;
    }

    .faq-nav-container {
        grid-template-columns: 1fr;
    }

    .faq-nav-tag {
        font-size: 18px;
        padding: 5px 11px 7px 17px;
    }

    .faq-nav-tag .close-icon {
        width: 1em;
        opacity: 1;
        margin-left: 14px;
        font-size: 13px;
    }

    .faq-scroll-top-btn.show {
        display: block;
    }

    .faq-nav-list-header {
        max-width: unset;
    }

    .faq-main-title {
        padding-left: 0;
        padding-top: 63px;
        justify-content: center;
    }

    .faq-main-title img {
        height: 43px;
        width: 50px;
    }

    .faq-main-title h2 {
        font-size: 24px;
        margin-left: 9px;
    }

    .faq-section:first-of-type {
        padding-top: 60px;
    }

    .faq-title {
        font-size: 32px;
        line-height: 41px;
        text-align: center;
        padding: 0 30px 21px;
        margin-bottom: 31px;
    }

    .faq-header {
        padding: 10px 0;
    }

    .faq-question {
        font-size: 1.1rem;
        font-weight: 400;
    }

    .faq-answer > div {
        padding: 12px 20px 16px;
        border-radius: 10px;
        background-color: #ffffff;
    }

}