.galaxy-page .row-gap {
    display: flex;
    row-gap: 10px;
}

.galaxy-page .row-gap {
    --gutter: 5px;
}

.galaxy-page {
    padding: 30px 0 20px;
}

.item-image span {
    display: block;
    font-size: 16px;
    margin-top: 6px;
    font-weight: 700;
}

.item-image .wrap-img {
    padding-bottom: 100%;
}

.item-video {
    margin-bottom: 16px;
    cursor: pointer;
    transition: .3s;
}

.item-video .wrap-img {
    padding-bottom: 56.25%;
}

.item-video .icon-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.item-video .wrap-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.item-video .name {
    font-size: 16px;
    margin-top: 6px;
    font-weight: 700;
    transition: .3s;
}

.item-video .name:hover {
    color: #3aaa35;
}

.modal-video {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-video .modal-content {
    background: #FFF;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 6px;
    line-height: 1;
}