.equipment{
    background: #f6f6f6;
    margin-top: 50px;
}
.equipment__inner{
    display: flex;
    justify-content: space-between;
}
.equipment__menu{
    padding: 65px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 630px;
}
.equipment__menu-item{
    font-weight: bold;
    width: 300px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    margin-bottom: 20px;
    transition: 250ms linear all;
}
.equipment__menu-item:hover{
    background: #E20932;
    color: #fff;
}
.equipment__menu-item-name{
    font-size: 18px;
    font-weight: bold;
}
.equipment__menu-item-icon{
    margin-bottom: 15px;
}
.equipment__menu-item--downloader .equipment__menu-item-icon{
    width: 47px;
    height: 40px;
    background: url('./images/sprite.svg') 100% 16.66667% no-repeat;
}
.equipment__menu-item--downloader:hover .equipment__menu-item-icon{
    background-position: 100% 33.33333%;
}

.equipment__menu-item--diagnostics .equipment__menu-item-icon{
    width: 49px;
    height: 40px;
    background: url('./images/sprite.svg') 0 83.33333% no-repeat;
}
.equipment__menu-item--diagnostics:hover .equipment__menu-item-icon{
    background-position: 18.99225% 83.33333%;
}
.equipment__menu-item--chip-tuning .equipment__menu-item-icon{
    width: 40px;
    height: 40px;
    background: url('./images/sprite.svg') 0 100% no-repeat;
}
.equipment__menu-item--chip-tuning:hover .equipment__menu-item-icon{
    background-position: 97.37828% 83.33333%;
}

.equipment__menu-item--adapters .equipment__menu-item-icon{
    width: 47px;
    height: 40px;
    background: url('./images/sprite.svg') 74.61538% 83.33333% no-repeat;
}
.equipment__menu-item--adapters:hover .equipment__menu-item-icon{
    background-position: 100% 0;
}
 
.equipment__form{
    width: 300px;
    padding: 20px;
    background: #656C6F;
    margin: -20px 0;
}
.equipment__form-title{
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    text-transform: none;
    padding-bottom: 15px;
}
.equipment__form-group{
    margin-bottom: 20px;
}
.equipment__form-label{
    display: block;
    color: #fff;
    padding-bottom: 5px;
    font-size: 16px;
}



@media screen and (max-width: 1199px){
    .equipment__inner{
        justify-content: center;
        flex-direction: column;
    }    
    .equipment__menu{
        padding: 20px 0;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
    .equipment__menu-item{
        width: auto;
        margin: 0 auto 20px;
        align-items: center;
    }
    .equipment__form{
        margin: 0 auto;
    }
   
}
