section.gallery {
    position: relative;
}
section.gallery::before,
section.gallery::after {
    content: '';
    position: absolute;
    top: 5%;
    width: 20%;
    height: 533px;
    background-size: cover;
    z-index: -1;
}
section.gallery::before {
    left: -5%;
    background-image: url('../images/tree-left.png');
}
section.gallery::after {
    right: -5%;
    background-image: url('../images/tree-right.png');
}
section.gallery button {
    padding: 10px 40px;
    color: var(--white);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    box-shadow: none;
    border: none;
}
section.gallery .galleryGrid img {
    max-width: 100%;
    height: 300px;
}
/* image zoom */
section.gallery .galleryGrid img+.magnify-icon,
section.gallery .galleryGrid .magnify-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-color: var(--primary);
    border-radius: 100%;
    padding: 10px;
}
section.gallery .galleryGrid img+.magnify-icon svg,
section.gallery .galleryGrid .magnify-icon svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
}
section.gallery .galleryGrid img:hover+.magnify-icon,
section.gallery .galleryGrid .magnify-icon:hover {
    display: inline-block;
}
