/*
 ------------------------------------------------------------------------------------------
 Accordion
 ------------------------------------------------------------------------------------------
*/
/* :root {
    --swiper-theme-color: rgb(112, 203, 157);

    --text: 38, 28, 71;
    --blue: 38, 28, 71;
    --blue-light: 48, 60, 120;

    --green: 112, 203, 157;
    --green-darker: 105, 184, 148;
    --green-dark: 97, 168, 140;

    --grey-light: 245, 245, 245;

    --grey: 223, 226, 226;
    --grey-dark: 193, 196, 196;
} */
.accordion-container > h3 {
    margin: 30px 0 15px;
    font-size: calc(24px + (30 - 24) * ((100vw - 320px) / (1600 - 320)));
    text-transform: uppercase;
    font-weight: 300;
    background-image: linear-gradient(to right, #333 10%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 10px 2px;
    background-repeat: repeat-x;
    padding: 45px 0 0;
}
@media screen and (min-width: 768px) {
    .accordion-container > h3 {
        margin: 45px -30px;
        padding: 45px 30px 0;
    }
}
@media screen and (min-width: 768px) {
    .accordion {
        margin-left: -30px;
        margin-right: -30px;
    }
}
.accordion-item {
    border: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    background-color: transparent;
}
.accordion-item:first-of-type {
    border-top: none !important;
}
.accordion-button {
    padding: 15px 0;
    color: inherit !important;
    background-color: transparent !important;
    font-weight: 600;
    font-size: 2rem;
    border: none !important;
    box-shadow: none !important;
    transition: padding .2s ease-in-out;
    line-height: 1.5;
    align-items: flex-start;
}
@media screen and (min-width: 768px) {
    .accordion-button {
        padding: 15px 30px;
    }
}
.accordion-button h4 {
    display: block;
    max-width: 800px;
    padding: 2.5px 0;
    font-size: inherit;
    line-height: inherit;
}
@media screen and (min-width: 768px) {
    .accordion-button:not(.collapsed) {
        padding: 30px;
        margin-top: 30px;
        background-color: #FFFFFF !important;
    }
}
.accordion-button::before {
    transition: transform .2s ease-in-out;
    font-family: 'Material Icons';
    font-weight: normal;
    font-size: 3.5rem;
    display: block;
    line-height: 1;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "\e145";
    margin: 0 15px 0 0;
}
.accordion-button:not(.collapsed)::before {
    content: "\e15b";
}
.accordion-button::after {
    content: '';
    display: none;
}
.accordion-body {
    padding: 0 30px 30px 50px;
}
.accordion-body p:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .accordion-body {
        padding: 0 30px 30px 80px;
    }
    .accordion-button:not(.collapsed) + .accordion-collapse.collapsing,
    .accordion-collapse.show {
        background-color: #FFFFFF;
        margin-bottom: 30px;
    }
}