footer{
    width: 100%;
    font-family: 'Roboto',sans-serif;
    font-size: 16px;
    background-color: #00133c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer img{
    height: 35px;
    margin: 15px 0px;
}

footer a{
    text-decoration: none;
    color: white;
    cursor: pointer;
}

footer a:visited{
    color:white;
}

footer a:hover{
    color:white;
    text-decoration: none;
}

footer p {
    margin: 0;
    color:white;
    margin-bottom: 15px;
}

.wrapper-info{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer a i {
    position: absolute;
    right: 0;
    margin-right: 158px;
    margin-top: -5px;
    transform: scale(1.75);
    text-decoration: none;
    color: white;
}

@media (max-width: 992px) {
    footer img {
        height: 30px;
    }
}

@media (max-width: 791px) {

    footer a i {
        position: unset;
        right: unset;
        margin-right: unset;
        margin-top: unset;
        margin-bottom: 15px;
    }

    footer {
        flex-direction: column;
    }

}

@media (max-width : 700px){
    .back-to-top{
        right: 20px;
        bottom: 103px;
        transform: scale(0.8);
    }
    
}

