
#footer{
    width: 100%;
    height : 600px;
    background-color: #0B4341;
    margin-top: 40px;
}

#upper{
    width: 80%;
    height: 300px;
    margin: auto;
    padding-top: 50px;
}

#left{
    float: left;
    width: 250px;
    height: 85%;
}

#right{
    float: right;
    width: 850px;
    height: 100%;
    display: grid;
    grid-template-columns: 200px 200px 200px 200px;
    grid-template-rows: 100%;
    grid-gap: 20px;
}

#icons{
    width: 100%;
    height: 70px;
    margin-top: 30px;
    border-top: 1px solid rgb(97, 97, 97);
}

#icons > img{
    width: 100%;
}

#follow{
    width: 100%;
    height: 70px;
    margin-top: 20px;
    margin-bottom: 50px;
}

#contact{
    width: 100%;
    height: 100px;
}

.h4Footer{
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
}

.pFooter{
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 17px;
    font-family: 'Source Sans Pro', sans-serif;
}

.font-color_3{
    color: white;
}

@media only screen and (max-width: 720px){
    #footer{
        height: 400px;
    }

    #upper ~ div{
        display: none;
    }

    #contact{
        width: 100%;
        height: 60px;
    }

    #right{
        display: none;
    }
}

@media only screen and (max-width: 430px){

    #footer{
        height: 400px;
    }

    #right{
        display: none;
    }
}