.before-footer{
    padding: 50px 20px;

    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;

    background-color: #333;
    color: #fff;
}

.before-footer > div{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.before-footer > div > h3{
    font-size: 20px;
    padding-bottom: 10px;
}

.footer-logo{
padding-bottom: 10px;

    font-family: "Edu NSW ACT Cursive", cursive;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.before-footer > div > p{
    font-size: 18px;
    max-width: 300px;
}

.before-footer > div > ul{
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.before-footer > div > ul > li > a{
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    
    transition: all 0.5s;
}

.before-footer > div > ul > li > a:hover{
    color:#E57373;
}

@media (max-width: 1200px) {
    .before-footer{
        justify-content: space-between;
    }
}

@media (max-width: 850px) {
    .before-footer{
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
}

footer{
    padding: 10px 20px;

    background-color: #000;
    color: #fff;

    font-size: 18px;
    text-align: center;
}

footer > p > a{
    text-decoration: none;
    color: #fff;

    transition: all 0.5s;
}

footer > p > a:hover{
    color:#E57373;
}

.back-to-the-top{
    position: fixed;
    bottom: 20px;
    right: 20px;

    z-index: 100;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    background-color: #E57373;
    color: #fff;
    font-size: 30px;
    text-decoration: none;

    transition: all 0.5s;
}

.back-to-the-top:hover{
    background-color: #D32F2F;
}

@media (max-width: 600px) {
    .back-to-the-top{
        width: 35px;
        height: 35px;
        font-size: 22px;
    }
}