header.scrolled .headerBar,
header.open .headerBar {
  background: #0087f6;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  height: 70px;
  line-height: 70px;
}
header.scrolled .headerBar .logo a,
header.open .headerBar .logo a {
  width: 80%;
}
header .headerBar {
  background: transparent;
  height: 90px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  line-height: 90px;
  z-index: 10;
  color: #fff;
  border-bottom: 1px solid transparent;
  -webkit-transition: height 0.3s, line-height 0.3s, background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
  -moz-transition: height 0.3s, line-height 0.3s, background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
  -ms-transition: height 0.3s, line-height 0.3s, background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
  -o-transition: height 0.3s, line-height 0.3s, background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
  transition: height 0.3s, line-height 0.3s, background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
}
header .headerBar .logo {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  margin-top: -5px;
}
header .headerBar .logo a {
  display: block;
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.3s, width 0.3s;
  -moz-transition: opacity 0.3s, width 0.3s;
  -ms-transition: opacity 0.3s, width 0.3s;
  -o-transition: opacity 0.3s, width 0.3s;
  transition: opacity 0.3s, width 0.3s;
}
header .headerBar .logo a:hover {
  opacity: 0.6;
}
header .headerBar .logo a svg {
  display: block;
  width: 100%;
  height: auto;
}
header .headerBar .logo a svg polygon,
header .headerBar .logo a svg path {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .headerBar .right {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 120px);
  text-align: right;
}
header .headerBar .right .mainMenu {
  display: inline-block;
  vertical-align: middle;
}
header .headerBar .right .mainMenu ul li {
  display: inline-block;
  margin-left: 40px;
}
header .headerBar .right .mainMenu ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s, color 0.3s;
  -moz-transition: opacity 0.3s, color 0.3s;
  -ms-transition: opacity 0.3s, color 0.3s;
  -o-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
header .headerBar .right .mainMenu ul li a:hover {
  opacity: 0.6;
}
header .headerBar .right .socials {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
}
header .headerBar .right .socials a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s, color 0.3s;
  -moz-transition: opacity 0.3s, color 0.3s;
  -ms-transition: opacity 0.3s, color 0.3s;
  -o-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
header .headerBar .right .socials a:hover {
  opacity: 0.6;
}
header .headerBar #hamburger {
  display: none;
}
.hamburgerMenu {
  display: none;
}
@media all and (max-width: 1100px) {
  header .headerBar .mainMenu ul li {
    margin-left: 20px;
  }
}
@media all and (max-width: 1024px) {
  header:not(.scrolled):not(.open) .headerBar #hamburger .bar {
    background: #fff;
  }
  header .topBar .left,
  header .topBar .right {
    width: auto;
    text-align: left;
  }
  header .topBar .left .buttonWrapper {
    display: none;
  }
  header .headerBar .right .mainMenu {
    display: none;
  }
  header .headerBar .right .socials {
    display: none;
  }
  header .headerBar #hamburger {
    display: inline-block;
    vertical-align: top;
    float: right;
    width: 25px;
    height: 18px;
    position: relative;
    cursor: pointer;
    margin-top: -4px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .headerBar #hamburger.active .bar:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 8px;
  }
  header .headerBar #hamburger.active .bar:nth-child(2) {
    width: 0;
  }
  header .headerBar #hamburger.active .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 8px;
  }
  header .headerBar #hamburger .bars {
    position: relative;
    height: 100%;
    width: 100%;
  }
  header .headerBar #hamburger .bar {
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: #fff;
    display: block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .headerBar #hamburger .bar:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header .headerBar #hamburger .bar:nth-child(3) {
    bottom: 0;
    top: auto;
  }
  .hamburgerMenu {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0087f6;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .hamburgerMenu.active {
    opacity: 1;
    visibility: visible;
  }
  .hamburgerMenu .menuWrapper {
    padding: 0 20px;
    padding-bottom: 50px;
    overflow: auto;
    height: calc(100% - 100px);
    margin-top: 90px;
    -webkit-overflow-scrolling: touch;
    padding-top: 50px;
    text-align: center;
  }
  .hamburgerMenu .menuWrapper ul li {
    display: block;
    margin-bottom: 20px;
  }
  .hamburgerMenu .menuWrapper ul li a {
    color: #fff;
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    text-decoration: none;
  }
  .hamburgerMenu .menuWrapper .socials {
    margin-top: 50px;
  }
  .hamburgerMenu .menuWrapper .socials a {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .hamburgerMenu .menuWrapper .socials a:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 767px) {
  header .topBar .right .buttonWrapper {
    display: none;
  }
}
@media all and (max-width: 500px) {
  header .topBar .left {
    text-align: left;
    width: 50%;
  }
  header .topBar .left .link {
    margin-right: 0;
  }
  header .topBar .left .link:nth-child(2) {
    display: none;
  }
  header .topBar .right {
    width: 50%;
    text-align: right;
  }
}
/*# sourceMappingURL=header.css.map */