.section-title{
    font-size: 48px;
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.sectionBrochure .container-gallery {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    padding: 0 4vw;
}

.sectionBrochure .content-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sectionBrochure img {
    max-width: 100%;
    vertical-align: middle;
}
/*.gallery*/
.sectionBrochure .gallery {
    width: 100%;
    display: block;
    min-height: 100vh;
    background-color: #B9C0C2;
}

.sectionBrochure .gallery-filter {
    padding: 0 15px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.sectionBrochure .gallery .gallery-filter .filter-item {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    padding: .2rem .1rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    font-family: 'Nobel';
}

.sectionBrochure .gallery .gallery-item {
        padding: 0rem 0.9rem 3.75rem 0.9rem;
}

.sectionBrochure .gallery .gallery-item-inner img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    filter: brightness(85%);
}

.sectionBrochure .filter-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.sectionBrochure .gallery-item-inner {
    height: 560px;
    position: relative;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    animation: pulse; /* referring directly to the animation's @keyframe declaration */
    animation-duration: .7s; /* don't forget to set a duration! */
}

    .sectionBrochure .gallery-item-inner:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

.sectionBrochure .gallery-item-inner-content-cta {
    position: absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: 65% 35%;
    width: 100%;
    align-items: flex-end;
    padding: 3%;
    color: #fff;
}

    .sectionBrochure .gallery-item-inner-content-cta h2 {
        font-size: 48px;
        margin: 0;
        font-family: 'Nobel';
    }

    .sectionBrochure .gallery-item-inner-content-cta p {
        font-size: calc(18px + 0.42vw);
        margin: 0;
        font-family: 'Nobel';
    }

    .sectionBrochure .gallery-item-inner-content-cta button {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
        font-size: calc(8px + 0.42vw);
        text-transform: uppercase;
        width: 100%;
        max-width: 178px;
        height: 55px;
    }

        .sectionBrochure .gallery-item-inner-content-cta button:hover {
            background-color: #fff;
            color: #000;
            transition: .5s;
        }

.sectionBrochure .filter-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    scale: 0 1;
    transform-origin: right;
    transition: scale 0.25s;
}

.sectionBrochure .filter-item:hover::before {
    scale: 2;
    transform-origin: left;
}

.sectionBrochure .gallery .gallery-item.show {
    animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: .7s; /* don't forget to set a duration! */
}

.sectionBrochure .filter-item.active {
    font-weight: bold;
}

    .sectionBrochure .filter-item.active::before {
        scale: 2;
        transform-origin: left;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.sectionBrochure .gallery .gallery-item.hide {
    display: none;
}

/*responsive*/
@media(max-width: 1919px) {
    .sectionBrochure .gallery-item-inner-content-cta h2 {
        font-size: 2.3vw;
    }

    .sectionBrochure .gallery-item-inner-content-cta p {
        font-size: 1.5vw;
    }
    .sectionBrochure .gallery-item-inner {
        height: 30vw;
    }
}

    @media(max-width: 900px) {
        .sectionBrochure .content-gallery {
            grid-template-columns: repeat(2, 1fr);
        }

        .sectionBrochure .gallery-item-inner-content-cta h2 {
            font-size: 5vw;
        }

        .sectionBrochure .gallery-item-inner-content-cta p {
            font-size: 3vw;
        }

        .sectionBrochure .gallery-item-inner-content-cta button {
            font-size: calc(12px + 0.42vw);
        }
        .sectionBrochure .gallery-item-inner {
            height: 45vw;
        }
        .sectionBrochure .gallery .gallery-filter .filter-item {
            font-size: 16px;
        }
    }

    @media(max-width: 550px) {
        .sectionBrochure .content-gallery {
            grid-template-columns: repeat(1, 1fr);
        }
        .sectionBrochure .gallery-item-inner {
            height: 356px;
        }
        .sectionBrochure .gallery .gallery-item {
            padding: 1rem 0.9rem;
        }
        .sectionBrochure .gallery .gallery-item:last-of-type {
            padding: 1rem 0.9rem 3.75rem 0.9rem;
        }
        .section-title{
            font-size: 32px;
            padding: 46px 20px 40px 20px;
        }
        .sectionBrochure .gallery-item-inner-content-cta h2 {
            font-size: 8.58vw;
        }

        .sectionBrochure .gallery-item-inner-content-cta p {
            font-size: 4.8vw;
        }
        .sectionBrochure .gallery-filter {
            padding: 0 15px;
            width: 100%;
            text-align: center;
            margin-bottom: 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 1rem;
        }
    }
