* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 60px;
    font-size: 62.5%;
    font-family: 'Lato regular', sans-serif;
    background-color: #1a1f25;
    user-select: none;
}


/*Navigation-Top-Menü*/
.nav {
    width: 100%;
    height: auto;
    background-color: #242B35;
    display: flex;
    position: fixed;
    top: 0;
    justify-content: space-around;
    align-items: center;
    font-size: 2em;
    padding: 10px 0px;
    border-bottom: 2px solid #f06449;
    z-index: 9999;
}

.logo {
    height: 80px;
    margin-left: 20px;
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    width: 100%;
    text-align: right;
    margin-right: 20px;
}

nav ul li {
    padding: 20px 15px;
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #eef0f2;
}

nav ul li a:hover {
    color: #f8c537;
}

nav ul li .current {
    color: #f8c537;
}

.hamburger-menu {
    display: none;
    border: 2px solid #eef0f2;
    border-radius: 8px;
    padding: 8px;
    margin-top: 20px;
}

.menu-line {
    width: 30px;
    height: 3px;
    background-color: #eef0f2;
    border-radius: 100px;
    margin-top: 3px;
    margin-bottom: 6px;
    margin-left: 1px;
    margin-right: 1px;
}

/*Media-Queries Navigation-Top-Menü*/
@media all and (max-width: 900px) {
    .navbar {
        flex-direction: column;
        position: fixed;
    }
    nav ul {
        text-align: center;
        padding-top: 10px;
        display: none;
    }
    nav ul li {
        display: block;
        border-top: 1px solid #1a1f25;
        padding: 15px;
    }
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 30px;
        top: 15px;
    }
    .logo {
        margin-left: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .active {
        display: block;
    }
}

/*Styles*/
h1,h2,p,a {
    color: #eef0f2;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 4.8em;
}

h2 {
    font-size: 2.4em;
}

h3 {
    font-size: 2em;
    color: #f06449;
}

h4 {
    font-size: 6em;
    color: #f8c537;
}

p {
    font-size: 1.8em;
    line-height: 1.5em;
    margin-top: 23px;
}

hr {
    margin-top: 30px;
    background-color: #f06449;
    border: 0;
    width: 50%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
}

cite {
    color: #eef0f2ad;
    font-size: 1.8em;
}

/*Anfang-Content*/

/*STARTSEITE*/

/*Aufmacher*/
.aufmacher-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.aufmacher-container > * {
    flex: 1 1 280px;
}

.aufmacher-card {
    display: flex;
    flex-wrap: wrap;
}

.aufmacher-card > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 280px;
}

.aufmacher-media {
    min-height: 280px;
}

.aufmacher-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.aufmacher-content {
    padding: 1em 2em;
    margin-top: 50px;
}
/*Aufmacher-Animation*/
.fade-in-text-animation-aufmacher {
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
    100% {
      transform: scale(1);
    }
}
.span-animation {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
}
  
.span-animation:nth-child(1) {
    animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.span-animation:nth-child(2) {
    animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.span-animation:nth-child(3) {
    animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
@keyframes fade-in {
    100% {
      opacity: 1;
      filter: blur(0);
    }
}

/*Leistungen*/
.leistungen-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.leistungen-container > * {
    flex: 1 1 280px;
}

.leistungen-card {
    display: flex;
    flex-wrap: wrap;
    flex-basis: calc(960px * 999 - 100% * 999);
    background-color: #242B35;
    margin: 1em;
    border-radius: 8px;
}

.leistungen-card > * {
    flex: 1 1 280px;
}

.leistungen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leistungen-content {
    align-self: center;
    padding: 1em 2em;
}

/*Wir sind Geometric*/
.container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left {
    width: 85%;
    min-height: 600px;
    background: url(img/wir-sind-geometric-bild.jpg);
    background-repeat: no-repeat;
    border-radius: 8px;
}

.right {
    width: 80%;
    min-height: 400px;
    background-color: #242B35;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
    color: #eef0f2;
    margin-left: -150px;
}

@media only screen and (max-width: 800px) {
    .container {
      flex-direction: column;
      width: 100%;
    }
    .left {
      width: 100%;
      height: 400px;
    }
    .right {
      width: 90%;
      margin: 0;
      margin-top: -100px;
    }
  }


/*ÜBER UNS*/

/*Unser Leitbild*/
.leitbild-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.leitbild-container > * {
    flex: 1 1 280px;
}

.leitbild-card {
    display: flex;
    flex-wrap: wrap;
}

.leitbild-card > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 280px;
}

.leitbild-media {
    min-height: 280px;
}

.leitbild-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.leitbild-content {
    padding: 1em 2em;
    margin-top: 50px;
}

/*Leitbild-Animation*/
.fade-in-text-animation-leitbild {
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
    100% {
      transform: scale(1);
    }
}
.span-animation-leitbild {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
}
  
.span-animation-leitbild:nth-child(1) {
    animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.span-animation-leitbild:nth-child(2) {
    animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
.span-animation-leitbild:nth-child(3) {
    animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.span-animation-leitbild:nth-child(4) {
    animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.span-animation-leitbild:nth-child(5) {
    animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
  
@keyframes fade-in {
    100% {
      opacity: 1;
      filter: blur(0);
    }
}

/*Team*/
.team-headline {
    text-align: center;
    padding-top: 40px;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.team-container > * {
    flex: 1 1 280px;
}

.team-card {
    display: grid;
    flex-wrap: wrap;
    flex-basis: calc(960px * 999 - 100% * 999);
    margin: 1em;
    border-radius: 8px;
}

.team-card > * {
    flex: 1 1 280px;
}

.team-media {
    display: flex;
    justify-content: center;
}

.team-img {
    border: 3px solid #f8c537;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-content {
    text-align: center;
    align-self: center;
    padding: 1em 2em;
    margin-top: 10px;
}

/*Projekte*/
.galerie {
    text-align: center;
    padding: 32px;
    margin-top: 70px;
}
  
.galerie-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    padding: 0 4px;
}
  
.galerie-column {
    -ms-flex: 25%;
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}
  
.galerie-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
}

.galerie-column img:hover {
    filter: none;
}


@media screen and (max-width: 800px) {
.galerie-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
}
}

@media screen and (max-width: 600px) {
.galerie-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
}
}

@media screen and (max-width: 900px) {
    .galerie-column img{
        filter: none;
    }
    }


/*Kontakt*/
.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    margin-top: 50px;
}

.kontakt-container > * {
    flex: 1 1 280px;
}

.kontakt-card {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: none;
}

.kontakt-card > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 280px;
}

.kontakt-border {
    border-left: 1px solid #eef0f26c;
    margin-top: 5%;
}

.kontakt-daten {
    background-color: none;
    margin-left: 20%;
}

.kontakt-daten h2 {
    margin-top: 50px;
}

.kontakt-daten h3 {
    margin-top: 20px;
    margin-bottom: -25px;
}

input[type=text], select, textarea {
    background-color: transparent;
    color: #eef0f2;
    width: 100%;
    border: 0;
    padding: 0;
    margin-top: 2px;
    border-bottom: 1px solid #eee;
    line-height: 30px;
    resize: vertical;
    font-family: 'Lato regular', sans-serif;
    font-size: 1.6em;
    outline: none;
}
  
input[type=submit] {
    background-color: #f06449;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #eef0f2;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 4vh;
}
  
input[type=submit]:hover {
    background-color: #f8c537;
    color: #1a1f25;
}

.col-75 {
    width: 60%;
    margin-top: 6px;
}

@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
    }
}

/*Sende-Button volle Breite*/
@media screen and (max-width: 600px) {
    input[type=submit] {
        width: 100%;
        margin-top: 20px;
    }
}


/*Google-Maps*/
.responsive_map {
    height: 500px;
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 0;
    position: relative;
}

.responsive_map iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}


/*Danke-Seite*/
.danke-container {
    display: flex;
    justify-content: center;
}

.danke-container > * {
    flex: 1 1 280px;
}

.danke-card {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}

.danke-card > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 280px;
}

.danke-media {
    min-height: 400px;
}

.danke-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.danke-content {
    padding: 1em 2em;
    margin-top: auto;
    margin-bottom: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .danke-card {
        margin-top: auto;
        margin-bottom: auto;
    }
}

/*Impressum*/
.impressum-box {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    margin-left: 40px;
}

/*Ende-Content*/

/*Buttons*/

.button {
    background-color: #f06449;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #eef0f2;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 4vh;
}

.button:hover {
    background-color: #f8c537;
    color: #1a1f25;
}

/*Anfang-Footer*/
.footer {
    min-height: 50px;
    max-width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px;
    background-color: #242B35;
    text-align: center;
}

.footer ul {
    list-style-type: none;
}

.footer ul li {
    font-size: 1.6em;
    padding: 30px;
    display: inline;
}

footer ul li a {
    text-align: center;
    text-decoration: none;
    color: white;
}

footer ul li a:hover {
    color: #f8c537;
}

.social-media {
    margin-top: 20px;
}

.social-media-size {
    width: 100px;
    height: auto;
}

.social-media-size:hover {
    transform: scale(1.5);
}

.copyright {
    font-size: 1.4em;
}

@media all and (max-width: 1000px) {
    .footer ul li {
        display: block;
        padding: 15px;
    }
    .social-media {
        display: block;
    }
}
/*Ende-Footer*/

/*Back-to-Top-Button*/

#myBtn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #f06449; 
    color: white; 
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
  }
  
  #myBtn:hover {
    background-color: #f8c537;
    color: #1a1f25;
  }






