/* Add here all your CSS customizations */


/*box css*/
.box {
  width: auto;
  height: auto;
  margin: auto;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.3s ease-in-out;
}

.box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}


/*read more css*/
.morecontent span {
    display: none;
}
.morelink {
    display: block;
}

/*//////////----//////////*/
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
@keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
