body
{
    background: #FFD57A;
    color: #6E5A5B;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
}

.logo
{
    text-align: center;
}

.logo img
{
    width: 400px;
    max-width: 80%;
}

.author_box
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0 auto;
    background: #FFD477;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 9999px;
}

header h1
{
    font-size: 3rem;
    font-weight: 700;
}

.head_description
{
    margin-top: 1rem;
}

.section_title
{
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: 700;
}

.section_title.section_title--center
{
    justify-content: center;
}

.section_title span
{
    font-size: inherit;
}

.card_deck
{
    max-width: 100%;
}

cite
{
    display: block;
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    font-size: 1.5rem;
    text-align: center;
}

cite small
{
    font-size: 14px;
}

.main_content .description
{
    font-size: 1.25rem;
}

.details_list
{
    display: block;
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.details_list > li
{
    display: block;
    margin-bottom: 10px;
}

.cards_filter
{
    display: flex;
    list-style: none;
    margin: 50px 0 30px 0;
    padding: 0;
}

.cards_filter > li
{
    margin: 0 30px 0 0;
}

.cards_filter > li > a
{
    display: block;
    min-width: 63px;
    min-height: 63px;
    border-radius: 100%;
    text-decoration: none;
    color: initial;
    text-align: center;
    background: #FFD57A;
    cursor: pointer;
    color: #fff;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cards_filter > li > a:hover
{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cards_filter > li > a > div
{
    display: none;
}

.cards_filter > li > a.active
{
    width: auto;
    min-width: 250px;
    height: auto;
    padding: 10px 30px;
    border-radius: 9999px;
}

.cards_filter > li > a.active > div
{
    display: block;
}

.cards_filter > li > a.type1
{
    background: #F39031;
}

.cards_filter > li > a.type2
{
    background: #32B9E4;
}

.cards_filter > li > a.type3
{
    background: #F1C923;
}

.cards_filter > li > a.type4
{
    background: #26AD78;
}

.cards_filter > li > a.type5
{
    background: #AC65A6;
}

.cards_filter > li > a.type6
{
    background: #EA4D5E;
}

.cards_filter > li > a > div > strong
{
    display: block;
    font-size: 1rem;
    line-height: 1rem;
}

.cards_list_container
{
    margin-top: 50px;
}

.cards_list
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_list > li
{
    display: flex;
    width: 100%;
    cursor: default;
}

.cards_list > li > div.cards_list_content
{
    display: flex;
    align-items: flex-start;
}

.cards_list > li > div.cards_list_content > img
{
    max-width: 400px;
    height: auto;
}

.cards_list > li > div.cards_list_content > div
{
    margin: 0 0 0 50px;
}

.cards_list > li > div.cards_list_content div > h3
{
    font-weight: 700;
    margin-bottom: 0;
}

.cards_list > li > div.cards_list_content div > h4
{
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cards_list > li > div.cards_list_content > div > ul
{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_list > li > div.cards_list_content > div > ul.col2
{
    columns: 2;
}

.cards_list > li > div.cards_list_content > div > ul > li
{
    display: block;
    background: #FFD57A;
    padding: 5px 20px;
    margin-bottom: 15px;
    border-radius: 9999px;
}

.cards_list > li > div > strong
{
    display: block;
    font-size: 1.25rem;
}

.cards_list > li > div > img
{
    display: block;
    width: 100%;
    border-radius: 15px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}


.dowload_section_map
{
    background: #6E5A5B;
    margin: 30px 0 0 0;
    border-radius: 15px;
    padding: 15px 0;
}

.dowload_section_map > img
{
    display: block;
    margin: 0 auto;
    max-width: 80%;
}

.button
{
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    margin: 0;
    background: #6E5A5B;
    border-bottom: 3px solid transparent;
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover
{
    background: #FFD57A;
    border-bottom: 3px solid #6E5A5B;
    color: initial;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.button.button--accent
{
    background: #EA4D5E;
}

.button.button--accent:hover
{
    border-bottom: 3px solid #6E5A5B;
    color: #fff;
}


.section-bubble, .section-bubble_type-b, .section-bubble_type-a, .section-bubble5, .section-bubble4, .section-bubble3, .section-bubble2, .section-header
{
    margin-bottom: 20vw;
    position: relative;
}

.section-bubble:after, .section-bubble_type-b:after, .section-bubble_type-a:after, .section-bubble5:after, .section-bubble4:after, .section-bubble3:after, .section-bubble2:after, .section-header:after
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20vw;
    background: url("") green;
    background-size: 100%;
    transform: translate(0, 100%);
}

.section-header
{
    background-color: #ffffff;
}

.section-header:after
{
    background-color: #FFD477;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 1185 248'><circle cx='76' cy='121.1' r='20' class='a'/><circle cx='870' cy='201.1' r='11' class='a'/><circle cx='814.5' cy='165.6' r='24.5' class='a'/><path d='M0 0v17.7c22.7 14.8 53 31.9 90.7 51.5 150.8 78 322 116.6 424.8 69.3 102.9-47.4 138-69.3 210.8-69.3s118.3 48.6 219.5 38.3 76.3-59.3 188.7-59.3c18.9 0 35.5 2.6 50.5 6.8V0H0z' class='a'/></svg>");
}

.section-bubble2
{
    background-color: #FFD477;
}

.section-bubble2:after
{
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1185 248'><path d='M50.5 199.8c112.4 0 87.5-49 188.7-59.3s146.7 38.3 219.5 38.3 107.9-21.9 210.8-69.3c102.8-47.3 274-8.7 424.8 69.3 37.7 19.5 68 36.7 90.7 51.5V0H0v193C15 197.2 31.6 199.8 50.5 199.8zM1109 106.9c11 0 20 9 20 20 0 11-9 20-20 20s-20-9-20-20C1089 115.9 1098 106.9 1109 106.9zM370.5 57.9c13.5 0 24.5 11 24.5 24.5 0 13.5-11 24.5-24.5 24.5S346 95.9 346 82.4C346 68.9 357 57.9 370.5 57.9zM315 35.9c6.1 0 11 4.9 11 11s-4.9 11-11 11 -11-4.9-11-11S308.9 35.9 315 35.9z' fill='%23ffd477'/></svg>");
}

.section-bubble3
{
    background-color: #fff;
}

.section-bubble3:after
{
    background-color: #C5E4F6;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 1185 248'><circle cx='76' cy='121.1' r='20' class='a'/><circle cx='870' cy='201.1' r='11' class='a'/><circle cx='814.5' cy='165.6' r='24.5' class='a'/><path d='M0 0v17.7c22.7 14.8 53 31.9 90.7 51.5 150.8 78 322 116.6 424.8 69.3 102.9-47.4 138-69.3 210.8-69.3s118.3 48.6 219.5 38.3 76.3-59.3 188.7-59.3c18.9 0 35.5 2.6 50.5 6.8V0H0z' class='a'/></svg>");
}

.section-bubble4
{
    background-color: #C5E4F6;
}

.section-bubble4:after
{
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1185 248'><path d='M50.5 199.8c112.4 0 87.5-49 188.7-59.3s146.7 38.3 219.5 38.3 107.9-21.9 210.8-69.3c102.8-47.3 274-8.7 424.8 69.3 37.7 19.5 68 36.7 90.7 51.5V0H0v193C15 197.2 31.6 199.8 50.5 199.8zM1109 106.9c11 0 20 9 20 20 0 11-9 20-20 20s-20-9-20-20C1089 115.9 1098 106.9 1109 106.9zM370.5 57.9c13.5 0 24.5 11 24.5 24.5 0 13.5-11 24.5-24.5 24.5S346 95.9 346 82.4C346 68.9 357 57.9 370.5 57.9zM315 35.9c6.1 0 11 4.9 11 11s-4.9 11-11 11 -11-4.9-11-11S308.9 35.9 315 35.9z' fill='%23C5E4F6'/></svg>");
}

.section-bubble5
{
    background: #fff;
}

.section-bubble5:after
{
    background-color: #FFD477;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1185 248'><path d='M50.5 199.8c112.4 0 87.5-49 188.7-59.3s146.7 38.3 219.5 38.3 107.9-21.9 210.8-69.3c102.8-47.3 274-8.7 424.8 69.3 37.7 19.5 68 36.7 90.7 51.5V0H0v193C15 197.2 31.6 199.8 50.5 199.8zM1109 106.9c11 0 20 9 20 20 0 11-9 20-20 20s-20-9-20-20C1089 115.9 1098 106.9 1109 106.9zM370.5 57.9c13.5 0 24.5 11 24.5 24.5 0 13.5-11 24.5-24.5 24.5S346 95.9 346 82.4C346 68.9 357 57.9 370.5 57.9zM315 35.9c6.1 0 11 4.9 11 11s-4.9 11-11 11 -11-4.9-11-11S308.9 35.9 315 35.9z' fill='%23ffffff'/></svg>");
}

.section-bubble6
{
    background-color: #FFD477;
}

.retailers_list
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin: 30px 0 30px 0;
    padding: 0;
    justify-content: flex-start;
}

.retailers_list.retailers_list--alt
{
    justify-content: center;
}

.retailers_list > li
{
    display: block;
    margin: 0 30px 30px 0;
}

.retailers_list.retailers_list--alt > li
{
    margin: 0 15px 30px 15px;
}

.retailers_list > li > a
{
    display: block;
    padding: 20px 30px;
    text-align: center;
    color: initial;
    border: 1px solid #6E5A5B;
    border-bottom-width: 3px;
    border-radius: 15px;
    text-decoration: none;
    background: #fff;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.retailers_list > li > a:hover
{
    border-color: #FFD477;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.retailers_list > li > a > img
{
    display: block;
    margin: 0 auto 15px;
    border-radius: 6px;
}

.retailers_list.retailers_list--alt
{
    justify-content: center;
}

.retailers_list > li > a > strong
{
    display: flex;
    align-items: center;
    width: fit-content;
    background: #6E5A5B;
    color: #fff;
    padding: 5px 15px;
    margin: 15px auto 0;
    font-weight: 500;
    border-radius: 9999px;
    font-size: 13px;
}

.retailers_list > li > a > strong .material-symbols-outlined
{
    display: block;
    width: auto;
    height: auto;
    margin-right: 10px;
}

.retailers_list > li > a:hover > strong
{
    background: #FFD477;
    color: initial;
}

/* responsive */
@media(max-width:992px)
{
    .cards_list > li > div.cards_list_content
    {
        flex-direction: column;
        margin: 0 auto;
    }

    .cards_list > li > div.cards_list_content > img
    {
        max-width: 100%;
    }

    .cards_list > li > div.cards_list_content > div
    {
        margin: 30px 0 0 0;
    }

    .cards_list > li > div.cards_list_content > div > ul.col2
    {
        columns: unset;
    }

    .card_deck
    {
        display: block;
        max-width: 80%;
        margin: 50px auto 0;
    }
}

@media(max-width:768px)
{
    .section-header
    {
        padding-bottom: 30px;
    }

    .section_title
    {
        text-align: center;
        margin-bottom: 30px;
    }

    .section_title .material-symbols-outlined
    {
        display: none;
    }

    header
    {
        text-align: center;
    }

    .head_description
    {
        text-align: center;
    }

    .cards_filter
    {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
    }

    .cards_filter > li
    {
        margin: 0 15px 15px;
    }

    .cards_filter > li > a.active > div
    {
        display: none;
    }

    .cards_filter > li > a.active
    {
        min-width: 63px;
        padding: 0;
        border-radius: 100%;
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }


    .section-bubble2
    {
        text-align: center;
    }

    .details_list
    {
        text-align: left;
    }

    cite
    {
        line-height: 1.75rem;
    }

    .retailers_list
    {
        flex-direction: column;
    }

    .retailers_list > li
    {
        margin: 0 0 30px 0;
    }

    .retailers_list > li:last-child
    {
        margin-bottom: 0;
    }
}
