/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
 p.accordion-content.accordion-show a {
    font-size: 20px;
    display: inline;
    margin: 0;
    padding: 0 10px;
    line-height: 0;
    font-weight: 500;
    background: #F6CE47;
    color: #292D34 !important;
}
p.accordion-content.accordion-show a:after {
    display: none;
}
.accordion-block {
    background-image: var(--background-image);
}
.accordion-block {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #F2F2F2;
    position: relative;
    color: #292D34;
}
.accordion-block-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 200px 0 300px;
    display: flex;
}
.accordion-block-inner:before {
    top: 100px;
    position: absolute;
    content: " ";
    width: 800px;
    height: 800px;
    left: -200px;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='400' cy='400' r='399' stroke='%23FFFFFF20' stroke-width='2' fill='none' /%3E%3C/svg%3E%0A");
}
.accordion-headings {
    width: 50%;
    margin-right: 70px;
}
.accordion-entries{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
    margin-top: -20px;
}
.accordion-heading {
    margin: 0;
    font-size: 60px;
    line-height: 77px;
    font-weight: bold;
}
.accordion-entry {
    border-bottom: 1px solid;
    padding: 20px 0;
}
.accordion-entry a {
    font-size: 32px;
    line-height: 48px;
    margin: 0;
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: bold;
    padding-right: 25px;
}
.accordion-entry a:after {
    position: absolute;
    content: " ";
    width: 19px;
    height: 16px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='19.055' height='16.163' viewBox='0 0 19.055 16.163'%3E%3Cg id='Group_1127' data-name='Group 1127' transform='translate(1468.5 -15702.751) rotate(-90)'%3E%3Cline id='Line_54' data-name='Line 54' y2='17.78' transform='translate(-15710.833 -1468.5)' fill='none' stroke='%23292d34' stroke-width='2'/%3E%3Cg id='Group_122' data-name='Group 122' transform='translate(-15717.5 -1457.527)'%3E%3Cline id='Line_52' data-name='Line 52' x2='6.667' y2='6.667' fill='none' stroke='%23292d34' stroke-linecap='square' stroke-width='2'/%3E%3Cline id='Line_53' data-name='Line 53' x1='6.667' y2='6.667' transform='translate(6.667)' fill='none' stroke='%23292d34' stroke-linecap='square' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    right: 0;
    transform: rotate(90deg);
    top: 16px;
}
.accordion-content {
    margin: 0;
    font-size: 20px;
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-show {
    height: auto;
    opacity: 1 !important;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.accordion-rotate:after {
    transform: rotate(270deg) !important;
}

.accordion-block.light {
    color: white;
}
.accordion-block.light .accordion-entries{
    color: white;
}

.accordion-block.light .accordion-entry a {
    color: white;
}
.accordion-block.light .accordion-entry a:after {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='19.055' height='16.163' viewBox='0 0 19.055 16.163'%3E%3Cg id='Group_1127' data-name='Group 1127' transform='translate(1468.5 -15702.751) rotate(-90)'%3E%3Cline id='Line_54' data-name='Line 54' y2='17.78' transform='translate(-15710.833 -1468.5)' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Cg id='Group_122' data-name='Group 122' transform='translate(-15717.5 -1457.527)'%3E%3Cline id='Line_52' data-name='Line 52' x2='6.667' y2='6.667' fill='none' stroke='%23ffffff' stroke-linecap='square' stroke-width='2'/%3E%3Cline id='Line_53' data-name='Line 53' x1='6.667' y2='6.667' transform='translate(6.667)' fill='none' stroke='%23ffffff' stroke-linecap='square' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

@media (max-width: 1180px) {
    p.accordion-content.accordion-show a {
        font-size: 15px;
    }
    .accordion-block {
        background-image: var(--mobile-background-image);
    }
    .accordion-block-inner {
        padding: 80px 35px;
        flex-direction: column;
    }
    .accordion-headings {
        width: 100%;
        margin: 0;
    }
    .accordion-entries {
        width: 100%;
        margin-top: 0;
    }
    .accordion-heading {
        font-size: 30px;
        line-height: 35px;
    }
    .accordion-entry a {
        font-size: 20px;
        line-height: 25px;
    }
    .accordion-entry a:after {
        top: 5px;
    }
    .accordion-content {
        font-size: 15px;
    }
    .accordion-block-inner:before {
        display: none;
    }
}