:root {
    --main-bg-color: #3fc380;
    --hover-bg-color: #319e67;
    --active-bg-color: #319e67;
  }

/*----------------------------------------------------------------------------------*/
/*  Standard Formatierungen*/
/*----------------------------------------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /** color: rgb(180, 179, 179); */
    color: rgba(31, 30, 30);
    /* color: rgba(49, 48, 48, 0.71); */
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 22px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
/*------------------------Table-----------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #3fc380;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

/*----------------------------------------------------------------------------------*/
/*  Wieder verwenbar Formatierungen*/
/*----------------------------------------------------------------------------------*/
.row {
    max-width: 1140px;
    margin: 0 auto;

}
.h2_wellcome_text {color: white;}

section {
    padding: 80px 0;
}

.__success {
    background-color:var(--main-bg-color);
    color: white;
    font-size: 150%;
}

/* --------Headings ----------------*/
h1, 
h2,
h3 {
    
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
}
h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 180%;
    word-spacing: 2px;
}
h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h2::after {
    display: block;
    height: 2px;
    background: var(--main-bg-color);
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
    
}
/* --------Paragraph ----------------*/
.design-dev-long-tex {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    padding: 0 1% 0 1%;
}
.nice-box p {
    font-size: 90%;
    line-height: 145%;
}
/* --------Icons ----------------*/
.icon-big {
    font-size: 350%;
    display: block;
    color: var(--main-bg-color);
    margin-bottom: 18px;
}
.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: var(--main-bg-color);
    font-size: 120%;
    margin-right: 10px;
    /*Align Text and Icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}

/* --------LINKS ----------------*/
a:link,
a:visited {
    color: var(--main-bg-color);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--main-bg-color);
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}
a:hover,
a:active {
    color: var(--hover-bg-color);
    border-bottom: 1px solid transparent;
}

/* --------Buttons ----------------*/
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    color: #fff;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}


.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #3fc380;
    border: 1px solid #3fc380;
    color: #fff;
    margin-right: 15px;
}
.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #3fc380;
    color: #3fc380;
}
.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #319e67;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #3fc380;
}
.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #3fc380;
    color: #fff;
}
/*----------------------------------------------------------------------------------*/
/*  -----------------HEADER---------------------*/
/*----------------------------------------------------------------------------------*/
header {
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.7)),to(rgba(0, 0, 0, 0.7))), url(images/binary-2910663.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(../images/backround_image.JPG);
    /* background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.7)),to(rgba(0, 0, 0, 0.7))), url(images/20190423_125645.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(images/20190423_125645.jpg); */
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}
.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    word-spacing: 4px;
}
/*
.logo {
    width: auto;
    float: left;
    margin-top: 55px;
    color: white;
}
*/
.logo {
    width: auto;
    float: left;
    margin-top: 55px;
    color: white;
}
/* Main navigation */
.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}
.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 90%;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}
.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid var(--active-bg-color);      
}
/*Mobile Navigation */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}
.mobile-nav-icon  {
    font-size: 200%;
    color: #fff;
}

/* Sticky navigation*/
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255,0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}
.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 20px 0;
    color: var(--main-bg-color);
}
.sticky .main-nav {
    margin: 18px 0 5px 0;
}
.sticky .logo {
    
    width: auto;
    float: left;
    margin: 18px 0;
    color: var(--main-bg-color);
}
/*----------------------------------------------------------------------------------*/
/*  -----------------DESIGN & DEV---------------------*/
/*----------------------------------------------------------------------------------*/
#divoverhero {
    z-index: 9999;
    margin-top: -8%;
    background-color: white;
    padding: 1% 1% 0 1%;
}
.section-design-dev .design-dev-long-text {
    margin-bottom: 35px;
}
.icon-big {
    font-size: 350%;
    display: block;
    margin-bottom: 10px;
    color: var(--main-bg-color);
}

/*----------------------------------------------------------------------------------*/
/*  -----------------SEO---------------------*/
/*----------------------------------------------------------------------------------*/
.section-seo {
    padding: 0;
}
.seo-thing {
    list-style: none;
    width: 100%;
    position: relative;
    text-align: center;
    color: white;
}
.seo-thing li {
    display: block;
    float: left;
    width: 50%;
}
.seo-img {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}
.seo-img img {
    opacity: 0.7;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    -webkit-transition: -webkit-transform 0.5s opacity 0.5s;
    transition: -webkit-transform 0.5s opacity 0.5s;
    transition: transform 0.5s opacity 0.5s;
    transition: transform 0.5s opacity 0.5s, -webkit-transform 0.5s opacity 0.5s;
}
.seo-img img:hover {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    
}

figcaption {
    padding-top: 2px;
    display: block;
    text-align: center;
  }
.seo-thing-text-right {
  transition: .5s ease;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 75%;
  background-color: #319e67;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  display: none;
}

.seo-thing-text {
    margin: auto;
    /* text-align: center; */
    padding: 15% 0;
}

/*----------------------------------------------------------------------------------*/
/*  -----------------WIR---------------------*/
/*----------------------------------------------------------------------------------*/
.section-wir {
    background-color: #f4f4f4;
}

.schritt-box:first-child {
    text-align: right;
    padding-right: 3%;
    margin-top: 30px;
}
.schritt-box:last-child {
    padding-left: 3%;
    margin-top: 8%;
}
.app-screen {
    width: 100%;
}
.projekt-schritte {
    margin-bottom: 50px;
}

.projekt-schritte:last-of-type {
    margin-bottom: 80px;
}
.clearfix {zoom: 1}
.clearFix::after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.projekt-schritte div {
    color: var(--main-bg-color);
    border: 2px solid var(--main-bg-color);
    display: inline-block;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 5px;
    float: left;
    font-size: 150%;
    margin-right: 25px;
}
.app-button:link, .app-button:visited {
    border: 0;
}
.app-button img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}
.checkmark-done-circle {
    background-color: #3fc380;
}

/*----------------------------------------------------------------------------------*/
/*  -----------------ORTE---------------------*/
/*----------------------------------------------------------------------------------*/
.box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
/*----------------------------------------------------------------------------------*/
/*  -----------------Testimonials---------------------*/
/*----------------------------------------------------------------------------------*/
/* .img-clients {
    width: 50%;
    height: 50%;
} */
.section-testimonials {
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.801)),to(rgba(0, 0, 0, 0.801))), url(/resources/images/sun_lake.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.801),rgba(0, 0, 0, 0.801)), url(/resources/images/sun_lake.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    margin-top: 40px;
    position: relative;
}
blockquote::before {
    content: "“";
    font-size: 400%;
    display: block;
    position: absolute;
    top: -5px;
    left: -3px;
}
cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}
cite img {
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    width: 15%;
}
/*----------------------------------------------------------------------------------*/
/*  -----------------Plans---------------------*/
/*----------------------------------------------------------------------------------*/

.section-plans {
    background-color: #f4f4f4;
}
.services-box {
    background-color: #fff;
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
}
.services-box div {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
}
.services-box div:first-child {
    background-color: #fcfcfc ;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.services-box div:last-child {
    text-align: center;
    border: 0;
}

.services-type {
    font-size: 120%;
    color: var(--main-bg-color);
}
.services-type span {
    font-size: 30%;
    font-weight: 120%;
}
.services-box  ul li {
    list-style: none;
    padding: 5px 0;
}
/*----------------------------------------------------------------------------------*/
/*  -----------------Kontakt---------------------*/
/*----------------------------------------------------------------------------------*/
.contact-form {
    width: 60%;
    margin: 0 auto;
}
input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid color #ccc;
}
textarea {
    height: 100px;
}
input[type=checkbox] {
    margin: 10px 5px 10px 0;
}
*:focus {
    outline: none;
}
.interesse div {
    margin-left: 34%;
}
.interesse-label {margin-right: 1.5%;}
#alertDiv {padding: 1%;}
/*----------------------------------------------------------------------------------*/
/*  -----------------Datenschutz---------------------*/
/*----------------------------------------------------------------------------------*/
.hidden {
    display: none;
}
/*----------------------------------------------------------------------------------*/
/*  -----------------Footer---------------------*/
/*----------------------------------------------------------------------------------*/
footer {
    background-color: #888;
    color: white;
    padding: 50px;
    font-size: 90%;
}
.footer-nav {
    list-style: none;
    float: left;
}
.social-links {
    list-style: none;
    float: right;
}
.footer-nav li,
.social-links li {
    /* display: inline-block; */
    margin-right: 20px;
}
.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}
.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: white;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer-nav li a:hover,
.footer-nav li a:active {
    background-color: var(--main-bg-color);
    /* color: var(--main-bg-color); */
}
.social-links li a:link,
.social-links li a:visited {
    font-size: 110%;
}

footer p {
    color: white;
    text-align: center;
    margin-top: 30px;
}
.footer-kontakt {
    display: block;
    /* background-color: var(--main-bg-color); */
    color: white;
    text-decoration: none;
    list-style: none;
    float: right;
}
.footer-kontakt li {list-style: none;}
.footer-icons {
    display: block;
}
.footer-icons li {
    margin-top: 3%;
}

.social-links .facebook,
.social-links .twiter,
.social-links .googleplus,
.social-links .instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.social-links .facebook:hover {
    color: #3b5998;
}
.social-links .twitter:hover {
    color: #00aced;
}
.social-links .googleplus:hover {
    color: #dd4b39;
}
.social-links .instagram:hover {
    color: #517fa4;
}

/*----------------------------------------------------------------------------------*/
/*  -----------------Animations---------------------*/
/*----------------------------------------------------------------------------------*/
.js--wp-design-dev {
    opacity: 0;
}
.js--wp-design-dev.animated {
    opacity: 1;
}
/*----------------------- Some Utilities*--------------------------------*/
.alert {
  padding: 15px;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
  color: #3c763d;
  background-color: #dff0d8;
}
#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }