@charset "utf-8";
/* CSS Document */

/* =========================================================
   MODERN SITE FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    background: #f7f7f5;
    color: #333;
    border-top: 1px solid #e6e6e2;
}


/* =========================================================
   MAIN FOOTER AREA
   ========================================================= */

.site-footer-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 70px 0 60px;

    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 60px;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    min-width: 0;
	text-align: left;
}

.footer-column h3 {
    margin: 0 0 22px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;

    color: #222;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-logo {
    display: inline-block;

    margin: 0 0 18px;
text-align:left;
    color: #222;
    text-decoration: none;

    font-family: inherit;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-logo:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}


.footer-description {
    max-width: 340px;

    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   LINKS
   ========================================================= */

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li {
    margin: 0 0 12px;
}

.footer-links a {
    position: relative;

    display: inline-block;

    color: #666;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: #222;
    transform: translateX(3px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact address {
    margin: 0;

    font-style: normal;
}

.footer-contact p {
    margin: 0 0 16px;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}

.footer-contact a {
    color: #666;
    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #222;
}


.footer-hours {
    padding-top: 5px;
}

.footer-hours strong {
    color: #333;
    font-weight: 600;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;
	text-align: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid #d8d8d4;
    border-radius: 50%;

    color: #555;
    background: transparent;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    background: #222;
    border-color: #222;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.footer-bottom {
    border-top: 1px solid #e2e2de;
}

.footer-bottom-inner {
    width: min(1200px, 92%);


    min-height: 65px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #888;

    font-size: 12px;
    line-height: 1.5;
}

.footer-credit {
    color: #999;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

	.footer-column { text-align:center; }
	.footer-left { text-align:center;}

    .site-footer-inner {
        width: 88%;
        padding: 50px 0 40px;

        display: grid;
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 500px;
    }
	
	.footer-social {
        justify-content: center;
    }

    .footer-social img {
        display: block;
        margin: 0 auto;
    }
	

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .site-footer-inner {
        width: 88%;
        padding: 50px 0 40px;

        display: grid;
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-logo {
        font-size: 24px;
    }


    .footer-description {
        max-width: 100%;
    }


    .footer-column h3 {
        margin-bottom: 16px;
    }


    .footer-links li {
        margin-bottom: 10px;
    }


    .footer-bottom-inner {
        width: 88%;
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 7px;
    }

}