/*------- FOOTER -------*/

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 10vh;    /* Footer height */
}

footer {
    font-family: Arial, sans-serif;
    position: absolute;
    padding-bottom: 0;
    padding-top: 30px;
    width: 100%;
    background-color: #1d1d1d;
    color: #fff;
    align-items: center;
}

.footer-row {
    display: block;
    width:47.5%;
    margin-left: 0;
    padding:0.6% 0%;
    font-size:0.8em;
}
.footer-row2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:47.5%;
    right: 0;
    top: 25%;
    bottom: 25%;
    padding:0.6% 0%;
    font-size:0.8em;
}

.footer-row2 a {
    width: fit-content;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.footer p {
    height: 50px;
    padding-top: 30px;
    color:#fff;
    transition:0.5s;
}

.footer a {
    color:#ffffff;
    transition:0.5s;
}
    
.footer a:hover{
    color:#bdbdbd;
}
.footer a:active{
    color:#bdbdbd;
    transition: all 0.3s ease-in-out;
    transform: translate3d(0, -5px, 0);
}
    
.footer a i{
    font-size: 2em;
    margin: 0% 1%;
}

/* Style pour la barre de séparation */
.footer-separator {
    position: absolute;
    display: inline;
    top: 25%;
    height: 50%;
    border: 3px solid rgba(44, 119, 15, 0.753);
    border-radius: 20px;
    margin: 0px 10px;
    margin-left: -3px;
}

@media screen and (max-width: 1125px) {
    .footer-separator {
        display: none;
    }
    .footer-row {
        width: 100%;
    }
    .footer-row2 {
        position: relative;
        width: 100%;
        padding:0.6% 0%;
        font-size:0.8em;
    }
}