/* header */
#header {
  color: #000;
  text-align: center;
  padding-top: 60px;
}
#header .header-logo {
  width: 190px;
}
#header .list-item a {
  color: #000;
}
#header .list-item a:hover {
  color: #888;
  text-decoration: none;
}
.top-nav {
  margin-bottom: 2rem;
}
.header-para {
  font-size: 24px;
  letter-spacing: 0.04em;
  word-spacing: 0.04rem;
  margin-bottom: 1.5rem;
}
.header-heading {
  font-size: 38px;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.header-button {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  font-size: 22px;
  box-shadow: none;
  margin-top: 30px;
}
.header-button a {
  padding: 0.8rem 1.8rem;
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 22px;
  box-shadow: none;
  font-weight: 500;
  color: #1ab3d4;
}
.header-button a:hover {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* hamburger-menu */
.hamburger-btn {
  display: inline-block;
  cursor: pointer;
}

.hamburger-btn .bar1,
.hamburger-btn .bar2,
.hamburger-btn .bar3 {
  width: 35px;
  height: 5px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
.hamburger-active .hamburger-btn .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.hamburger-active .hamburger-btn .bar2 {
  opacity: 0;
}

.hamburger-active .hamburger-btn .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
.hamburger-active #menu {
  transform: translate3d(100%, 0, 0);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
}
.hamburger-deactive #menu {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeOutRight;
}
@media (max-width: 768px) {
  #menu {
    float: unset !important;
    text-align: left;
    opacity: 0;
    z-index: 999999;
    position: absolute;
    top: 0;
    right: 0;
  }
  #menu .list-inline {
    background-color: #ffffff;
    width: 400px;
  }
  #menu .list-inline .list-item {
    display: block !important;
  }
  #menu .list-inline .list-item a {
    display: block !important;
    color: #4e4e4e;
    padding: 20px 15px;
    padding-left: 25px;
    transition: 0.3s ease-in-out;
  }
  #menu .list-inline .list-item a:hover {
    background-color: #f5eaea;
  }
}
@keyframes fadeInRight {
  from {
    /* display: block; */
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    z-index: -99;
    transform: translate3d(25%, 0, 0);
    -webkit-transform: translate3d(25%, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
