/*FOOTER-STYLE*/
.footer .menu-list-footer{
    display:flex;
    justify-content:center;
    align-items:center;
    border-top:1px solid #ededed;
    padding:89px 0 95px 0;
    background-color:#fff;
}
.footer .menu-list-footer .list-menu,
.list-menu-1{
    display:flex;
    justify-content:center;
    align-items:center;
}
.footer .list-item{
    padding-right:25px;
}
.footer .list a{
   font-family:var(--font-6);
   font-size: 16px;
   color:var(--color-4);
   transition:.5s;
}
.footer .list a:hover{
    color:var(--color-3);
 }
.footer .footer-bottom{
    padding: 34px 0 27px 0;
    font-size:15.8px;
    font-family:var(--font-5);
    text-align: center;
    color: var(--color-5);
}
a.back-to-top {
    position: fixed;
    display: none;
    font-weight: 600;
    color: #fff;
    background: var(--color-2);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
}
a.back-to-top.visible{
    opacity: 1;
    pointer-events: inherit;
}
a.back-to-top i{
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
/*RESPONSIVE*/
@media screen and (max-width:1245px){
    .footer .list a{
        font-size:15px;
    }
}
@media screen and (max-width:992px){
    .footer .menu-list-footer{
        flex-direction:column;
        padding:60px 0;
    }
    .footer .list-menu{
        margin-bottom:13px;
    }
    .footer .list a{
        font-size:16px;
    }
}
@media screen and (max-width:768px){
    .footer .list a{
        font-size:15px;
    }
}
@media screen and (max-width:576px){
    .footer .menu-list-footer {
        flex-direction: column;
        padding: 60px 0 60px 25px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .footer .menu-list-footer .list-menu,
    .list-menu-1{
         flex-direction:column;
         justify-content:flex-start;
         align-items:flex-start;
    }
    .footer .list-item{
        padding-right:0;
        margin-bottom:10px;
    }
    .footer .list a{
        font-size:17px;
    }
    .footer .footer-bottom{
        font-size:12.8px;
    }
}
/*FOOTER-STYLE*/