
.footer {
    position: relative;
    height: 250px;
    width: 100%;
    background-color: rgb(241, 241, 241);
    display: flex;
}

.footer-contact {
    position: relative;
    height: 200px;
    width: 100%;
    background-color: rgb(241, 241, 241);
    text-align: center;
}

.footer-contact p {
    font-size: 22px;
    font-weight: 800;
    padding-top: 30px;
    color: #171515;
}

.footer-icons {
    position: relative;
    height: 200px;
    width: 100%;
    background-color: rgb(241, 241, 241);
}

.icons-social {
    position: relative;
    width: 100%;
    height: 100px;
    top: 70px;
    background-color: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-social ul {
    display:flex;
}

.icons-social ul li{
    position: relative;
    display: block;
    color: #171515;
    font-size: 80px;
    height: 100px;
    width: 100px;
    background: rgb(241, 241, 241);
    line-height: 60px;
    border-radius: 50%;
    margin: 80px 15px;
    cursor: pointer;
}

.icons-social a {
    text-decoration: none;
    color: #171515;
}

@media screen and (max-width:1090px){
    .footer-contact {
        top: 30px;
    }
    .footer-contact p {
        font-size: 18px;
        padding-top: 20px;
    }
    .icons-social ul li{
        font-size: 60px;
        margin: 50px 10px;
    }
}

@media screen and (max-width:1090px){
    .footer-contact {
        top: 40px;
    }
    .footer-contact p {
        font-size: 15px;
        padding-top: 15px;
    }
    .icons-social ul li{
        font-size: 50px;
        margin: 0px 0px;
    }
}

@media screen and (max-width:750px){
    .footer {
        display: initial;
        height: 500px;
    }
    .footer-contact {
        top: 0px;
    }
    .footer-contact p {
        font-size: 20px;
        padding-top: 15px;
    }
    .icons-social {
        top: 30px;
        left: 25px;
    }
    .icons-social ul li{
        font-size: 70px;
        margin: 0px 20px;
    }
}

@media screen and (max-width:680px){
    .footer-contact {
        padding-top: 30px;
    }
}

@media screen and (max-width:750px){
    .footer-contact p {
        font-size: 18px;
    }
    .icons-social {
        left: 30px;
    }
    .icons-social ul li{
        font-size: 50px;
        margin: 0px 0px;
    }
}

@media screen and (max-width:400px){
    .footer-contact p {
        font-size: 15px;
    }
    .icons-social {
        top: 10px;
        left: 35px;
    }
    .icons-social ul li{
        font-size: 40px;
        margin: 0px -20px;
    }
}   
