/* ===================================================================
 * # header styles
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 500;
  width: 100%;
  height: 96px;
  background-color: transparent;
  position: absolute;
  top: 24px;
}
/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.cb-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  /* display: none; */
  z-index: 600;
  background-color: #ffffff;
}
.s-header:after {
  position: absolute;
  z-index: 500;
  /* filter: blur(10px); */
  /* background-color: #ffffff; */
}
.cb-header img {
  width: 420px;
}
@media (max-width: 1200px) {
  .cb-header img {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .cb-header img {
    width: 300px;
  }
}
@media (max-width: 380px) {
  .cb-header img {
    width: 270px;
  }
  .cb-header {
    height: 80px;
  }
}
@media (max-width: 350px) {
  .cb-header img {
    width: 250px;
  }
}
.header-logo {
  z-index: 601;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 110px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-logo a {
  display: block;
  padding: 0;
  outline: 0;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1600px) {
  .header-logo {
    left: 30px;

  }
}
@media only screen and (max-width: 800px) {
  .header-logo {
    left: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .s-header {
    height: 90px;
    top: 12px;
  }

  .header-logo {
    left: 25px;
    top: 50px;
  }
}
@media only screen and (max-width: 428px) {
  .s-header {
    top: 6px;
  }

  .header-logo {
    left: 20px;
      top:40px;
  }
}