.four_photos {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 0.8fr 1fr;
    grid-template-columns: 1fr 0.8fr 1fr;
    -webkit-grid-template-rows: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100vh;
}

.photo_2_rows_start {
    grid-column-start: 1;
    grid-row: span 2;
}

.photo_2_rows_start img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo_2_rows_end {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 3;
}

.photo_2_rows_end img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo_1_row {
    grid-column-start: 2;
    grid-row: span 1;
}

.photo_1_row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: calc(100vh / 2);
}

.photo_wrap{
    position: relative;
}
.wrap_info_div{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, .5);
    display: -webkit-grid;
    display: grid;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
}
.wrap_info_div:hover{
    opacity: 1;
    cursor: pointer;
}
.wrap_info{
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    grid-template-columns: 1fr;
    text-shadow: black 1px 0px 5px;
}
.wrap_info h1{
    font-size: var(--font_40);
}
.wrap_info label{
}

.wrap_info_sm{
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    grid-template-columns: 1fr;
}
@media only screen and (max-width: 1220px) and (min-width: 1050px){
    .wrap_info_div{
        opacity: 1;
        background: rgba(0, 0, 0, .35);
        height: 100%;
    }
    .wrap_info{
        height: 100%;
        max-height: 380pt;
    }
    .wrap_info h1{
        font-weight: bolder;
        color: rgba(255, 255, 255, .75);
    }
    .wrap_info label{
        color: rgba(255, 255, 255, .75);
    }
}
@media only screen and (max-width: 1050px) and (min-width: 940px){
    .four_photos {
        -webkit-grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }
    .wrap_info_div{
        opacity: 1;
        background: rgba(0, 0, 0, .35);
        height: 100%;
    }
    .wrap_info{
        height: 100%;
        max-height: 380pt;
    }
    .wrap_info h1{
        font-weight: bolder;
        color: rgba(255, 255, 255, .75);
    }
    .wrap_info label{
        color: rgba(255, 255, 255, .75);
    }
}
@media only screen and (max-width: 940px) and (min-width: 800px){
    .four_photos {
        -webkit-grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }
    .wrap_info_div{
        opacity: 1;
        background: rgba(0, 0, 0, .35);
        height: 100%;
    }
    .wrap_info{
        height: 100%;
        max-height: 380pt;
    }
    .wrap_info h1{
        font-size: var(--font_30);
        font-weight: bolder;
        color: rgba(255, 255, 255, .75);
    }
    .wrap_info label{
        color: rgba(255, 255, 255, .75);
    }
}
@media only screen and (max-width: 800px) and (min-width: 600px){
    .four_photos {
        display: block;
        display: block;
        height: 400vh;
    }
    .photo_2_rows_start img {
        height: 100vh;
    }
    .photo_2_rows_end img {
        height: 100vh;
    }
    .photo_1_row{
        height: 100vh;
    }
    .photo_1_row img{
        height: 100vh;
        max-height: 100vh;
    }
    .wrap_info_div{
        opacity: 1;
        background: rgba(0, 0, 0, .35);
        height: 100%;
    }
    .wrap_info h1{
        font-size: var(--font_64);
        font-weight: bolder;
        color: rgba(255, 255, 255, .75);
    }
    .wrap_info label{
        color: rgba(255, 255, 255, .75);
    }
}
@media only screen and (max-width: 600px) and (min-width: 360px){
    .four_photos {
        display: block;
        display: block;
        height: 400vh;
    }
    .photo_2_rows_start img {
        height: 100vh;
    }
    .photo_2_rows_end img {
        height: 100vh;
    }
    .photo_1_row{
        height: 100vh;
    }
    .photo_1_row img{
        height: 100vh;
        max-height: 100vh;
    }
    .wrap_info_div{
        opacity: 1;
        background: rgba(0, 0, 0, .35);
        height: 100%;
    }
    .wrap_info h1{
        font-size: var(--font_64);
        font-weight: bolder;
        color: rgba(255, 255, 255, .75);
    }
    .wrap_info label{
        color: rgba(255, 255, 255, .75);
    }
}