html {
	font-size: 62.5%;
}

body {
	overflow-x: hidden;
	line-height: var(--base-line-height);
	font-size: var(--base-font-size);
    font-family: var(--base-font-family);
    color: var(--color-text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

::selection { color: #fff; background: var(--color-links); }
::-moz-selection { color: #fff; background: var(--color-links); }
::-webkit-selection { color: #fff; background: var(--color-links); }

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: var(--base-spacing-unit--sm);
    font-family: var(--headings-font-family);
    font-weight: var(--headings-font-weight);
    line-height: var(--headings-line-height);
    color: var(--color-text);
}

h1 {
	margin-bottom: var(--base-spacing-unit--lg);
	font-size: 4.8rem;
}

h2 {
	margin: 0 0 1em;
	font-size: 3.6rem;
}

h3 {
	margin: 0 0 1em;
	font-size: 3rem;
}

h4 {
	margin: 0 0 1em;
	font-size: 3rem;
}

.ce_headline.headline--h2,
.ce_text.headline--h2 > h1,
.ce_text.headline--h2 > h2,
.ce_text.headline--h2 > h3,
.ce_text.headline--h2 > h4,
.ce_text.headline--h2 > h5,
.ce_text.headline--h2 > h6 {
	font-size: 3.6rem;
}

.ce_headline.headline--h3,
.ce_text.headline--h3 > h1,
.ce_text.headline--h3 > h2,
.ce_text.headline--h3 > h3,
.ce_text.headline--h3 > h4,
.ce_text.headline--h3 > h5,
.ce_text.headline--h3 > h6 {
	font-size: 3rem;
}

.ce_headline.has-line::after,
.ce_text.headline-has-line > h1::after,
.ce_text.headline-has-line > h2::after,
.ce_text.headline-has-line > h3::after,
.ce_text.headline-has-line > h4::after,
.ce_text.headline-has-line > h5::after,
.ce_text.headline-has-line > h6::after {
	content: "";
	display: block;
	margin: 0.6em 0 0;
	width: 11rem;
	height: 0.4rem;
	background: var(--color-primary);
}

.ce_headline.has-line.text-center::after,
.ce_text.headline-has-line.text-center > h1::after,
.ce_text.headline-has-line.text-center > h2::after,
.ce_text.headline-has-line.text-center > h3::after,
.ce_text.headline-has-line.text-center > h4::after,
.ce_text.headline-has-line.text-center > h5::after,
.ce_text.headline-has-line.text-center > h6::after {
	margin-left: auto;
	margin-right: auto;	
}


p, ul, ol {
	margin-bottom: 3rem;
}

.main ul,
.main ol {
	list-style-position: inside;
}

a {
	color: var(--color-primary-lighter);
	transition: 0.35s all;
	text-decoration: none;
}

a:hover {
	color: var(--color-primary);
}

img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}

.img-auto-width img {
	display: inline-block;
	width: auto;
}

.wrapper {
	margin: 0 auto;
	padding: 0 3rem;
	max-width: var(--wrapper-width);
}

.mod_article.full-width.no-center .wrapper {
	max-width: none;
	padding: 0;
}

@media screen and (max-width: 64em) {
	
	.wrapper {
		padding: 0 2rem;
	}
	
	.full-width .wrapper {
		padding: 0 3rem;
	}
}	
	
	

.mod_article {
	margin: 10rem 0 8rem;
}

@media screen and (max-width: 72em) {
	
	.mod_article {
		margin: 8rem 0 6rem;
	}
}

.ce_text {
	margin: 0 0 4rem;
}

.ce_text figure.float_above {
	margin: 0 0 3rem;
}

.image_container {
	margin: 0 0 4rem;
}




@media only screen and (max-width: 75em) {
	
	.dlh_googlemap {
		padding-bottom: 50% !important;
	}
}
@media only screen and (max-width: 64em) {
	
	.dlh_googlemap {
		padding-bottom: 60% !important;
	}
}
@media only screen and (max-width: 48em) {
	
	.dlh_googlemap {
		padding-bottom: 70% !important;
	}
}
@media only screen and (max-width: 36em) {
	
	.dlh_googlemap {
		padding-bottom: 80% !important;
	}
}






.form__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.widget {
	position: relative;
	margin: 0 0 3rem;
}

.form__row .widget {
	width: 49%;
}

input, textarea, select {
	display: block;
	padding: 1.5rem 2rem;
	width: 100%;
	border: 1px solid #c7c7c7;
	font-family: inherit;
	font-size: 1.6rem;
	color: inherit;
}

select {
	appearance: none;
	background: url("../../img/select-arrow.svg") no-repeat center right 2rem;
	background-size: 2.4rem 1.3rem;
}

.checkbox_container {
	margin: -0.7rem 0 0;
}

.checkbox_container label {
	font-size: 1.4rem;
	color: #787878;
}

.checkbox_container label a {
	color: #787878;
	font-weight: 700;
}

.checkbox_container input {
	margin: 0 0.5rem 0 0;
	width: auto;
	display: inline-block;
}

button.submit {
	display: inline-block;
	padding: 1.2rem 4rem;
	border: 0;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: 0.35s all;
	background: #141414;
}

button.submit:hover {
	background: var(--color-primary);
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: inherit;
  opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: inherit;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
  color: inherit;
  opacity: 1;
}

p.error {
	position: absolute;
	z-index: 100;
	left: 0;
	bottom: -3rem;
	margin: 0;
	padding: 0.5rem 1rem;
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	background: #f93e1f;
}

@media only screen and (max-width: 36em) {
	
	.form__row .widget {
		width: 100%;
	}
}