/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/open-sans-v17-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('fonts/open-sans-v17-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/open-sans-v17-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('fonts/open-sans-v17-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* ====================== Animations =========================== */

@keyframes pulse {
  0%   { transform: scale(1); }
  50% { transform: scale(0.8); }
  100% { transform: scale(1); }
}

@keyframes spin {
  0%   { transform: rotate(30deg); }
  100% { transform: rotate(210deg); }
}
@keyframes spin2 {
  0%   { transform: rotate(150deg); }
  100% { transform: rotate(330deg); }
}

/* End Animations */

/* ============================= Resets, Clears & Defaults =================================== */

*, *:after, *:before {
    box-sizing: border-box;
}

body, input, textarea{
    padding: 0; margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #222;
    font-weight: 300;
}
input:focus, textarea:focus{
    outline: 0;
}

h1, h2, h3 {
    margin: 50px 0 20px 0;
    position: relative;
    z-index: 6;
    color: #7C1B1B;
}

p {
    margin: 0 0 20px 0;
    position: relative;
    z-index: 6;
}

h1{
    font-size: 48px;
    line-height: 46px;
    font-weight: 300;
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 34px;
    }
}
h2{
    font-size: 34px;
    line-height: 36px;
    font-weight: 300;
    margin: 2em 0 -1em 0;
}
.overview h2 {
    margin: 2em 0 1em 0;
}
h3{
    font-size: 24px;
    font-weight: 600;
    margin-top: 6rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #7C1B1B;
}

a{
    color: #7C1B1B;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

img{
    max-width: 100%;
}

::selection {
  background: #eee; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #eee; /* Gecko Browsers */
}
strong {
    font-weight: 700;
}

/* End Resets, Clears & Defaults */

/* ============================== Allgemeine Styles ================================*/

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.container:after{
    content: "";
    display: block;
    clear: both;
}
section{
    padding: 100px 20px;
}

.btn{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    color: #7c1b1b;
    border: 1px solid #7c1b1b;
    transition: 200ms;
    background: transparent;
    cursor: pointer;
}
.btn:hover{
    text-decoration: none;
    background: rgba(255,255,255,0.1);
}
.btn.yellow{
    color: #fbc93d;
    border: 1px solid #fbc93d;
}
.btn.smaller{
    padding: 10px 25px;
}
.btn .fa{
    margin-left: 10px;
}
.fa {
    margin-right: 20px;
}

/* ==================================== Header und Splash =========================== */

header{
    background: #7C1B1B;
    padding: 0 20px;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
}
header .logo{
    float: left;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
}
header .logo .fa{
    font-size: 16px;
    position: relative;
    top: -1px;
    margin-right: 7px;
}
header nav{
    float: right;
}
header nav ul{
    padding: 0;
    margin: 0;
}
header nav ul li{
    display: inline-block;
    float: left;
}
header nav ul li a, header .logo a{
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    transition: 200ms;
}
header nav ul li a:hover, header nav ul li a.active, header .logo a:hover, header .logo a.active{
    text-decoration: none;
    background: rgba(255,255,255,0.1);
}
header .toggle-menu{
    display: none;
}

.splash{
    background: url(images/header1.jpg) no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.splash-webdesign {
    background: url(images/07gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-referenzen {
    background: url(images/15gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-tools {
    background: url(images/13gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-formsreceive {
    background: url(images/14gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-404 {
    background: url(images/404.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-ds {
    background: url(images/17gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash-impressum {
    background: url(images/18gf.jpg) no-repeat;
    background-size: cover;
    height: 60vh;
    overflow: hidden;
    position: relative;
}
.splash:after{
    content: "";
    display: block;
    position: absolute;
    top: -40px; right: -40px; bottom: -40px; left: -40px;
    background: rgba(255,255,255,0.08);
    transform: rotate(30deg);
    animation: spin 60s infinite linear;
}
.splash:before{
    content: "";
    display: block;
    position: absolute;
    top: -40px; right: -40px; bottom: -40px; left: -40px;
    background: rgba(255,255,255,0.08);
    transform: rotate(150deg);
    animation: spin2 50s infinite linear;
}
.splash .container{
    position: relative;
    top: 48%;
    transform: translateY(-50%);
    z-index: 5;
}
.splash h2{
    margin-bottom: 40px;
}

/* ================================================== Claim ================================*/

.claim {
    font-size: 1.4em;
    line-height: 1.2;
    background: #eee;
    text-align: center;
}

/* ================================================== Overview =============================*/

.overview{
    text-align: center;
}
.overview > div > div{
    float: left;
    width: 50%;
    padding: 0 40px 0 40px;
}
.overview .fa{
    display: inline-block;
    font-size: 50px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #f6f6f6;
    margin-bottom: 20px;
    padding-top: 25px;
}
.overview p{
    margin-bottom: 6rem;
}
.overview h2 {
    margin-top: 2rem;
}

/* ===================================== Feature ====================================*/

.feature.greybg{
    background: #f6f6f6;
}
.feature{
    position: relative;
    overflow: hidden;
}
.feature img{
    position: absolute;
    top: 0;
    right: 55%;
    min-height: 1450px;
    object-fit: cover;
}
/*.feature:nth-of-type(even) img{
    right: auto;
    left: 55%;
}*/
.feature > div > div{
    width: 50%;
    float: right;
}
.feature > div > div > p{
    margin-bottom: 40px;
}
/*.feature:nth-of-type(even) > div > div{
    float: left;
}*/
.feature ul{
    margin: 0;
    padding: 0;
}
.feature ul li{
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.feature ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;  
    border-bottom: 0;
}
.feature ul li h3{
    margin: 0 0 5px 0;
}
.feature ul li p:last-child{
    margin: 0;
}
.feature ul li .fa{
    float: left;
    font-size: 30px;
    background: #fbc93d;
    color: #fff;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    padding-top: 10px;
    border-radius: 25px;
    margin-right: 20px;
    margin-top: 7px;
}
.feature ul li p{
    overflow: hidden;
}

/* ===================================== CTA ====================================*/

.cta{
    background: #ddd;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta:after{
    content: "";
    display: block;
    position: absolute;
    top: -40px; right: -40px; bottom: -40px; left: -40px;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}
.cta .container{
    position: relative;
    z-index: 10;
}
.cta h2{
    margin-bottom: 40px;
}

/* ===================================== Kontakt ====================================*/

.contact{
    background: #ddd;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.contact:after{
    content: "";
    display: block;
    position: absolute;
    top: -40px; right: -40px; bottom: -40px; left: -40px;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}
.contact .input{
    width: 47%;
    float: left;
}
.contact .input:nth-of-type(odd){
    margin-right: 6%;
}
.contact .message{
    display: block;
    clear: both;
    float: none;
    padding-top: 10px;
}
.contact .input input{
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.3);
    border: 0;
    padding: 10px 15px;
}
.contact .message textarea{
    display: block;
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.3);
    border: 0;
    padding: 10px 15px;
    resize: vertical;
}
.contact .daten {
    display: block;
    text-align: justify;
    font-size: 0.8em;
    margin-top: 2em;
    line-height: 1.6;
}
.contact label{
    position: relative;
    z-index: 10;
}
.contact label span{
    display: block;
    text-align: left;
    font-size: 14px;
}
.contact label span .fa{
    margin-right: 7px;
}
.contact .submit{
    display: block;
    text-align: center;
    padding-top: 40px;
}
.contact input#submit {
    border: none;
    background: #ddd;
    cursor: pointer;
}
.contact .btn {
    margin-top: 10px;
}
.contact h2{
    margin-bottom: 40px;
}
/* =========================== Seite Tools ======================================*/
.intro {
    padding-bottom: 2em;
}
.toolbox {
    padding: 2rem;
}
.toolbox1 {
    background: #f5f5f5;
}
.toolbox2 {
    background: #E8F5E9;
}
.toolbox a {
    color: #7C1B1B;
    font-weight: 600;
}
/* =========================== Seite Referenzen ================================ */
.referenzbox {
    max-width: 962px;
}
.referenztext {
    padding-top: 1em;
}
.referenzbox img {
    max-width: 600px;
}
/* ================================== Impressum ==================================*/
.vcard {
    padding: 2em 1em;
}
.vcard span {
    display: block;
    font-style: normal;
}
/* ===================================== Footer ====================================*/

footer{
    background: #222;
    color: #ddd;
    padding: 10px 20px;
}
footer a {
    color: #fff;
}
footer p {
    color: #ddd;
}
footer .footer-box{
    float: left;
    padding: 15px;
    width: 33%;
}

@media (max-width: 800px){
    section{
        padding: 80px 30px;
    }
    header, footer{
        padding: 0 10px;
    }
    footer .footer-box {
        float: none;
        width: 100%;
        text-align: center;
    }
    .splash{
        max-height: 60vh;
        padding: 150px 10px 80px 10px;
        text-align: center;
    }
    .splash .container{
        position: relative;
        top: 0;
        transform: none;
    }
    .overview > div > div{
        padding: 0 20px;
    }
    .feature img{
        display: none;
    }
    /*.feature img{
        right: 65%;
    }*/
    /*.feature:nth-of-type(even) img{
        left: 65%;
    }*/
   .feature > div > div{
        width: 100%;
        float: none;
    }
    header nav ul li a{
        padding: 15px;
    }
    .pricing > div > div{
        width: 100% !important;
        float: none;
        margin: 0 0 20px 0 !important;
        box-shadow: none !important;
    }
    .pricing > div > div h3{
        background: #555 !important;
        color: #fff !important;
    }
    .pricing h2{
        margin-bottom: 40px;
    }
}

@media (max-width: 700px) {
    header nav{
        float: none;
        position: fixed;
        top: 56px;
        left: -300px;
        bottom: 0;
        width: 100%;
        max-width: 300px;
        background: #333;
        transition: 200ms;
    }
    header nav.visible{
        left: 0px;
    }
    header nav ul li{
        display: block;
        float: none;
        width: 100%;
    }
    header nav ul li a{
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    header .toggle-menu{
        display: block;
        color: #fff;
        position: absolute;
        right: 10px;
        top: 13px;
        font-size: 28px;
    }
}

@media (max-width: 600px){
    section{
        padding: 40px 20px;
    }
    .splash{
        padding: 100px 10px 40px 10px;
    }
    .splash h2 {
        font-size: 26px;
        margin-top: 0;
    }
    .claim {
        font-size: 1.2em;
    }
    .overview > div > div{
        float: none;
        width: 100%;
        margin-bottom: 40px;
        padding: 0;
    }
    .overview > div > div:last-child{
        margin-bottom: 0;
    }
    .overview p{
        overflow: hidden;
    }
    
    footer .copyright, footer .social{
        float: none;
    }
    footer .social{
        padding-top: 0;
    }

    .contact .input{
        display: block;
        width: 100%;
        float: none;
    }
    .contact .input:nth-of-type(odd){
        margin-right: 0;
    }
    .contact label{
        padding-top: 10px;
    }
    .contact label:first-of-type{
        padding-top: 0;
    }
}
@media print {
    header, .splash {
        display: none;
    }
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
}