/* ------------------------- */
/* BASIC SETUP               */
/* ------------------------- */
@import url(http://fonts.googleapis.com/css?family=Lato:400,100,300,300italic,400italic,700);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #fbfcfc;
  color: #3f4345; /* #6F7B7F; */
  font-family: "Lato", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* ------------------------- */
/* REUSABLE OBJECTS          */
/* ------------------------- */

.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.text-box {
  padding: 1%;
}

/* ----- HEADINGS ----- */

h1,
h2,
h3 {
  font-weight: 300;
  text-transform: uppercase;
}

h1 {
  color: #fbfcfc;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 240%;
  word-spacing: 4px;
  letter-spacing: 1px;
}

h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h2:after {
  display: block;
  content: " ";
  height: 2px;
  background-color: #9da52e;
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

h3 {
  font-size: 110%;
  margin-bottom: 15px;
}

/* ----- PARAGRAPHS ----- */

.copy-long,
.impressum,
.responsible {
  line-height: 145%;
  width: 60%;
  margin-left: 20%;
}

.impressum-box {
  background-color: #f8f8f8;
  border-radius: 5px;
  padding: 10px 10px;
}

.impressum {
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
}

.responsible {
  font-size: 90%;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 90%;
  line-height: 145%;
}

/* ----- ICONS ----- */

.icon-big {
  display: block;
  font-size: 350%;
  color: #9da52e;
  margin-bottom: 10px;
}

.icon-small {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: #9da52e;
  font-size: 120%;
  margin-right: 10px;

  /* secrets to align text and icons */
  line-height: 120%;
  vertical-align: middle;
  margin-top: -4px;
}

/* ----- LINKS ----- */

a:link,
a:visited {
  color: #9da52e;
  text-decoration: none;
  border-bottom: 1px solid #9da52e;
  padding-bottom: 1px;
  -webkit-transition: border-bottom 0.2s, color 0.2s;
  transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
  color: #005f69;
  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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;

  position: relative;
}

.btn:hover,
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active,
input[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/*
.btn::after,
input[type=submit]::after {
    content: '';
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    transition: all 0.4s ease-out;
}

.btn:hover::after,
input[type=sumbit]:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
*/

.btn-primary:link,
.btn-primary:visited,
input[type="submit"] {
  background-color: #9da52e;
  border: 1px solid #9da52e;
  color: #fbfcfc;
  margin-right: 50px;
}

.btn-primary:hover,
.btn-primary:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: #005f69;
  border: 1px solid #005f69;
}

/*
.btn-primary::after {
    background-color: #9DA52E;
}
*/

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #9da52e;
  color: #9da52e;
}

.btn-ghost:hover,
.btn-ghost:active {
  background-color: #005f69;
  border: 1px solid #005f69;
  color: #fbfcfc;
}

/*
.btn-ghost::after {
    background-color: #9DA52E;
    opacity: 0;
}
*/

.btn-move-in-l {
  animation: moveInLeft 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-move-in-r {
  animation: moveInRight 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

/* ------------------------- */
/* HEADER                    */
/* ------------------------- */
header {
  /*
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.5)), url(img/239H.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.5)), url(img/239H.jpg);
    */
  background-image: -webkit-linear-gradient(
      rgba(246, 240, 240, 0.7),
      rgba(246, 240, 240, 0.3)
    ),
    url(img/purple-orange-flower.jpg);
  background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url(img/purple-orange-flower.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url(img/purple-orange-flower.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  z-index: -1;
}

.hero-text-box {
  position: absolute;
  width: 1140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.text-main {
  animation: moveInLeft 1s ease-out;
}

.logo-big {
  width: auto;
  height: 80px;
  float: left;
  margin-top: 20px;
}

.logo-solo {
  display: none;
  width: auto;
  height: 50px;
  float: left;
  margin: 5px 0;
}

/* ----- MAIN NAVIGATION ----- */

.nav-main {
  float: right;
  list-style: none;
  margin-top: 55px;
}

.nav-main li {
  display: inline-block;
  margin-left: 30px;
}

.nav-main li a:link,
.nav-main li a:visited {
  color: #fbfcfc;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-bottom 0.2s;
  transition: border-bottom 0.2s;
}

.nav-main li a:hover,
.nav-main li a:active {
  border-bottom: 2px solid #9da52e;
}

/* ----- MOBILE NAVIGATION ----- */

.nav-icon-mobile {
  display: none;
  float: right;
  margin-top: 30px;
  cursor: pointer;
}

.nav-icon-mobile i {
  font-size: 200%;
  color: #fbfcfc;
}

/* ----- STICKY NAVIGATION ----- */

.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(251, 252, 252, 0.98);
  box-shadow: 0 2px 2px #efefef;
  z-index: 9999;
}

.nav-sticky .nav-main {
  margin-top: 20px;
}

.nav-sticky .nav-main li a:link,
.nav-sticky .nav-main li a:visited {
  color: #3f4345; /* #6F7B7F; */
  padding: 8px 0;
}

.nav-sticky .logo-solo {
  display: block;
}

.nav-sticky .logo-big {
  display: none;
}

.nav-sticky .nav-icon-mobile {
  margin-top: 15px;
}

.nav-sticky .nav-icon-mobile i {
  color: #888;
  margin-top: 15px;
}
/* ------------------------- */
/* FEATURES                  */
/* ------------------------- */

.section-features .copy-long {
  margin-bottom: 30px;
}

/* ------------------------- */
/* CONTACT FORM              */
/* ------------------------- */
.section-form {
  background-color: #f4f4f4;
}

.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 #cccccc;
}

textarea {
  height: 200px;
}

input[type="checkbox"] {
  margin: 10px 5px 10px 0;
}

*:focus {
  outline: none;
}

.contact-message {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.success {
  background-color: #9da52e;
  color: #fbfcfc;
}

.failure {
  background-color: #de9a9a;
  color: #333;
}

/* ------------------------- */
/* FOOTER                    */
/* ------------------------- */

footer {
  background-color: #28391b;
  padding: 50px;
  font-size: 80%;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li:last-child {
  margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited {
  text-decoration: none;
  border: 0;
  color: #fbfcfc;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
  color: #9da52e;
}

footer p {
  color: #fbfcfc;
  margin-top: 20px;
}

/* ------------------------- */
/* ANIMATIONS                */
/* ------------------------- */
.js--wp-1,
.js--wp-2,
.js--wp-3 {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
  opacity: 1;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
