*{
	padding: 0px;
	margin: 0px;
	font-family: poppins;
	box-sizing: border-box;
}

body
{	
	background: #131313;
}

.container
{
	
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	padding: 50px 100px;
	transform-style: preserve-3d;

}

.container .box
{
	position: relative;
	width: 300px;
	height: 400px;
	margin: 20px;
	background: #232323;
	border-radius: 20px;
	transform-style: preserve-3d;
	cursor: pointer;
	
}
.container .box::after
{
	content: "ORIENTED";
	position: absolute;
	bottom: 50px;
	right: 10px;
	font-size: 3.5em;
	font-weight: 900;
	color: #fff;
	font-style: italic;
	opacity: 0;
	transition: 0.5s;
}
.container .box::before
{
	content: "JOB";
	position: absolute;
	
	top: 50px;
	left: 45px;
	font-size: 6em;
	font-weight: 900;
	color: #fff;
	font-style: italic;
	opacity: 0;
	transition: 0.5s;

}
.container .box:hover::after
{
	opacity: 0.1;
	bottom: -10px;
}

.container .box:hover::before
{
	opacity: 0.1;
	top: -10px;
}

.container .box .name
{
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	color: #fff;
	width: 100%;
	transform-style: preserve-3d;
	transform: translate3d(0, 0, 75px);
	transition: 0.5s;
	z-index: 10;
	opacity: 0;

}
.container .box:hover .name
{
	top: 40px;
	opacity: 1;
}


.container .box .more
{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform-style: preserve-3d;
	transform: translate3d(-50%, 0, 75px);
	color: #fff;
	background: #333;
	text-decoration: none;
	padding:7px 15px;
	border-radius: 30px;
	transition: 0.5s;
	opacity: 0;
	z-index: 10;
	animation: more 1.5s infinite;
	box-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
}

.container .box:hover .more
{
	bottom: 30px;
	opacity: 1;
	
}

@keyframes more
{
	0%
	{
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
	}

	70%{
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100%
	{
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.container .box .circle
{
	position: absolute;
	top: 40%;
	left: 50%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	transition: 0.5s;
	background: #fff;
	transform-style: preserve-3d;
	transform: translate3d(-50%, -50%, 50px);
	z-index: 11;
	opacity: 0;
	animation: circle 1.5s infinite;
	box-shadow: 0 0 0 rgba(255, 255, 255, 0.8);

}

@keyframes circle
{
	0%
	{
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
	}

	70%{
		box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
	}

	100%
	{
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.container .box .circle img
{
	width: 70px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


.container .box:hover .circle
{
	opacity: 1;
}

.container .box:nth-child(1) .circle,
.container .box:nth-child(1) .more
{
	background: #008080;
}


.container .box:nth-child(2) .circle,
.container .box:nth-child(2) .more
{
	background: rgb(255, 100, 0);
}

.container .box:nth-child(3) .circle,
.container .box:nth-child(3) .more
{
	background: #7210c2;
}

.container .box:nth-child(4) .circle,
.container .box:nth-child(4) .more
{
	background: #C71585;
}

.container .box:nth-child(5) .circle,
.container .box:nth-child(5) .more
{
	background: #660354;
}
.container .box:nth-child(6) .circle,
.container .box:nth-child(6) .more
{
	background: #006400;
}
.container .box:nth-child(7) .circle,
.container .box:nth-child(7) .more
{
	background: rgb(200, 0, 0);
}

.container .box:nth-child(8) .circle,
.container .box:nth-child(8) .more
{
	background: rgb(242, 200, 17);
	color: #000;
}
.container .box:nth-child(9) .circle,
.container .box:nth-child(9) .more
{
	background: rgb(0, 0, 150);
	
}

.container .box:nth-child(10) .circle,
.container .box:nth-child(10) .more
{
	background: rgb(191, 0, 255);
	
}
.container .box:nth-child(11) .circle,
.container .box:nth-child(11) .more
{
	background: rgb(0, 191, 255);
	
}
.container .box:nth-child(12) .circle,
.container .box:nth-child(12) .more
{
	background: rgb(255, 0, 0);
	
}
.container .box:nth-child(13) .circle,
.container .box:nth-child(13) .more
{
	background: rgb(255, 0, 0);
	
}
.container .box:nth-child(14) .circle,
.container .box:nth-child(14) .more
{
	background: rgb(200, 0, 0);
	
}




.container .box .imageBx
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background:url(../img/b.jpg);
	background-size: cover;
	height: 200px;
	transform-style: preserve-3d;

	opacity: 1;
	transition: 0.5s;
}


.container .box:hover .imageBx
{
	opacity: 0;
}

.container .box:nth-child(1) .imageBx
{
	background:url(../img/misData.jpg), rgba(0, 0, 255, 0.2);
	background-blend-mode: multiply;
	background-size: cover;

}
.container .box:nth-child(2) .imageBx
{
	background:url(../img/dataAnalyst.webp), rgba(255, 100, 0, 0.2);
	background-blend-mode: multiply;
	background-size: cover;

}

.container .box:nth-child(3) .imageBx
{
	background:url(../img/vbaimg.webp), rgba(255, 100, 0, 0.2);
	background-blend-mode: multiply;
	background-size: cover;

}
.container .box:nth-child(4) .imageBx
{
	background:url(../img/vbaMac.jpg), rgba(0, 100, 0, 0.2);
	background-blend-mode: multiply;
	background-size: cover;

}

.container .box:nth-child(5) .imageBx
{
	background:url(../img/vbaMac.jpg), rgba(0, 100, 0, 0.2);
	background-blend-mode: multiply;
	background-size: cover;

}


.container .box:nth-child(6) .imageBx
{
	background:url(../img/b.jpg), rgba(0, 100, 0, 0.2);
	background-blend-mode: multiply;
	background-size: cover;
}
.container .box:nth-child(7) .imageBx
{
	background:url(../img/sqlserver.webp);
	background-size: 350px;
}
.container .box:nth-child(8) .imageBx
{
	background:url(../img/powerBI.webp), rgba(255, 255, 0, 0.5);
	background-blend-mode: multiply;
	background-size: cover;
}
.container .box:nth-child(9) .imageBx
{
	background:url(../img/design.webp), rgba(0, 0, 150,0.2);
	background-blend-mode: multiply;
	background-size: cover;
}

.container .box:nth-child(10) .imageBx
{
	background:url(../img/webDesign.webp), rgba(191, 0, 255,0.5);
	background-blend-mode: multiply;
	background-size: cover;
}
.container .box:nth-child(11) .imageBx
{
	background:url(../img/automation.jpg);
	background-size: cover;
}
.container .box:nth-child(12) .imageBx
{
	background:url(../img/omt.jpg);
	background-size: cover;
}
.container .box:nth-child(13) .imageBx
{
	background:url(../img/omt.jpg);
	background-size: cover;
}
.container .box:nth-child(14) .imageBx
{
	background:url(../img/essential.jpg);
	background-size: cover;
}



.container .box .imageBx .popular
{
	position: absolute;
	top: 17px;
	left: 0px;
	background: #ff0000;
	padding: 5px 10px;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	font-style: italic;
	font-weight: 500;
}

.container .box:nth-child(0) .popular
{
	background: #008080;
}
.container .box:nth-child(1) .popular
{
	background: #008080;
}

.container .box:nth-child(2) .popular
{
	background: rgb(255, 100, 0);
}

.container .box:nth-child(3) .popular
{
	background: #7210c2;
}

.container .box:nth-child(4) .popular
{
	background: #C71785;
}
.container .box:nth-child(5) .popular
{
	background: #660354;
}
.container .box:nth-child(6) .popular
{
	background: #006400;
}
.container .box:nth-child(7) .popular
{
	background: rgb(200, 0, 0);
}
.container .box:nth-child(8) .popular
{
	background: rgb(242, 200, 17);
	color: #000;
}
.container .box:nth-child(9) .popular
{
	background: rgb(0, 0, 150);
}

.container .box:nth-child(10) .popular
{
	background: rgb(191, 0, 255);
}

.container .box:nth-child(11) .popular
{
	background: rgb(0, 191, 255);
}

.container .box:nth-child(12) .popular
{
	background: rgb(255, 0, 0);
}
.container .box:nth-child(13) .popular
{
	background: rgb(255, 0, 0);
}

.container .box:nth-child(14) .popular
{
	background: rgb(200, 0, 0);
}


.container .box .imageBx .CourseName
{
	position: absolute;
	bottom: -40px;
	left: 25px;
	width: 250px;
	height: 80px;
	background: #fff;
	text-align: center;
	padding:5px;
	border-radius: 10px;
	transform-style: preserve-3d;
	
}
.container .box .imageBx .CourseName h2
{
	color: #333;
	font-size: 24px;
	line-height: 23px;

	transform-style: preserve-3d;
}
.container .box .imageBx .CourseName h2 span
{
	font-size: 14px;
	font-weight: 400;
	color: #333;
}

.container .box .course_icon
{

	position: absolute;
	top: 100%;
	left: 50%;
	transform-style: preserve-3d;
	transform: translate3d(-50%, -50%, 60px);
	text-align: center;
	transition: 0.5s;
	opacity: 0;
}
.container .box .course_icon ul
{
	display: flex;
	justify-content: space-evenly;
}

.container .box .course_icon ul li
{
	list-style: none;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 40px;
	padding: 5px;
	margin: 3px;
	overflow: hidden;

	
}
.container .box .course_icon ul li img
{
	width: 100%;
	padding: 3px;
}


.container .box .course_icon p{
	transform: translateY(-15px);
	color: #fff;
	font-size: 12px;
	
}

.container .box:hover .course_icon
{

	position: absolute;
	top: 72%;
	left: 50%;
	transform-style: preserve-3d;
	transform: translate3d(-50%, -50%, 60px);
	text-align: center;
	transition: 0.5s;
	opacity: 1;
}




.container .box .details
{
	position: absolute;
	top: 75%;
	left: 50%;
	transform-style: preserve-3d;
	transform: translate3d(-50%, -50%, 60px);
	text-align: center;
	transition: 0.5s;


}

.container .box:hover .details
{
	position: absolute;
	top: 70%;
	left: 50%;
	transform-style: preserve-3d;
	transform: translate3d(-50%, -50%, 60px);
	text-align: center;
	opacity: 0;

}

.container .box .details h4,h5,h6
{
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	width: 270px;	

}

.container .box .details h5 span
{
	color: #f00;
	font-size: 13px;
	text-decoration: line-through;
}
.container .box .details h6
{
	font-size: 13px;
	font-weight: 400;
}



@media only screen and (max-width: 768px)
{
	.container
{
	
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	padding: 20px 5px;
	transform-style: preserve-3d;

}

.container .box
{
	margin: 10px 0px;
}

}

