/*----------  Container menu iso-gallery  ----------*/
.container_menu_iso {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: "Raleway", sans-serif;
    margin: 4rem 0;
}

.container_menu_iso .menu_iso li {
    float: left;
    list-style: none;
    padding: 20px 15px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .container_menu_iso .menu_iso li {
        padding: 30px 6px;
    }
}

#custom-filter li:hover,
#custom-filter li.active {
    color: #6e6e6e;
    border-color: #6e6e6e;
}

.container_menu_iso .menu_iso li a {
    /* font-style: italic; */
    font-family: "Rajdhani", sans-serif;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-box-shadow: 5px 5px 13px #6e6e6e, -5px -5px 13px #ffffff;
    /* box-shadow: 5px 5px 13px #6e6e6e, -5px -5px 13px #ffffff; */
    /* box-shadow: 5px 4px 8px 0px #6e6e6e70, -5px -5px 8px #ffffff; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.container_menu_iso .menu_iso li a:hover {
    color: rgb(29, 90, 23);
    /* -webkit-box-shadow: inset 5px 5px 13px #6e6e6e, inset -5px -5px 13px #ffffff; */
    /* box-shadow: inset 5px 5px 13px #6e6e6e, inset -5px -5px 13px #ffffff; */
    /* box-shadow: inset 5px 5px 16px #6e6e6e8c, inset -5px -5px 17px #ffffff; */
    border-bottom: 2px solid var(--ltn__secondary-color);
}

@media screen and (max-width: 600px) {
    .container_menu_iso .menu_iso li a {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* Main settings isotopes images */
.img_iso {
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* height: 250px;
    width: 300px;*/
    margin: 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
    .img_iso {
        height: 230px;
        width: 230px;
    }
}

@media screen and (max-width: 600px) {
    .img_iso {
        height: 180px;
        width: 160px;
    }
}

@media screen and (max-width: 425px) {
    .img_iso {
        height: 250px;
        width: 250px;
    }
}

.img_iso:hover {
    -webkit-box-shadow: 6px 4px 11px 3px #999999;
    box-shadow: 6px 4px 11px 3px #999999;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/*----------  Overlay with text on image hover ----------*/
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 32, 32, 0.472);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

/* On hover, the overlay text will "zoom" in display */
.img_iso:hover .overlay {
    transform: scale(1);
}

/* Some text inside the overlay, which is positioned in the middle vertically and horizontally */
.text {
    font-family: "Raleway", sans-serif;
    color: white;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}