/**************** PAGE ****************/

.div-facebook-title h2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin: 6vh 0;
}

/**************** MENU ****************/

.facebook-menu-line {
    background-color: var(--custom-blue);
}
.facebook-menu-item {
    height: 8vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.facebook-menu-item a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.facebook-menu-item.active {
    background-color: white;
}
.facebook-menu-item.active a {
    color: var(--custom-blue);
}

/**************** FACES ****************/
.div-faces > div {
    padding: 3vh 5vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.div-faces .panel {
    padding-bottom: 2vh;
    width: 100%;
    border-radius: 5%;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, .2);
}
.div-faces .panel-body img {
    border-radius: 100%;
    margin: 3vh 3vw;
    width: 18vw;
    height: 18vw;
}
@media (max-width: 767px) {
    .div-faces .panel-body img {
        width: 60vw;
        height: 60vw;
    }
}
.div-faces .panel-body button {
    width: 70%;
    margin: 1vh 0;
    background-color: var(--custom-blue);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
    border-radius: 10px;
}
.btn-hidden {
    visibility: hidden;
}