.logo {
  position: relative;
  display: inline-block;
  left: 30px;
  top: 28px;
}
  @media (min-width: 500px)  {.logo {left: 50px;}}
  @media (min-width: 1024px) {.logo {left: 100px;}}


.logo svg {
  width: 225px;
  left: 29px;
  top: 40px;
}
  @media (min-width: 500px) {
    .logo svg {
      width: 280px;
      left: 47px;
      top: 39px;
    }
  }
  @media (min-width: 768px)  {.logo svg {left: 58px;}}
  @media (min-width: 1024px) {.logo svg {left: 96px;}}

  .st0{fill:#CF4C27;}
  .st1{fill:#CF4C27;stroke:#CF4C27;stroke-width:0.163;}

.logo-white {
  fill:#fff;
  stroke:#fff;
  stroke-width:0.163;
}






.navbar {
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
 
.navbar-buttons {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  float: right;
}

.navbar-buttons {
  right: 30px;
  top: 23px;
}

  @media (min-width: 500px) {
    .navbar-buttons {
      right: 50px;
      top: 25px;
    }
  }

  @media (min-width: 768px) {
    .navbar-buttons {
      right: 60px;
      top: 25px;
    }
  }

  @media (min-width: 1024px) {
    .navbar-buttons {
      right: 100px;
      top: 25px;
    }
  }





/* HAMBURGER X */
.hamburger {
  position: relative;
  z-index: 100000;
  display: inline-block;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
  .hamburger {transition: all 0.5s ease;}

.hamburger-box {
  width: 26px;
  height: 26px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  right: 0;
  display: block;
  top: 50%;
}

  .hamburger-inner,
  .hamburger-inner::before {
    width: 26px;
    height: 2px;
    background-color: #D24D29;
    position: absolute; 
  }

  .hamburger-inner::before {
    content: "";
    display: block; 
  }

  .hamburger-inner::before {
    right: 0;
    top: 0;
    transform: rotate(90deg);
  }

  .hamburger:hover .hamburger-inner::before {transition: all 0.3s ease;}


  /* Collapse Reverse */
  .hamburger--collapse-r .hamburger-inner {
    top: calc(50% - 1px);
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

    .hamburger--collapse-r .hamburger-inner::before {transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);}

  .hamburger--collapse-r.is-active .hamburger-inner {
    width: 26px;
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    top: 22px;
  }

  .hamburger--collapse-r.is-active .hamburger-inner::before {
    width: 26px;
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
/* HAMBURGER X */


















.overlay {
  position: fixed;
  background-color: rgba(43, 61, 67, 1);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1s, visibility 1s, height 1s;
  transition: opacity 200ms cubic-bezier(.55,.055,.675,.19),visibility 200ms cubic-bezier(.55,.055,.675,.19), height 200ms cubic-bezier(.55,.055,.675,.19);
  z-index: 3;
  text-align: center;
}
  /*@media (min-height: 600px) {.overlay {overflow: hidden;}}*/

 
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.overlay nav {position: relative;}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}

.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  margin-bottom: 10px;
}
  @media (min-width: 1024px) and (min-height: 1024px) {.overlay ul li {margin-bottom: 10px;}}
  @media (max-height: 449px) {.overlay ul li {margin-bottom: 8px;}}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  transition: all .3s ease-in-out;
  text-transform: uppercase;
  font-family: 'Averta-Semibold';
  line-height: 1.5;
  letter-spacing: .3rem;
  text-transform: uppercase;
}

.overlay ul li a:hover,
.overlay ul li a:focus,
.overlay ul li a:active {color: #D24D29;}

.overlay.open li {
  animation: fadeInUp .5s ease forwards;
  animation-delay: .15s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: .2s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: .25s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: .3s;
}
.overlay.open li:nth-of-type(5) {
  animation-delay: .35s;
}
.overlay.open li:nth-of-type(6) {
  animation-delay: .4s;
}

.overlay.open .nav-border {
  position: relative;
  border-top: 1px solid #D24D29;
  padding-bottom: 15px;
  animation: fadeInLeft .75s ease forwards;
  animation-delay: .3s;
  opacity: 1;
  margin: 10px 0 5px;
  left: 0;
}
  @media (min-width: 768px) {
    .nav-border {
      transition: opacity 5s ease-in-out;
      -moz-transition: opacity 5s ease-in-out;
      -webkit-transition: opacity 5s ease-in-out;
      opacity: 0;
    }
  }
 
.open-menu,
.close-menu,
.button {cursor: pointer;}

.open-menu:hover,
.close-menu:hover,
.button:hover {}


.overlay nav {
  line-height: 1;
  text-align: center;
  width: 200px;
  right: calc(50% - 100px);
  position: absolute;
  overflow: hidden;
}
  @media (min-width: 768px) {
    .overlay nav {
      text-align: right;
      top: 150px;
      right: 60px;
    }
  }
  @media (min-width: 1024px) {
    .overlay nav {
      top: 150px;
      right: 100px;
    }
  }
  @media (max-height: 449px) {
    .overlay nav {
      top: 110px;
      font-size: 12px;
    }
  }
  @media (max-height: 599px) and (min-width: 1024px) {.overlay nav {top: 140px;}}


/* SOCIAL ICONS */
.overlay ul.social {
  text-align: right;
  font-size: 18px;
}
  ul.social      {list-style: none; margin-top: 25px;}
  ul.social li   {display: inline-block; margin: 0 7px;}

    @media (min-width: 768px) {
      ul.social      {margin-top: 20px;}
      ul.social li   {margin: 0 5px;}
      ul.social li:last-child {margin-right: 0;}
    }
    @media (min-width: 1024px) {ul.social li {margin: 0 5px;}}

  ul.social li a {color: #fff;}
/* SOCIAL ICONS */



/* DESIGN STUDIO */
.designstudio {
  position: absolute;
  left: 50px;
  color: #FFF;
  bottom: 180px;
  font-size: 26px;
  max-width: 350px;
  text-align: left;
}
  @media (min-width: 1024px) {
    .designstudio {
      left: 100px;
      bottom: 230px;
    }
  }
  @media (min-width: 1220px) {
    .designstudio {
      left: 100px;
      bottom: 275px;
      max-width: 100%;
    }
  }
  @media (max-width: 767px) {.designstudio {display: none;}}
  @media (max-height: 599px) {.designstudio {display: none;}}
/* DESIGN STUDIO */

/* BTN NAV */
.btn-nav {
  position: absolute;
  left: 50px;
  bottom: 100px;
  background-color: #D24D29;
  color: #FFF;
}
  @media (min-width: 1024px) {
    .btn-nav {
      left: 100px;
      bottom: 150px;
    }
  }
  @media (min-width: 1220px) {.btn-nav {bottom: 175px;}}
  @media (max-width: 767px)  {.btn-nav {display: none;}}
  @media (max-height: 599px) {.btn-nav {display: none;}}
/* BTN NAV */

/* LOGO CUT */
.nav-logocut {
  position: absolute;
  bottom: -4px;
  right: 10%;
  width: 80%;
}
  @media (min-width: 768px) {
    .nav-logocut {
      right: 50px;
      width: 50%;
    }
  }
  @media (min-width: 850px) {
    .nav-logocut {
      width: 55%;
    }
  }
  @media (min-width: 1024px) {
    .nav-logocut {
      right: 100px;
    }
  }
  @media (min-width: 1220px) {
    .nav-logocut {
      width: 60%;
    }
  }
  /*@media (max-width: 399px) {.nav-logocut {display: none;}}*/
  @media (max-height: 699px) {.nav-logocut {display: none;}}

.stcut{fill:#FFFFFF;}
/* LOGO CUT */