.glm-profile-gallery {
    margin-top: 20px;
    /*padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(41, 51, 61, 0.12);*/
}

.glm-profile-gallery:first-of-type {
    margin-top: 10px;
}

.glm-profile-gallery .glm-profile-gallery-title {
    margin-bottom: 13px;
}

.glm-profile-gallery .glm-profile-gallery-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
}

.glm-profile-gallery .glm-profile-tile {
    padding: 14px 14px 12px;
    width: 255px;
}

.glm-profile-gallery a {
    color: var(--theme-palette-color-4);
}

.glm-profile-gallery .glm-profile-tile {
    margin: 10px 10px;
    position: relative;
    display: block;
}

.glm-profile-gallery a:after {
    content: '\A';
    border-radius: 7px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background:rgba(0,0,100,0.15);*/
    background: var(--theme-palette-color-2);
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.glm-profile-gallery a:hover:after {
    opacity: 0.08;
}

.glm-profile-gallery .glm-profile-photo {
    border-radius: 7px;
    box-shadow: 0px 0px 5px rgba(41, 51, 61, 0.12);
    margin: auto;
    display: block;
    width: 100%;
}

.glm-profile-gallery .glm-profile-info {
    margin-top: 5px;
}

.glm-profile-gallery .glm-profile-name,
.glm-profile-gallery .glm-profile-position {
    display: block;
    /*text-align: left;*/
}

.glm-profile-gallery .glm-profile-name {
    font-weight: bold;
    font-size: 1.15em;
}

.glm-profile-gallery .glm-profile-position {
    margin-top: -5px;
    /*display: none;*/
}

@media screen and (max-width: 1000px) {
    .glm-profile-gallery .glm-profile-gallery-container {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .glm-profile-gallery .glm-profile-tile {
        max-width: 300px;
        width: auto;
    }
}