.contentmenu {
    max-width: 1024px;
    width: 100%;
    padding: 0 6%;
    padding-top: 5px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .contentmenu {
        padding-top: 50px;
        margin-left: 0px;
        flex-direction: column;
    }
}

.cardmenu {
    width: 100%;
    max-width: 250px;
    min-width: 100px;
    height: 250px;
    background-color: white;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border: 2px solid rgba(248, 246, 246, 0.12);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon {
    margin: 0 auto;
    width: 100%;
    height: 80px;
    max-width: 80px;
    background: linear-gradient(90deg, #f59d38 0%, #f59d38 40%, rgba(0, 0, 0, 0.28) 60%);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s ease;
    background-position: 0px;
    background-size: 200px;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.cardmenu .title {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-top: 30px;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.cardmenu .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: rgb(75, 75, 75);
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}

.cardmenu:hover {
    height: 270px;
}

.cardmenu:hover .info {
    height: 90%;
}

.cardmenu:hover .text {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 40px;
}

.cardmenu:hover .icon {
    background-position: -120px;
    transition: all 0.3s ease;
}

.cardmenu:hover .icon i {
    background: linear-gradient(90deg, #f59d38, #f59d38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}