/**********
HEADER
**********/
.header {
  width: 100%;
  background-position: center center;
  background-size: cover;
  padding-top: 15vh;
  padding-bottom: 8vh;
  color: #fff;
  position: relative;
  text-align: center;
}
.header::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.header__title {
  font-size: 2.3em;
  font-weight: 500;
  position: relative;
  z-index: 100;
  margin-bottom: 2vh;
}
.header__description {
  font-size: 1.1em;
  font-weight: 300;
  position: relative;
  z-index: 100;
  width: 40vw;
  margin: 0 auto;
}

/**********
HEAD
**********/
.head {
  width: 60vw;
  margin: 0 auto;
  text-align: center;
  font-size: 2.6em;
  margin-top: 10vh;
  margin-bottom: 5vh;
}
.head > span {
  color: #d29723;
}

/**********
SEARCH
**********/
.search {
  width: 60vw;
  margin: 0 auto;
}
.search__filters {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 3vh;
}
.search__filters__button {
  font-weight: 700;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 1vw;
  width: max-content;
  min-width: max-content;
  height: max-content;
}
.search__filters__button:hover {
  text-decoration: underline;
}
.search__filters__button > img {
  width: 1.5vw;
  height: auto;
  margin-right: 0.5vw;
}
.search__filters__chosen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search__filters__chosen > span {
  font-weight: 700;
  font-size: 0.9em;
  display: block;
  padding: 0.5vh 1vw;
  border-radius: 2rem;
  background-color: rgba(210, 152, 35, 0.2);
  color: #d29723;
  margin-right: 0.25vw;
  width: max-content;
  height: max-content;
}
.search__filters__container {
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.search__filters__container--visible {
  opacity: 1;
  visibility: visible;
}
.search__filters__close {
  position: absolute;
  top: 0.5vh;
  right: 0.5vw;
  font-weight: 700;
  font-size: 1.2em;
  cursor: pointer;
}
.search__filters__inner {
  padding: 3vh 1vw;
  padding-top: 4.5vh;
  width: 100%;
  height: 100%;
  position: relative;
}
.search__filters__select {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 2vh;
  width: max-content;
}
.search__filters__select > label {
  font-weight: 700;
  margin-right: 1vw;
  font-size: 1.2em;
  white-space: nowrap;
}
.search__filters__select > select {
  font-family: inherit;
  font-size: 1em;
  padding: 1vh 0.5vw;
  border: 1px solid #bebebe;
  border-radius: 0.25rem;
  background-color: #f7f7f7;
  width: max-content;
  height: max-content;
  padding-right: 1.5vw;
}
.search__filters__select > select:focus,
.search__filters__select > select:active {
  outline: none;
}
.search__filters__select > img {
  width: 0.5vw;
  height: auto;
  position: absolute;
  right: 0.5vw;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.search__filters__radio {
  display: flex;
  align-items: center;
}
.search__filters__radio:not(:last-child) {
  margin-bottom: 2vh;
}
.search__filters__radio > input[type='radio'] {
  display: none;
}
.search__filters__radio > label {
  font-size: 1.1em;
  cursor: pointer;
}
.search__filters__radio__custom {
  width: 2.5vw;
  height: 3vh;
  border-radius: 2rem;
  border: 1px solid #bebebe;
  position: relative;
  margin-right: 0.5vw;
  cursor: pointer;
  transition: background-color 500ms ease;
}
.search__filters__radio__custom::after {
  content: '';
  width: 2.25vh;
  height: 2.25vh;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: background-color 500ms ease, left 500ms ease;
}
.search__filters__radio[data-radio='not-selected']
  > .search__filters__radio__custom {
  background-color: #f7f7f7;
}
.search__filters__radio[data-radio='not-selected']
  > .search__filters__radio__custom::after {
  left: 30%;
  background-color: #bebebe;
}
.search__filters__radio[data-radio='selected']
  > .search__filters__radio__custom {
  background-color: #d29723;
}
.search__filters__radio[data-radio='selected']
  > .search__filters__radio__custom::after {
  left: 70%;
  background-color: #fff;
}
.search__search {
  width: 70%;
  display: flex;
  align-items: center;
  margin-bottom: 3vh;
  position: relative;
}
.search__search > img {
  width: 1.5vw;
  height: auto;
  position: absolute;
  left: 0.5vw;
  top: 50%;
  transform: translateY(-50%);
}
.search__search__input {
  width: 100%;
  font-family: inherit;
  font-size: 1.1em;
  padding: 1vh 2.5vw;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  font-weight: 500;
  color: #111;
  background-color: #f6f6f6;
  border: 1px solid #a4a4a4;
  border-right: 0;
}
.search__search__input::placeholder {
  color: #a4a4a4;
}
.search__search__submit {
  font-family: inherit;
  font-size: 1.1em;
  padding: 1vh 0.5vw;
  border: 1px solid #d29723;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  font-weight: 500;
  color: #fff;
  background-color: #d29723;
}
.search__search__submit:hover {
  background-color: #fff;
  color: #d29723;
}
.search__search__input:active,
.search__search__input:focus,
.search__search__submit:active,
.search__search__submit:focus {
  outline: none;
}
.search__results {
  font-size: 1.2em;
}

/***********
HIGHLIGHTED
***********/
.highlighted {
  width: 60vw;
  margin: 0 auto;
  margin-top: 5vh;
  padding-bottom: 7vh;
  border-bottom: 1px solid #ddd;
}
.highlighted__title {
  font-size: 1.4em;
  font-weight: 700;
  color: #d29723;
  margin-bottom: 3vh;
}
.highlighted__container {
  width: 100%;
  padding-top: 20vh;
  padding-bottom: 3vh;
  padding-left: 2vw;
  padding-right: 10vw;
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  display: block;
}
.highlighted__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.7) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0.05)
  );
  z-index: 50;
  position: absolute;
}
.highlighted__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: center 25%;
  background-size: cover;
  transition: transform 700ms ease;
  z-index: 25;
}
.highlighted__container:hover > .highlighted__cover {
  transform: scale(1.05);
}
.highlighted__price {
  background-color: #fff;
  color: #d29723;
  padding: 0.5vw 0.5vw;
  font-size: 1.5em;
  font-weight: 500;
  position: absolute;
  top: 2vh;
  right: 1vw;
  z-index: 100;
  border-radius: 0.25rem;
}
.highlighted__body {
  position: relative;
  z-index: 100;
  color: #fff;
}
.highlighted__name {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 2vh;
}
.highlighted__info {
  display: flex;
}
.highlighted__duration,
.highlighted__level {
  display: flex;
  align-items: center;
  font-size: 1.2em;
}
.highlighted__duration > img,
.highlighted__level > img {
  width: 2vw;
  height: auto;
}
.highlighted__duration {
  margin-right: 1.5vw;
}

/********
THEME
********/
.theme {
  width: 60vw;
  margin: 0 auto;
  padding: 7vh 0;
  padding-bottom: 5vh;
}
.theme--mobile {
  display: none;
}
.theme:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.theme__go-back {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 2vh;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.theme__go-back:hover {
  text-decoration: underline;
}
.theme__go-back > img {
  width: 1vw;
  height: auto;
  margin-right: 1vw;
}
.theme__title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 3vh;
}
.theme__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2vw;
  row-gap: 7vh;
}
.theme__card {
  width: 100%;
  height: 50vh;
  position: relative;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: transform 700ms ease;
}
.theme__card:hover {
  transform: scale(1.05) translateY(-1vh);
}
.theme__cover {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 50%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.theme__body {
  width: 100%;
  height: 50%;
  padding: 2vh 1vw;
}
.theme__name {
  font-size: 1.2em;
  font-weight: 500;
  color: #d29723;
  margin-bottom: 1vh;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.theme__price {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 1vh;
}
.theme__duration,
.theme__level {
  display: flex;
  align-items: center;
}
.theme__duration > img,
.theme__level > img {
  width: 2vw;
  height: auto;
}
.theme__link {
  width: 2vw;
  height: 2vw;
  background-color: #d29723;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.theme__link > img {
  width: 40%;
  height: auto;
}
.theme__view-more {
  width: max-content;
  margin: 0 auto;
  margin-top: 8vh;
  cursor: pointer;
  text-align: center;
  display: block;
}
.theme__view-more > p {
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 1vh;
}
.theme__view-more > img {
  width: 1.5vw;
  height: auto;
}
.theme__view-more:hover {
  text-decoration: underline;
}

/********
THEME
********/
.other-poles {
  width: 100%;
  padding: 10vh 0;
  background: rgba(0, 0, 0, 0.1);
}
.other-poles__title {
  font-size: 2.3em;
  text-align: center;
  margin-bottom: 5vh;
}
.other-poles__carousel {
  width: 70vw;
  height: 60vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.other-poles__container {
  width: 61vw;
  height: 100%;
}
.other-poles__inner {
  width: 100%;
  height: 100%;
}
.other-poles__arrow {
  width: 4.5vw;
  height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 500ms ease;
}
.other-poles__arrow.carousel__arrow--prev {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.other-poles__arrow.carousel__arrow--next {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.other-poles__arrow:hover {
  background-color: rgba(210, 151, 35, 0.2);
}
.other-poles__arrow img {
  width: 1.5vw;
  height: auto;
}
.other-poles__slide {
  width: 61vw;
  height: 60vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5vh 0.5vw;
  align-items: center;
}
.other-poles__card {
  background-color: #fff;
  border-radius: 0.25rem;
  height: 40vh;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  transition: transform 700ms ease, box-shadow 700ms ease;
  position: relative;
  z-index: 50;
}
.other-poles__card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: scale(1.3);
  z-index: 100;
}
.other-poles__card--first:hover {
  transform: scale(1.3) translateX(10%);
}
.other-poles__card--last:hover {
  transform: scale(1.3) translateX(-10%);
}
.other-poles__cover {
  width: 100%;
  height: 50%;
  background-position: center center;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.other-poles__body {
  width: 100%;
  height: 50%;
  padding: 2vh 1vw;
  padding-bottom: 4vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.other-poles__name {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 1vh;
}
.other-poles__description {
  font-size: 0.7em;
}
.other-poles__link {
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d29723;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: scale(0) translate3d(-50%, -50%, 0);
  z-index: 200;
  transition: transform 700ms ease;
}
.other-poles__link img {
  width: 40%;
  height: auto;
}
.other-poles__card:hover > .other-poles__link {
  transform: scale(1) translate3d(-50%, -50%, 0);
}

@media only screen and (max-width: 1024px) {
  .head {
    width: 70vw;
  }
  .search {
    width: 70vw;
  }
  .highlighted {
    width: 70vw;
  }
  .theme {
    width: 70vw;
  }
  .theme__card:hover {
    transform: scale(1) translateY(0);
  }
  .theme__link {
    width: 3vw;
    height: 3vw;
  }
  .other-poles__carousel {
    width: 90vw;
  }
  .other-poles__container {
    width: 81vw;
  }
  .other-poles__slide {
    width: 81vw;
  }
  .other-poles__card {
    height: 45vh;
  }
  .other-poles__description {
    font-size: 0.85em;
  }
  .other-poles__card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    transform: scale(1);
  }
  .other-poles__card--first:hover,
  .other-poles__card--last:hover {
    transform: scale(1) translateX(0);
  }
  .other-poles__link,
  .other-poles__card:hover > .other-poles__link {
    transform: scale(1) translate3d(-50%, -50%, 0);
  }
  .other-poles__link {
    width: 3vw;
    height: 3vw;
  }
}

@media only screen and (max-width: 768px) {
  .header__description {
    font-size: 1.3em;
    font-weight: 300;
    width: 70vw;
  }
  .head {
    width: 80vw;
  }
  .search {
    width: 80vw;
  }
  .search__container {
    display: block;
  }
  .search__filters__button {
    margin-bottom: 2vh;
  }
  .search__filters__button > img {
    width: 4vw;
    margin-right: 1vw;
  }
  .search__filters__container {
    right: 0;
    top: 0;
  }
  .search__filters__inner {
    padding: 3vh 4vw;
    padding-top: 5.5vh;
  }
  .search__filters__close {
    top: 1vh;
    right: 1vw;
    font-size: 1.4em;
  }
  .search__filters__select > img {
    width: 1.5vw;
  }
  .search__filters__select > select {
    padding: 1vh 1.5vw;
    padding-right: 4vw;
  }
  .search__search {
    width: 100%;
  }
  .search__search__submit {
    padding: 1vh 1.5vw;
  }
  .search__filters__radio__custom {
    width: 7vw;
    height: 3vh;
    margin-right: 1.5vw;
  }
  .search__search > img {
    width: 2.5vw;
  }
  .highlighted {
    width: 80vw;
  }
  .theme {
    width: 80vw;
    display: none;
  }
  .theme--mobile {
    display: block !important;
  }
  .theme__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5vw;
  }
  .theme__card {
    height: 30vh;
  }
  .theme__cover {
    height: 30%;
  }
  .theme__body {
    height: 70%;
    padding: 2vh 2vw;
  }
  .theme__name {
    font-size: 1em;
  }
  .theme__price {
    font-size: 1.1em;
  }
  .theme__link {
    width: 5vw;
    height: 5vw;
  }
  .theme__duration > img,
  .theme__level > img,
  .highlighted__duration > img,
  .highlighted__level > img {
    width: 5vw;
  }
  .theme__view-more > img {
    width: 4vw;
  }
  .theme__go-back > img {
    width: 4vw;
  }
  .other-poles__title {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 5vh;
  }
  .other-poles__carousel {
    width: 92vw;
    height: 70vh;
  }
  .other-poles__arrow {
    width: 5.5vw;
    height: 65vh;
  }
  .other-poles__arrow img {
    width: 3vw;
  }
  .other-poles__slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3vh;
    height: 70vw;
  }
  .other-poles__card {
    height: 30vh;
  }
  .other-poles__cover {
    height: 30%;
  }
  .other-poles__body {
    height: 70%;
    padding: 2vh 2vw;
  }
  .other-poles__link {
    width: 5vw;
    height: 5vw;
  }
}
