﻿.menu-box{
    width: 100%;
    display: table;
}
.menu-box .item{
    display: inline-block;
}
.menu-box .item-header>a,.menu-box .item-header .item{
    color: white;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}
.menu-box .item-header>a:hover{
    text-decoration: none;
}
.menu-box .item-header h3{
     font-size: 20pt;
     font-weight: normal;
}
.menu-box .item-header p{
     font-size: 10pt;
     font-weight: 400;
     width: 80%;
}
.item-header{
    display: table-cell;
    width: 35%;
    height: auto;
    background: #eb0028;
    vertical-align: middle;
}
.item-body{
    display: table-cell;
    width: 65%;
    height: auto;
    vertical-align: top;
}

.item-body>ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.item-body>ul>li>a{
    position: relative;   
    font-weight: normal;
    font-size: 12pt;
    border: none;
    color: white;
    display: block;
    float: left;
    width: 25%;
    min-height: 200px;
    padding: 10px;
    border: solid 3px transparent;
}
.item-body>ul>li img{
    position: absolute;
    right: 20px;
    top: 15px;
    width: 25%;
}
.item-body>ul>li span{
    display: block;
    position: absolute;
    bottom: 20%;
}
/*====Item Background===*/
.item-body .bg-dark{
    background: #565656;
}
.item-body .bg-silver{
    background: #898989;
}
/*====Item hover==*/
.item-body>ul>li>a:hover{
    border-color: white;
    text-decoration: none;
    background: #bbbbbb;
}
/*
.item-body>ul>li>a:hover:before {
  content: '';
  display: block;
  background-image: url('/static/image/resources/pointer.png');
  background-size: contain;
  width: 20px;
  height: 20px; 
  position: absolute;
  top: 5px;
  right: 5px;
}
*/


/* Small devices (tablets, 970px and up) */
@media only screen and (max-width: 970px) {
    .item-body > ul > li > a {
        min-height: 170px;
    }
}
/* Small devices (tablets, 750px and up) */
@media only screen and (max-width: 750px){
    .item-body > ul > li > a {
        min-height: 150px;
    }
}