.site-header {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block-start: 42px;
    padding-block-end: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}

.site-navigation ul {
    list-style-type: none;
    padding: 0;
}

.site-footer {
    border-top: 3px solid #8DD8F4;
    padding: 38px 12px;
    text-align: center;
}

.site-footer .site-branding {
    margin-bottom: 32px;
}

.site-footer .site-branding.show-logo {
    line-height: 0;
}

.site-footer .site-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-footer .site-navigation ul {
    font-weight: 400;
}

.site-footer .site-navigation ul li a {
    display: inline-block;
}

.site-footer .site-navigation {
    margin-bottom: 30px;
}

@media(min-width:768px) {
    .footer-top-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .site-footer .site-branding {
        margin-bottom: 0;
    }

    .site-footer .site-navigation {
        margin-bottom: 0;
    }

    .site-footer .site-navigation ul {
        display: flex;
        flex-direction: unset;
        gap: 0;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

    .site-footer .site-navigation ul li {
        padding-right: 12px;
        padding-left: 12px;
        position: relative;
    }



    .site-footer .site-navigation ul li:not(:last-child):after {
        content: "";
        border-left: 1px solid rgba(255, 255, 255, 0.13);
        height: 34px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media(min-width:992px) {}

@media(min-width:1200px) {}