/* 

    GALLERY

*/


.gallery > .gallery_image > div {
    width: 320px;
    height: 320px;
    border-radius: 8px;
}

.gallery_headline {
    font-size: 45px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

a.gallery_image:hover {
    box-shadow: 0 0 20px 0px rgb(16 62 97 / 30%);
    border-radius: 9px;
}

a.gallery_image {
    transition: .3s;
}

.gallery_img {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    background: #323232c7;
    top: 0px;
    left: 0px;
    backdrop-filter: blur(3px);
    display: none;
}

.gallery_img > .container {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery_img > .container > img {
    max-width: calc(100% - 140px);
    max-height: 100%;
    height: fit-content;
    border-radius: 11px;
    transition: .3s;
    opacity: 1;
}

.galery_left_arrow, .galery_right_arrow {
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-size: 2rem;
    z-index: 1;
}

.galery_right_arrow {
    justify-content: flex-end;
}

.galery_left_arrow > i, .galery_right_arrow > i {
    cursor: pointer;
}