/*
|--------------------------------------------------------------------------
| Table of Contents
|--------------------------------------------------------------------------
| 0.1 Config, Functions, Mixins, Imports,
| 1.0 Base styling
| 2.0 Utility Classes
| 3.0 Componentes
| 4.0 Layout
| 5.0 Page Specific
|--------------------------------------------------------------------------*/
/*
|--------------------------------------------------------------------------
| 0.1 Import Config
|--------------------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,600,700");
/*
|--------------------------------------------------------------------------
| 0.2 Animation styling
|--------------------------------------------------------------------------
*/
body {
  -webkit-transition: opacity 0.7s ease-in-out;
  -o-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}

.js body {
  opacity: 0;
}

.js body.is-loaded {
  opacity: 1;
}

/*** Bounce Scroll Button ***/
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-o-keyframes bounce {
  0%, 100% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

/*
|--------------------------------------------------------------------------
| 1.0 Base styling
|--------------------------------------------------------------------------
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 16px;
}

body {
  background-color: #0C5448;
  color: #0C5448;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 2px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
}

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

figure {
  margin: 0;
}

a {
  color: #0C5448;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: 700;
}

/* Paragraphs
------------------------------------- */
p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

p a:link {
  border-bottom: 1px solid #0C5448;
  color: #0C5448;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p a:link:hover {
  border-bottom: 1px solid transparent;
}

/* Lists
------------------------------------- */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  list-style-position: inside;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

ol > li {
  padding-left: 0;
}

dl {
  margin: 0;
}

dl dt,
dl dd {
  margin: 0;
  padding: 0;
}

dl dt {
  float: left;
  font-family: 700;
  font-weight: bold;
  margin-right: 3px;
}

/* Headings
------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #0C5448;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0;
}

h1,
h2 {
  font-size: 32px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  letter-spacing: 4px;
  line-height: 32px;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  h1,
  h2 {
    font-size: 27px;
  }
}

h3 {
  color: #0C5448;
  font-size: 28px;
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  h3 {
    font-size: 24px;
  }
}

/* Form
------------------------------------- */
label {
  font-weight: 700;
}

input {
  background-color: #F5F5F5;
  border-bottom: 2px solid #0C5448;
  border: 0;
  margin-bottom: 25px;
  max-width: 400px;
  min-width: 200px;
  padding: 10px 5px;
  width: 100%;
}

input[type="radio"] {
  text-align: left;
  margin: 0;
  padding: 0;
  width: auto;
  margin-bottom: 25px;
}

textarea {
  margin-bottom: 25px;
  max-width: 400px;
  min-width: 200px;
  width: 100%;
  height: 300px;
  border: 0;
  border-bottom: 2px solid #0C5448;
  background-color: #F5F5F5;
}

/* Buttons
------------------------------------- */
.btn,
a.btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  line-height: 1.0;
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 12px 50px;
  display: inline-block;
  width: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.btn:hover,
a.btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0C5448;
}

a.btn.copyright {
  background-color: transparent;
  border: 1px solid #0C5448;
  color: #0C5448;
  cursor: pointer;
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.0;
  margin: 0 6px;
  padding: 5px 20px;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

a.btn.copyright:hover {
  background-color: #0C5448;
  border-color: #0C5448;
  color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| 2.0 Utility Classes
|--------------------------------------------------------------------------
*/
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

.ti {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| 3.0 Componentes
|--------------------------------------------------------------------------
*/
/*** Site-Navigation ***/
.site-navigation {
  background-color: #FFFFFF;
  height: 121px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 28px;
  width: 100%;
}

.site-navigation .nav-container {
  max-width: 1140px;
  margin: 0 auto;
}

.site-navigation h1.logo {
  float: left;
}

@media screen and (max-width: 460px) {
  .site-navigation h1.logo {
    width: 200px;
    margin-top: 8px;
  }
}

.site-navigation .header-nav {
  float: right;
}

.site-navigation ul {
  list-style: none;
}

.site-navigation ul li {
  font-size: 14px;
  margin-right: 33px;
  position: relative;
  text-transform: uppercase;
  /* Start Effect: bottom border enlarge */
  /* End Effect */
}

.site-navigation ul li:last-child {
  margin-right: 0;
}

.site-navigation ul li a {
  padding: 0 0 10px;
}

.site-navigation ul li a::after {
  background: #0C5448;
  content: '';
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: height 0.3s, opacity 0.3s, -o-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.site-navigation ul li a:hover::after, .site-navigation ul li a:focus::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.site-navigation ul li .nav-facebook i.fa {
  font-size: 24px;
}

.site-navigation ul li .nav-facebook::after {
  background: transparent !important;
}

/*** FADE-IN Navigation ***/
#fixed-site-navigation {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  height: 62px;
  width: 100%;
  z-index: 99;
}

#fixed-site-navigation ul {
  list-style: none;
}

#fixed-site-navigation ul li {
  font-size: 14px;
  margin-right: 33px;
  position: relative;
  text-transform: uppercase;
  /* Start Effect: bottom border enlarge */
  /* End Effect */
}

#fixed-site-navigation ul li:last-child {
  margin-right: 0;
}

#fixed-site-navigation ul li a {
  padding: 0 0 10px;
}

#fixed-site-navigation ul li a::after {
  background: #0C5448;
  content: '';
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: height 0.3s, opacity 0.3s, -o-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

#fixed-site-navigation ul li a:hover::after, #fixed-site-navigation ul li a:focus::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

/*** Mobile Navigation ***/
.mobile-nav,
.mobile-nav-toggler {
  display: none;
}

.mobile-nav-toggler {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  height: 21px;
  right: 0;
  margin-right: 20px;
  margin-top: 50px;
  position: fixed;
  right: 0;
  top: 0;
  width: 120px;
  z-index: 90;
}

.mobile-nav-toggler span {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #0C5448;
  border-radius: 3px;
  display: block;
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
}

.mobile-nav-toggler span:nth-child(1) {
  top: 0;
  width: 30px;
}

.mobile-nav-toggler span:nth-child(2) {
  top: 9px;
  width: 30px;
  margin-left: 8px;
}

.mobile-nav-toggler span:nth-child(3) {
  top: 18px;
  width: 30px;
}

.mobile-nav-toggler i {
  position: relative;
  left: 44px;
  text-transform: uppercase;
  font-style: inherit;
  top: -10px;
  color: #0C5448;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 490px) {
  .mobile-nav-toggler i {
    font-size: 16px;
    top: -3px;
    width: 97px;
  }
}

.mobile-nav-toggler.white span {
  background-color: #ffffff;
}

.mobile-nav-toggler.white i {
  color: #ffffff;
}

@media screen and (max-width: 790px) {
  .mobile-nav-toggler {
    display: block;
  }
}

@media screen and (max-width: 300px) {
  .mobile-nav-toggler {
    display: none;
  }
}

.mobile-nav-toggler.is-open span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background: #ffffff;
  top: 9px;
}

.mobile-nav-toggler.is-open span:nth-child(2) {
  left: -20%;
  opacity: 0;
}

.mobile-nav-toggler.is-open span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background: #ffffff;
  top: 9px;
}

.mobile-nav-toggler.is-open i {
  color: #ffffff;
}

.site-navigation .mobile-nav {
  -webkit-transition: all 0.5s ease-in-out;
  background-color: rgba(12, 84, 72, 0.95);
  bottom: 0;
  height: 100vh;
  left: 0;
  margin: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-navigation .mobile-nav nav.navigation {
  float: none;
  margin-top: 0px;
}

.site-navigation .mobile-nav nav.navigation ul {
  margin-bottom: 20px;
  list-style: none;
  margin-left: 0;
}

.site-navigation .mobile-nav nav.navigation ul li {
  float: none;
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 0px;
  margin-right: 0px;
  font-weight: 300;
  width: 100%;
  -webkit-transition: opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -o-transition: opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, -o-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, opacity 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms, -o-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -webkit-transform: translateX(200px);
  -ms-transform: translateX(200px);
  -o-transform: translateX(200px);
  transform: translateX(200px);
  text-align: center;
}

.site-navigation .mobile-nav nav.navigation ul li a:link, .site-navigation .mobile-nav nav.navigation ul li a:visited {
  color: #ffffff;
}

.site-navigation .mobile-nav nav.navigation ul li a:hover, .site-navigation .mobile-nav nav.navigation ul li a:active {
  color: #ffffff;
  opacity: 0.5;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(1) {
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(2) {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(3) {
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(4) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(5) {
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.site-navigation .mobile-nav nav.navigation ul li:nth-child(6) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}

.site-navigation .mobile-nav nav.navigation ul a:after {
  background-color: transparent;
}

.site-navigation .mobile-nav nav.navigation ul .submenu {
  display: none;
}

.site-navigation .nav-container.is-open-menu .mobile-nav {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1170px) {
  .site-navigation .nav-container.is-open-menu .mobile-nav {
    opacity: 0;
    visibility: hidden;
  }
}

.site-navigation .nav-container.is-open-menu .mobile-nav nav.navigation li {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.site-navigation .nav-container.is-open-menu .mobile-nav .center-container .roboticeyes-actions {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 1000ms ease-in-out;
  -o-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
}

.site-navigation .nav-container.is-open-menu .mobile-nav .center-container .site-languages-nav {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 1000ms ease-in-out;
  -o-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
}

/*** Got to Mobile Navigation ***/
@media screen and (max-width: 1170px) {
  .header-nav,
  #fixed-site-navigation {
    display: none !important;
  }
  .mobile-nav-toggler {
    display: block;
  }
}

/*** Scroll Down ***/
.hero-scroll-btn {
  background: url(../images/scroll-icon.svg) 0 0 transparent no-repeat;
  bottom: 75px;
  color: #FFFFFF;
  height: 124px;
  left: 50%;
  margin-bottom: 59px;
  margin-left: -42px;
  position: absolute;
  text-align: center;
  width: 84px;
  z-index: 10;
  display: none;
}

@media screen and (max-height: 700px) {
  .hero-scroll-btn {
    margin-bottom: 15px;
  }
}

@media screen and (max-height: 570px) {
  .hero-scroll-btn {
    display: none;
  }
}

.hero-scroll-btn a:link {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-scroll-btn:after {
  background: url(../images/scroll-icon-arrow.svg) center center transparent no-repeat;
  bottom: 0;
  content: "";
  height: 18px;
  left: 32px;
  position: absolute;
  width: 23px;
  -webkit-animation: bounce 0.7s infinite;
  -o-animation: bounce 0.7s infinite;
  animation: bounce 0.7s infinite;
}

/*** NEWS BOX ***/
.news-box {
  background-color: #0C5448;
  bottom: -75px;
  min-height: 150px;
  position: absolute;
  width: 937px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.news-box h2 {
  size: 32px;
  color: #E7978C;
}

.news-box p {
  size: 16px;
  color: #E7978C;
}

.news-box .image-box {
  min-width: 242px;
  background-color: white;
  -webkit-background-size: cover;
  background-size: cover;
}

.news-box .text-box {
  margin: 25px 45px;
}

@media screen and (max-width: 1030px) {
  .news-box {
    width: 90%;
  }
}

@media screen and (max-width: 850px) {
  .news-box .image-box {
    display: none;
  }
}

/*** Cookie Law ***/
.cookie-law-info {
  background-color: rgba(255, 255, 255, 0.95);
  bottom: 0;
  display: none;
  font-size: 10px;
  padding: 8px 30px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 5000;
  -webkit-box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
}

.cookie-law-info p {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-law-info .btn {
  left: 0px;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/*
|--------------------------------------------------------------------------
| 4.0 Layout
|--------------------------------------------------------------------------
*/
header.header {
  background-color: #F4F4F4;
  min-height: 75vh;
  position: relative;
  background-image: url(../images/DSC00551-small.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-height: 440px) {
  header.header {
    min-height: 440px;
  }
}

.site-navigation {
  position: absolute;
  top: 0;
}

.site-navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#fixed-site-navigation {
  display: none;
  position: fixed;
  top: 0;
}

#fixed-site-navigation .fixed-header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#fixed-site-navigation .fixed-header-nav a.logo {
  color: #0C5448;
  float: left;
  margin-right: 33px;
}

#fixed-site-navigation .fixed-header-nav ul {
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home section {
  background-color: #ffffff;
  min-height: 100vh;
  padding-bottom: 115px;
  padding-top: 115px;
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-background-size: auto auto;
  background-size: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.home section .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.page-template-default section {
  padding-bottom: 115px;
  padding-top: 115px;
  background-color: #ffffff;
  color: #0C5448;
}

.page-template-default section .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.home section.ueber-khs-barriques.page-template-section-product .container {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 920px) {
  .home section.ueber-khs-barriques.page-template-section-product .container.right {
    display: none;
  }
}

.home section.page-template-section-contact {
  padding-top: 135px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -ms-flex-align: unset;
  align-items: unset;
}

@media screen and (max-width: 920px) {
  .home section.page-template-section-contact {
    display: block;
  }
}

.home section.page-template-section-contact .container {
  margin-left: 0;
  margin-right: 0;
  max-width: 570px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

@media screen and (max-width: 920px) {
  .home section.page-template-section-contact .container {
    max-width: initial;
    width: 100%;
  }
  .home section.page-template-section-contact .container:first-child {
    margin-bottom: 57px;
  }
}

/*** CD Panel ***/
body.panel-is-open {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.home .cd-panel {
  background-color: #ffffff;
  height: 100vh;
  opacity: 0;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  top: 0;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
  -webkit-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}

.home .cd-panel.is-open-panel {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}

.home .cd-panel .cd-panel-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 202px;
  max-width: 1140px;
  opacity: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  top: 160px;
  -webkit-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.home .cd-panel .cd-panel-container .close {
  top: -85px;
  -webkit-transition: top 0.9s linear;
  -o-transition: top 0.9s linear;
  transition: top 0.9s linear;
}

.home .cd-panel.is-open-panel .cd-panel-container {
  opacity: 1;
  top: 0px;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}

.home .cd-panel.is-open-panel .cd-panel-container .close {
  top: 0px;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}

footer#footer {
  text-align: center;
  background-color: #0C5448;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

footer#footer.container {
  padding-bottom: 57px;
  padding-top: 57px;
}

/*
|--------------------------------------------------------------------------
| 5.0 Page Specific
|--------------------------------------------------------------------------
*/
header.header .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 512px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-height: 570px) {
  header.header .container {
    margin-top: 100px;
  }
}

header.header .container .logo {
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  header.header .container .logo {
    text-align: center;
    width: 90%;
  }
}

header.header .container h2 {
  font-size: 24px;
  line-height: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
  text-transform: none;
}

@media screen and (max-width: 600px) {
  header.header .container h2 {
    font-size: 18px;
    line-height: 27px;
  }
}

.js header.header .container {
  -webkit-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  margin-bottom: -160px;
  opacity: 0;
}

.js header.header .container.is-visible {
  margin-bottom: 0px;
  opacity: 1;
}

.js .section-fade-in .container {
  -webkit-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  top: 160px;
  opacity: 0;
  position: relative;
}

.js .section-fade-in .container.is-visible {
  top: 0;
  opacity: 1;
}

@media screen and (max-width: 1600px) {
  section {
    background-position: center top;
  }
}

section .container h2, section .container h3 {
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  max-width: 512px;
  text-align: center;
}

section .container p {
  margin-left: auto;
  margin-right: auto;
  max-width: 463px;
  text-align: center;
}

section .container h2 {
  color: #FFFFFF;
  font-size: 32px;
  position: relative;
  font-weight: 100;
  margin-bottom: 10px;
  letter-spacing: 4;
}

section .container span.flowerline {
  display: block;
  text-align: center;
  width: auto;
  margin-bottom: 35px;
}

section .container h3 {
  font-weight: 600;
}

section .container.green p,
section .container.green h3 {
  color: #E7978C;
}

section .container.rose p,
section .container.rose h3 {
  color: #0C5448;
}

section figure.center img {
  display: block;
  margin: 50px auto;
}

section .category-image {
  display: block;
  margin-top: 0px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section#gallery .swiper-container {
  width: 100%;
  height: 100%;
  max-width: 990px;
}

section#gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  border: 6px solid #E1B5B5;
  opacity: 0.5;
}

section#gallery .swiper-slide.swiper-slide-active {
  opacity: 1;
}

section#gallery .image-small {
  height: 157px;
  width: 157px;
  display: block;
}

section#gallery .background-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  height: 100vh;
  -webkit-background-size: 140% 140%;
  background-size: 140%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #ffffff;
  cursor: none;
  cursor: url(../images/close-mouse.svg), auto;
  opacity: 0;
  visibility: hidden;
  left: 100%;
  -webkit-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

section#gallery .background-image.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

section#gallery .swiper-pagination {
  position: absolute;
  text-align: center;
  z-index: 10;
  width: 100%;
  bottom: -50px;
}

section#gallery .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  border-radius: 0%;
  border: 3px solid #ffffff;
  display: inline-block;
  height: 16px;
  opacity: 1;
  width: 16px;
  margin: 0 5px;
  cursor: pointer;
}

section#gallery .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
}

section#quote {
  -webkit-background-size: cover;
  background-size: cover;
}

section#quote .container p {
  text-align: left;
  max-width: none;
  font-size: 81px;
  font-weight: 300;
  line-height: 1.3;
}

@media screen and (max-width: 966px) {
  section#quote .container p {
    font-size: 61px;
  }
}

@media screen and (max-width: 530px) {
  section#quote .container p {
    font-size: 41px;
  }
}

section.kontakt.page-template-section-contact {
  background-color: #0C5448;
  color: #0C5448;
  min-height: 100%;
  height: 100%;
}

section.kontakt.page-template-section-contact .container h3 {
  color: #E7978C;
  font-weight: 700;
}

section.kontakt.page-template-section-contact .container h2, section.kontakt.page-template-section-contact .container h3 {
  line-height: 1.5;
  margin-left: 95px;
  margin-right: 0;
  max-width: 512px;
  text-align: left;
}

@media screen and (max-width: 920px) {
  section.kontakt.page-template-section-contact .container h2, section.kontakt.page-template-section-contact .container h3 {
    max-width: 1140px;
  }
}

@media screen and (max-width: 600px) {
  section.kontakt.page-template-section-contact .container h2, section.kontakt.page-template-section-contact .container h3 {
    margin-left: 70px;
  }
}

section.kontakt.page-template-section-contact .container h2.contact::before {
  width: 90px;
  height: 99px;
  top: -34px;
  position: absolute;
  left: -131px;
  content: url("../images/rose-white-footer.svg");
}

section.kontakt.page-template-section-contact .container p {
  margin-left: 0;
  margin-left: 95px;
  max-width: 463px;
  text-align: left;
}

section.kontakt.page-template-section-contact .container p a {
  color: #E7978C;
  display: inline-block;
}

@media screen and (max-width: 920px) {
  section.kontakt.page-template-section-contact .container p {
    max-width: 1140px;
  }
}

@media screen and (max-width: 600px) {
  section.kontakt.page-template-section-contact .container p {
    margin-left: 70px;
  }
}

section.kontakt.page-template-section-contact .container .btn {
  border-color: #ffffff;
  color: #ffffff;
}

section.kontakt.page-template-section-contact .container .btn:hover {
  color: #0C5448;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup {
  margin-left: 0;
  margin-left: 95px;
  max-width: 463px;
  text-align: left;
}

@media screen and (max-width: 920px) {
  section.kontakt.page-template-section-contact .container #mc_embed_signup {
    max-width: 1140px;
  }
}

@media screen and (max-width: 600px) {
  section.kontakt.page-template-section-contact .container #mc_embed_signup {
    margin-left: 70px;
  }
}

section.kontakt.page-template-section-contact .container #mc_embed_signup label[for=mce-EMAIL],
section.kontakt.page-template-section-contact .container #mc_embed_signup label[for=mce-LNAME] {
  display: none;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=email],
section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=text] {
  background-color: #ffffff;
  border: 1px solid #0C5448;
  color: #0C5448;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 12px 18px;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=email]::-webkit-input-placeholder,
section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=text]::-webkit-input-placeholder {
  color: #0C5448;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=email]::-moz-placeholder,
section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=text]::-moz-placeholder {
  color: #0C5448;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=email]:-ms-input-placeholder,
section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=text]:-ms-input-placeholder {
  color: #0C5448;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=email]:-moz-placeholder,
section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=text]:-moz-placeholder {
  color: #0C5448;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup .input-group ul {
  list-style: none;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup .input-group input[type=checkbox] {
  width: 30px;
  min-width: auto;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=submit]#mc-embedded-subscribe {
  background-color: transparent;
  border: 1px solid #0C5448;
  color: #0C5448;
  cursor: pointer;
  display: inline-block;
  display: inline-block;
  font-weight: 300;
  left: 95px;
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 15px;
  margin-top: 30px;
  padding: 12px 50px;
  position: relative;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=submit]#mc-embedded-subscribe:hover {
  background-color: #0C5448;
  border-color: #0C5448;
  color: #ffffff;
}

@media screen and (max-width: 920px) {
  section.kontakt.page-template-section-contact .container #mc_embed_signup input[type=submit]#mc-embedded-subscribe {
    max-width: 1140px;
  }
}

section.kontakt.page-template-section-contact .container h2 {
  font-weight: 100;
  margin-bottom: 60px;
  position: relative;
}

section.kontakt.page-template-section-contact .container h2.contact::after {
  content: "";
  background-color: #ffffff;
  display: block;
  height: 2px;
  position: absolute;
  left: 180px;
  right: 0;
  top: 48%;
  width: 80%;
}

@media screen and (max-width: 920px) {
  section.kontakt.page-template-section-contact .container h2.contact::after {
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
  }
}

@media screen and (max-width: 600px) {
  section.kontakt.page-template-section-contact .container h2.contact::after {
    width: -webkit-calc(100% - 160px);
    width: calc(100% - 160px);
    left: 155px;
  }
}

section.kontakt.page-template-section-contact .btn {
  left: 0px;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

section.kontakt.page-template-section-contact span.flowerline {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  width: auto;
}

.page-template-default {
  background-color: #ffffff;
}

.page-template-default section .container h2, .page-template-default section .container h3 {
  color: #0C5448;
}

.page-template-default section .container .logo {
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .page-template-default section .container .logo {
    text-align: center;
    width: 90%;
  }
}

/*** CD Panel ***/
.home .cd-panel .cd-panel-container .close {
  cursor: pointer;
  left: 50%;
  margin-left: -75px;
  position: fixed;
  z-index: 110;
}

.home .cd-panel .cd-panel-container h2 {
  margin-top: 60px;
  margin-bottom: 15px;
}

.home .cd-panel .cd-panel-container h3 {
  color: #0E0F62;
  font-weight: 700;
}

.home .cd-panel .cd-panel-container h2, .home .cd-panel .cd-panel-container h3 {
  font-weight: 100;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  max-width: 512px;
  position: relative;
  text-align: center;
}

.home .cd-panel .cd-panel-container p {
  margin-left: auto;
  margin-right: auto;
  max-width: 463px;
  text-align: center;
}

.home .cd-panel .cd-panel-container h2.big {
  margin-top: 0px;
  margin-bottom: 10px;
}

.home .cd-panel .cd-panel-container span.flowerline {
  display: block;
  text-align: center;
  width: auto;
  margin-bottom: 35px;
}

.home .cd-panel .cd-panel-container figure.center img {
  display: block;
  margin: 50px auto;
}

.home .cd-panel .cd-panel-container figure.video {
  text-align: center;
  margin: 50px auto;
}

.home .cd-panel .cd-panel-container figure.video iframe {
  max-width: 100%;
}

.home .cd-panel .cd-panel-container .info-product {
  margin-top: 50px;
  margin-bottom: 50px;
}

.home .cd-panel .cd-panel-container .info-product h3 {
  color: #E7978C;
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.home .cd-panel .cd-panel-container .info-product img {
  display: block;
  margin-bottom: 6px;
  margin-top: 6px;
  margin: 0 auto;
}

.home .cd-panel .cd-panel-container .info-product .columns {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 12px;
}

@media screen and (max-width: 1200px) {
  .home .cd-panel .cd-panel-container .info-product .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.home .cd-panel .cd-panel-container .info-product .columns .column {
  position: relative;
  border: 2px solid #E7978C;
  padding: 40px;
  width: 656px;
}

@media screen and (max-width: 1200px) {
  .home .cd-panel .cd-panel-container .info-product .columns .column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}

.home .cd-panel .cd-panel-container .info-product .columns .column:last-child {
  margin-right: 0;
}

.home .cd-panel .cd-panel-container .info-product .columns .column h4 {
  color: #E7978C;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 50px;
  text-align: center;
}

.home .cd-panel .cd-panel-container .info-product .columns .column h4:first-child {
  margin-top: 6px;
}

.home .cd-panel .cd-panel-container .info-product .columns .column h5 {
  border-bottom: 1px solid #E7978C;
  color: #E7978C;
  display: table;
  font-size: 16px;
  font-weight: 600;
  left: 50%;
  margin-bottom: 6px;
  position: relative;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.home .cd-panel .cd-panel-container .info-product .columns .column p {
  color: #E7978C;
}

.home .cd-panel .cd-panel-container .info-product .columns .column em {
  font-size: 12px;
}

.home .cd-panel .cd-panel-container .info-product .columns .column figure {
  margin-bottom: 30px;
}

.home .cd-panel .infobox {
  border: 1px solid #0C5448;
  color: #0C5448;
  margin-bottom: 50px;
  padding: 33px;
  font-weight: 400;
}

.home .cd-panel .infobox p {
  max-width: 100%;
}

footer#footer .footer-copyright {
  font-size: 12px;
  color: #7B9E98;
  text-align: center;
  line-height: 1.3;
}

footer#footer .footer-copyright a:link,
footer#footer .footer-copyright a:visited {
  color: #7B9E98;
  font-size: 10px;
}

footer#footer .footer-copyright a:link:hover,
footer#footer .footer-copyright a:visited:hover {
  border-bottom: 1px solid #7B9E98;
}

/*** Form - Uniform ***/
#form .uniform__potty {
  position: absolute;
  left: -9999px;
}

#form form {
  margin-left: 95px;
}

@media screen and (max-width: 600px) {
  #form form {
    margin-left: 70px;
  }
}

#form .form-field label {
  display: none;
}

#form .form-field.mod-daten {
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1.3;
}

#form .form-field.mod-daten input[type="checkbox"] {
  width: auto;
  font-size: 16px;
  float: left;
  margin-right: 10px;
  min-width: auto;
}

#form .form-field.mod-daten p {
  margin: 0;
  padding: 0;
}

#form .form-field.mod-daten a {
  color: #FFFFFF;
  text-decoration: none;
}

#form input {
  border: 1px solid #E7978C;
  background-color: transparent;
  color: #E7978C;
}

#form ::-webkit-input-placeholder {
  color: #E7978C;
}

#form ::-moz-placeholder {
  color: #E7978C;
}

#form ::placeholder {
  color: #E7978C;
}

#form .message {
  color: #E7978C;
}

#form .message.error {
  color: red;
}

#form button {
  background: #E7978C;
  border: 1px solid #E7978C;
  color: #0C5448;
}

#overlay {
  opacity: 0;
  background-color: rgba(12, 84, 72, 0.8);
  height: 100px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  text-align: center;
  color: #0C5448;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-x: auto;
}

@media screen and (max-width: 900px) {
  #overlay {
    display: block;
  }
}

#overlay .overlay-box {
  background: white;
  max-width: 900px;
  margin: 20px;
  padding: 50px;
}

@media screen and (max-width: 900px) {
  #overlay .overlay-box {
    margin: 20px auto;
  }
}

#overlay .overlay-box button.button {
  border: 1px solid #0C5448;
  font-weight: 400;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 9px 20px 7px 20px;
  background-color: transparent;
  text-align: center;
  color: #0C5448;
}
