.gallery-page {
    position: absolute;
    top: 0;
    left: 350%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-title {
    font-size: 50px;
    color: white;
    font-family: saman;
}

.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
    justify-content: center;
}

.gallery:hover .gallery__image {
    filter: grayscale(1);
}

.gallery__column {
    display: flex;
    flex-direction: column;
    width: 14%;
}

.gallery__link {
    margin: 2px;
}

.gallery__link:hover .gallery__image {
    filter: grayscale(0);
}

.gallery__link:hover .gallery__caption {
    opacity: 1;
}

.gallery__thumb {
    position: relative;
}

.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.gallery__image:hover {
    transform: scale(1.25);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
}

#top-left-image {
    border-top-left-radius: 25px;
}

#top-right-image {
    border-top-right-radius: 25px;
}

#bottom-left-image {
    border-bottom-left-radius: 25px;
}

#bottom-right-image {
    border-bottom-right-radius: 25px;
}

@media screen and (max-width:1000px) {
    .gallery-page {
        left: 800%;
        width: 180vw;
    }
    .gallery-body {
        height: 80vh;
        display: flex;
        align-items: center;
    }
}