﻿footer{
    background-color: #1e2934;
    width: 100%;
    display: block;
    font-size: 0;
    box-sizing: border-box;
    padding-top: 145px;
    padding-bottom: 20px;
    position: relative;
}
.footer-box{
    width: 100%;
    display: block;
}
.footer-logo-box{
    width: 310px;
    display: inline-block;
    vertical-align: top;
    margin-left: 50px;
}
.footer-social-box{
    margin-top: 40px;
    text-align: right;
    margin-right: 15px;
}
.footer-social{
    font-size: 24px;
    color: #eeeeee;
    margin-left: 15px;
    cursor: pointer;
    transition: all .3s linear;
}
.footer-menu-box{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding-left: 110px;
    padding-right: 100px;
    position: relative;
}
.footer-menu-box:after{
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    right: 50px;
    top: 0;
    background-color: #313d49;
}
.footer-menu-icon{
    font-size: 14px;
    color: #888;
    line-height: 30px;
    letter-spacing: 0.06em;
}
.footer-menu{
    font-size: 14px;
    color: #eeeeee;
    letter-spacing: 0.06em;
    line-height: 30px;
    display: block;
    cursor: pointer;
    transition: all .3s linear;
}
.footer-evaluation-box{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}
.footer-web{
    font-size: 12px;
    font-family: "roboto";
    font-weight: 300;
    color: #888;
    text-align: right;
    letter-spacing: 0.06em;
    box-sizing: border-box;
    padding-right: 140px;
    padding-top: 190px;
}
.footer-top-box{
    width: 27px;
    position: absolute;
    bottom: 0;
    right: 110px;
    text-align: center;
    cursor: pointer;
}
.footer-top-text{
    font-size: 14px;
    font-family: "roboto";
    letter-spacing: 0.06em;
    color: #eee;
    display: inline-block;
    margin-bottom: 10px;
    transition: all .3s linear;
}
.footer-top-cube{
    width: 9px;
    height: 9px;
    background-color: #313d49;
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all .3s linear;
}
.footer-top-cube::before{
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    top: 0;
    left: -0;
    background-color: #313d49;
    transition: all .3s linear;
}
.footer-top-cube::after{
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #313d49;
    transition: all .3s linear;
}
.footer-top-box span{
    width: 1px;
    height: 200px;
    background-color: #313d49;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    transition: all .3s linear;
}



@media only screen and (max-width: 1000px){
    .footer-top-box{
        display: none;
    }
    footer{
        padding: 20px 0;
    }
    .footer-web{
        padding-right: 50px;
        padding-top: 20px;
    }
}
@media only screen and (max-width: 750px){
    footer,
    .footer-web{
        text-align: center;
    }
    .footer-web{
        padding-right: 0;
    }
    .footer-logo-box{
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .footer-menu-box{
        padding-left: 0;
    }
}
@media only screen and (max-width: 550px){
    .footer-logo-box{
        width: 200px;
    }
    .footer-social-box{
        margin-top: 10px;
        margin-right: 0;
    }
    .footer-social{
        font-size: 20px;
    }
    .footer-menu-icon{
        font-size: 12px;
    }
    .footer-menu{
        font-size: 12px;
        line-height: 24px;
    }
    .footer-menu-box{
        padding-right: 60px;
    }
    .footer-menu-box:after{
        right: 30px;
    }
}
@media only screen and (max-width: 400px){
    .footer-web>span{
        display: block;
    }
}


.footer-menu:hover,
.footer-social:hover{
    color: var(--deputyColor);
}
.footer-top-box:hover .footer-top-text{
    color: var(--deputyColor);
}
.footer-top-box:hover .footer-top-cube{
    height: 0;
}
.footer-top-box:hover .footer-top-cube::before{
    left: -3px;
    transform: rotateZ(-45deg);
    background-color: #fff;
}
.footer-top-box:hover .footer-top-cube::after{
    right: -3px;
    transform: rotateZ(45deg);
    background-color: #fff;
}
.footer-top-box:hover>span{
    width: 3px;
    height: 50px;
    margin-bottom: 159px;
    background-color: #fff;
}