@charset "utf-8";
/* CSS Document */

.site-footer {
    background: #c1d0b5;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
	width:100%;
	clear:both;
}



.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}


.footer-company-name {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;

    letter-spacing: 0.3px;
}


.footer-description {
    max-width: 500px;

    margin: 0 0 30px;

    color: #000;

    font-size: 15px;
    line-height: 1.8;
}


.footer-contact {
    display: grid;
    gap: 18px;
}


.footer-contact p {
    margin: 0;

    color: #000;

    font-size: 14px;
    line-height: 1.7;
}


.footer-contact strong {
    display: inline-block;

    margin-bottom: 3px;

    color: #000;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-contact a {
    color: #000;
    text-decoration: none;

    transition:
        color 0.25s ease;
}


.footer-contact a:hover {
    color: #000;
}


.footer-social {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 32px;
}


.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;

    color: #000;

    font-size: 13px;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(255, 255, 255, 0.6);

    transform: translateY(-2px);
}


.footer-heading {
    margin: 0 0 18px;


    font-size: 25px;
    font-weight: 500;
}


.footer-map-container {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 6px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}


/*
  keeps the Google Map responsive while maintaining
   a nice desktop aspect ratio.
*/

.footer-map-container::before {
    content: "";

    display: block;

    padding-top: 62.5%;
}


.footer-map-container iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.footer-bottom-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #000;

    font-size: 12px;
    line-height: 1.5;
}


.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}


.footer-bottom-links a {
    color: #000;

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.footer-bottom-links a:hover {
    color: #000;
}



@media screen and (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 55px 25px;
    }


    .footer-company-name {
        font-size: 28px;
    }


    .footer-map {
        max-width: 700px;
    }

}


@media screen and (max-width: 600px) {

    .site-footer {
        margin-top: 40px;
    }


    .footer-container {
        padding: 45px 20px;

        gap: 40px;
    }


    .footer-company-name {
        font-size: 26px;
    }


    .footer-description {
        font-size: 14px;
        line-height: 1.7;
    }


    .footer-social {
        gap: 8px;
    }


    .footer-social a {
        min-width: 0;
        padding: 9px 12px;
    }


    .footer-heading {
        font-size: 23px;
    }


    .footer-bottom-container {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding: 20px;
    }


    .footer-bottom-links {
        justify-content: center;

        gap: 15px;
    }

}



@media screen and (max-width: 380px) {

    .footer-social {
        flex-direction: column;

        align-items: stretch;
    }


    .footer-social a {
        width: 100%;
    }

}

