#footer {
    width: 100vw;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/img3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footerContainer {    
    display: flex;
    color: white;
    justify-content: space-between;
    padding: 3vw 3vw 1vw;
}

.footerContainer div:nth-of-type(1) {
    width: 40vw;
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-size: 1vw;
}

.footerContainer div:nth-of-type(1) img {
    width: 20vw;
}

.footerContainer div:nth-of-type(2) {
    width: 45vw;
    size: 1.5vw;
    padding: 5vw 0;
    font-size: 1.1vw;
    line-height: 3;
}

.footerContainer div:nth-of-type(2) p {
    font-size: 2vw;
    line-height: 0.6;
    color: orange;
}

.footerContainer div:nth-of-type(2) ul {
    padding-left: 0;
}

.footerContainer div:nth-of-type(2) ul li {
    display: flex;
    align-items: center;
}

.footerContainer div:nth-of-type(2) ul li i {
    color: orange;
}

.footerContainer div:nth-of-type(2) ul li pre {
    margin-bottom: 0;
}

.socialsContainer {
    padding: 2vh;
    height: 8vh;
    text-align: center;
    color: white;
    font-size: 1.2vw;
    background-color: #01193D;
}

#companyMap {
    width: 50vw;
    height: 50vh;
    margin: auto;
}

@media (max-width: 767px) {
    #footer {
        padding: 5vw 0 0;
    }

    .footerContainer {
        flex-direction: column;
        padding: 0 5vw;
    }

    .footerContainer div:nth-of-type(1) {
        width: 100%;
    }

    .footerContainer div:nth-of-type(2) {
        width: 100%;
    }

    .footerContainer div:nth-of-type(1) img {
        width: 25vw;
    }

    .footerContainer div:nth-of-type(1) p {
        display: none;
    }
    
    .footerContainer div:nth-of-type(2) p {
        font-size: 5vw;
    }

    .footerContainer div:nth-of-type(2) ul li {
        margin-bottom: 2vw;
    }

    .footerContainer div:nth-of-type(2) ul li i {
        font-size: 3vw;
    }

    .footerContainer div:nth-of-type(2) ul li pre {
        font-size: 2.5vw;
    }

    .socialsContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 5vh;
        font-size: 3vw;
    }
}