.map {
	padding: 0 0 120px 0;
}

.map .countries {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 77px;
	background: #fff;
	box-shadow: 0px 5px 10.7px 0px rgba(172, 172, 172, 0.25);
	padding: 22px 0;
}

.map .countries .country {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.map .countries .country img {
	width: 24px;
	height: 24px;
}

.map .countries .country p {
	color: #16263C;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px; 
	margin: 0;
}

.map img.map {
	display: block;
	margin: 72px auto;
	width: 100%;
	max-width: 960px;
	padding: 0;
}

.map .cards {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.map .cards .card {
	padding: 40px 44px;
	border-radius: 8px;
	background: #E8F6F2;
	width: calc(50% - 20px);
}

.map .cards .card p.title {
	position: relative;
	color: #000;
	padding-right: 34px;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px; 
	margin: 0 auto 32px auto;
}

.map .cards .card p.title img {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	right: 0;
}

.map .cards .card p.desc {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin: 0 auto;
}
		
@media only screen and (max-width: 996px) {
	.map {
		padding-top: 80px;
	}

	.map .cards {
		flex-wrap: wrap;
	}

	.map .countries {
		flex-wrap: wrap;
		gap: 24px;
		align-items: center;
		text-align: center;
		justify-content: center;
		box-shadow: none;
		max-width: 140px;
		margin: 0 auto;
		padding: 0;
	}

	.map .countries .country { 
		width: 100%;
		justify-content: flex-start;
	}

	.map .cards .card {
		width: 100%;
	}

	.map .cards .card p.title {
		position: relative;
		color: #000;
		padding: 0;
		font-size: 18px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px;
		margin: 0 auto 32px auto;
	}

	.map .cards .card p.title img {
		position: relative;
		display: block;
		width: 24px;
		height: 24px;
		margin-bottom: 24px;
	}

	.map .cards .card p.desc {
		color: #000;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 24px;
		margin: 0 auto;
	}
}