.home-footer-content {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
}
#more {
    display: none;
}
.feature-list {
    margin: 0 15px;
}
.feature-list .container-fluid {
    background: #eeeeeea1;
    padding: 20px;
    position: relative;
    width: 100%;
    border-radius: 10px;
}
.feature-list .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.feature-list .wrapper::before {
   content: "";
    position: absolute;
    background: #2d2f48;
    width: 1px;
    height: 55px;
    right: 0;
}
.feature-list .wrapper.last-child::before {
    display: none;
}
.feature-list .wrapper .icon {
    margin-right: 15px;
    width: 60px;
}
.feature-list .wrapper .title .box-title {
    color: #031424;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-bottom: 0;
}
.feature-list .wrapper .title p {
    color: #777777;
    font-size: 14px;
    font-weight: 400;
    padding-right: 50px;
    margin-bottom: 0;
}
a.img-hoverss {
    margin-bottom: 15px;
    box-shadow: var(--shadow-primary);
    border: 1px solid #ddd;
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100%;
}
a.img-hoverss:before,
a.img-hoverss:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: transform 0.5s, opacity 0.2s ease-in-out 0s;
    -o-transition: transform 0.5s, opacity 0.2s ease-in-out 0s;
    transition: transform 0.5s, opacity 0.2s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
}
a.img-hoverss:hover:before {
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    opacity: 1;
    filter: alpha(opacity=100);
}
a.img-hoverss:hover:after {
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 1;
    filter: alpha(opacity=100);
}
.img-drop-shadow a.img-hoverss {
    border: none;
    box-shadow: none;
}
.img-drop-shadow img {
    filter: drop-shadow(0 0 5px #000);
}
.home-title,
.entry-title,
.related h2,
.small-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto 20px;
    text-transform: capitalize;
    line-height: 1.2;
}
.home-title:before,
.entry-title:before,
.related h2:before,
.small-title:before {
    content: "";
    width: 100%;
    background-color: #121542;
    display: block;
    height: 3px;
    bottom: -8px;
    position: absolute;
    left: 0;
}
.small-title {
    font-size: 22px;
}
.cat-ttl {
    font-size: 22px;
    margin-bottom: 0;
    padding: 17px 10px;
}
.category-wapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 15px;
}
.category-box {
    min-width: 120px;
    position: relative;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 15px 20px -10px rgba(0,0,0,.04);
    transition: .5s ease-in-out;
    z-index: 1;
    padding: 15px 5px;
    margin-bottom: 10px;
}
.category-box:hover {
    border-color: var(--color-white);
    box-shadow: 0 20px 20px -10px rgba(0,0,0,.1);
}
.category-box:hover:before {
    transform: scale(1.1);
}
.category-box:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.category-box h3 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
.cat-icon svg {
    width: 70px;
    margin: 0 auto 8px;
}