/*********************************
*                                *
*           LOCATION             *
*                                *
**********************************/

.location {
	display: flex;
    flex-direction: row;
	align-items: center;
	height: 370px;
    width: 100%;
	background-color: #fff;
	box-shadow: 5px 5px 10px #e0dad5;
	margin-top: 30px;
	border-radius: 10px;
}

.location-left, 
.location-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
    width: 50%;
}

.location-left {
	gap: 20px;
	padding: 30px;
}

.location-left img{
	width: 140px;
	height: 90px;
}

.location .location-left p{
	font-family: 'Manrope';
	font-weight: 400;
	font-style: normal;
	font-size: 23px;
	color: #444;
	text-transform: uppercase;
}

.location-left address {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    color: #444;
    line-height: 35px;
	font-style: normal;
}

.location-left .phone-number {
	display: block;
	font-family: 'Manrope';
	color: #444;
	font-size: 20px;
	text-decoration: none;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 10px;
	margin: 10px;
}

.location-left .phone-number:hover {
	color: #000;
    transition: color 0.3s ease;
}

.location-right iframe {
    width: 100%;
    height: 370px;
    border: 0;
	border-radius: 0 10px 10px 0;
}


@media (max-width: 640px) {

	.location {
		flex-direction: column;
		height: max-content;
		border-radius: 0;
	}
	
	.location-left, 
	.location-right {
		width: 100%;
	}
}