    /*  FOOTER                              */
    .footer {
        display: flex;
        background: #062A30;
        margin-top: 50px;
        padding: 25px;
        column-gap: 20px;
    }
    .footer .letsTalk span:first-child {
        font-size: 30px;
        color: white;
        display: flex;
    }
    .footer .letsTalk span:last-child {
        display: flex;
        color: #8C9B9E;
    }
    .footer .social {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 40%;
    }
    .footer .social a {
        color: white;
        text-decoration: none;
        padding: 10px 0 0;
    }
    .footer .communication {
        width: 60%;
    }
    .footer .communication .location {
        display: flex;
        flex-direction: column;
    }
    .footer .communication .location a {
        color: white;
        text-decoration: none;
        font-size: 0.8em;
    }
    .footer .communication .location .address {
        color: white;
        font-size: 0.8em;
    }
    .footer .communication .heading {
        color: white;
        padding: 25px 0 0;
    }

    .footer_extension {
        height: 100px;
        background: url("../../assets/images/footer-logo.svg");
        background-repeat: no-repeat;
        background-size: 90%;
        background-position: center;
        background-color: #062A30;
    }
    .footer_links {
        display: flex;
        row-gap: 10px;
        flex-direction: column;
        font-size: 12px;
        justify-content: center;
        align-items: center;
        padding: 25px;
        color: #8C9B9E;
        background-color: #062A30;
    }
    .footer_links a {
        color: #8C9B9E;
        text-decoration: none;
    }
    /*  FOOTER END                          */
/*    LARGE SCREEN    */
    @media only screen and (min-width: 1024px){ 

        /*  FOOTER                                      */
        .footer_extension {
            height: 200px;
            background-size: calc(100% - 50px);
        }
        .footer_links {
            flex-direction: row;
            column-gap: 50px;
        }
        /*  FOOTER END                                  */

    }