.services {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 30px;
	margin-bottom: var(--theme-margin-section)
}

.services .services__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	margin: 0;
	padding: 0
}

.services .services__container .item {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 15px 20px;
	height: 160px;
	background-color: var(--theme-section-bg);
	border-radius: var(--theme-rounded-section);
	cursor: pointer
}

.services .services__container .item:before {
	display: none
}

.services .services__container .item .title {
	font-size: 20px;
	font-weight: 700
}

.services .services__container .item .description {
	font-size: 12px;
	font-weight: 400
}

.services .services__container .item .service_button {
	position: absolute;
	left: 20px;
	bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--theme-buttons-accent-bg);
	border-radius: 50%
}

.services .services__container .item .service_button svg {
	fill: var(--theme-buttons-accent-color)
}

.services .services__container .item img {
	position: absolute;
	right: 0;
	bottom: 0;
	border-bottom-right-radius: var(--theme-rounded-section);
	max-width: 145px;
	max-height: 90px;
	width: auto
}

.services .banner {
	--banner-text-color: var(--theme-color-style3);
	display: flex;
	padding: 70px 20px 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	gap: 14px;
	border-radius: var(--theme-rounded-images);
	color: var(--banner-text-color);
	background-color: var(--theme-color-secondary)
}

.services .banner .gift {
	display: flex;
	width: 50px;
	height: 50px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: calc(50% - 25px);
	top: 10px;
	border-radius: 100px;
	background-color: var(--theme-color-accent)
}

.services .banner .gift svg {
	fill: var(--banner-text-color)
}

.services .banner .banner_title {
	position: relative;
	font-size: 20px;
	font-weight: 700
}

.services .banner .banner_title:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 50px;
	height: 1px;
	margin-left: -25px;
	background-color: var(--banner-text-color)
}

.services .banner .description {
	font-size: 16px;
	font-weight: 400
}

.services .banner .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%
}

.services .banner .btn svg {
	width: 25px;
	height: 25px
}

.services .banner .btn>span {
	text-align: left
}

.services .banner .btn>span>span {
	display: block
}

.services .banner .btn>span>span:first-child {
	font-size: 10px;
	font-weight: 400;
	line-height: normal
}

.services .banner .btn>span>span:last-child {
	font-size: 12px;
	font-weight: 700;
	line-height: normal
}

@media (max-width:991px) {
	.services {
		grid-template-columns: none;
		grid-gap: var(--theme-margin-section-mob);
		margin-bottom: var(--theme-margin-section-mob)
	}

	.services .services__container {
		grid-gap: 10px
	}

	.services .services__container .item {
		height: auto;
		min-height: 110px;
		position: relative
	}

	.services .services__container .item:nth-child(1) {
		grid-row: 1/3;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center
	}

	.services .services__container .item:nth-child(4) {
		grid-column: 1/3
	}

	.services .services__container .item .title {
		z-index: 1
	}

	.services .services__container .item .description {
		z-index: 1
	}

	.services .services__container .item .service_button {
		display: none
	}

	.services .services__container .item img {
		position: absolute;
		right: 0;
		bottom: 0;
		max-height: 55px
	}

	/* Specific rule for the casino image (first item) */
	.services .services__container .item:nth-child(1) img {
		position: relative;
		right: auto;
		bottom: auto;
		max-height: 75px;
		margin-top: 10px;
		object-fit: cover;
		max-width: 100%;
		aspect-ratio: 145/81;
		align-self: center
	}

	.services .services__container .item:nth-child(4) img {
		max-height: 75px
	}

	.services .services__container .item .description {
		max-width: 80px
	}

	.services .services__container .item:nth-child(1) .description,
	.services .services__container .item:nth-child(4) .description {
		max-width: none
	}

	.services .services__container .item:nth-child(1) .title,
	.services .services__container .item:nth-child(1) .description {
		width: 100%;
		margin-top: 5px;
		line-height: 1.2
	}
}