.site-container {
  width: 100%;
  height: 100dvh;
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.3;
}

.header {
  position: absolute;
  top: 0;
  height: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: left 0.4s ease-in-out;
  -webkit-transition: left 0.4s ease-in-out;
  -moz-transition: left 0.4s ease-in-out;
  -ms-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  z-index: 1;
}
.header .content-header {
  display: flex;
  flex: 1;
  padding: 0 20px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-body);
}
.header footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  padding: 16px 0;
}
.header footer a {
  color: var(--text-black-900);
  opacity: 1;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  padding: 0 5px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}
.header footer a:not(:last-of-type) {
  border-right: 1px solid var(--text-black-800);
}
.header footer a:hover {
  opacity: 0.9;
}
.header footer .copyright-wrapp {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-black-600);
}

@media only screen and (max-width: 991px) {
  .header {
    height: calc(100% - 75px);
  }
  .header .content-header {
    padding: 0 10px;
  }
}
@media (max-width: 350px) {
  .header {
    height: calc(100% - 60px);
  }
}
@media (max-width: 768px) {
  .header footer {
    display: none;
  }
}

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