*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
.hexagon-master{
    display:grid;
    place-items: center;
    /* overflow: hidden; */
    height: 100%;
}

.hexagon-gallery{
    position: relative;
    width: 492px;
    height: 454px;
    display: grid;
    place-items: center;
}

.hexagon-gallery .hexagon{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: drop-shadow(3px 3px 5px #213341); */
    filter: drop-shadow(3px 3px 5px rgba(33,51,65,0.4));
}

.hexagon-gallery .hexagon .hex a {
    width: 144px;
    height: 159px;
    display: flex;
    margin: 10px;
    /* background-color: #424242; */
    clip-path: polygon(50% 0%, 100% 25%,100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-gallery .hexagon:nth-child(1){
    top: 0;
}

.hexagon-gallery .hexagon:nth-child(3){
    bottom: 0;
}

.hexagon-gallery .hexagon .hex img{
    /*cursor:pointer;*/
    width: 100%;
    object-fit: cover;
    transition: .3s;
}

.hexagon-gallery .hexagon .hex:hover img{
    transform: scale(1.1);
}

#menuPequenio{
    display: none;
}



@media (max-width: 991px) {
    #hidden{
        visibility:hidden;
    }
}

@media (max-width: 520px) {
    #menuGrande{
        display: none;
    }
    #menuPequenio{
        display: grid;
    }
    .hexagon-gallery .hex{
        margin-bottom: -60px;
    }
    .hexagon-gallery{
        margin-left: -70px;
    }
}

/**/
