body, html {
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	background: #fff;
	color: #000000;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.header {
	display: grid;
  	grid-template-columns: auto auto auto;
	column-gap: 10px;
	font-weight: 300;
	height: 150px;
	text-align: center;
	align-items: center;
}

.header em {
	font-style: normal;
	white-space: nowrap;
}

.header .address {
	font-size: 12px;
	line-height: 16px;
	padding: 0 10px;
}

.header .title {
	font-size: 30px;
	line-height: 32px;
	font-weight: 500;
	white-space: nowrap;
}

.header .phones {
	font-size: 12px;
	line-height: 16px;
	padding: 0 10px;
}

.activity {
	height: 175px;
	border: 1px solid #a1a1a1;
	margin: 50px 0 0 0;
	color: #000;
	display: grid;
	grid-template-columns: 40% 60%;
	align-items: center;
}

.activity .img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 175px;
}


.activity.activity-bikes .img {
	background-image: url('images/loris_bikes.jpg');
}

.activity.activity-misc .img {
	background-image: url('images/loris_misc.jpg');
}

.activity .title {
	font-size: 30px;
	line-height: 32px;
	font-weight: 500;
}

.activity .desc {
	padding: 10px 30px; 
}

.activity .text {
	color: #a1a1a1;
}

.activity-misc {
	grid-template-columns: 60% 40%;
}

.activity-misc div:nth-child(1) {
	order: 2;
}

.activity-misc div:nth-child(2) {
	order: 1;
}

.map {
	display: block;
	max-width: 380px;
	background-color: #000;
	color: #fff;
	height: 64px;
	font-size: 20px;
	line-height: 64px;
	text-decoration: none;
	outline: none;
	margin: 50px auto;
	text-align: center;
}

@media screen and (max-width: 400px) {


	.map {
		font-size: 16px;
		margin: 50px 20px;
	}
}

@media screen and (max-width: 680px) {
	.header {
		height: auto;
		margin-top: 20px;
		grid-template-columns: auto;
		row-gap: 20px;
	}

	.header .title {
		font-size: 24px;
		line-height: 28px;
	}
	
	.activity .title {
		font-size: 20px;
		line-height: 24px;
		font-weight: 500;
	}

	.activity .desc {
		padding: 10px 20px; 
	}
}

@media screen and (max-width: 1200px) {
	.activity {
		margin-left: 10px;
		margin-right: 10px;
	}
}