@charset "UTF-8";
/* ============================================
   Header Component
   ============================================ */

.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height-desktop);
  padding: 0 80px;
}

.header__logo {
  display: block;
  transition: var(--transition-default);
}

.header__logo:hover {
  opacity: 0.7;
}

.header__logo img {
  width: 213px;
  height: auto;
}

/* ============================================
   Responsive - Tablet (max-width: 840px)
   ============================================ */
@media screen and (max-width: 840px) {
  .header__inner {
    height: var(--header-height-tablet);
    padding: 0 80px;
  }

  .header__logo img {
    width: 152px;
  }
}

/* ============================================
   Responsive - Mobile (max-width: 540px)
   ============================================ */
@media screen and (max-width: 540px) {
  .header__inner {
    height: var(--header-height-mobile);
    padding: 0 20px;
  }

  .header__logo img {
    width: 59px;
  }
}
