header {
  height: 49px;
  padding: 0 24px 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  box-sizing: border-box;
  align-items: center;
}
@media only screen and (min-width: 860px) {
  header {
    height: calc(115px - 41px - 20px);
    padding: 41px 60px 20px 53px;
  }
}
header .logo {
  display: flex;
  align-content: center;
  justify-content: center;
}
header .logo img {
  height: 27px;
}
@media only screen and (min-width: 860px) {
  header .logo img {
    height: 35px;
  }
}
@media only screen and (min-width: 860px) {
  header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .navigation {
  display: none;
  position: absolute;
  top: 49px;
  right: -300%;
  width: 254px;
  background-color: #B8B8D3;
  padding: 45px 35px;
  transition: all 0.2s ease-in;
  z-index: 50;
}
@media only screen and (min-width: 860px) {
  header .navigation {
    display: block;
    position: relative;
    top: unset;
    right: unset;
    width: unset;
    background-color: #ffffff;
    padding: unset;
  }
}
header .navigation li {
  list-style: none;
}
@media only screen and (min-width: 860px) {
  header .navigation li {
    display: inline-block;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  header .navigation li {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 1514px) {
  header .navigation li {
    margin-left: 100px;
  }
}
header .navigation li a {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #ffffff !important;
  font-size: 17px;
  line-height: 35px;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 860px) {
  header .navigation li a {
    color: #000000 !important;
    font-size: 19px;
    line-height: 27px;
    font-weight: 300;
    text-transform: none;
  }
}
header .navigation li.button a {
  margin-top: 32px;
  display: block;
  width: 100%;
  height: 36px;
  background-color: #6660AF;
  text-align: center;
  line-height: 36px;
  color: #ffffff !important;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
@media only screen and (min-width: 860px) {
  header .navigation li.button a {
    margin-top: 0;
    font-weight: 800;
    width: 181px;
    height: 43px;
    line-height: 43px;
  }
}
header .navigation .mobile-design-element {
  width: 0px;
  height: 1px;
  position: absolute;
  top: 77px;
  right: -112px;
  background-color: #000000;
  transform: rotate(50deg);
  transition: all 0.2s ease-in 0.1s;
}
@media only screen and (min-width: 860px) {
  header .navigation .mobile-design-element {
    display: none;
  }
}
header .navigation.active .mobile-design-element {
  width: 254px;
}
header .mobile-nav-toggle {
  transition: all 0.2s ease-in-out;
  height: 15px;
}
header .mobile-nav-toggle:hover {
  cursor: pointer;
}
@media only screen and (min-width: 860px) {
  header .mobile-nav-toggle {
    display: none;
  }
}
header .mobile-nav-toggle .inactive {
  margin-top: 8px;
  width: 28px;
  height: 5px;
  transform: rotate(45deg);
  transform-origin: center;
  border-top: 1px solid #6462AA;
  border-bottom: 1px solid #6462AA;
}
header .mobile-nav-toggle .one {
  margin-top: 10px;
  width: 28px;
  height: 1px;
  background-color: #6462AA;
  transform: rotate(45deg);
  transform-origin: center;
  display: none;
}
header .mobile-nav-toggle .two {
  width: 28px;
  height: 1px;
  background-color: #6462AA;
  transform: rotate(-45deg);
  transform-origin: center;
  margin-left: 0;
  display: none;
}
header .mobile-nav-toggle.active .two,
header .mobile-nav-toggle.active .one {
  display: block;
}
header .mobile-nav-toggle.active .inactive {
  display: none;
}
/*# sourceMappingURL=header.css.map */