/* START GUIDE YOU */
.guide {
	margin-top: 						40px;
	margin-bottom: 						100px;
}

.guide .title {
	font-weight: 						400;
	text-align: 						center;
	margin-bottom: 						15px;
}

.guide .title cc {
	font-family: 						"Refoke";
	color: 								var(--brown);
}

.guide .description,
.guide .location {
	display: 							flex;
	justify-content: 					center;
	gap: 								10px;
	font-weight: 						300;
	margin-bottom: 						15px;
	text-align: 						center;
}

.guide .location::before {
	content: 							"";
	width: 								17px;
	height: 							20px;
	background: 						url("../images/locationBlack.svg") center center no-repeat;
	background-size: 					17px 20px;
}

.guide .mapContainer {
	position: 							relative;
	display: 							flex;
	align-items: 						center;
	justify-content: 					center;
	height: 							500px;
	border-radius: 						30px;
	padding: 							0;
	overflow: 							hidden;
}

.guide .mapContainer > iframe {
	width: 								100%;
	height: 							145%;
}
/* END GUIDE YOU */

@media (max-width: 991px) {
	/* START GUIDE YOU */
	.guide {
		margin-top: 						25px;
		margin-bottom: 						50px;
	}

	.guide .container {
		padding: 							0;
	}

	.guide .title {
		padding: 							0;
		margin-bottom: 						10px;
	}

	.guide .description,
	.guide .location {
		padding: 							0;
		gap: 								5px;
		margin-bottom: 						10px;
	}

	.guide .location {
		margin-bottom: 						20px;
	}

	.guide .location::before {
		width: 								17;
		height: 							20px;
		background-size: 					17 20px;
		flex: 								0 0 auto;
	}

	.guide .mapContainer {
		height: 							350px;
		border-radius: 						20px;
	}

	.guide .mapContainer > iframe {
		height: 							170%;
	}
	/* END GUIDE YOU */
}