.gallery_page_heading{
    padding-top: 20px;
}
.gallery_page_heading h2{
    color: var(--New-Palette-Davys-Gray);
    text-align: center;
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    letter-spacing: 2px;
    text-transform: uppercase;
    height: 44px;
}
.house-photo-gallery-wrapper{
    justify-content: center;
    gap: 20px 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1050px;
    margin: 0 auto;
}
.gallery-button-wrapper a{
    color: var(--New-Palette-Davys-Gray);
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gallery-button-wrapper a i{
    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--New-Palette-Jet);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.gallery-button-wrapper{
    padding: 10px 20px 15px 4px;
}
.gallery-button-wrapper a i{
    display: none;
}
.photo-gallery-box:hover a i{
    display: grid;
}
.photo-gallery-box .gallery-image-wrapper img,
.photo-gallery-box .gallery-image-wrapper{
    position: relative;
    z-index: 10;
    aspect-ratio: 5/3;
}
.photo-gallery-box:hover .gallery-image-wrapper:before {
    border: 1px solid var(--New-Palette-Davys-Gray);
    background: rgba(0, 0, 0, 0.2) !important;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    transition: ease-in-out 0.3s;
}
.photo-gallery-box:hover a i,
.photo-gallery-box:hover a{
    color: var(--New-Palette-Jet) !important;
    transition: ease-in-out 0.3s;
}
.gallery-image-wrapper {
    background: lightgray;
}
@media screen and (max-width: 1024px) {
    .house-photo-gallery-wrapper {
        gap: 20px 20px;
    }   
}
@media screen and (max-width: 767px) {
    .house-photo-gallery-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }   
}