.footer{
    margin-bottom: 10px;
    margin-top: 130px;
}
.footer .cont{
    width: 100%;
    max-width: calc(100vw - 20px);
    background: url(../img/footer.png) center center no-repeat;
    background-size: cover;
    border-radius: 7px;
    padding: 10px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    position: relative;
}
 .footer .cont:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(31, 30, 30, 0.20) 54.91%, rgba(31, 30, 30, 0.60) 100%);
}

/*.block-1 .cont:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background: linear-gradient(180deg, rgba(31, 30, 30, 0.70) 0%, rgba(31, 30, 30, 0.00) 18.49%);*/
/* }*/
.footer .box{
    width: 100%;
    margin: auto;
    background: #1e1e1c;
    border-radius: 7px;
    padding-bottom: 20px;
}
.footer .container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-top: 75px;
}
.footer .col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer .col:last-child{
    display: none;
}
.footer .up{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-gap: 
}
.footer .head{
        color: #7c7c7c;
    font-size: 16px;
    font-family: 'tenos',Arial,sans-serif;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 35px;
    opacity: 1;
}
.footer a{
    color: #ffffff;
    font-size: 16px;
    font-family: 'tenos',Arial,sans-serif;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}
.footer p{
    color: #ffffff;
    font-size: 16px;
    font-family: 'tenos',Arial,sans-serif;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.7;
}
.footer .last{
    margin-top: 100px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'tenos',Arial,sans-serif;
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.5;
    text-transform: none;
    margin-bottom: 0;
}
.footer .logo{
    height: 50px;
    margin-bottom: 20px;
}
.footer .big-logo{
    width: 80%;
    margin: auto;
    margin-top: 100px;
    z-index: 99;
}


@media(max-width: 999px){
    .footer .container{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer .last{
        display: none;
    }
    .footer .col:last-child{
        display: flex;
        grid-column: span 2;
        justify-content: flex-start;
        grid-gap: 12px;
    }
    .footer .col:last-child .last{
        display: block;
        margin: 0;
    }
}
@media(max-width: 650px){
    .footer .col:first-child{
        grid-column: span 2;
            margin-bottom: 40px;
    }
    .footer .container{
            grid-template-columns: 1fr 1fr;
    padding-top: 40px;
    grid-gap: 20px;
    }
    .footer .big-logo{
        margin-top: 20px;
    }
}