/* ---------------------------------*/
/* Global Footer css */
/* ---------------------------------*/

.footer {
    background-color: #111111;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #fff;
}

.form {
    background-color: #fff;
    display: flex;
    padding: 10px;
    border-radius: 80px;
}

.form>input {
    width: 500px;
    background: transparent;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
}

input[id="newsletter-email"]::placeholder {
    color: #000;
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.618;
    text-align: left;
}

.form>button {
    display: flex;
    padding: 16px 24px;
    border-radius: 50px;
    background-color: var(--buttons);
    color: var(--white-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: 0.5s;
    border: none;
    z-index: 9999;
    outline: none;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-link {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link>h3 {
    font-family: Urbanist;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.618;
    text-align: left;
    color: var(--white-text);
}

.footer-link>ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.footer-link>ul>li {
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
}

.footer-link>ul>li>a {
    color: var(--white-text);
    text-decoration: none;
    
}

.location-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-box {
    display: flex;
    gap: 8px;
}

.location-content>p {
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: var(--white-text);
}

.contact-meta {
    margin-top: 16px;
}

.contact-meta>p {
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: var(--white-text);
}

.footer-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #333;
    padding-top: 16px;
}

.copyright,
.legal,
.social-cta {
    width: auto;
    flex: 1;
}

.copyright>p {
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: var(--white-text);
}

.legal>ul {
    display: flex;
    gap: 16px;
    list-style: none;
    justify-content: center;
}

.legal>ul>li {
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
}

.legal>ul>li>a {
    color: var(--white-text);
    text-decoration: none;
}

.useful-links > li>a svg {
    margin-left: 4px;
    vertical-align: middle;
}

.social-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-cta>.facebook {
    border: 1px solid #fff;
    padding: 8px;
}

.social-cta>.instagram {
    border: 1px solid #fff;
    padding: 8px;
}

.social-cta>.twitter {
    border: 1px solid #fff;
    padding: 8px;
}

.social-cta>.linkedin {
    border: 1px solid #fff;
    padding: 8px;
}


@media screen and (max-width:768px) {
    .footer {
        padding: 64px 40px;
        flex-direction: column;
    }

    .footer-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-newsletter>h2 {
        font-family: Urbanist, sans-serif;
        font-size: 2.617rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
        color: #fff;
    }

    .form {
        background-color: #fff;
        display: flex;
        padding: 10px;
        border-radius: 80px;
    }

    .form>input {
        width: 500px;
        background: transparent;
        padding: 10px;
        border-radius: 50px;
        border: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        width: 100%;
    }

    .form>input[id="newsletter-email"] {
        width: 100%;
    }

    .footer-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }

    .legal>ul {
        padding: 0;
    }
}

@media screen and (max-width:430px) {
    .footer {
        padding: 64px 20px;
    }

    .footer-footer {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .legal>ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------------------------------*/
/* Global Footer css ends */
/* ---------------------------------*/