/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Medium.woff2") format("woff2"), url("../font/Montserrat-Medium.woff") format("woff"), url("../font/Montserrat-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Black.woff2") format("woff2"), url("../font/Montserrat-Black.woff") format("woff"), url("../font/Montserrat-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
}

html {
  color: #222;
  font-size: 8px;
  line-height: 1.4;
}

body {
  font-family: "Montserrat",sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  background-color: #222;
}

.container {
  max-width: 1500px;
}

.section__brown {
  background-color: #847D72;
  color: #2E2E2E;
}

.section__beige {
  background-color: #F5F5F5;
}

.popup {
  display: none;
}

.inline_svg {
  height: 1.9rem;
  width: auto;
  vertical-align: middle;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

a:hover, a:visited, a:link, a:active {
  text-decoration: none;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ==========================================================================
  	Preloader
   ========================================================================== */
#preloader {
  background-color: #847D72;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 1000ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 1000ms cubic-bezier(0, 0, 0.58, 1);
}

.dom-loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

#preloader__img {
  margin: 30vh auto 50px auto;
  position: absolute;
  left: 0;
  right: 5rem;
}

#preloader__text {
  text-align: center;
  font-size: 1.75rem;
  color: #2E2E2E;
  margin-top: 65vh;
}

@-webkit-keyframes preloader-pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes preloader-pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

#preloader__img {
  -webkit-animation-name: preloader-pulse;
          animation-name: preloader-pulse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

@media (max-width: 540px) {
  #preloader__img {
    margin-top: 20vh;
  }
  #preloader__text {
    margin-top: 70rem;
  }
}

/* ==========================================================================
    Header
   ========================================================================== */
#header__logo {
  position: absolute;
  height: 9.875rem;
  width: auto;
  top: 3.875rem;
  left: 8rem;
  z-index: 5;
}

#navtoggle {
  position: fixed;
  top: 6.75rem;
  right: 3.5rem;
  background: #686763;
  height: 5rem;
  width: 5rem;
  border-radius: 100%;
  z-index: 2;
}

.navtoggle__lines {
  position: absolute;
  top: 2.062rem;
  left: 1.5rem;
  background-color: #F5F5F5;
  height: 0.125rem;
  width: 2rem;
}

.navtoggle__lines:nth-child(2) {
  top: 3.062rem;
}

.state--navigation .navtoggle__lines {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 2.375rem;
}

.state--navigation .navtoggle__lines:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 2.375rem;
}

#page__slider {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

#navigation {
  position: fixed;
  background-color: #2E2E2E;
  height: 100%;
  width: 62.5rem;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.state--navigation #navigation {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.state--navigation #page__slider {
  -webkit-transform: translateX(-62.5rem);
          transform: translateX(-62.5rem);
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

#navigation ul {
  margin-top: 27.75rem;
  padding-left: 0;
}

#navigation li {
  list-style: none;
}

#navigation a {
  color: #F5F5F5;
  font-size: 2.5rem;
  text-decoration: none;
  line-height: 10rem;
  padding-left: 5.625rem;
}

#navigation li.active {
  background-color: #242424;
}

@media (max-width: 540px) {
  #header__logo {
    left: 1.875rem;
    top: 3rem;
    height: 5rem;
  }
  #navtoggle {
    right: 1.875rem;
    top: 3rem;
  }
  #navigation {
    width: 75%;
  }
  #navigation ul {
    margin-top: 21rem;
  }
  .state--navigation #page__slider {
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
  }
  #navigation a {
    line-height: 7rem;
    font-size: 2rem;
  }
}

/* ==========================================================================
    Hero
   ========================================================================== */
#hero__wrapper {
  z-index: -2;
  position: absolute;
  height: 100vh;
  width: 100%;
}

#hero {
  background: url(../img/Header_BG.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#hero__overlay {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFFF00), color-stop(9%, #F9F9F908), color-stop(72%, #09090980), to(#000000E6)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #F9F9F908 9%, #09090980 72%, #000000E6 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  background-size: cover;
}

.hero__container {
  height: 100vh;
}

h1 {
  font-size: 10rem;
  font-weight: 800;
  color: #F5F5F5;
  margin: 40vh 0 1.125rem;
  text-align: center;
}

h2 {
  font-size: 3rem;
  color: #F5F5F5;
  text-align: center;
  margin: 0;
}

h3 {
  font-size: 4rem;
  margin: 0 0 1rem;
}

p {
  font-size: 2rem;
  margin: 0;
}

#hero__cta {
  width: 20rem;
  height: 7rem;
  color: #F5F5F5;
  font-size: 2rem;
  text-align: center;
  background-color: #686763;
  border-radius: 4rem;
  padding-top: 2.25rem;
  margin: 7.25rem auto auto auto;
  display: block;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

#hero__cta:hover {
  background-color: #ffffff;
  color: #2E2E2E;
}

#hero__more {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 6.5rem;
}

#hero__more span {
  font-size: 1.25rem;
  line-height: 5rem;
  color: #F5F5F5;
  margin-left: 1.875rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  h1 {
    margin-top: 26rem;
  }
  #hero__more {
    bottom: 3rem;
    left: 8rem;
  }
}

@media (max-width: 540px) {
  h1 {
    margin-top: calc(100vh - 150%);
    font-size: 6rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 3rem;
    line-height: 4rem;
  }
  p {
    line-height: 3.5rem;
  }
  #hero__more {
    bottom: 3rem;
    left: 1.875rem;
  }
}

.section__1 {
  background: url(../img/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #847D72;
  height: 67.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section__1__p {
  margin: auto;
}

.section__2 {
  height: 116.5rem;
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: -0.125rem;
}

.section__2__bg {
  background: url(../img/section_2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -3%;
  left: 0;
  right: 0;
  bottom: -3%;
}

@media (max-width: 810px) {
  .section__1 {
    height: 75rem;
  }
  .section__2 {
    height: 20rem;
  }
}

.section__3 h3 {
  margin: 18.5rem 0 1.75rem;
  text-align: center;
}

.section__3 p {
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 810px) {
  .section__3 h3 {
    margin-top: 6rem;
  }
}

.service__container {
  background: #ffffff;
  border-radius: 1.5rem;
  padding-top: 8.5rem;
  height: 57.5rem;
  margin: 17.75rem 2.125rem 32.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service__container:hover {
  background-color: #686763;
  -webkit-box-shadow: 0px 12px 12px #00000033;
          box-shadow: 0px 12px 12px #00000033;
  color: #F5F5F5;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service__container:hover svg path {
  fill: #ffffff;
}

.service__container:hover .service__button {
  border: none;
  background-color: #F5F5F5;
}

.service__img {
  margin: 0 auto 6.25rem;
}

.service__name {
  font-size: 2.5rem;
  font-weight: 800;
}

.service__description {
  margin: 4rem 6.75rem 0;
  font-size: 2rem !important;
  line-height: 3rem;
}

.service__button {
  padding: 2.25rem 5.625rem;
  border: 1px solid #2E2E2E;
  border-radius: 4rem;
  font-size: 2rem;
  background-color: #ffffff;
  color: #2E2E2E;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: auto auto 5.125rem auto;
}

@media (max-width: 1024px) {
  .service__container {
    margin: 3rem 0 0rem;
    padding-top: 5rem;
    height: 45rem;
  }
  .service__container:last-child {
    margin: 3rem 0 6rem;
  }
  .service__img {
    margin-bottom: 5rem;
  }
  .service__description {
    margin-top: 2rem;
  }
}

@media (max-width: 540px) {
  .service__container {
    height: 57.5rem;
  }
}

.detail__logo {
  margin: 22.5rem 0 25rem;
  width: 500px;
  height: auto;
  margin-left: calc(50% - 250px);
}

.detail__bg__logo {
  background: url(../img/logo.svg);
  background-color: #847D72;
  background-position: center 115rem;
  background-repeat: no-repeat;
  background-size: 80vw;
}

.detail__headline {
  margin: 10rem 0 2rem;
  line-height: 4rem;
}

.detail__sub__headline {
  margin: -0.625rem 0 6rem;
}

.detail__button {
  padding: 2.25rem 5.625rem;
  background-color: #2E2E2E;
  border: none;
  border-radius: 4rem;
  color: #F5F5F5;
  font-size: 2rem;
  margin-top: 11.25rem;
  display: inline-block;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.detail__button:hover {
  background-color: #F5F5F5;
  color: #2E2E2E;
}

.image__wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 131.03448%;
  position: relative;
  overflow: hidden;
}

.image__transition {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.detail__image {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 120%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}

.detail__image__last {
  margin-bottom: 20rem;
}

.detail__image__right {
  float: right;
}

.detail__seperator {
  width: 100%;
  height: 0.125rem;
  margin: 10rem 0 10rem;
  background-color: #2E2E2E;
}

@media (max-width: 1024px) {
  .detail__button__last {
    margin-bottom: 20rem;
  }
  .detail__image__last {
    margin-bottom: 2rem;
  }
  .detail__image {
    width: 50%;
    float: left;
  }
}

@media (max-width: 810px) {
  .detail__logo {
    width: 100%;
    height: auto;
    margin: 6rem 0 5rem;
  }
  .detail__image {
    width: 100%;
  }
  .detail__seperator {
    margin: 0 0 3rem;
  }
  .detail__headline {
    margin: 2rem 0 1rem;
  }
  .detail__button {
    margin: 4rem 0 12rem;
  }
  .detail__sub__headline {
    margin-bottom: 2rem;
    line-height: 3rem;
  }
  .detail__description {
    line-height: 3.5rem;
  }
  .detail__bg__logo {
    background: none;
    background-color: #847D72;
  }
}

.section__5__background {
  background: url(../img/section_5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -3%;
  left: 0;
  bottom: -3%;
  right: 0;
}

.section__5__overlay {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -1px;
  right: 0;
  background-color: #2E2E2E;
  opacity: 0.8;
  z-index: -1;
}

.section__5 {
  z-index: 3;
  position: relative;
  color: #F5F5F5;
  height: 116.25rem;
}

.section__5__background__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
  overflow: hidden;
}

.quote {
  font-size: 6rem;
  line-height: 10rem;
  margin-top: 27.75rem;
}

.author {
  font-size: 3rem;
  margin-bottom: 8.125rem;
}

.contact__button {
  display: block;
  padding: 2.25rem 0;
  border: none;
  border-radius: 4rem;
  font-size: 2rem;
  color: #2E2E2E;
  text-align: center;
  width: 19.5rem;
  margin-top: 3.5rem;
  background-color: #F5F5F5;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact__button:hover {
  background-color: #2E2E2E;
  color: #F5F5F5;
}

.contact__headline {
  margin: 14.625rem 0 9.5rem;
}

.contact__info {
  line-height: 3rem;
  margin-bottom: 9.5rem;
}

.legal__link {
  display: block;
  text-decoration: none;
  color: #F5F5F5;
  font-size: 1.5rem;
}

#agb {
  font-size: 2rem;
}

#privacy {
  font-size: 2rem;
}

@media (max-width: 810px) {
  .quote {
    font-size: 3rem;
    line-height: 4rem;
    margin-top: 2rem;
  }
  .author {
    font-size: 1.5rem;
    margin-bottom: 5rem;
  }
  .contact__button {
    display: inline-block;
    margin: 0;
    width: 17rem;
  }
  .contact__button:last-child {
    margin-left: 1rem;
  }
  .contact__headline {
    margin: 6rem 0 3rem;
  }
  .contact__info {
    margin-bottom: 2.5rem;
  }
  .section__5 {
    height: 115rem;
  }
  .section__5__background {
    height: 115rem;
    top: 0;
    bottom: 0;
  }
  .section__5__background__wrapper {
    height: 115rem;
  }
  .section__5__overlay {
    height: 115rem;
    opacity: 0.9;
    top: 0;
    bottom: 0;
  }
}

#footer {
  background-color: #2E2E2E;
  height: 50rem;
  text-align: center;
}

#footer img {
  margin: 19.125rem 0 8rem;
}

#footer span {
  display: block;
  font-size: 1.5rem;
  color: #D8CEC1;
}

#scrollup {
  position: absolute;
  left: 26.875rem;
  bottom: 16.375rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#scrollup img {
  margin: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#scrollup span {
  font-size: 1.25rem;
  line-height: 5rem;
  color: #F5F5F5;
  margin-left: 1.875rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  #scrollup {
    left: 8rem;
    bottom: 7rem;
  }
}

@media (max-width: 540px) {
  #footer {
    height: 25rem;
  }
  #footer img {
    margin: 4rem 0 3rem;
  }
  #scrollup {
    left: 1.875rem;
    bottom: 18rem;
  }
  #scrollup img {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */