﻿
.list_of_types_of_games_1 .item_image{
	width: 65px;
	height: 65px;
	margin: 0 auto 30px;
}
.list_of_types_of_games_1 .item_image img {
	width: auto;
	height: auto;
	object-fit: contain;
}
.list_of_types_of_games_1 .section_text{
	margin: 0 0 40px;
}
.list_of_types_of_games_1 .types_area{
	margin: 0 -15px 30px;
	display: flex;
	flex-wrap: wrap;
}
.list_of_types_of_games_1 .item_wrap{
	width: 25%;
	flex-shrink: 0;
	padding: 15px;
	margin-top: 0;
}
.list_of_types_of_games_1 .item{
	background: var(--main_color_second);
	padding: 30px;
	height: 100%;
}
.list_of_types_of_games_1 .item_title{
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.2;
	color: var(--title_color);
}
/* Responsiveness // Responsiveness // Responsiveness */
@media (max-width: 1199px){
	.list_of_types_of_games_1 .item_wrap{
		width: calc(100%/3);
	}
}
@media (max-width: 991px){
	.list_of_types_of_games_1 .item_wrap{
		width: 50%;
	}
}
@media (max-width: 767px){
	.list_of_types_of_games_1 .item_wrap{
		width: calc(50% - 8px);
		padding: 0;
	}
	.list_of_types_of_games_1 .item_wrap:not(:last-child){
		margin-bottom: 15px;
	}
	.list_of_types_of_games_1 .types_area{
		margin: 30px 0;
		justify-content: space-between;
	}
	.list_of_types_of_games_1 .item{
		padding: 20px 15px;
	}
}