/*--------------------------------------------------------------
# brochure Section
--------------------------------------------------------------*/

.brochure-item {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0px 0px 2px #c2c2c2;
    overflow: hidden;
}

.brochure-img {
    position: relative;
    width: 100%;
    height:100%;
}

.brochure-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* .brochure-item:hover .brochure-image {
    transform: scale(1.05);
} */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.349);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-item:hover .overlay {
    opacity: 1;
}

.download-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

.download-icon i {
    margin-right: 5px;
}

.brochure-name {
    padding: 15px 0;
    background-color: #f5f5f5;
}

.brochure-name h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}