footer{ 
    position: absolute;
    width: 100vw;
    bottom: 0px;
    background-color: var(--p-color);
    border-top: 1px solid var(--p-color);
}
#div-footer{
    height: fit-content;
    display: flex;
    align-items: flex-end;
    color: white;
    text-align: center;
}
#footer-sect-1{
    height: fit-content;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
#footer-sect-2{
    height: fit-content;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#footer-left-find-us{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0px 20px 0px;
}
#footer-left-networks{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 0 20px 0px;
}
#footer-right-2{
    position: relative;
}
#footer-collider{
    height: 100px;
    width: 100%;
}
.icon{
    height: 50px;
    width: 50px;
}
.icon:hover > svg > path{
    fill: var(--alt-p-color);    
}
svg{
    height: 90%;
    width: 90%;
}

@media screen and (max-width:768px) {
    #footer-left-find-us h1{
        font-size: 15px;
    }
    #footer-left-find-us p{
        font-size: 5px;
    }
    .icon{
        height: 30px;
        width: 30px;
    }
    #footer-sect-2{
        font-size: 10px;
    }
}
#footer-sect-1 img{
    height: 99px;
}
@media screen and (max-width:500px) {
    #footer-sect-1 img{
        height: 59px;
    }
    #footer-left-find-us{
        text-align: center;
    }
}