/**
 * Tabs from https://codepen.io/mikestreety/pen/yVNNNm
 */
.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tabs input[type=radio] + label {
  order: inherit;
  display: none;
  cursor: pointer;
  color: #c66e4c;
  padding: 0 0 0 1.5em;
  line-height: 2em;
  margin: 0 1.2em 0.3em 0.5em;
  transition: all 0.3s ease;
}

.tabs input[type=radio] + label:hover {
  color: #f3aa8e;
}

.tabs input[type=checkbox] + label:before, .tabs input[type=radio] + label:before {
  display: none;
}

.tabs input[type=radio] + label svg {
  fill: #d3cdc3;
  position: absolute;
  top: 6px;
  left: 0;
  width: 1.5em;
  height: 1.5em;
}

.tabs input[type=radio]:checked + label svg {
  fill: #c66e4c;
}

.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 1s;
}

.tabs input[type=radio] {
  display: none;
}

.tabs input[type=radio]:checked + label + .tab {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 30vh;
  opacity: 1;
  overflow: visible;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
#travel .tabs {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.tab h2, .tab h2 + p {
  width: 100%;
}

.slider {
  position: relative;
  height: 50vh;
}

.slider h2 {
  margin-top: 0;
  font-weight: bold;
  padding-left: 1em;
}

.slider-nav {
  position: absolute;
  margin: 1em;
}

.slider .item {
  width: 200px;
  height: 120px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 0.5em;
  box-shadow: 0.25em 0.25em rgba(0, 0, 0, 0.15);
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}
.slider .item:nth-child(1), .slider .item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  box-shadow: none;
  opacity: 1;
}
.slider .item:nth-child(3) {
  left: 50%;
}
.slider .item:nth-child(4) {
  left: calc(50% + 220px);
}
.slider .item:nth-child(5) {
  left: calc(50% + 440px);
}
.slider .item:nth-child(6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.content {
  /*width: min(30vw,400px);*/
  width: 100%;
  position: absolute;
  top: 50%;
  padding: 5em 0 0 1em;
  height: 100%;
  transform: translateY(-50%);
  opacity: 0;
  display: none;
  background: rgba(223, 217, 209, 0.8);
  background: linear-gradient(90deg, rgba(223, 217, 209, 0.9) 40%, rgba(223, 217, 209, 0.6) 40%);
}
.content .description {
  margin: 1rem 0 1.5rem;
}
.content p {
  width: 37%;
}

.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@media (width > 650px) and (width < 900px) {
  .content .title {
    font-size: 1rem;
  }
  .content .description {
    font-size: 0.7rem;
  }
  .item {
    width: 160px;
    height: 270px;
  }
  .item:nth-child(3) {
    left: 50%;
  }
  .item:nth-child(4) {
    left: calc(50% + 170px);
  }
  .item:nth-child(5) {
    left: calc(50% + 340px);
  }
  .item:nth-child(6) {
    left: calc(50% + 510px);
    opacity: 0;
  }
}
@media (width < 650px) {
  .content .title {
    font-size: 0.9rem;
  }
  .content .description {
    font-size: 0.65rem;
  }
  .item {
    width: 130px;
    height: 220px;
  }
  .item:nth-child(3) {
    left: 50%;
  }
  .item:nth-child(4) {
    left: calc(50% + 140px);
  }
  .item:nth-child(5) {
    left: calc(50% + 280px);
  }
  .item:nth-child(6) {
    left: calc(50% + 420px);
    opacity: 0;
  }
}/*# sourceMappingURL=tabs.css.map */