
.gallery-tab .tab-menu{
    width: 100%;
    padding: 0px 15px;
}
.gallery-tab .tab-menu ul{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.gallery-tab .tab-menu ul li:not(:last-child) {
    margin-right: 15px;
}
.gallery-tab .tab-main-box{
    width: 100%;
    padding: 0px 15px;
}
.gallery-tab .tab-menu ul li {
    list-style: none;
}
.gallery-tab .tab-menu ul li:not(:last-child) {
    margin-bottom: 15px;
}
.gallery-tab .tab-menu ul li a{
    border-radius: 30px;
    background: #fff;
    border: 1px solid #EEE;
    color: var(--black);
    padding: 12px 18px;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    display: inline-block;
    width: 100%;
}
.gallery-tab .tab-menu ul li a.active,.gallery-tab .tab-menu ul li a:hover{
    background: #EF7300;
    border: 1px solid #EF7300;
    color: #fff;

}
.gallery-wrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}
.gallery-col{
    width: 33.33%;
    padding: 10px;
}
.gallery-item a{
    height: 350px;
    padding: 10px;
    background: #F7F7F7;
    overflow: hidden;
    position: relative;
    display: block;

}
.gallery-item a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.gallery-item a:hover img{
    transform: scale(1.05);
}
.gallery .section-title{
    margin-bottom: 30px;
}