html {
  box-sizing: border-box; }

body {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #222;
  background-color: #FFFFFF;
  font-family: 'Source Sans Pro', sans-serif; }

a {
  color: #6FA3EF;
  text-decoration: none; }
  a:active, a:hover {
    text-decoration: underline; }
	
b {
  color: #000000;
  text-decoration: none; }
  a:active, a:hover {
    text-decoration: underline; }
	
ul {
  padding: 0;
}

li {
  list-style: none;
}

h1 {
  font-size: 2.5em; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.8rem; }

h4 {
  font-size: 1.6rem; }

h11{
font-size: 4rem;  }
  
h1 {
  color: #222; }

h2,
h3,
h4,
h5,
h6 {
  color: #999; }

.txt-small {
  font-size: 0.75em;}
  
  .txt-medium {
  font-size: 1.2em;}

.txt-mute {
  color: #999; }

.txt-center {
  text-align: center; }

.txt-left {
  text-align: left; }

.txt-right {
  text-align: right; }
  
.txt-right-down {
  text-align:right; 
  margin: 280px;  
  color: black;}
  

.container {
  background-color: #FFFFFF;
  max-width: 768px;
  min-width: 320px;
  overflow: hidden;
  margin: 0px auto;
  width: 100%; }

.img-resize {
  max-width: 100%;
  height: auto; }

.flex {
  display: flex; }

.flex-gap {
  margin: 0 -10px; }
  .flex-gap .col {
    margin: 0 10px; }

.flex-1of1 > .col {
  width: 100%; }

.flex-1of2 > .col {
  width: 50%; }

.flex-1of3 > .col {
  width: 33.33%; }

.flex-1of4 > .col {
  width: 25%; }

.flex-column {
  flex-direction: column; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-center {
  justify-content: center; }

.flex-between {
  justify-content: space-between; }

@media (max-width: 768px) {
  .flex-gap {
    margin: 0; }
    .flex-gap .col {
      margin: 0; }
  .flex-responive {
    flex-direction: column; }
  .flex-1of1 .col,
  .flex-1of2 .col,
  .flex-1of3 .col,
  .flex-1of4 .col {
    box-sizing: border-box;
    width: 100%; } }


.modal {
  display: block;
  padding: 0 1em;
  text-align: center;
  width: 100%;
}
@media (min-width: 43.75em) {

  .modal {
    padding: 1em 2em;
    text-align: right;
  }
}

.modal > label {
  position: fixed;
  background: Transparent;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  font-size: 2em;
  left: 10px;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}

.modal > label:before { content:'\2630'; }

.modal input {
  display: none;
  position: absolute;
  right: 100px;
  top: 40px;
  z-index: -10;
}

.modal__overlay {
  background: black;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: -800;
}

.modal__box {
  padding: 1em .75em;
  position: relative;
  margin: 1em auto;
  max-width: 500px;
  width: 90%;
}
@media (min-height: 37.5em) {

  .modal__box {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -80%);
    -ms-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
  }
}
@media (min-width: 50em) {

  .modal__box { padding: 1.75em; }
}

.modal__box label {
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  line-height: 1.5em;
  position: absolute;
  right: .5em;
  top: .5em;
  width: 1.5em;
}

.modal__box h2 {
  color: #fff;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.modal__box p {
  color: #fff;
  text-align: left;
}

.modal__box ul {
  color: #fff;
  list-style: none;
}

.modal__overlay {
  opacity: 0;
  overflow: hidden;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

input:checked ~ .modal__overlay {
  opacity: 0.9;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 800;
}

input:focus + label {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}


.title {
  font-size: 3rem;
  line-height: 2;
  font-style: italic;
  font-weight: normal;
}

/* Das Kontaktformular */
form {
  background-color: #eee;
  width: 370px; /* Breite des Formulars */
  max-width:370x;
  padding: 40px;
  border: 1px solid #8c8c8c;
 
  
}
label { /* Beschriftung auf eigener Zeile */
  display: block;
  text-align:left;
  
}
input#absender,
textarea {
	width:370px;	
	max-width: 370px;
	border: 1px solid #8c8c8c;
	margin-bottom: 1em;
  
}
textarea {
  height: 7em;
}
input:focus,
textarea:focus {
  background-color: #d9d9d9;
}
