footer{
    width: 100%;
    margin-top: 4rem;
    padding-top: 2.5rem;
    background-image: linear-gradient(to right bottom, rgb(3, 36, 3),80%, rgb(31, 82, 25));
}
.to_top_btn{
    border: none;
    background-color: rgba(255, 255, 255, 0.404);
    width: max-content;
    height: 50px;
    padding: 0 7px;
    font-size: 45px;
    color: rgb(13, 70, 16);
    position: fixed;
    right: 5%;
    bottom: 10%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    border: 1px solid rgb(151, 209, 151);
    z-index: 9999;

}
.footer-inner{
    width: 100%;
    height: max-content;
    display: flex;
}
.footer-inner .bloc{
    width: calc(100%/4);
    height: auto;
    padding: 10px;
    padding-left: 25px;
}
.footer-inner .bg-white{
    height: max-content;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    border-radius: 0 0 30px 30px;
    margin-top: -70px;
    padding-left: 0;
}
.footer-inner .bloc .logo{
    width: 200px;
    height: max-content;
}
.footer-inner .bloc h2{
    color: rgb(241, 241, 241);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-inner .bloc ul{
    color: rgb(206, 203, 203);
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer #copyright{
    color: rgb(194, 185, 173);
    margin-top: 30px;
    font-style: italic;
    font-size: 14px;
    text-align: center;
}