.hero-section {
    display: none;
}

.glm-profile .glm-profile-header-container {
    margin-bottom: 30px;
}

.glm-profile .glm-profile-name {
    margin-bottom: 0px;
}

.glm-profile .glm-profile-position {
    margin-bottom: 0;
    color: var(--theme-palette-color-3);
}


.glm-profile .glm-profile-main-container {
    display: flex;
    flex-flow: row wrap;
}

.glm-profile .glm-profile-photo {
    display: inline-block;
    border-radius: 7px;
    box-shadow: 0px 0px 5px rgba(41, 51, 61, 0.12);
}

.glm-profile .glm-profile-bionote {
    flex: 1;
    margin: -8px 0 0 30px;
    text-align: justify;
    text-justify: inter-word;
}

@media screen and (max-width: 800px) {
    .glm-profile .glm-profile-main-container {
        flex-flow: column wrap;
    }

    .glm-profile .glm-profile-photo-container {
        display: flex;
        justify-content: center;
    }

    .glm-profile .glm-profile-bionote {
        margin: 30px 0 0 0;
    }
}