*{
	margin: 0;
	padding: 0;
}

/* space-grotesk-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/space-grotesk-v15-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/space-grotesk-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/space-grotesk-v15-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/space-grotesk-v15-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/space-grotesk-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body{
	font-size: 18px;
	line-height: 1.5;
	font-family: "Space Grotesk", sans-serif;
}
h1, h2, h3{
}
h1{
	font-size: 40px;
	margin-bottom: 20px;
}
p{
	margin-bottom: 21px;
}
h2{
	
	font-size: 28px;
	margin-bottom: 60px;
}

section{
}

section.odd{
	background: #00818b;
	color: #fff;
	padding: 80px 0;
}
.row{
	width: 1200px;
	margin: 0 auto;
}
.contact__grid{
	display: grid;
	margin: 40px 0;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 30px;
	
}
section.odd p a{
	color: #fff;
	text-decoration: none;
}
section.odd .contact__grid p a{
	color: #00818b;
	text-decoration: none;
}

img.mobile{
	display: none;
}

img.desktop{
	display: block;
	width: 100%;
	height: auto;
}

header{
	
}

header img{
	width: 500px;
	height: auto;
	display: block;
	margin: 50px auto;
}
@media(max-width: 1280px){
.row{
	width: 90%
}	
}
@media(max-width: 1000px){
	.contact__grid{
		grid-template-columns: 1fr 1fr;
		
		
	}
}
@media(max-width: 600px){
	.contact__grid{
		grid-template-columns: 1fr;
		
		
	}
	
	h1{
		font-size: 30px;
		
	}

	h2{
		
		font-size: 22px;
	}
	
	
	img.mobile{
		display: block;
		width: 100%;
		height: auto;
	}
	
	header img{
		width: 80%;
		margin: 40px auto;
	}
	
	img.desktop{
		display: none;
	}
}

.contact__grid > div{
	background: #fff;
	color: #222;
	padding: 30px;
}

footer{
	font-size: 14px;
	text-align: center;
	margin-top: 40px;
}

footer a{
	color: #666; text-decoration: none;
}
