/* FOOTER */
.white-link{
    text-decoration: none;
    color: rgba(255,255,255,.5);
    margin-bottom: 0;
}

.white-link:hover{
    text-decoration: none;
    color: rgba(255,255,255,.75);
    cursor: pointer;
}

.footer-container{
    text-align: center;
}

.copyright-text, .white-link, .footer-annonce > p{
    display: inline-block;
}

.dark-link{
    text-decoration: none;
    color: rgba(255,255,255,.5);
    margin-bottom: 0;
}

.text-grey{
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}

div.background-dark{
    background-color: #1f1f1f;
}

.footer-info{
    background-color: #161616;
    padding: 36px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.footer-info-sup{
    background-color: #ffc527;
    padding: 36px 0;
    padding-left: calc(35px + 127px);
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align-last: start;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer-info-sup::before{
    content: "";
    height: 184px;
    width: 127px;
    background-image: url(../../img/worker.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 35px;
}

.button-link{
    margin-top: 10px;
    border: 2px solid #2f2f2f;
    color: #2f2f2f;
    padding: 17px 26px;
    font-weight: 700;
    transition: all 300ms linear 0ms;
    font-size: 13px;
}

.button-link:hover{
    outline: medium none;
    text-decoration: none;
    color: #fff;
    background-color: #2f2f2f;
    border-color: #2f2f2f;
}

.button-link-light{
    margin-top: 10px;
    border: 2px solid #ffc527;
    background-color: #1f1f1f;
    padding: 17px 26px;
    color: #fff;
    font-weight: 700;
    transition: all 300ms linear 0ms;
    font-size: 13px;
}

.button-link-light:hover{
    outline: medium none;
    text-decoration: none;
    color: #fff;
    background-color: #ffc527;
    border-color: #ffc527;
}

/* FOOTER ITEMS */
.footer-info > .item > .item-content{
    text-align: start;
}

.footer-info > .item > .item-content > h6{
    color: white;
    font-weight: 400;
}

.footer-info > .item > .item-content > p{
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    margin-bottom: 0;
}

.item:first-child{
    content: "\f003";
}

.footer-info > .item > .item-content > .footer-link{
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

.footer-info > .item > .item-content > .footer-link:hover{
    color: #ffc527;
    text-decoration: none;
}

.footer-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 35px;
}

.footer-info > .item{
    width: 33.33%;
    float: left;
    padding: 0 40px;
    border-right: 2px solid #1f1f1f;
    display: flex;
    align-items: center;
    text-align-last: start;
}

.footer-info > .item > .item-logo{
    position: relative;
    padding-right: 40px;
    color: #fff;
    font-size: 40px;
    top: 4px;
    width: 40px;
    height: 40px;
    margin-right: 40px;
}

.footer-info > .item:last-child{
    border-right: none;
}

.footer-info > .item > .item-logo, .footer-info > .item > .item-content{
    display: table-cell;
    vertical-align: top;
}

.footer-info > .item > .item-logo:after{
    background-color: #ffc527;
    content: "";
    height: 22px;
    position: absolute;
    left: 60px;
    top: 10px;
    width: 2px;
}

#goToTop{
    display: none;
    bottom: 30px;
    right: 20px;
    width: 42px;
    height: 42px;
    position: fixed;
    text-decoration: none;
    z-index: 9999;
    color: transparent;
    background-color: rgba(51, 51, 51, 0.9);
    border: 1px solid #333;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out 0s;
    -moz-transition: 0.3s ease-in-out 0s;
    -ms-transition: 0.3s ease-in-out 0s;
    transition: 0.3s ease-in-out 0s;
}

#goToTop:hover{
    background-color: #ffc527;
    border-color: #ffc520;
    -webkit-transition: all 150ms linear 0ms;
    -moz-transition: all 150ms linear 0ms;
    -ms-transition: all 150ms linear 0ms;
    transition: all 150ms linear 0ms;
}

#goToTop:focus{
    outline: 1px dotted;
}


#goToTop > i{
    color: #fff;
}

.footer-annonce > p{
    margin-bottom: 0;
}

footer.py-3{
    padding-bottom: 0!important;
    position:relative;
    bottom: 0;
    max-width: 100vw;
    left: 0;
    right: 0;
    flex-shrink: 0;
}

.footer-annonce{
    padding: 45px 0;
    margin-bottom: 25px;
    background-color: #2d2d2d;
    max-width: 100%;
    width: 100%;
}


@media only screen and (max-width: 991px){
    .footer-info-sup:before{
        display: none;
    }

    .footer-info-sup{
        padding-left: 0;
    }

    .container{
        min-width: 90vw;
    }

}

@media only screen and (max-width: 858px){
    .footer-info > .item {
        width: 100%;
        border-right: none;
        margin-bottom: 20px;
    }

    .footer-info > .item:last-child {
        margin-bottom: 0;
    }

    .footer-info {
        display: block;
    }

    .footer-info > .item {
        float: none;
    }

}

@media only screen and (max-width: 767px){
    .footer-info-sup > div > h5{
        margin-bottom: 25px;
    }

    .footer-info-sup {
        background-color: #ffc527;
        padding: 36px 0;
        position: relative;
        margin-top: 50px;
        display: block;
        text-align-last: unset;
    }

}

@media only screen and (max-width: 575px){
    .footer-annonce > p{
        display: block;
        margin-bottom: 25px;
    }
    .footer-info-sup {
        background-color: #ffc527;
        padding: 36px 0;
        position: relative;
        margin-top: 50px;
        display: block;
        text-align-last: unset;
    }

    .footer-info-sup, .footer-info{
        width: 95vw;
        max-width: 100%;
    }

    #goToTop{
        bottom: 50px;
    }

}