@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800;900&display=swap");

body.is-modal-open {
  overflow: hidden;
}

.trip-header,
.trip-header * {
  box-sizing: border-box;
}

.trip-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 78px;
  border-bottom: 1px solid rgba(32, 36, 73, .13);
  background: rgba(248, 245, 255, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.has-trip-header {
  padding-top: 78px !important;
}

.trip-header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trip-logo {
  display: inline-flex;
  align-items: center;
  color: #202449;
  font-family: "Bebas Neue", sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.trip-logo:hover {
  color: #202449;
}

.trip-logo-v {
  color: #c7df00;
}

.trip-logo-padel {
  color: #0049e6;
}

.trip-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.trip-nav > a,
.trip-discover-trigger {
  border: 0;
  background: transparent;
  color: #202449;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}

.trip-nav > a:hover,
.trip-nav > a.is-active,
.trip-discover-trigger:hover {
  color: #0049e6;
}

.trip-nav > a.trip-nav-cta {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0049e6;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-discover {
  position: relative;
  padding: 28px 0;
}

.trip-discover-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trip-discover-trigger svg {
  width: 14px;
  transition: transform .2s ease;
}

.trip-discover-panel {
  position: absolute;
  top: calc(100% - 10px);
  right: -22px;
  width: 272px;
  padding: 10px;
  border: 1px solid rgba(32, 36, 73, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(22, 29, 68, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}

.trip-discover-panel::before {
  content: "";
  position: absolute;
  inset: -16px 0 auto;
  height: 16px;
}

.trip-discover:hover .trip-discover-panel,
.trip-discover:focus-within .trip-discover-panel,
.trip-discover.is-open .trip-discover-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.trip-discover:hover .trip-discover-trigger svg,
.trip-discover:focus-within .trip-discover-trigger svg,
.trip-discover.is-open .trip-discover-trigger svg {
  transform: rotate(180deg);
}

.trip-discover-panel a {
  display: block;
  padding: 11px 13px;
  border-radius: 11px;
  color: #202449;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: normal;
  text-decoration: none;
}

.trip-discover-panel a span {
  display: block;
  margin-top: 3px;
  color: #676d8d;
  font-size: 11px;
  font-weight: 600;
}

.trip-discover-panel a:hover {
  background: #f1eff9;
  color: #0049e6;
}

.trip-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.trip-menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  background: #202449;
}

.trip-mobile-menu,
.trip-mobile-menu * {
  box-sizing: border-box;
}

.trip-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px;
  background: rgba(11, 18, 32, .985);
  color: #fff;
}

.trip-mobile-menu[hidden] {
  display: none;
}

.trip-mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trip-mobile-menu .trip-logo,
.trip-mobile-menu .trip-logo:hover {
  color: #fff;
}

.trip-mobile-menu-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font: 28px/1 "Manrope", sans-serif;
  cursor: pointer;
}

.trip-mobile-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.trip-mobile-links a {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.trip-mobile-links a:last-child {
  margin-top: 12px;
  padding: 17px 22px;
  border-radius: 999px;
  background: #e8ff00;
  color: #202449;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 980px) {
  .trip-nav {
    display: none;
  }

  .trip-menu-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  body.has-trip-header {
    padding-top: 66px !important;
  }

  .trip-header {
    height: 66px;
  }

  .trip-header-inner {
    width: min(100% - 32px, 1180px);
  }

  .trip-logo {
    font-size: 23px;
  }
}
