.header-section {
  background-color: #fff;
  padding: 0px 30px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: inline-block;
  padding-top: 15px;
}

.header-links {
  display: inline-block;
  float: right;
}

.header-links ul li {
  display: inline-block;
  margin-right: 17px;
  padding: 50px 0px 23px;
}

.header-links ul li:last-child {
  margin-right: 0px;
}

.header-links ul li a {
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  padding: 10px;
  text-decoration: none !important;
}

.header-links ul li:last-child a {
  padding-right: 0px;
}

/* Header Float */
.hvr-float {
  /* display: inline-block;
  vertical-align: middle; */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.menu__icon {
  display: none;
}

/* Landscape & Portrait Ipad Responsive */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .header-links ul li {
    margin-right: 8px;
  }
}

/* Responsive */
@media only screen and (max-width: 767px) {
  .header-section {
    padding: 0px 20px;
    height: 63px;
  }
  .header-links {
    display: none;
  }

  .header-logo img {
    width: 100px;
  }

  .menu__icon {
    height: 16px;
    width: 30px;
    margin: 3%;
    position: absolute;
    top: 20px;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 20;
    margin-right: 20px;
  }

  .menu__icon span {
    display: block;
    background: #5a5a5a;
    width: 100%;
    height: 1px;
    margin-top: -1px;
    position: absolute;
    left: 0;
    top: 50%;
  }

  .menu__icon:before,
  .menu__icon:after {
    content: '';
    display: block;
    background: #5a5a5a;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    transform-origin: center center;
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }

  .menu__icon:before {
    top: 0px;
    margin-top: 0px;
  }

  .menu__icon:after {
    bottom: 2px;
    margin-bottom: -1px;
  }

  .menu_shown .menu__icon span {
    background: transparent;
  }

  .menu_shown .menu__icon:before {
    top: 50%;
    transform: rotate(45deg);
    width: 75%;
  }

  .menu_shown .menu__icon:after {
    bottom: 50%;
    transform: rotate(-45deg);
    width: 75%;
  }

  .menu_shown .mobile.menu {
    transform: translateX(0);
  }
}
