/*Muse elements transitions*/

/*User elements transitions*/
.transition {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

.btn-more-details::before {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.menu-footer .MenuItemContainer:hover .shared_content {
    padding-left: 5px;
}

.btn-more-details::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background-color: black;
    width: 0%;
}

.btn-more-details:hover::before {
    width: 100%;
}

.menu-services .MenuItemContainer:last-of-type .MenuItem {
    border-bottom: 0 !important;
}

/*Projects*/
.Thumb .wrap-black {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    transition: all 0.4s ease-out 0s;
}

.Thumb:hover .wrap-black {
    opacity: 0.8;
    transform: scale(1);
}

.icon-zoom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease-out 0.3s;
}

.Thumb:hover .wrap-black .icon-zoom {
    opacity: 1;
    transform: translateY(0);
}