#header {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  background-color: #303b4e; }

#header .header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
  padding: 0 30px;
  max-width: 1506px;
  margin: auto; }

#header .logo {
  position: relative;
  z-index: 10;
  margin-bottom: 8px;
  width: 100%;
  max-width: 134px;
  min-width: 100px; }

#header .logo img {
  width: 100%; }

#header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

#header .search-button {
  position: relative;
  width: 30px;
  height: 30px;
  background: 0 0;
  border: none;
  z-index: 104;
  cursor: pointer;
  margin: 0 20px 4px 10px; }

#header .search-button svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  background: transparent; }
  #header .search-button svg #search-2 {
    fill: #00c752; }

#header .search-button:hover svg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }
  #header .search-button:hover svg #search-2 {
    fill: #fff; }

#header .contact-us {
  font-weight: 600;
  line-height: 43px;
  position: relative;
  margin-left: 32px;
  white-space: nowrap;
  overflow: visible;
  max-width: 164px;
  z-index: 5;
  height: 43px;
  letter-spacing: 0.35px; }
  #header .contact-us:focus {
    -webkit-box-shadow: none;
            box-shadow: none; }

#header .contact-us:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin: -16px 0 0;
  width: 1px;
  height: 32px;
  background-color: #a0a0a1;
  pointer-events: none; }

#header .search-button:hover:before {
  border-color: #00c752; }

#header .search-button:hover:after {
  background: #00c752; }

.search #header .search-button {
  display: none; }

.search-active #header .search-button:before,
.search-active-page #header .search-button:before {
  width: 10px;
  height: 2px;
  background: #fff;
  border: none;
  border-radius: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: -1px 0 0 -4px; }

.search-active #header .search-button:after,
.search-active-page #header .search-button:after {
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -1px 0 0 -4px; }

.search-active #header .search-button:hover:before,
.search-active-page #header .search-button:hover:before {
  background: #00c752; }

.search-active #header .search-button:hover:after,
.search-active-page #header .search-button:hover:after {
  background: #00c752; }

#header {
  background-color: #303b4e; }

#wpadminbar {
  display: none; }

/*
    Cookie popup
*/
.cc-window {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: var(--text-small-font-size);
  font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif; }

.cc-window .cc-message {
  font-size: var(--text-font-size); }

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.cc-window .cc-btn {
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
  font-size: var(--text-small-font-size);
  line-height: 1.3em;
  border-radius: 0;
  padding: 10px;
  min-width: 130px;
  text-align: center; }

.cc-window .cc-deny {
  color: #000; }

.cc-compliance {
  margin-left: 20px; }

.cc-window .cc-deny:hover {
  text-decoration: underline; }

.cc-window .cc-allow {
  background: #00c752;
  border: 1px solid #00c752;
  text-shadow: none;
  color: #fff;
  margin-left: 30px; }

.cc-window .cc-deny {
  border: 1px solid #444; }

.cc-window .cc-allow:hover, .cc-window .cc-allow:focus {
  background-color: #00c752; }

.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  z-index: 111;
  opacity: 1;
  -webkit-transition: .3s opacity ease;
  transition: .3s opacity ease;
  background-color: rgba(68, 68, 68, 0.6);
  overflow-y: scroll;
  overflow-x: hidden;
  pointer-events: auto;
  display: none; }

.cookie-popup--opacity {
  opacity: 0; }

body.no-events {
  pointer-events: none;
  overflow: hidden;
  height: 100vh; }

.cookie-popup__bg {
  z-index: 111;
  position: absolute;
  width: 100%;
  height: 100%; }

.cookie-popup__content {
  position: fixed;
  max-width: 800px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 112;
  background-color: white;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.cookie-popup__title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 80%;
  font-weight: 600; }

.cookie-popup__content .cc-window {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.cc-message {
  margin-bottom: 30px;
  width: 100%; }

@media screen and (min-width: 1446px) {
  #header .header-main {
    max-width: 1446px; } }

@media (max-width: 1199px) {
  #header .contact-us {
    font-size: var(--text-font-size); } }

@media screen and (max-width: 1100px) and (min-width: 992px) {
  #header .contact-us {
    line-height: 30px;
    height: 32px;
    min-width: 164px; } }

@media screen and (max-width: 1020px) and (min-width: 992px) {
  #header .contact-us {
    margin-left: 13px; }
    #header .contact-us:before {
      margin: -16px 11px 0; }
  #header .header-main {
    padding: 0 20px; } }

@media screen and (max-width: 991.98px) {
  .header-main {
    padding: 0 32px; }
  #header .header-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  #header .search-button {
    margin: 0; }
    #header .search-button svg #search-2 {
      fill: #fff; }
  #header .search-button:hover svg #search-2 {
    fill: #00c752; }
  #header {
    background: #303b4e;
    z-index: 105; }
  #header .header-main {
    height: 74px;
    position: relative; }
  #header .header-main:after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #303b4e;
    position: absolute;
    z-index: 103; }
  #header .logo,
  #header .contact-us {
    z-index: 105;
    position: relative; }
  #header .contact-us {
    height: 33px;
    font-size: 18px;
    font-weight: 600;
    padding: 0 15px;
    line-height: 34px;
    margin: 0 40px;
    background-color: transparent;
    color: #00FF6A;
    border: none;
    outline: 0;
    letter-spacing: 0.47px; }
    #header .contact-us:before, #header .contact-us:after {
      content: none; }
    #header .contact-us:hover {
      color: #fff;
      border: none; }
  #header .search-button svg #search {
    fill: #fff; }
  #header .search-button:hover svg #search-2 {
    fill: #00FF6A; } }

@media screen and (max-width: 767px) {
  #header .header-main {
    height: 56px; }
  .cookie-popup__title {
    text-align: center;
    max-width: none; }
  .cookie-popup__content {
    max-width: calc(100% - 40px); }
  .cc-window {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
  .cc-btn {
    margin: 15px 15px 0; } }

@media screen and (max-width: 640px) {
  #header .contact-us {
    margin: 0;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.42px; }
  #header .header-right .search-button {
    width: unset; } }

@media only screen and (max-width: 575px) {
  #header .logo {
    margin-bottom: 6px; } }

@media only screen and (max-width: 470px) {
  #header .header-main {
    padding: 0 15px; }
  #header .logo {
    max-width: 88px;
    min-width: 88px; }
  #header .header-right .contact-us {
    font-size: 15px;
    line-height: 33px;
    margin: 0 15px;
    min-width: 102px; }
  #header .header-right .nav-trigger {
    margin-right: 5px; } }

@media screen and (max-width: 400px) {
  .cc-compliance {
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .cc-window .cc-btn {
    min-width: 100px;
    margin: 5px; } }

@media only screen and (max-width: 370px) {
  #header .header-right .search-button {
    margin: 0 0 0 10px; }
  #header .header-right .contact-us {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px; }
  #header .header-right .nav-trigger {
    width: 33px; } }

@media only screen and (max-width: 320px) {
  #header .header-right .nav-trigger {
    width: 31px;
    height: 40px;
    margin-right: 1px; } }

@media only screen and (min-width: 1921px) {
  #header .header-main {
    max-width: 1900px; }
  #nav {
    margin-left: 200px; }
  #header .logo {
    max-width: 156px; } }

@media only screen and (max-width: 1920px) and (min-width: 1700px) {
  #header .header-main {
    max-width: 1900px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 100px; }
  #header .logo {
    margin-right: auto; }
  #header .header-right {
    margin-left: 6%; } }

@media only screen and (max-width: 1700px) {
  #nav {
    margin-left: auto; } }

/*# sourceMappingURL=header.css.map */
