/* wrapper/container
======================================================================================================================*/
.main-footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    order: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (min-width: 1024px) {
    .site-footer {
        flex-direction: row;
        justify-content: space-between;

        order: 2;
    }
}

/* footer-bar
======================================================================================================================*/
.social-footer-wrapper {
    display: flex;
    width: 100%;
    order: 2;
}

@media screen and (min-width: 1024px) {
    .social-footer-wrapper {
        order: 1;
    }
}

/* secondary
----------------------------------------------------------------------------------------------------------------------*/
.footer-secondary {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

#menu-footer-links {
    display: flex;
    flex-direction: column;

    list-style: none;
    margin: 0;
    padding: 0;

    font-size: 12px;
    font-weight: 600;
}

#menu-footer-links ul {
    display: flex;
    flex-direction: column;

    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-footer-links li a {
    transition: color linear 0.2s;
    color: #86aae1;
}

#menu-footer-links li a:hover {
    color: white;
}

@media screen and (max-width: 1023px) {
    #menu-footer-links {
        margin-bottom: 20px;
    }

    #menu-footer-links li {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-secondary {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #menu-footer-links {
        flex-direction: row;
    }

    #menu-footer-links ul {
        flex-direction: row;
    }

    #menu-footer-links li {
        padding-left: 10px;
        padding-right: 10px;
    }
    #menu-footer-links li:first-of-type {
        padding-left: 0px;
    }
}

/* social
----------------------------------------------------------------------------------------------------------------------*/
.menu-footer-social-container {
    display: flex;
    flex-direction: row;
}

.menu-footer-social-container a,
.footer-social-link {
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    color: #86aae1;
    transition: color linear 0.2s;
    font-size: 20px;
}

.menu-footer-social-container a:first-child,
.footer-social-link:first-child {
    margin-left: 0;
}

.menu-footer-social-container a:last-child,
.footer-social-link:last-child {
    margin-right: 0;
}

.menu-footer-social-container a:focus,
.menu-footer-social-container a:hover,
.footer-social-link:focus,
.footer-social-link:hover {
    color: #fff;
}

/* main
======================================================================================================================*/

/* info container
----------------------------------------------------------------------------------------------------------------------*/
.footer-info-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    color: #86aae1;
    font-size: 14px;
}

.footer-info-container a {
    color: inherit;
}

.footer-info-container a:hover {
    color: white;
}

@media screen and (max-width: 1023px) {
    .footer-info-container {
        margin-bottom: 80px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-info-container {
        width: 25%;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* logo
----------------------------------------------------------------------------------------------------------------------*/
.footer-logo {
    /*margin-bottom: 80px;*/
	margin-bottom: 0px;
}

.footer-logo img {
    display: block;
}

@media screen and (max-width: 1023px) {
    .footer-logo {
        margin-bottom: 80px;
    }
}

/* quick-links
----------------------------------------------------------------------------------------------------------------------*/

.footer-quick-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.quick-links-header {
    color: #fff;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding-bottom: 10px;
}

.quick-links-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.quick-links-container li {
    margin-bottom: 10px;
}

.quick-links-container a {
    color: #86aae1;
    font-size: 14px;
}

.quick-links-container a:hover {
    color: white;
}

.quick-links-navigation-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.quick-links-navigation-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1023px) {
    .footer-quick-links {
        margin-bottom: 80px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-quick-links {
        width: 63%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .quick-links-container {
        flex-direction: row;
    }
}

/* footer buttons
----------------------------------------------------------------------------------------------------------------------*/
.footer-buttons-navigation-container {
    display: flex;
    width: 100%;
    flex-direction: column;
}

#menu-footer-buttons a {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);

    transition: all linear 0.2s;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

#menu-footer-buttons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#menu-footer-buttons a:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .footer-buttons-navigation-container {
        width: 12%;
    }
}
