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