html {
	font-size: 100%;
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	font-size: 1.3rem;
	line-height: 1.4;
	color: #003f2b;
	margin: 0;
	font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}
.wrapper {
	position: relative;
}
.wrapper::before,
.wrapper::after {
	content: " ";
	position: absolute;
	right: 0;
	left: 0;
	height: 30px;
	background: #003f2b;
	z-index: 0;
}
.wrapper::before {
	top: 0;
}
.wrapper::after {
	bottom: 0;
}

.container {
	width: 100%;
	max-width: 75rem;
	padding: 5rem 1.25rem;
	margin: 0 auto;
}
.container::before,
.container::after {
	content: " ";
	position: absolute;
	height: 60px;
	width: calc(50% - 60px);
	background: #3b7166;
	z-index: 1;
}
.container::before {
	top: 0;
	left: 0;
}
.container::after {
	bottom: 0;
	right: 0;
}

.container-inner::before,
.container-inner::after {
	content: " ";
	position: absolute;
	height: 60px;
	width: 2rem;
	z-index: 2;
	width: 0;
	height: 0;
	border-style: solid;
}
.container-inner::before {
	top: 0;
	left: calc(50% - 60px);
	border-width: 60px 60px 0 0;
	border-color: #3b7166 transparent transparent transparent;
}
.container-inner::after {
	bottom: 0;
	right: calc(50% - 60px);
	border-width: 0 0 60px 60px;
	border-color: transparent transparent #3b7166 transparent;
}

.logo {
	max-width: 100%;
}

.top {
	display: flex;
}
.top-left,
.top-right {
	flex: 1 0 50%;
}
.top-right {
	text-align: right;
	font-size: 1rem;
}

h1 {
	text-align: center;
	font-size: 5rem;
	margin-bottom: 1rem;
}

.top-pdf-link {
	float: right;
	margin: 0 0 10px 10px;
	text-align: center;
	font-size: 1rem;
}
.top-pdf-link img {
	border-right: 1px solid #003f2b;
	border-left: 1px solid #003f2b;
}

.map {
	padding: 0 20px;
}
.map > iframe {
	width: 100%;
	height: 350px;
}
@media screen and (min-width: 600px) and (max-width: 1099px) {
	.map > iframe {
		height: 500px;
	}
}
@media screen and (min-width: 1100px) {
	.map > iframe {
		height: 600px;
	}
}

.content-image {
	margin: 0 auto;
	width: 400px;
	max-width: 100%;
}
.content-image > img {
	max-width: 100%;
}
.content-image .image-description {
	text-align: right;
	font-weight: bold;
	font-size: 0.8rem;
}
@media screen and (min-width: 650px) {
	.content-image {
		width: 600px;
	}
}

.signature {
	display: inline-block;
	width: 250px;
	max-width: 100%;
	margin-right: 50px;
}
.signature > img {
	max-width: 100%;
}

.footer {
	text-align: right;
}

@media screen and (min-width: 600px) and (max-width: 999px) {
	h1 {
		font-size: 4rem;
	}
}
@media screen and (max-width: 599px) {
	body {
		font-size: 1.1rem;
	}
	.logo {
		width: 200px;
	}
	.top {
		display: block;
	}
	.top-left,
	.top-right,
	.footer {
		text-align: center;
		margin: 10px 0;
	}
	
	h1 {
		font-size: 3rem;
	}
}
@media screen and (max-width: 499px) {
	h1 {
		font-size: 2rem;
	}
}

.slide-in-bottom {
	-webkit-animation: slide-in-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
