﻿@keyframes ltr {
    0% {
        width:0%;
    }
    100% {
        width:100%;
    }
}
/*@-webkit-keyframes slideIn {
    0% {
        transform: translateX(-900px);
    }

    100% {
        transform: translateX(0);
    }
}

@-moz-keyframes slideIn {
    0% {
        transform: translateX(-900px);
    }

    100% {
        transform: translateX(0);
    }
}*/

@keyframes slideIn {
    0% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0);
    }
}

.menuTitle {
    position:relative;
    width:fit-content;
}
    .menuTitle::after {
        position: absolute;
        left: 0;
        bottom: -10px;
        content: '';
        height: 10px;
        animation: 1.5s ease ltr;
        animation-fill-mode: forwards;
        border-radius: 8px;
        background-color: #446e9b;
    }
.imgMenu {
    padding:0;
    min-width: 40px;
    width:100%;
    max-width:400px;
    height: 100%;
    max-height:300px;
    -webkit-animation: slideIn 2s forwards;
    -moz-animation: slideIn 2s forwards;
    animation: slideIn 2s forwards;
} 
.imgMenu img {
    margin:0;
    width:91%;
    height:80%;
/*    display:block;
*/
}
.container1 .cards {
    max-width: 300px;
    height: 215px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
}

    .container1 .cards:hover {
        height: 400px;
    }

    .container1 .cards .imgContainer {
/*        position: relative;
*/        width: 100%;
        height:100%;
        max-height: 150px;
        top: -50px;
        left: 10px;
        z-index: 1;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

        .container1 .cards .imgContainer img {
            max-width: 100%;
            border-radius: 4px;
        }

    .container1 .cards .content  {
        position: relative;
        margin-top: -140px;
        padding: 10px 15px;                   
        text-align: center;
        color: #111;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out;
        z-index:1;
    }

    .container1 .cards:hover .content {
        visibility: visible;
        opacity: 1;
        margin-top: 30px;
        transition-delay: 0.3s;
        pointer-events:all;
    }

@media (max-width: 330px) {
    .container1 .cards .imgContainer {
        left: 0px;
    }
}

