/*Variables*/
/*Mixins*/
header {
  background-color: #FFFFFF;
  height: 80px;
  box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  transition: 0.2s transform ease;
}
header.hide {
  transform: translateY(-100%);
}
header.open .hamb span {
  background-color: #FFFFFF;
}
header.open .logo:first-of-type {
  display: none;
}
header.open .logo:last-of-type {
  display: block;
}
header .logo {
  display: block;
  margin-right: 80px;
  flex-shrink: 0;
}
header .logo img {
  width: auto;
  height: 60px;
}
header .logo .logo:first-of-type {
  display: block;
}
header .logo:last-of-type {
  z-index: 1;
  display: none;
}
header .container {
  height: 100%;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .menu-container {
  width: 100%;
}
header .menu .menu-nav {
  display: flex;
}
header .menu li {
  font-family: "Bold", sans-serif;
  color: #000000;
}
header .menu a {
  color: inherit;
  padding: 10px 25px;
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
  transition: 0.2s color ease;
}
@media (min-width: 992px) {
  header .menu a {
    padding-right: calc(3.6764705882vw - 26.4705882353px);
  }
}
@media (min-width: 1400px) {
  header .menu a {
    padding-right: 25px;
  }
}
@media (min-width: 992px) {
  header .menu a {
    padding-left: calc(3.6764705882vw - 26.4705882353px);
  }
}
@media (min-width: 1400px) {
  header .menu a {
    padding-left: 25px;
  }
}
header .menu a:hover {
  color: #3BB88C;
}
header .menu a.active {
  color: #3BB88C;
}
header .menu .sticky-links {
  display: none;
}
header .menu .sticky-links li {
  border-radius: 10px;
}
header .hamb {
  display: none;
}
header .menu-nav ul {
  display: flex;
  align-items: center;
}
header .menu-nav ul:nth-last-child(2) {
  margin-left: auto;
}
header .menu-nav ul:nth-last-child(2) li:last-child {
  margin-right: -10px;
}
@media (min-width: 992px) {
  header .menu-nav ul:nth-last-child(2) li:last-child {
    margin-right: calc(-3.2051282051vw + 21.7948717949px);
  }
}
@media (min-width: 1460px) {
  header .menu-nav ul:nth-last-child(2) li:last-child {
    margin-right: -25px;
  }
}
header .social-media {
  margin-top: auto;
  display: none;
  text-align: center;
  margin-bottom: 60px;
}
header .social-media .title {
  margin-bottom: 15px;
}
header .social-media ul {
  justify-content: center;
}
header .menu-footer {
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
  border-top: 1px solid rgba(204, 204, 207, 0.1215686275);
}
header .menu-footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
}
header .menu-footer ul a {
  color: #FFFFFF;
  padding: 0;
}
header .menu-footer ul li {
  font-family: "Light", sans-serif;
  font-size: 11px;
  white-space: nowrap;
}
header .menu-footer ul li:after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
}
header .menu-footer ul li:last-child:after {
  display: none;
}
header .menu-footer .cpy {
  font-family: "Light", sans-serif;
  text-align: center;
  font-size: 11px;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  header {
    height: 60px;
  }
  header .logo img {
    width: auto;
    height: 38px;
  }
  header .hamb {
    display: block;
  }
  header .menu-container {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #333333;
  }
  header .menu {
    flex-direction: column;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    position: relative;
    height: calc(100% - 60px);
    top: 60px;
    overflow: auto;
  }
  header .menu li {
    color: #FFFFFF;
  }
  header .menu a {
    padding: 15px;
  }
  header .menu-nav {
    flex-direction: column;
  }
  header .menu-nav ul {
    flex-direction: column;
    margin-left: 0;
    margin-bottom: 30px;
  }
  header .menu-nav ul:first-child li:first-child {
    color: #FFFFFF;
  }
  header .menu-nav ul:first-child li:first-child:after {
    display: none;
  }
  header .menu-nav ul:nth-child(2) {
    margin-left: 0;
  }
  header .menu-nav ul:nth-child(2) li:last-child {
    margin-right: 0;
  }
  header .menu-nav .sticky-links {
    display: flex;
    align-self: center;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  header .menu-nav .sticky-links li {
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-bottom: 10px;
  }
  header .menu-nav .sticky-links a {
    display: flex;
    padding: 12px 5px;
  }
  header .menu-nav .sticky-links em {
    margin-bottom: 10px;
  }
  header .social-media {
    display: block;
  }
  header .menu-footer {
    display: block;
  }
}