:root {
  --content-width: 75rem;
  --light: #F6F4EF;
  --darker: #EEEAE0;
  --gold: #A8915F;
}

*,
*:after,
*:before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family:"FedraSans";
    src:url("../fonts/FedraSansStd Bold.woff2") format("woff2"),url("../fonts/FedraSansStd Bold.woff") format("woff"),url("../fonts/FedraSansStd Bold.otf") format("opentype");
    font-style:normal;font-weight:700;
}

@font-face {
    font-family:"FedraSans";
    src:url("../fonts/FedraSansStd Book.woff2") format("woff2"),url("../fonts/FedraSansStd Book.woff") format("woff"),url("../fonts/FedraSansStd Book.otf") format("opentype");
    font-style:normal;font-weight:400;
}


@font-face {
  font-family: 'Druk';
  src: url('../fonts/DrukCond-Super-Web.woff2') format('woff2'),
       url('../fonts/DrukCond-Super-Web.woff') format('woff');
  font-weight:  900;
  font-style:   normal;
  font-stretch: normal;
}



html {
  font-family: 'FedraSans';
  font-size: 19px;
  background: var(--light);
  -webkit-overflow-scrolling: touch;
}

h1 {
  font-family: 'Druk';
  font-size: 4rem;
  font-size: 10vw;
  font-weight: 400;
  line-height: .85;
  text-align: center;
  color:#fff;
  text-transform: uppercase;
}


h2 {
  font-family: 'Druk';
  font-size: 3.5rem;
  font-size: 7vw;
  line-height: .85;
  color: #000;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;

}

a:hover{
  cursor: pointer;
}

strong, b {
  font-weight: 700;
}

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

.wrap {
  padding: 5vh 5vw 10vh;
}
.wrap > * {
  max-width: var(--content-width);
  margin: 0 auto;
}


.sticky {
  position: -webkit-sticky;
  position: sticky;
  display: block;
  top: 4.9rem;
}


/* menu */

#dark {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 20;
    opacity: .7;
    visibility: hidden;
    transition: background .2s ease-in-out;
    max-width: none;
}

#dark.open {
    visibility: visible;
    background: #000;
}

.button_container {
  position: fixed;
  right: 2rem;
  top: 2rem;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  z-index: 1001;
}

.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}

.button_container span {
  background: #fff;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.overlay {
  position: fixed;
  background: var(--gold);
  top: 0;
  right: 0;
  width: 100%;
  max-width: 35rem;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
 z-index: 1000;
}
.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}

.overlay nav {
  position: relative;
  height: auto;
  top: 2rem;
  font-size: 2.5em;
  font-size: 8vw;
  font-family: 'Druk', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.overlay ul {
  list-style: none;
  padding: 2rem;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  opacity: 1;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover  {
    color: #39311F;
    transition: all 0.4s ease-in-out;
}

.overlay ul li a.active  {
    color: #39311F;
    transition: all 0.4s ease-in-out;
}

.overlay .social {
    display: inline-block;
    position: absolute;
    bottom: 1rem;
    padding: 5rem 0 0 2rem;
}

.overlay .social figure {
    width: 20%;
    float: left;
    margin-right: 10%;
}


@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.header_call{
  width:100%;
  height: 2.75rem;
  font-size: .9rem;
  bottom: 0;
  position: fixed;
  z-index: 1000;
  background-color: #1a1a1a;
  color: #FFF;
  padding: 1vw 10vh 1vh 10vh;
}

.header_call svg{
  height: .8rem;
  width: auto;
  padding-right: .6rem;
  margin: 0;
  vertical-align: middle;
}

.header_call svg:nth-child(2){
  margin-left: 2rem;

}

.header {
  margin-bottom: 1.5rem;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background .3s ease-in-out;
}


.header .logo {
  display: inline-block;
  margin-top: 1.5rem;
  margin-left: 2.5rem;
  padding: .5rem 0;
}

.header .button_contact {
  float: right;
  position: relative;
  top:2rem;
  right: 5rem;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  margin-left: 1rem;
}

.header .button_contact:hover {
  opacity: .7;
}

.header .button_contact svg, .header .button_contact img{
  height: 33px;
  width: auto;

}

.header.fade-in {
  background: #000;
  padding-bottom: 1rem;
}


main {
  /* min-height: calc(100vh - 10rem); */
}

.intro {
  padding: 10vh 0;
  text-align: center;
  max-width: 70vw;
  margin: 0 auto;
  /* margin-top: 5rem; */
}

.intro_text {
  max-width: 70vw;
  text-align: center;
  line-height: 1.55;
/*  padding-top: 2rem;*/
  /* padding-bottom: 3rem; */
}
.text {
  line-height: 1.5em;
}
.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 1.5em;
}
.text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  z-index: 1;
  display: inline-block;
  border-bottom: 2px solid #000;
}
.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.text img {
  width: 100%;
}

.text.half{
  width:50%;
  float:left;
  margin-right:0%;
}

.text.half:nth-child(odd){
  margin-right: 0;
}

.textarea {
  -webkit-columns: 300px 2;
   -moz-columns: 300px 2;
        columns: 300px 2;
  column-gap: 70px;
  line-height: 1.55;
}

.textarea p {
  margin-bottom: 1rem;
}


/* home */

.half picture, .half img {
  width: 49%;
  float: left;
  margin-right: 1%;
  margin-bottom: 1%;
}


.half img:nth-child(n+2) {
  margin-right: 0;
}

.intro_text a svg {
  margin-top: 5rem;
}


/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

/* slider */

.swiper-container {
  max-height: 100vh;
}
.swiper-container h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);  z-index: 100;
}
.swiper-slide {
    background: #000;
}

.swiper-slide img {
  opacity: 0.88;
  vertical-align: bottom;
  width: 100%;
}

/* div */
.padbottom{
  margin-bottom: 3rem;
}

.back{
  text-align: center;
  margin-top: 5rem;
}



/* categeories */

.icon {
padding-top: 5rem;
}

.icon img {
  max-width: 14rem;
  margin: 0 auto;
  display: block;
}
.darker {
  background: var(--darker);
}

.cat {
  margin-top: 5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cat img {
  width: 60%;
  float: left;
  margin-right: -10%;
  z-index: 10;
  margin-top: 5%;
  position: relative;
  transition: all .4s ease-in-out;
}


.cat img:hover {
  transform: scale3d(0.98,0.98,0.98);
}

.cat-title {
  width: 50%;
  float: left;
  background: #000;
  padding: 10% 2rem 2rem 13%;
  color: #fff;
  min-height: 35rem;
}

.cat-title h2 {
  text-align: left;
  margin-bottom: 2rem;
  color: #fff;
}

.cat-title a svg {
  display: block;
  margin-top: 5rem;
}

.cat:nth-of-type(even) img {
  float: right;
  margin-right: 0%;
  margin-left: -10%;
}

.cat:nth-of-type(even) .cat-title {
  padding: 10% 13% 2rem 2rem;
}


.subcat {
  padding-top: 5rem;
}

.submenu {
  background: #232323;
  width: 100%;
  color: #FFF;
  text-align: center;
  padding: 1rem 0;
  z-index: 100;
}

.submenu a {
margin-right: 2rem;
text-transform: uppercase;
}

.subcat h2 {
  max-width: 80vw;
  /* margin-top: 5rem; */
/* display: inline-block; */
}

.subcat span {
  text-align: center;
  margin-top: 2rem;
  display: block;
  font-size: 0.8rem;
}

.subcat img{
  max-width: 12rem;
  display: block;
  padding: 2rem 0 4rem 0;
  margin: 0 auto;
}

.darkerbg:nth-child(odd) {
  background: var(--darker);
}

.darkerbg h2 {
margin-bottom: 5rem;
}

/* gallery */

.black {
  background: #000;
  color: #fff;
  text-align: center;
}


.black h2 {
    color: #fff;
    padding: 4rem 0;
}

.black__header {
  width: 100%;
  height: 5rem;

  background: #000;
  color: #fff;
  text-align: center;
}

.gallerytext {
  padding: 0rem 0 5rem 0;
  max-width: 45rem;
}

/*  service  */
.icons {
  text-align: center;
}
.icons svg {
  max-width: 7rem;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  margin: 2rem 2rem 4rem 2rem;
}

.footer {
  padding: 3vw 10vh 8vh 10vh;
  background: #000;
  color: #fff;
  margin: 0 auto;
  line-height: 1.5em;
}

.footer > * {
  max-width: var(--content-width);
}

.footer a {
  font-size: .875rem;
}

.footer svg {
    max-width: 15rem;
}

.footer .links{
    display: -webkit-inline-box;
    margin: 0 auto;
    margin-left: 5rem;

}

.footer .links li{
    display: inline-block;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}


.social, .languages {
  max-width: 12rem;
  float: right;
  text-transform: uppercase;
}

.languages {
  margin-right: 1rem;
}

.social a {
  display: inline-block;
  width: 3rem;
  float: left;
  margin: .5rem .3rem;
}
.social a:hover {
  opacity: .7;
  }

.social img{
  margin-top: -.55rem;
  max-width: 50px;
}


.downloads {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 1rem;
}

.downloads li {
    display: block;
    margin-bottom: 1rem;
    position: relative;
}

.downloads li img {
  max-width: none;
  padding: 1.5rem;
  transition: opacity .3s ease-in-out;
}

.downloads .outer {
  background: #000;
  min-height: 24rem;
}

.downloads li span {
  display: inline-block;
}
.downloads li span:before {
    content: '';
    height: 1rem;
    width: 1rem;
    background-image: url('../images/arrow.svg');
    background-size: contain;
    display: inline-block;
    vertical-align:middle;
    margin-right: .75rem;
}

.downloads li img:hover {
  opacity: .5;
}


/* form */

#anfrage {
  width: 50%;
  max-width: none;
  float: right;
}

input, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none !important;
  font-family:"FedraSans";
  padding: 0.5rem 0;
  display: inline-block;
  font-size: 1rem;
  width: 100%;
  resize: none;
  background: none;
}

textarea {
  min-height: 7rem;
  resize: none;
  border: 2px solid #000;
  padding: .5rem;
}

form .half{
  width: 49%;
  float: left;
  margin-right: 2%;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #000;
}

form .full{
  width: 100%;
  float: left;
  margin-bottom: 1.5rem;
}

form label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .8px;
  margin-bottom: 1rem;
}

form .half:nth-child(even) {
  margin-right: 0;
}

::-webkit-input-placeholder {
  color: #585858;
}

:-ms-input-placeholder {
  color: #585858;
}

::placeholder {
  color: #585858;
}


form button, .btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: #000;
  font-size: 1rem;
  font-family:"FedraSans";
  padding: 1rem 1.5rem;
  line-height: .9;
  display: inline-block;
  color: #fff;
  transition: all .3s ease-in-out;
}



form button:hover {
  background: #FFF;
  color: #000;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
    opacity: 0;

}

.checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 2.1rem;
    font-size: .8rem;
    font-family:"FedraSans";
}

.checkbox label::before,
.checkbox label::after {
    position: absolute;
    content: "";
    display: inline-block;

}
.checkbox label::before{
    height: 1.5rem;
    width: 1.5rem;
    background: #fff;
    left: 2px;
    top: 2px;
}
.checkbox label::after {
    height: 10px;
    width: 18px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-45deg);
    left: 9px;
    top: 10px;
}
.checkbox input[type="checkbox"] + label::after {
    content: none;
}

.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}

@media only screen and (max-width: 40em) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .header .logo svg {
    max-width: 14rem;
  }

  .text.half{
    width:100%;
    margin-right:0;
  }

  .cat {
  margin-top: 2rem;
  }
  .cat img {
    width: 100%;
    margin-right: 0;
    z-index: 10;
    margin-top: 5%;
    transition: all .4s ease-in-out;
  }


  .cat img:hover {
    transform: scale3d(0.98,0.98,0.98);
  }

  .cat-title {
    width: 100%;
    float: left;
    padding: 2rem;
    color: #fff;
    min-height: 18rem;
  }

  #anfrage, .text .half {
    width: 100%;
    float: none;
  }

}


@media only screen and (max-width: 414px) {

.submenu a{
  margin-right: 1.5rem;
}

.socialheader{
  display: none;
}

.header .button_contact {
  float: right;
  position: absolute;
  top:1rem;
  right: 4rem;

}

.intro_text {
  max-width: 100%;
}
.intro {
  max-width: 90%;
}

.submenu{
  text-align:left;
  padding: 1rem 1rem;
}

.subcat {
  padding-top: 3rem!important;
}
  .sticky {
    top: 3.7rem;
  }
.back{
  margin-top: 0;
}

.social img{
  margin-top: 0;
}

.social a{
  margin: 2rem .5rem 0 0;
}

.languages{
  float: left;
  margin-top: 1rem;
}

.footer svg{
  margin-bottom: 1rem;
}
.intro_text{
  text-align: left;
}

  .wrap{
    padding-top: 0;
    padding-bottom: 3vh;
  }

.header .logo{
  margin-left: 1rem;
  margin-top: 1.25rem;
  padding: 0;
}

.button_container{
  right: 1rem;
  top:1rem;
}

h1{
  font-size: 4.5rem;
}

.half picture, .half img{
  width: 100%;
  margin: 0;
}

.half picture:nth-child(1), .half img:nth-child(1){
  margin: 0;
}

.footer .links{
  margin: 0;
  display: block;
}

.footer{
  padding: 2rem 1rem;
}

.darker{
  padding-top: .1rem;
}

.icons svg{
  margin: 0rem 2rem 2rem 2rem;
}

.black__header{
  height: 3.75rem;
}

.social a{
  width: 2rem;
}

.overlay nav{
  font-size:10vh;
}

.intro_text a svg{
  margin-top:2rem;
}

.intro_text{
  padding-bottom:1rem;
  padding-top: 0rem;
}

html{
  font-size: 16px;
}


.swiper-slide, .swiper-container img {
  height: : 100%;
  width: auto;
}

.header_call{
  display: none;
}

.footer {
  padding: 3vw 7vh 3vh 7vh;

}

@media only screen and (max-width: 1024px) {

.header_call{
  width:100%;
  height: 2.25rem;
  font-size: 0.8rem;
  bottom: 0;
  position: fixed;
  z-index: 1000;
  background-color: #1a1a1a;
  color: #FFF;
  padding: 1vw 2.5rem 1vh 2.5rem;
}

.footer .links{
  margin: 0;
  display: block;
}

.footer{
  padding: 2.5rem 1rem;
}

.icons svg{
  margin: 0rem 2rem 2rem 2rem;
}

.social img{
  margin-top: 0;
}

.social a{
  margin: 2rem .5rem 0 0;
}

.languages{
  float: left;
  margin-top: 1rem;
}

.footer svg{
  margin-bottom: 1rem;
}

}
