/*Header CSS Starts
=======================================================================*/
#header {
  padding: 15px 24px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  background: var(--black);
  width: 100%;
  box-shadow: 0 5px 40px rgba(16,16,16,.05);
}

#header .region-header img {
  width: 52px;
  height: auto;
  margin-right: 49px;
}

#header .navbar-brand .cs-site-name {
  font-size: 18px;
  margin-left: 15px;
  font-weight: 600;
}

#header .navbar-brand {
  display: flex;
  align-items: flex-start !important;
  color: var(--white);
}

#header .navbar-brand > div {
  line-height: 1;
}

#header .navbar-brand a.site-title {
  color: var(--white);
  font-size: 21px;
  letter-spacing: 0;
  text-transform: none;
}

#mainmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
  list-style: none;
}

#mainmenu li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  color: var(--text-color);
}

#mainmenu li a:hover, #mainmenu li.active a {
  color: var(--red);
}

.navigation-col .btn.btn-primary {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 1023px) {
  #mainmenu {
    background: var(--gray-500);
    width: 280px;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    transition: all 550ms linear;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 101;
    left: 0;
  }

  #mainmenu.open {
    transform: translateX(0);
  }


  #mainmenu ul {
    padding: 10px 15px;
    display: block !important;
  }

  #menu {
    display: block;
    position: absolute;
    box-shadow: 0 3px 8px rgb(88 88 88 / 14%);
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menulines-button {
    padding: 0;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }

  .menulines-button em {
    font-style: normal;
    font-weight: bold;
    margin-left: 10px;
  }

  .menulines-button:hover {
    text-decoration: none;
  }

  .menulines {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--gray--200);
    position: relative;
    float: left;
    margin: 1px 0 0 0;
    -moz-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    -ms-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    -webkit-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    opacity: 1;
  }

  .menulines:before,
  .menulines:after {
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--gray--200);
    position: absolute;
    left: 0;
    content: '';
    -moz-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    -ms-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    -webkit-transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    transition: all 550ms cubic-bezier(0.450, 1.000, 0.320, 1.000);
    -webkit-transform-origin: 0.28571rem center;
    -moz-transform-origin: 0.28571rem center;
    -ms-transform-origin: 0.28571rem center;
    transform-origin: 0.28571rem center;
  }

  .menulines:before {
    top: 7px;
  }

  .menulines:after {
    top: -7px;
  }

  .menuopen .menulines {
    background: none;
  }

  .menuopen .menulines:before,
  .menuopen .menulines:after {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
  }

  .menuopen .menulines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }

  .menuopen .menulines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }

  #mainmenu li a {
    display: block;
    padding:15px;
    color: var(--white);
  }

  #mainmenu li a.btn,btn-primary {
    width: auto;
    margin-top: 10px;
  }
}