/** Common Design **/
body.widget-snippet .category-box-list-container .item{
  padding:10px;
}
body.widget-snippet button, body.widget-snippet .button, body.widget-snippet a.button {
    background: transparent;
    border: medium none;
    color: #262527;
    cursor: pointer;
    display: inline-block;
    font-family: 'Avenir Next LT Pro';
    font-size: 17px;
    font-weight: 600;
    height: auto;
    text-transform: capitalize;
    transition: all 300ms ease 0s;
    line-height: 22px;
    padding: 9px 10px;
    border-radius: 3px;
    width: 100%;
    margin-top: 10px;
    max-width: 300px;
    border: 1px solid #262527;
}


body.widget-snippet a.primary-btn, body.widget-snippet .primary-btn {
    color: #000;
    text-align: center;
    font-family: Oswald;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 6.5px;
    text-transform: uppercase;
    border: 1px solid #000;
    min-width: 233px;
    height: 41px;
    padding: 10px 20px;
    display: inline-block;
}
body.widget-snippet a.primary-btn.small, body.widget-snippet .primary-btn.small {
    min-width: 128px;
}
body.widget-snippet a.primary-btn.white, body.widget-snippet .primary-btn.white {
    border: 1px solid #fff;
    color: #fff;
}

body.widget-snippet .heading-title1 {
    color: #000;
    font-family: Didot;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 10px 0;
    line-height: 59px;
}

body.widget-snippet .category-box-list-container .item .inner-content{
    z-index: unset;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: -200px;
    padding-bottom: 110px;
}
body.widget-snippet .category-box-list-container .item:after, .fee .widget-snippet .category-box-list-container .item:after {
    display:none;
}
/** Snippet CSS **/

.category-box-list-container {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    grid-gap: 16px;
    margin-top: 40px;
}
section.feature-category {
    margin: 80px 0 120px 0;
    padding: 0 60px;
}
section.feature-category > h2, section.feature-category > p {
    text-align: center;
}

.category-box-list-container .item{
  position:relative;
  overflow: hidden;
  max-width: 344px;
  max-height: 465px;
}

.category-box-list-container .item:after {
    content: "";
    background: rgba(0, 0, 0, 0.37);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}
.category-box-list-container .item:hover img{
    -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  transform: scale(1.05);
}
.category-box-list-container .item:hover a {
  Background: #000;
  color: #fff;
  border-color: #000;
}
.category-box-list-container .item .inner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9;
}
.category-box-list-container .item .inner-content .title {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
    font-family: Didot;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin: 0 0 26px;
}
.category-box-list-container .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
