.list_of_games_4 .fade_in_right{
	opacity: 0;
	transition: transform 1s;
	transform: translate(100%, 0);
}
.list_of_games_4 .fade_in_left{
	opacity: 0;
	transition: transform 1s;
	transform: translate(-100%, 0);
}
.list_of_games_4 .fade_in_top{
	opacity: 0;
	transition: transform 1s;
	transform: translate(0, -50%);
}
.list_of_games_4 .fade_in_bottom{
	opacity: 0;
	transition: transform 1s;
	transform: translate(0, 100%);
}
.list_of_games_4 .section_text{
	margin-bottom: 40px;
}
.list_of_games_4 .items{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
	row-gap: 50px;
	column-gap: 30px;
}
.list_of_games_4 .item{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.list_of_games_4 .item_img{
	width: 100%;
	position: relative;
	padding-top: 62%;
}
.list_of_games_4 .item_img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_of_games_4 .item_text{
	margin-top: 20px;
}
.list_of_games_4 .item_text h3,
.list_of_games_4 .item_text p{
	margin: 0;
}
.list_of_games_4 .item_text h3{
	color: var(--title_color);
}
/* Responsiveness // Responsiveness // Responsiveness */
@media (max-width: 767px){
	.list_of_games_4 .items{
		margin-top: 30px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}
