.ca-menu{
    padding: 0;
    margin: 20px auto;
    width: 12%;
}

.ca-menu li{
    width: 150px;
    height: 200px;
    overflow: hidden;
    position: relative;
    /* float: left; */
    border: 5px solid #fff;
    /* background: #e2f0ff; */
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-right: 4px;
    transition: all 300ms linear;
}

li.icon1
{
  background-image: linear-gradient(-45deg, #a42736 0%, #e56514 100%);
}

li.icon2
{
  background-image: linear-gradient(-45deg, #15638d 0%, #159160 100%);
}

li.icon3
{
  background-image: linear-gradient(-45deg, #c2335c 0%, #b56560 100%);
}

li.icon4
{
  background-image: linear-gradient(-45deg, #3b29b1 0%, #a35bcd 100%);
}

li.icon5
{
  background-image: linear-gradient(-45deg, #2f7243 0%, #99a785 100%);
}

li.icon6
{
  background-image: linear-gradient(-45deg, #041b5d 0%, #48b6db 100%);
}

li.icon7
{
  background-image: linear-gradient(-45deg, #d30929 0%, #cf626d 100%);
}
.ca-menu li:last-child{
    margin-right: 0px;
}

.ca-icon{
    font-family: 'WebSymbolsRegular', cursive;
    color: #c5e4f4;
    font-size: 30px;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.7);
    line-height: 150px;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
     top: -48px;
    text-align: center;
    transition: all 200ms linear;
}

/* .ca-menu li a{
    text-align: left;
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
    position:relative;
} */



.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 50%;
}

.ca-main{
    font-size: 15px;
    color: #e5ebef;
    opacity: 0.8;
    text-align: center;
    transition: all 200ms linear;
}
.ca-sub{
    text-align:center;
    font-size: 14px;
    color: #666;
    line-height: 40px;
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    width: 100%; 
    transition: all 200ms linear;
}

.ca-menu li:hover{
    background-color: #000;
    z-index:999;   
    transform: scale(1.1);  
}
.ca-menu li:hover .ca-icon{
    color: #ccff00;
    font-size: 50px;
    opacity:0.3;
}
.ca-menu li:hover .ca-icon#heart{
    animation: smallToBig 900ms alternate infinite ease;
}
.ca-menu li:hover .ca-main{
    color: #ccff00;
    animation: smallToBig 300ms ease;
}
.ca-menu li:hover .ca-sub{
    color: #ccff00;
    animation: moveFromBottom 500ms ease;
}

@keyframes smallToBig{
    from {
        transform: scale(0.1);
    }
    to {
        transform: scale(1);
    }
}