/* SITE_HEADER_V2 */

.travel-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(31, 83, 167, .10);
  box-shadow: 0 8px 30px rgba(21, 55, 109, .06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.travel-header__inner {
  width: min(100% - 32px, 1180px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.travel-brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #172238;
  text-decoration: none;
}

.travel-brand__mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: #fff;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, .40),
      transparent 34%
    ),
    linear-gradient(145deg, #3186f7 0%, #1768d8 55%, #0d50b8 100%);
  box-shadow:
    0 9px 20px rgba(25, 105, 219, .25),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.travel-brand__mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 12px;
  right: -12px;
  bottom: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  transform: rotate(-26deg);
}

.travel-brand__mark span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.6px;
}

.travel-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.travel-brand__name {
  font-size: 21px;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -.45px;
  white-space: nowrap;
}

.travel-brand__name strong {
  color: #176fdf;
  font-weight: 900;
}

.travel-brand__tagline {
  color: #71809a;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .05px;
  white-space: nowrap;
}

.travel-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.travel-navigation a {
  position: relative;
  padding: 10px 10px;
  border-radius: 11px;
  color: #39475f;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color .18s ease,
    background-color .18s ease,
    transform .18s ease;
}

.travel-navigation a:hover {
  color: #176fdf;
  background: #edf5ff;
  transform: translateY(-1px);
}

.travel-navigation a.is-active {
  color: #176fdf;
  background: #eaf4ff;
}

.travel-navigation a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 5px;
  background: #176fdf;
}

.travel-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(23, 111, 223, .14);
  border-radius: 13px;
  background: #f2f7ff;
  cursor: pointer;
}

.travel-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 5px;
  background: #1b3459;
  transition: transform .2s ease, opacity .2s ease;
}

.travel-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.travel-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.travel-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .travel-header__inner {
    gap: 14px;
  }

  .travel-navigation a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12px;
  }
}

@media (max-width: 860px) {
  .travel-header__inner {
    position: relative;
    width: min(100% - 24px, 1180px);
    min-height: 68px;
  }

  .travel-brand__mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .travel-brand__name {
    font-size: 19px;
  }

  .travel-menu-button {
    display: block;
  }

  .travel-navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 9px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    border: 1px solid rgba(31, 83, 167, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 45px rgba(29, 59, 107, .16);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .travel-navigation.is-open {
    display: flex;
  }

  .travel-navigation a {
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 15px;
  }

  .travel-navigation a.is-active::after {
    display: none;
  }
}

@media (max-width: 410px) {
  .travel-header__inner {
    min-height: 64px;
  }

  .travel-brand {
    gap: 9px;
  }

  .travel-brand__mark {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    border-radius: 13px;
  }

  .travel-brand__name {
    font-size: 18px;
  }

  .travel-brand__tagline {
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
  }
}

/* SUITCASE_LOGO_V3 */
.travel-brand__mark {
  color: #fff;
}

.travel-brand__mark::after {
  display: none;
}

.travel-brand__suitcase {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SUITCASE_LOGO_V4 */
.travel-brand__mark {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 17px;
  background:
    radial-gradient(
      circle at 27% 18%,
      rgba(255,255,255,.72) 0,
      rgba(255,255,255,.20) 22%,
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #62dcff 0%,
      #2782f4 42%,
      #435edc 70%,
      #764eea 100%
    );
  box-shadow:
    0 12px 24px rgba(31, 102, 220, .30),
    0 4px 8px rgba(31, 79, 166, .18),
    inset 0 2px 2px rgba(255,255,255,.48),
    inset 0 -5px 10px rgba(24,54,153,.18);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.travel-brand:hover .travel-brand__mark {
  transform: translateY(-1px) rotate(-1deg);
  box-shadow:
    0 15px 29px rgba(31, 102, 220, .35),
    0 5px 10px rgba(31, 79, 166, .20),
    inset 0 2px 2px rgba(255,255,255,.52),
    inset 0 -5px 10px rgba(24,54,153,.18);
}

.travel-brand__mark::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 7px;
  width: 24px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.30);
  filter: blur(1px);
  transform: rotate(-18deg);
}

.travel-brand__mark::after {
  display: none;
}

.travel-brand__suitcase {
  position: relative;
  z-index: 2;
  width: 39px;
  height: 39px;
  display: block;
  overflow: visible;
}

@media (max-width: 860px) {
  .travel-brand__mark {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    border-radius: 15px;
  }

  .travel-brand__suitcase {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 410px) {
  .travel-brand__mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .travel-brand__suitcase {
    width: 34px;
    height: 34px;
  }
}

/* HEADER_TAGLINE_V6 */
.travel-brand__tagline {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  color: #63728b;
  font-size: 11px;
  letter-spacing: 0;
}
