.gallery-tabs-nav {
    margin-bottom: 80px;
    border-bottom: 1px solid #EBEBEB;
}
.gallery-tabs-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    column-gap: 28px;
    flex-wrap: wrap;
}
.gallery-tabs-nav li {
    padding: 18px 0 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.gallery-tabs-nav li.active {
    border-color: var(--e-global-color-primary);
}
.gallery-tabs-nav li span {
    color: #A0A0A0;
    font-family: "Bai Jamjuree", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}
.gallery-tabs-nav li.active span {
    color: #141414;
    border-color: var(--e-global-color-primary);
}
.gallery-tabs-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.gallery-item__image img {
    display: block;
    height: 404px;
    object-fit: cover;
    width: 100%;
}
.gallery-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 36px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(7px);
    color: #fff;
}
.gallery-item h3.gallery-item__title {
    font-family: "Bai Jamjuree", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin: 0 0 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
}
.gallery-item__info {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.gallery-item__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--e-global-color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.66);
}
.gallery-item__icon svg {
    display: block;
    height: 25px;
    width: 25px;
}
.fomeco-loadmore-wrapper {
    margin-top: 80px;
    text-align: center;
}
.fomeco-loadmore-wrapper .loadmore-btn {
    font-family: "Bai Jamjuree", Sans-serif;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-transform: capitalize;
    cursor: pointer;
    color: #0a0a0a;
}
.fomeco-loadmore-wrapper .loadmore-btn svg {
    display: block;
    width: 20px;
}
@media (max-width: 1024px) {
    .gallery-tabs-content {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 24px;
    }
    .gallery-tabs-nav  {
        margin-bottom: 16px;
    }
    .gallery-tabs-nav ul {
        column-gap: 48px;
    }
    .gallery-tabs-nav li {
        padding: 12px 0 10px;
    }
    .gallery-tabs-nav li span {
        font-size: 15px;
    }
    .fomeco-loadmore-wrapper {
        margin-top: 16px;
    }
}
@media (max-width: 767px) {
    .gallery-tabs-content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 16px;
    }
    .gallery-item__image img {
        height: 324px;
    }
}