/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



/* Footer */
.site-footer {
    background-color: #444;
    color: #ccc;
    padding: 2rem;
    font-size: 14px;
}


.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 5rem;
    margin-bottom: 10px;
}

.footer-logo .site-title {
    font-weight: 500;
    font-size: .8rem;
    max-width: 300px;
    color: #fff;
    line-height: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    float: right;
    padding-top: 2rem;
    padding-left: 1rem;
}

.footer-col h5 {
    font-size: 14px;
    color: #99bbff;
    margin-bottom: 10px;
}

.footer-col a {
    color: #99bbff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-icons img {
    height: 40px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    margin: 0 auto 20px auto;
    background: transparent;
    border: none;
}

.footer-menu-toggle .bar {
    height: 4px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.footer-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.footer-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.footer-menu {
    display: contents;
    flex-wrap: wrap;
    justify-content: left;
    padding: .5rem 0 0 0;
    transition: max-height 0.4s ease-in-out;
    overflow: hidden;
}

.footer-menu a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: #B1CEFF;
    font-weight: 300;
    padding-right: .5rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-links {
    display: block;
    width: 100%;
    padding: 0 0 .5rem 0;
    border-bottom: 1px solid #555;
}

.footer-nav a.highlight {
    font-weight: bold;
}

.footer-nav {
    display: block;
    width: 100%;
    border-top: 1px solid #555;
    padding: .5rem 0 0 0;

}

.footer-nav a {
    color: #fff;
    font-size: .8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding-right: .5rem;
}

.footer-bottom {
    display: contents;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 12px;
}

.footer-bottom a {
    color: #556A8D;
    padding: .5rem;
    font-weight: 300;
}

.footer-col address {
    font-size: .85rem;
    line-height: 1.2rem;
    font-style: normal;
}

.footer-col p {
    font-size: .85rem;
    line-height: 1.2rem;
    font-style: normal;
}

.copyrigth {
    display: inline-flex;
    float: left;
    line-height: 2rem;
}

.privacy {
    display: inline-flex;
    float: right;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-top {
        display: inline-block;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #556A8D;
    }

    .footer-col {
        margin-top: 1rem;
    }

    .site-footer {
        padding: 2rem;
        font-size: 14px;
        display: flow-root;
    }

    .footer-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu.active {
        display: flex;
        padding-bottom: 2rem;
    }

    button.footer-menu-toggle {
        display: flex;
        background-color: #99bbff;
        color: #444;

    }

    .footer-nav {
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #556A8D;
    }

    .footer-nav a {
        color: #99bbff;
        display: block;
        width: 100%;
        border-bottom: 1px solid #556A8D;
        padding: .5rem;
    }

    .footer-links {
        display: block;
        width: 100%;
        text-align: left;
    }

    .footer-links a {
        background-color: #444;
        color: #fff;
        display: block;
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding: .5rem;
    }

    .copyrigth {
        display: inline-flex;
        float: left;
        line-height: 1.1rem;
    }

    .privacy a {
        display: inline-flex;
        float: right;
    }

    .footer-bottom a {
        color: #556A8D;
        padding: .5rem;
        font-weight: 300;
    }

    .footer-logo .site-title {
        font-weight: 500;
        font-size: .8rem;
        max-width: 300px;
        color: #fff;
        line-height: 1rem;
        font-family: Georgia, 'Times New Roman', Times, serif;
        display: flex;
        float: right;
        padding-top: 2rem;
        padding-left: 1rem;
    }
}