header.header-top {
  position: sticky;
  top: 0px;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr 40px 40px;
  grid-auto-rows: minmax(75px, auto);
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 6px 12px -2px;
}

.header-top .logo {
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-top: 6px;
  transition: all 1s ease-in-out;
}
.header-top .logo:hover {
  animation: 0.25s fliplogo;
  animation-iteration-count: 2;
}

.header-top .logo img {
  max-width: 180px;
}

header .home-page-hero-video {
  box-sizing: border-box;
  margin: 0px;
  position: absolute;
  left: 50%;
  top: 0%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  /* filter: brightness(75%); */
  object-fit: cover;
}

.home .home-hero-title {
  position: absolute;
  bottom: 200px;
}
.home .home-hero-title h1 {
  font-size: calc(2.5em + 2vw);
  font-family: "Julius Sans One";
  text-shadow: 4px 4px 4px #ccc;
}
.home .home-hero-subtitle {
  position: absolute;
  bottom: 100px;
}
.home .home-hero-subtitle h1 {
  font-size: calc(1.7em + 2vw);
  font-family: "Julius Sans One";
  text-shadow: 4px 4px 4px #888;
  background-color: unset;
}
.home .home-hero-arrowdown {
  position: absolute;
  fill: white;
  bottom: 40px;
  opacity: 0%;
  animation: moveUpDown 3s 0s infinite;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

header .hero-message {
  position: absolute;
  color: white;
  font-family: "Julius Sans One";
  font-weight: bold;
  text-shadow: 4px 4px 4px #333;
  font-size: 2em;
  line-height: 1.2em;
  opacity: 0;
  padding: 0 10px;
}
.animate-show-1 {
  top: 10%;
  left: 10%;
  animation: moveIn 39s 1s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-2 {
  top: 30%;
  left: 40%;
  animation: moveIn 39s 6s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-3 {
  top: 50%;
  right: 10%;
  animation: moveIn 39s 11s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-4 {
  top: 30%;
  right: 40%;
  animation: moveIn 39s 16s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-5 {
  top: 10%;
  left: 20%;
  animation: moveIn 39s 21s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-6 {
  top: 30%;
  left: 40%;
  animation: moveIn 39s 26s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-7 {
  top: 10%;
  right: 40%;
  animation: moveIn 39s 31s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}
.animate-show-8 {
  top: 50%;
  left: 20%;
  animation: moveIn 39s 36s cubic-bezier(0.36, 0, 0.06, 1) infinite;
}

/********** menu *********/

.header-top ul.menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.header-top ul.menu li {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  background-color: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
}
.header-top .menu-mobile {
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 10px;
  cursor: pointer;
}
.header-top .menu-mobile ul.menu {
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 40px;
  z-index: 50;
  background-color: #1d1d1d;
  opacity: 95%;
  max-height: 0;
  display: block;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  /* transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); */
}
.header-top .menu-mobile.menu-mobile-open ul.menu {
  display: block;
  max-height: 1000px;
}
.header-top .menu-mobile.menu-mobile-open .menu-icon-open {
  display: none;
}
.header-top .menu-mobile.menu-mobile-open .menu-icon-close {
  display: block;
}
.header-top ul.menu li a {
  display: block;
  padding: 30px 6px;
  color: black;
  text-decoration: none;
  font-family: "Julius Sans One";
  font-size: 0.9em;
  background-color: none;
  transition: all 0.2s ease-in-out;
}
.header-top .menu-mobile ul.menu li a {
  color: white;
}
.header-top .menu-mobile ul.menu li a {
  padding: 20px 20px;
}
.header-top ul.menu li:hover,
.header-top ul.menu li.current-menu-parent,
.header-top ul.menu li.current-menu-item,
.header-top ul.menu li.current-menu-ancestor {
  background-color: var(--tripwizy-color-secondary);
}
.header-top ul.menu li:hover > a,
.header-top ul.menu li.current-menu-parent > a,
.header-top ul.menu li.current-menu-item > a,
.header-top ul.menu li.current-menu-ancestor > a {
  color: white;
}
.header-top .menu-language-container,
.header-top .menu-language-container #menu-language {
  height: 100%;
}
.header-top #menu-language li.current-menu-parent {
  background-color: white;
}
.header-top .menu-icon-open {
  font-size: 2em;
  color: var(--tripwizy-color-primary);
}
.header-top .menu-icon-close {
  display: none;
  font-size: 2em;
  color: var(--tripwizy-color-primary);
}

.header-top li.menu-open > ul.sub-menu,
.header-top .menu-desktop .menu-item:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: blur(0px);
  margin-top: 0px;
  transition: visibility 0s, opacity 0.5s ease-in-out, margin-top 0.5s ease-in-out, filter 0.25s ease-in-out;
}

.header-top ul.sub-menu li.menu-item-has-children {
  position: relative;
}

.header-top ul.sub-menu li.menu-item-has-children > a::after {
  content: "\e5df";
  font-family: "Material Symbols Outlined";
  font-size: 2em;
  position: absolute;
  right: -8px;
  top: 1px;
  color: #888;
}

.header-top ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 6px 12px -2px;
  padding: 0;
  margin-top: 32px;
  transition: none;
  left: 0px;
  top: 74px;
}

.header-top ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0px;
}

.header-top #menu-language ul.sub-menu {
  left: -8px;
}

.header-top ul.sub-menu li {
  list-style-type: none;
}

.header-top ul.sub-menu li a {
  padding: 10px 15px;
  color: black;
}

.header-top .menu-search {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.header-top .menu-search:hover {
  color: var(--tripwizy-color-primary);
}

/******* Breadcrumb *******/

.breadcrumb {
  color: var(--tripwizy-color-primary);
  display: flex;
  justify-content: center;
  font-size: 0.9em;
  margin-top: 10px;
  line-height: 1.2em;
}
.breadcrumb a {
  color: var(--tripwizy-color-primary);
  text-decoration: none;
}
.breadcrumb .breadcrumb-home {
  font-size: 1.4em;
}
.breadcrumb .breadcrumb-arrow {
  font-size: 1.7em;
}

/******* Search button ********/

.search-button {
  background-color: var(--tripwizy-color-secondary);
  padding: 16px 24px;
  border-radius: 5px;
  color: white;
  display: flex;
  font-size: 1.2em;
  margin-top: 30px;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 6px 12px -2px;
}
.search-button:hover {
  background-color: #41be52;
}

@keyframes moveIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  8% {
    opacity: 1;
    filter: blur(0px);
  }
  16% {
    opacity: 0;
    filter: blur(10px);
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(10px);
    opacity: 80%;
  }
}
@keyframes fliplogo {
  0%, 100% {
    transform: translate(0px, 0);
  }
  33% {
    transform: translate(-3px, 0);
  }
  66% {
    transform: translate(3px, 0);
  }
}

@media screen and (orientation: landscape) {
  .header-top .menu-mobile {
    display: none;
  }
}

@media screen and (orientation: portrait) {
  .header-top .menu-desktop {
    display: none;
  }
}
