footer {
    width: 100vw;
    color: #fff;
    justify-self: flex-end;
    margin-top: auto;
}

.footer-1,
.footer-2 {
    width: 100%;
    padding: 50px 7%;
    display: flex;
    align-items: center;
    background-color: var(--color-comp-blue);
}

.footer-1 {
    justify-content: space-between;
}

.footer-1::after {
    position: absolute;
    bottom: 0;
    left: -100%;
    right: -100%;
    height: 2px;
    background-color: #fff;
    
    display: block;
    content: "";
}

.footer-2 {
    justify-content: space-between;
    padding: 20px 7%;
}

/** FOOTER-1 **/
/* FOOTER-LOGO */
.footer-logo,
.footer-logo:link,
.footer-logo:visited,
.footer-logo:hover,
.footer-logo:active {
    cursor: pointer;
    background-color: #fff;
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    padding: 35px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
}

.footer-logo img {
    width: 150%;    
    margin-top: -10px;
}

/* FOOTER-CONTACT-US */
.footer-contact-us {
    font-size: 70%;
}

.footer-h2 {
    font-size: 140%;
    margin-bottom: 15px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 7px;
}

.footer-contact-list li:first-child {
    margin-left: 65px;
}

.footer-contact-list li ion-icon {
    margin: 0 20px;
    font-size: 180%;
    margin-bottom: -7px;
}

.footer-contact-list a:link,
.footer-contact-list a:visited,
.footer-contact-list a:hover,
.footer-contact-list a:active {
    color: inherit;
}

/* SEND-US-MSG */
.send-us-msg {
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.send-us-msg-text {
    width: 350px;
    margin-bottom: 30px;
    font-size: 120%;
}

.send-us-msg-btn:link,
.send-us-msg-btn:visited,
.send-us-msg-btn:hover,
.send-us-msg-btn:active {
    color: var(--color-comp-blue);
    text-transform: uppercase;
    background-color: #fff;
    box-shadow: 0 0 4px 2px #999;
    padding: 10px 15px;
    border: 2px solid #fff;
    font-weight: 300;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.send-us-msg-btn:hover,
.send-us-msg-btn:active {
    background-color: var(--color-comp-green);
    color: #fff;
}

/** FOOTER-2 **/
/* FOOTER-SOCIAL-MEDIA */
.footer-social-media a:link,
.footer-social-media a:visited,
.footer-social-media a:hover,
.footer-social-media a:active {
    color: #fff;
    font-size: 165%;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    -o-transition: color 0.2s;
}

.footer-social-media a:hover,
.footer-social-media a:active {
    color: var(--color-comp-green);
}

.footer-social-media a:link ion-icon,
.footer-social-media a:visited ion-icon,
.footer-social-media a:hover ion-icon,
.footer-social-media a:active ion-icon {
    margin-bottom: -8px;
    margin-left: 20px;
}

/* FOOTER-BRAND-IMAGES */
.footer-brand-images {
    height: 70px;
}

.footer-brand-images img {
    height: 100%;
    width: auto;
    margin-right: 40px;
}

@media only screen and (max-width: 1140px) {
    .footer-1 {
        padding: 50px 10px;
    }

    .footer-contact-us {
        font-size: 60%;
    }
    
    .footer-contact-list li ion-icon {
        margin: 0 15px;
        margin-bottom: -7px;
    }

    .footer-contact-list li:first-child {
        margin-left: 55px;
    }

    .footer-logo,
    .footer-logo:link,
    .footer-logo:visited,
    .footer-logo:hover,
    .footer-logo:active {
        display: none;
    }

    .send-us-msg-text {
        width: 300px;
        font-size: 100%;
    }

    .footer-2 {
        padding: 20px 20px;
    }

    .footer-social-media a:link,
    .footer-social-media a:visited,
    .footer-social-media a:hover,
    .footer-social-media a:active {
        font-size: 145%;
    }
}

@media only screen and (max-width: 780px) {
    .footer-1 {
        flex-direction: column;
    }

    .footer-h2 {
        font-size: 200%;
    }

    .footer-contact-us {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-contact-list {
        text-align: left;
    }

    .footer-2 {
        flex-direction: column;
    }

    .footer-social-media {
        margin-bottom: 25px;
    }

    .footer-brand-images > img {
        margin-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .footer-1 {
        padding: 50px 0;
    }

    .footer-2 {
        padding: 20px 0;
    }
}