
/* 
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100vh;
	background: #FFDCDD;
	
}









Define this in your CSS 
.ease-inAnimation = Replace it by the name you want to give your animation
.easeinAnimObj = Assign this class to the elements to which you want to apply the animation
*/

.card2 {
	width: 100%;
	
	overflow: hidden;
	position: relative;
}

.card2:hover .cardbody {
	right:0;
	
}
.cardoverlay {
	
	
}

.cardimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cardsetting {
	
}

.cardbody {
	width: 100%;
	height: 100%;
	top: 0;
	right: -100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.8);;
	backdrop-filter: blur(5px);
	color: #fff;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	object-fit: cover;
	transition: 1s;
	
	
}

.cardtitle {
	text-transform: uppercase;
	font-size: 1.5em;
	font-weight: 300;
	
}

.cardsubtitle {
	text-transform: capitalize;
	font-size: 1em;
	font-weight: 300;
	
}

.cardinfo {
	font-size: .5em;
	line-height: 1.2em;
	font-weight: 400;
	
}

.paratxt {
	
	font-size: 1em;
	font-weight: 300;
	
}

.easeinAnimObj {
	position: relative;
	/* Chrome, Safari*/
	-webkit-animation-name: ease-inAnimation;
	-webkit-animation-duration: 5s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-delay: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	/* Mozilla */	
	-moz-animation-name: ease-inAnimation;
	-moz-animation-duration: 5s;
	-moz-animation-timing-function: ease-in;
	-moz-animation-delay: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	-moz-animation-play-state: running;	
	/* Standard syntax */
	animation-name: ease-inAnimation;
	animation-duration: 5s;
	animation-timing-function: ease-in;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}

/* 
Define the keyframe and changes
*/

/* Chrome, Safari */
@-webkit-keyframes ease-inAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}

/* Firefox */
@-moz-keyframes ease-inAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}

/* Standard syntax */
@keyframes ease-inAnimation {
	0% {
		left: 0;
		top: 0;
	}
	100% {
		left: 200px;
		top: 0;
	}
}