/* ----------------------------------------------------------
CSS for d-com navigation
------------------------------------------------------------- */
/* colors
------------------------------------------------------------- */
/* basic ----------- */
/* black, textcolor */
/* white, background-color */
/* darkgrey bckgrd */
/* lightgrey bckgrd */
/* grey page background (options) */
/* xxx */
/* xxx */
/* xxx */
/* xxx */
/* xxx */
/* weeditmode ----------- */
/* weeditmode grey light */
/* weeditmode blue light */
/* weeditmode blue dark */
/* weeditmode yellow */
/* weeditmode blue col-bckgrd */
/* weeditmode yellow */
/* weeditmode orange */
/* weeditmode acidblue */
/* weeditmode neongreen */
/* bootstrap colors ----------- */
/* bootstrap grey */
/* bootstrap grey */
/* xxx */
/* xxx */
/* xxx */
/* website colors ----------- */
/* company color blue */
/* company color yellow */
/* company color orange active */
/* company color */
/* company color */
/* company color */
/* company color */
/* company color */
/* company color */
/* company color */
/* company color */
/* forms ----------- */
/* correct */
/* error */
/* margins / paddings
------------------------------------------------------------- */
/* mixins
------------------------------------------------------------- */
/* borders
------------------------------------------------------------- */
/* margins / paddings
------------------------------------------------------------- */
/* navbar layout
------------------------------------------------------------- */
.navbar {
  padding: 10px 0 0 0 !important;
  background-color: #FFFFFF;
  border: 0px;
  border-radius: 0px !important;
  z-index: 1200;
}
.navbar .container {
  /* logo
  ----------------------------------------------------- */
}
.navbar .container .navbar-brand {
  width: 300px;
}
@media (max-width: 420px) {
  .navbar .container .navbar-brand {
    width: 250px;
  }
}
.navbar .container {
  /* .slogan {
      position: absolute;
      top: 30px;
      left: 30%;
      transform: skewY(-11deg);
      color: $color1;
  } */
  /* nav-toggler
  ----------------------------------------------------- */
}
.navbar .container .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.navbar .container .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .container .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.navbar .container .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.navbar .container .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.navbar .container .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.navbar .container .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.navbar .container .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

nav {
  position: fixed;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 1100;
  background-color: #000000;
  background-image: url("/static/pictures/elements/bckgrd-black.gif");
  background-repeat: repeat;
}
@media (max-width: 767px) {
  nav {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  nav {
    padding-top: 150px;
  }
}
nav .btn-close-nav {
  width: 30px;
  margin-bottom: 30px;
}
nav .btn-close-nav svg {
  fill: #FFFFFF;
}
nav .btn-close-nav:hover {
  cursor: pointer;
}
nav .btn-close-nav:hover svg {
  fill: #000000;
}
nav .nav-col {
  overflow-x: hidden;
  overflow-y: auto;
}
nav.show {
  -webkit-animation-name: show;
          animation-name: show;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
nav.hide {
  -webkit-animation-name: hide;
          animation-name: hide;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes show {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100vh;
    opacity: 0.95;
  }
}
@keyframes show {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100vh;
    opacity: 0.95;
  }
}
@-webkit-keyframes hide {
  0% {
    width: 100%;
    height: 100vh;
    opacity: 0.95;
  }
  100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    width: 100%;
    height: 100vh;
    opacity: 0.95;
  }
  100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
}
nav {
  /* links basic
  ----------------------------------------------------- */
}
nav a {
  display: inline-block;
  width: 100%;
  padding: 0.7rem 0 0.4rem 0;
  color: #FFFFFF;
  text-decoration: none !important;
  outline: none;
}
nav a:hover {
  color: #000000;
}
nav a:link, nav a:visited {
  color: #FFFFFF;
}
nav a:hover, nav a:active {
  color: #000000;
}
nav a.active {
  color: #000000;
}
@media (max-width: 767px) {
  nav .showsub {
    display: block;
    -webkit-animation: showsub 0.2s ease-in;
            animation: showsub 0.2s ease-in;
  }
  nav .hidesub {
    display: none;
  }
  @-webkit-keyframes showsub {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
      -webkit-transform: scaleY(0);
              transform: scaleY(0);
    }
    100% {
      opacity: 1;
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  @keyframes showsub {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
      -webkit-transform: scaleY(0);
              transform: scaleY(0);
    }
    100% {
      opacity: 1;
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  nav ul {
    position: relative;
    list-style-type: none;
    color: #FFFFFF;
  }
  nav ul.level0 {
    padding-left: 0;
  }
  nav ul li {
    border-bottom: 1px solid #000000;
  }
  nav ul li svg {
    width: 1.4rem;
    height: 1.4rem;
    margin-top: -0.2rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  nav ul li.level1:last-child, nav ul li.level2:last-child {
    border-bottom: none;
  }
  nav ul li.level1 a, nav ul li.level2 a {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
  }
  nav ul li.level1 svg, nav ul li.level2 svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  nav ul.showsub {
    /* animation-name: showsub;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; */
  }
  nav ul.hidesub {
    /* animation-name: hidesub;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; */
  }
  nav ul {
    /* @keyframes showsub {
        0% {
            height: 0;
            opacity: 0; 
        }
        100% {
            height: auto;
            opacity: 1;  
        }
    }

    @keyframes hidesub {
        0% {
            height: auto;
        }
        100% {
            height: 0; 
        }
    } */
  }
}
@media (min-width: 768px) {
  nav .showsub {
    display: block;
  }
  nav .hidesub {
    display: none;
  }
  nav ul {
    position: relative;
    width: 200px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #FFFFFF;
  }
  nav ul li svg {
    width: 1.4rem;
    height: 1.4rem;
    margin-top: -0.2rem;
  }
  nav ul.level1, nav ul.level2 {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 60px;
  }
  nav ul.showsub {
    -webkit-animation-name: showsub;
            animation-name: showsub;
    -webkit-animation-duration: 0.2s;
            animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  nav ul.hidesub {
    -webkit-animation-name: hidesub;
            animation-name: hidesub;
    -webkit-animation-duration: 0.2s;
            animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  @-webkit-keyframes showsub {
    0% {
      left: 0;
      opacity: 0;
    }
    /* 1% {
        transform: translate(0);
    } */
    100% {
      left: 200px;
      opacity: 1;
    }
  }
  @keyframes showsub {
    0% {
      left: 0;
      opacity: 0;
    }
    /* 1% {
        transform: translate(0);
    } */
    100% {
      left: 200px;
      opacity: 1;
    }
  }
  @-webkit-keyframes hidesub {
    0% {
      left: 200px;
      opacity: 1;
    }
    /* 99% {
        transition: transform(0);
    } */
    100% {
      left: 0;
      opacity: 0;
    }
  }
  @keyframes hidesub {
    0% {
      left: 200px;
      opacity: 1;
    }
    /* 99% {
        transition: transform(0);
    } */
    100% {
      left: 0;
      opacity: 0;
    }
  }
  nav ul a {
    display: inline-block;
    width: 100%;
    padding: 0.7rem 0 0.4rem 0;
    color: #FFFFFF;
    text-decoration: none !important;
    outline: none;
    border-bottom: 1px solid #000000;
  }
  nav ul a:hover {
    color: #000000;
  }
  nav ul a:link, nav ul a:visited {
    color: #FFFFFF;
  }
  nav ul a:hover, nav ul a:active {
    color: #000000;
  }
  nav ul a.active {
    color: #000000;
  }
}
nav .container {
  position: relative;
  z-index: 1001;
}
nav .nav-contact {
  color: #FFFFFF;
  margin-top: 30px;
}
nav .nav-contact .btn-primary.btn-contact {
  background-color: #898989;
}
nav .nav-contact .btn-primary.btn-contact:hover {
  background-color: #FFB928;
}
nav .bckgrd-signet {
  position: absolute;
  width: 90%;
  bottom: 20%;
  left: 10%;
  z-index: 1000;
  opacity: 0.18;
  -webkit-transform: perspective(1100px) rotateY(45deg);
          transform: perspective(1100px) rotateY(45deg);
}
@media (min-width: 768px) {
  nav .bckgrd-signet {
    width: 70%;
    bottom: 20%;
    left: 10%;
  }
}
@media (min-width: 992px) {
  nav .bckgrd-signet {
    width: 50%;
    bottom: 20%;
    left: 10%;
  }
}/*# sourceMappingURL=navigation-dcom-nav.css.map */