.filter-tabs {
    border: 1px solid #ddd;
}

.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom:40px;
}

.tabs-nav li {
    margin: 0 15px;
}
.tabs-nav li:first-child{
    margin-left:0px;
}
.tabs-nav a {
    display: block;
    padding: 0 0 10px;
    text-decoration: none;
    color: #333;
    position:relative;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tabs-nav a:hover,
.tabs-nav a.active {
    color:#ff7519 !important;
}
.tabs-nav a.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #ff7519;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    
}
.tabs-nav a:hover:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #ff7519;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.custom-tabs-content{
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    
}
.tab-content {
    display: none;
    padding: 0px;
}
.tab-content .elementor-element{
    padding:0px;
}
.tab-content .e-loop-item{
    border:1px solid #fff;
    overflow:hidden;
}
.tab-content .e-loop-item .e-con-inner{
    padding-top:0px;
}
.tab-content .e-loop-item .elementor-widget{
    overflow:hidden;
}
.tab-content .e-loop-item h3{
    font-size: 14px;
    font-weight: 100;
    text-transform: capitalize;
    padding-left:10px;
    line-height:1.3;
}
.tab-content .e-loop-item:hover{
    border-color:#e5e5e5;
}
.tab-content .e-loop-item img{
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tab-content .e-loop-item:hover img{
    opacity:0.8;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.tab-content.active {
    display: block;
}
.custom-pager{
    text-align:right;
    margin-top:15px;
    margin-bottom:15px;
}
.custom-pager a, .custom-pager span{
    display: inline-block;
    vertical-align: top;
    border: 1px solid #e5e5e5;
    height: 33px;
    line-height: 30px !important;
    padding: 0 12px;
    margin: 0 4px;
    vertical-align: middle;
}
.custom-pager a:hover{
    background: #ff7519;
    color: #FFF !important;
}
@media (max-width: 767px) {
    .tabs-nav{
        display:none;
    }
    .custom-tabs-content{
        grid-template-columns: repeat(1, 1fr);
    }
}