.pickyourdestinationbutton {
  transition: ease-out 700ms;
}
.pickyourdestinationbutton::after {
  mix-blend-mode: color-burn;
  transition: all 800ms ease-out;
  content: "";
  display: block;
  position: relative;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 100%;
  background-color: orange;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
}
.pickyourdestinationbutton:hover {
  scale: 103%;
}
.pickyourdestinationbutton:hover::after {
  opacity: 100%;
}

.aroundtheworldcontainer {
  transition: ease-out 700ms;
  display: flex;
  align-items: center;
  grid-column: 1/8;
  margin-top: 125px;
}
.aroundtheworldcontainer .aroundtheworldbanner {
  display: flex;
  align-items: center;
  width: 70%;
  background-color: white;
  color: var(--customblack);
  height: calc(4.2vw + 43px);
  text-shadow: none;
  padding: 10px 0px;
  transition: ease-out 300ms;
}
.aroundtheworldcontainer:hover .aroundtheworldbanner {
  width: 73%;
}
.aroundtheworldcontainer .aroundtheworldtriangle {
  display: inline;
}
.aroundtheworldcontainer .aroundtheworldplatzhalter {
  display: inline;
}
@media only screen and (max-width: 800px) {
  .aroundtheworldcontainer .aroundtheworldcontainer {
    margin-top: 50px;
  }
  .aroundtheworldcontainer .aroundtheworldbanner {
    width: 100%;
  }
  .aroundtheworldcontainer .aroundtheworldplatzhalter {
    display: none;
  }
  .aroundtheworldcontainer .aroundtheworldtriangle {
    display: none;
  }
}/*# sourceMappingURL=travelstyle.css.map */