body{
	margin: 0;
	font-family: "Nunito Sans", sans-serif;
}
:root{
	--myred:236, 96, 102;
}
.cards{
	background-color: #222831;
	padding: 80px 100px;
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 40px;
}
.card{
	position: relative;
	overflow: hidden;
}
.card img{
	border-radius: 4px;
	height: 300px;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.card:hover .card-image{
	transform: scale(1.1);
}
.card-title{
	background-color: rgb(var(--myred));
	font-size: 22px;
	color: white;
	padding: 5px 15px;
	font-family: "Oswald", sans-serif;
}
.card-body{
	background-color: black;
	padding: 10px 15px;
	display: inline-block;
}
.card-body p{
	color: white;
	margin: 0;
}
.card-body span{
	color: white;
}
.card-data{
	position: absolute;
	left: 0;
	bottom: 0;
}
.box{
	border:2px solid;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inner{
	width: 150px;
	height: 150px;
	background-color: blue;
	margin:5px;
}
.inner2{
	background-color: green;
	transition: 0.5s;
}
.inner2:hover{
	transform: translate(50px , 100px);
}
/*our_DJS*/
.our_DJS{
	background-color: #222831;
	padding: 50px 100px;
}
.djs_heading{
	width: 50%;
	text-align: center;
	margin: auto;
}
.djs_heading .line{
	background-color: rgb(var(--myred));
	width: 100px;
	height: 2px;
	margin: auto;
}
.djs_heading h2{
	color: white;
}
.djs_heading p{
	color: white;
	opacity: 0.8;
}
.djs_card_row{
	display: grid;
	padding-top:50px ;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 30px;
}
.djs_Card{
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}
.djs_Card_img{
	transition: 0.5s;
}
.djs_Card:hover .djs_Card_img{
	transform: scale(1.1);
}
.djs_Card img{
	border-radius: 5px;
}
.djs_Card_body{
	background-color: rgba(var(--myred) ,  0.7);
	text-align: center;
	position: absolute;
	padding: 0px 50px;
	box-sizing: border-box;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: scale(0);	transition: 0.5s;
}
.djs_Card:hover .djs_Card_body{
	transform: scale(1.0);
}
.djs_Card_body h4{
	color: white;
	font-size: 24px;
	margin-bottom: 0px;
	font-weight: 400;
}
.djs_Card_subtitle{
	color: white;
	font-size: 18px;
}
.djs_Card_text{
	color: white;
	word-spacing: 2px;
	line-height: 1.5;
}
.djs_Card_body ul{
	display: flex;
	gap: 20px;
	list-style: none;
	justify-content: center;
	padding: 0px;
}
.djs_Card_body ul li a{
	color: white;
	font-size: 18px;
}
