﻿footer{
    width: 100%;
    display: block;
    position: relative;
    background-color: #000;
}
.footer-box{
    width: 1215px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    font-size: 0;
    box-sizing: initial;
    padding: 70px 0;
    display:         flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-direction: row;
}
.footer-info{
    font-family: "Roboto";
    font-weight: 700;
}
.footer-info>i,
.footer-info>p{
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 20px;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s linear;
}
.footer-info>p{
    font-family: "Roboto";
    font-weight: 700;
    margin-left: 10px;
}
.footer-web{
    font-size: 14px;
    color: #ccc;
    letter-spacing: 0.06em;
    line-height: 20px;
    display: inline-block;
    vertical-align: middle;
}
.footer-web *{
    font-family: "Roboto";
    font-weight: 300;
}



@media only screen and (max-width: 1280px){
    .footer-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .footer-box{
        width: 750px;
    }
}
@media only screen and (max-width: 768px){
    .footer-box{
        padding: 10px 0;
        width: 550px;
    }
}
@media only screen and (max-width: 550px){
    .footer-box{
        display: block;
        padding: 5px 0;
        width: calc(100vw - 20px);
    }
    .footer-web{
        display: block;
        width: 100%;
    }
    .footer-info>i, 
    .footer-info>p{
        font-size: 16px;
    }
    .footer-web{
        font-size: 12px;
        letter-spacing: 0.0em;
    }
}


@media only screen and (min-width: 769px){
    .footer-info:hover>i,
    .footer-info:hover>p{
        color: #901d22;
    }
}
