/* =========================================================
   SNOW HILLS - FOOTER
========================================================= */


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #23201e;

    color: white;

    padding: 60px 20px;

    font-size: 15px;

}


/* =========================================================
   FOOTER SCALE
========================================================= */

.footer-scale {

    transform: scale(1.15);

    /* adjust if needed */

    transform-origin: center;

}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {

    width: 100%;

    max-width: 920px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;

    gap: 60px;

    margin-top: 80px;

}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {

    width: 120px;

    margin-bottom: 20px;

}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer h4 {

    color: #ffffff;

    font-size: 18px;

    margin-bottom: 20px;

    font-family: 'Inter', sans-serif;

}


/* =========================================================
   FOOTER ABOUT TEXT
========================================================= */

.about-text {

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 30px;

    color: white;

}


/* =========================================================
   FOOTER SOCIAL ICON
========================================================= */

.social-icon {

    width: 34px;

    height: 34px;

    border: 1px solid #444;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;

}


/* =========================================================
   SOCIAL ICON HOVER
========================================================= */

.social-icon:hover {

    background: #e94b64;

    border-color: #e94b64;

    color: #fff;

}


/* =========================================================
   FOOTER LISTS
========================================================= */

.footer ul {

    list-style: none;

    padding: 0;

    font-family: 'Inter', sans-serif;

}


.footer ul li {

    margin-bottom: 10px;

    font-family: 'Inter', sans-serif;

}


.footer ul li a {

    color: white;

    font-weight: 400;

    text-decoration: none;

    transition: color 0.3s ease;

    font-family: 'Inter', sans-serif;

}


/* =========================================================
   FOOTER LINK HOVER
========================================================= */

.footer ul li a:hover {

    color: #e94b64;

}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.contact-item {

    display: flex;

    gap: 10px;

    margin-bottom: 12px;

    align-items: flex-start;

    transition: color 0.3s ease;

    color: #bdbdbc;

}


.contact-item span {

    line-height: 1.4;

    font-size: 14px;

}


.contact-item:hover {

    color: #e94b64;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    margin-top: 40px;

    text-align: center;

    font-size: 12px;

    font-weight: 300;

    color: rgb(220, 217, 217);

    position: relative;

}


/* =========================================================
   FOOTER BOTTOM LINE
========================================================= */

.footer-bottom::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 1000px;

    /* line length */

    height: 1px;

    background-color: #333;

    margin-top: -16px;

}


/* =========================================================
   SNOW HILLS - FOOTER RESPONSIVE
========================================================= */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {

        padding: 55px 30px 35px;

        font-size: 14px;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       REMOVE DESKTOP SCALE
    ----------------------------------------------------- */

    .footer-scale {

        transform: none;

        transform-origin: center;
    }


    /* -----------------------------------------------------
       FOOTER CONTAINER
    ----------------------------------------------------- */

    .footer-container {

        width: 100%;

        max-width: 850px;

        margin: 50px auto 0;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 50px;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .footer-logo {

        width: 110px;

        margin-bottom: 18px;
    }


    /* -----------------------------------------------------
       HEADINGS
    ----------------------------------------------------- */

    .footer h4 {

        font-size: 17px;

        margin-bottom: 16px;
    }


    /* -----------------------------------------------------
       ABOUT TEXT
    ----------------------------------------------------- */

    .about-text {

        font-size: 13px;

        line-height: 1.6;

        margin-bottom: 22px;
    }


    /* -----------------------------------------------------
       FOOTER LIST
    ----------------------------------------------------- */

    .footer ul li {

        margin-bottom: 9px;
    }


    .footer ul li a {

        font-size: 14px;
    }


    /* -----------------------------------------------------
       CONTACT
    ----------------------------------------------------- */

    .contact-item {

        gap: 9px;

        margin-bottom: 11px;
    }


    .contact-item span {

        font-size: 13px;

        line-height: 1.5;
    }


    /* -----------------------------------------------------
       BOTTOM
    ----------------------------------------------------- */

    .footer-bottom {

        margin-top: 45px;

        font-size: 11px;

        padding: 0 10px;

        line-height: 1.5;
    }


    .footer-bottom::before {

        width: 100%;

        max-width: 850px;

        margin-top: -15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {

        padding: 45px 20px 25px;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       FOOTER SCALE
    ----------------------------------------------------- */

    .footer-scale {

        transform: none;

        width: 100%;
    }


    /* -----------------------------------------------------
       FOOTER CONTAINER
    ----------------------------------------------------- */

    .footer-container {

        width: 100%;

        max-width: 520px;

        margin: 35px auto 0;

        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       FOOTER LOGO
    ----------------------------------------------------- */

    .footer-logo {

        width: 105px;

        margin-bottom: 15px;
    }


    /* -----------------------------------------------------
       FOOTER HEADINGS
    ----------------------------------------------------- */

    .footer h4 {

        font-size: 17px;

        margin-bottom: 14px;
    }


    /* -----------------------------------------------------
       ABOUT TEXT
    ----------------------------------------------------- */

    .about-text {

        max-width: 480px;

        margin-bottom: 20px;

        font-size: 13px;

        line-height: 1.65;
    }


    /* -----------------------------------------------------
       SOCIAL ICON
    ----------------------------------------------------- */

    .social-icon {

        width: 34px;

        height: 34px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       LISTS
    ----------------------------------------------------- */

    .footer ul {

        margin: 0;
    }


    .footer ul li {

        margin-bottom: 9px;
    }


    .footer ul li a {

        font-size: 14px;
    }


    /* -----------------------------------------------------
       CONTACT
    ----------------------------------------------------- */

    .contact-item {

        gap: 10px;

        margin-bottom: 12px;

        align-items: flex-start;
    }


    .contact-item span {

        font-size: 13px;

        line-height: 1.55;

        word-break: normal;

        overflow-wrap: anywhere;
    }


    /* -----------------------------------------------------
       FOOTER BOTTOM
    ----------------------------------------------------- */

    .footer-bottom {

        margin-top: 35px;

        padding: 0 5px;

        font-size: 10px;

        line-height: 1.6;
    }


    .footer-bottom::before {

        width: 100%;

        max-width: 100%;

        margin-top: -14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {

        padding: 40px 16px 22px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       FOOTER CONTAINER
    ----------------------------------------------------- */

    .footer-container {

        width: 100%;

        max-width: 100%;

        margin-top: 30px;

        gap: 30px;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .footer-logo {

        width: 95px;

        margin-bottom: 13px;
    }


    /* -----------------------------------------------------
       ABOUT TEXT
    ----------------------------------------------------- */

    .about-text {

        font-size: 12.5px;

        line-height: 1.65;

        margin-bottom: 18px;
    }


    /* -----------------------------------------------------
       HEADINGS
    ----------------------------------------------------- */

    .footer h4 {

        font-size: 16px;

        margin-bottom: 13px;
    }


    /* -----------------------------------------------------
       LINKS
    ----------------------------------------------------- */

    .footer ul li {

        margin-bottom: 8px;
    }


    .footer ul li a {

        font-size: 13px;
    }


    /* -----------------------------------------------------
       CONTACT
    ----------------------------------------------------- */

    .contact-item {

        gap: 8px;

        margin-bottom: 10px;
    }


    .contact-item span {

        font-size: 12.5px;

        line-height: 1.55;
    }


    /* -----------------------------------------------------
       SOCIAL
    ----------------------------------------------------- */

    .social-icon {

        width: 32px;

        height: 32px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       BOTTOM
    ----------------------------------------------------- */

    .footer-bottom {

        margin-top: 30px;

        font-size: 9.5px;

        line-height: 1.6;
    }


    .footer-bottom::before {

        width: 100%;

        left: 0;

        transform: none;

        margin-top: -13px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .footer {

        padding: 35px 14px 20px;
    }


    .footer-container {

        gap: 27px;
    }


    .footer-logo {

        width: 90px;
    }


    .footer h4 {

        font-size: 15px;
    }


    .about-text {

        font-size: 12px;

        line-height: 1.6;
    }


    .footer ul li a {

        font-size: 12.5px;
    }


    .contact-item span {

        font-size: 12px;
    }


    .footer-bottom {

        font-size: 9px;

        padding: 0;
    }

}