body {
}

/* MOBILE MENU */
.header-row {
    align-items: center;
}

.main-menu {
    margin-right: 0 !important;
}

.mobile-menu-button {
    display: none;
    color: white;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
    border-radius: 5px;
}

.mobile-menu-active--open {
    display: block !important;
}

.mobile-menu-active--open ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.mobile-menu-active--open li {
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    width: 100%;
}

.mobile-menu-active--open li a {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu-active {
        display: none;
    }
}
/* END OF MOBILE MENU */


/* GENERAL FIXES */
.supple-area h3 {
    line-height: 1.2;
    padding: 10px;
    box-sizing: border-box;
}

.supple-area .section-title {
    height: unset;
}

.faq-area .faq-wrapper {
    margin-top: 0px;
}

.faq-wrapper .btn-link {
    width: 100%;
    white-space: normal;
    text-align: left;
    padding-right: 5px;
}

@media (max-width: 768px) {
    .faq-wrapper .btn-link:hover {
        border-bottom: 1px solid #321e41;
        color: #321E41;
    }
}
