header .header__mobile-button {
  display: none;
  cursor: pointer;
}

header .header__mobile-button .header__hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .header__mobile-button .header__hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

header .header__mobile-button .header__hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

header .header__mobile-button .header__hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

header .header__mobile-button .header__hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.contact-button-form {
  position: fixed;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #7ac1d9;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  bottom: 0;
  right: -5px;
  cursor: pointer;
  text-transform: uppercase;
  width: auto;
  padding: 15px;
  border-radius: 10px;
  height: auto;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button-form:hover {
  background-color: #5a9cb8;
  transform: scale(1.05);
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutSlideDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.contact-form {
  position: fixed;
  background-color: white;
  border-radius: 10px;
  max-width: 325px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  z-index: 1;
  animation: fadeInSlideUp 0.5s ease-out;
  border: 5px dashed #7ac1d9;
}

.contact-form .close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 30px;
  cursor: pointer;
  color: #cacaca;
  cursor: pointer;
  transition: 0.2s linear;
}

.contact-form .close:hover {
  opacity: 0.7;
}

.contact-form > p {
  font-weight: 700;
}

.contact-form .contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.contact-form .contact-section .title {
  margin-right: 15px;
}

.contact-form .contact-section ul {
  display: flex;
  align-items: center;
}

.contact-form .contact-section ul li {
  margin-left: 5px;
  list-style-type: none;
}

.contact-form .contact-section ul li:first-child {
  margin-left: 0;
}

.contact-form .contact-section ul li img {
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.2s linear;
}

.contact-form .contact-section ul li img:hover {
  opacity: 0.7;
}

.fade-slide-enter-active {
  animation: fadeInSlideUp 0.5s ease-out;
}

.fade-slide-leave-active {
  animation: fadeOutSlideDown 0.5s ease-out;
}

.comment-button {
  border: none;
  background-color: #7ac1d9;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.comment-button:hover {
  opacity: 0.7;
}

.comment-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-form-wrapper {
  max-width: 600px;
  width: 100%;
}

.comment-form-wrapper .comment-form {
  padding: 30px;
}

.comment-form-wrapper .comment-form h2 {
  text-align: center;
  padding: 10px 0 40px 0;
}

.comment-form-wrapper .comment-form .comment-form__section {
  margin-top: 10px;
}

.comment-form-wrapper .comment-form .comment-form__section:first-child {
  margin-top: 0;
}

.comment-form-wrapper .comment-form .comment-form__section input[type=text],
.comment-form-wrapper .comment-form .comment-form__section textarea {
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  padding: 15px 20px;
  width: 100%;
  font-weight: 300;
  font-size: 17px;
  transition: 0.2s linear;
}

.comment-form-wrapper .comment-form .comment-form__section input[type=text]:focus,
.comment-form-wrapper .comment-form .comment-form__section input[type=text]:hover,
.comment-form-wrapper .comment-form .comment-form__section textarea:focus,
.comment-form-wrapper .comment-form .comment-form__section textarea:hover {
  outline: none;
  border-color: #acc1ed;
}

.comment-form-wrapper .comment-form .comment-form__section textarea {
  resize: none;
}

.comment-form-wrapper .comment-form .comment-form__section .comment-form__file-section input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.comment-form-wrapper .comment-form .comment-form__section .comment-form__file-section label {
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
  transition: 0.1s linear;
}

.comment-form-wrapper .comment-form .comment-form__section .comment-form__file-section label .label__icon {
  transform: rotate(45deg);
}

.comment-form-wrapper .comment-form .comment-form__section .comment-form__file-section label .label__text {
  border-bottom: 1px dashed;
  margin-left: 5px;
}

.comment-form-wrapper .comment-form .comment-form__section .comment-form__file-section label:hover {
  opacity: 1;
}

.comment-form-wrapper .comment-form .comment-form__submit-section {
  text-align: center;
}

.comment-form-wrapper .comment-form .comment-form__submit-section button.comment-form__submit-button {
  font-size: 18px;
  font-weight: 300;
  background-color: #3b5998;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  transition: 0.2s linear;
  position: relative;
}

.comment-form-wrapper .comment-form .comment-form__submit-section button.comment-form__submit-button:hover {
  background-color: #2d4578;
}

.comment-form-wrapper .comment-form .comment-form__submit-section button.comment-form__submit-button:disabled {
  background-color: #c3c3c3;
  pointer-events: none;
}

@media (max-width: 500px) {
  .comment-section-header {
    flex-direction: column;
    gap: 25px;
  }
}

@font-face {
  font-family: Intro;
  src: url("/fonts/Intro.woff2");
}

@font-face {
  font-family: Sans;
  src: url("/fonts/Sansnormal.woff2");
}

@font-face {
  font-family: Sans-bold;
  src: url("/fonts/Sansbold.woff2");
}

@font-face {
  font-family: Ropa;
  src: url("/fonts/Ropa.woff2");
}

@font-face {
  font-family: Rounded;
  src: url("/fonts/Rounded.woff2");
}

html,
body {
  padding: 0;
  margin: 0;
}

.information-page {
  font-family: "Open Sans";
  padding: 0 15px;
}

.information-page * {
  padding: revert;
  margin: revert;
}

.information-page a {
  line-height: 16px;
  padding: 1px 0.24em 2px;
  display: inline;
  -webkit-box-decoration-break: clone;
  border-radius: 3px;
  color: var(--ds-link, #0052CC);
  background-color: var(--ds-surface-raised, white);
  box-shadow: var(--ds-shadow-raised, 0 1px 1px rgba(9, 30, 66, 0.25), 0 0 1px 1px rgba(9, 30, 66, 0.13));
  cursor: pointer;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  transition: all 0.1s ease-in-out 0s;
  text-decoration: none;
}

.information-page a:hover {
  text-decoration: underline;
}

.license-page {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.license-page .document {
  width: 50%;
}

.license-page .document img {
  width: 100%;
}

.wrapper-header {
  background-color: white;
  position: sticky;
  top: -1px;
  z-index: 4;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
}

header {
  max-width: 1100px;
  margin: 0 auto;
  height: 65px;
}

header .header__section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
}

header .header__section .header__navigation-section {
  display: flex;
  width: 75%;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

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

header .contact-list .v-menu,
header .social-list .v-menu {
  display: initial;
}

header .contact-list li,
header .social-list li {
  margin-left: 5px;
}

header .contact-list li:first-child,
header .social-list li:first-child {
  margin-left: 0;
}

header .contact-list li img,
header .social-list li img {
  height: 26px;
  cursor: pointer;
  transition: 0.2s linear;
}

header .contact-list li img:hover,
header .social-list li img:hover {
  opacity: 0.7;
}

header .nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

header .nav-menu .nav-option {
  display: inline;
  height: 100%;
}

header .nav-menu .nav-option a {
  height: 100%;
  text-decoration: none;
  display: inline-flex;
  color: black;
  align-items: center;
  font-family: "Source Sans Pro";
  font-weight: 800;
  min-width: 50px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s linear;
}

header .nav-menu .nav-option a:hover {
  opacity: 0.7;
}

header .contact-section,
header .social-section {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

header .contact-section.mobile-contact-section,
header .social-section.mobile-contact-section {
  display: none;
}

header .contact-section .title,
header .social-section .title {
  margin-right: 15px;
}

header .contact-section img,
header .social-section img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

header .header__logo {
  width: 25%;
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.2s linear;
}

header .header__logo:hover {
  opacity: 0.7;
}

header .header__logo .text-logo {
  font-size: 20px;
  display: inline-block;
  font-family: "Intro";
  margin-left: 5px;
}

header .header__logo img {
  height: 50px;
}

.root {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}

main {
  padding-bottom: 50px;
  flex: 1;
}

.banner {
  height: 325px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.banner .wrapper-info {
  z-index: 2;
  position: absolute;
  width: 100%;
  max-width: 1100px;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}

.banner .wrapper-info .breadcrumbs {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.banner .wrapper-info .breadcrumbs .link {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  text-shadow: 1px 1px black;
}

.banner .wrapper-info .breadcrumbs .link,
.banner .wrapper-info .breadcrumbs .link > a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  cursor: pointer;
}

.banner .wrapper-info .breadcrumbs .link:first-child,
.banner .wrapper-info .breadcrumbs .link:first-child > a {
  margin-left: 0;
}

.banner .wrapper-info .breadcrumbs .link:first-child i {
  display: none;
}

.banner .wrapper-info .breadcrumbs .link:last-child {
  opacity: 0.7;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.banner .banner-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 100%;
}

.banner .banner-image img {
  width: inherit;
}

.banner .banner-title {
  max-width: 850px;
  color: white;
  text-shadow: 1px 1px black;
  font-family: "Source Sans Pro", sans-serif;
}

.banner .banner-title h1 {
  font-size: 38px;
  margin: 15px 0 0 0;
  font-weight: 500;
}

.banner .banner-title .banner-description {
  font-size: 22px;
  margin: 5px 0;
}

.banner.banner-main {
  z-index: 0;
}

.banner.banner-main .breadcrumbs {
  display: none;
}

.banner.banner-main .banner-title {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-shadow: 1px 1px black;
}

.banner.banner-main .banner-title h1 {
  display: block;
  margin: 0;
  font-size: 57px;
}

.search-wrapper {
  position: relative;
  transform: translateY(-25px);
  z-index: 3;
}

.search-wrapper .search-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-70px);
  padding: 16px 15px;
  background: #f3f3f3;
  border-radius: 36px;
  box-shadow: 0 2px 8px 0 rgba(34, 60, 80, 0.2);
}

.search-wrapper .search-section.open {
  border-radius: 36px 36px 0 0;
}

.search-wrapper .search-section .input-wrapper {
  margin: 0 31px;
  position: relative;
}

.search-wrapper .search-section .input-wrapper i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4c5490;
  cursor: pointer;
  transition: 0.2s linear;
}

.search-wrapper .search-section .input-wrapper i:hover {
  opacity: 0.7;
}

.search-wrapper .search-section input {
  width: 300px;
  background: none;
  border-color: #7b82bb;
  border-width: 0 0 2px 0;
  border-style: solid;
  line-height: 35px;
  color: #4c5490;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s linear;
}

.search-wrapper .search-section input:focus {
  outline: none;
  border-color: #4c5490;
}

.country-section .title h2 {
  text-align: center;
}

.country-section .list-country {
  padding: 1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.excursion-section {
  max-width: 1100px;
  margin: 0 auto;
}

.excursion-section section h2 {
  color: #383838;
  font-size: 27px;
}

.excursion-section section h3 {
  color: #232323;
  font-size: 23px;
  font-weight: 700;
}

.excursion-section section > p {
  font-weight: 300;
  font-size: 18px;
  margin: 0;
}

.excursion-section section ul.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.excursion-section section ul.list li {
  font-family: "Source Sans Pro", sans-serif;
  position: relative;
  font-weight: 400;
  font-size: 18px;
}

.excursion-section section ul.list li.marker::after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #232323;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.excursion-section section ul.list li.marker {
  padding-left: 1em;
}

.excursion-section section ul.list li .time {
  font-weight: 600;
}

.excursion-section section .variation-options ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.excursion-section section .variation-options ul li .time {
  font-weight: 900;
}

.excursion-section .variations-wrapper {
  margin-top: 15px;
}

.excursion-section .variations-wrapper .variations-wrapper_tip {
  font-size: 14px;
}

.excursion-section .variation-section {
  display: flex;
  align-items: center;
}

.excursion-section .variation-section > div {
  margin-left: 25px;
}

.excursion-section .variation-section > div:first-child {
  margin-left: 0;
}

.excursion-section .description p {
  font-weight: 300;
  font-size: 22px;
  margin: 0;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
}

.excursion-section .name-variation {
  display: inline-block;
  font-size: 27px;
  font-family: "Ropa";
  color: #313131;
  font-weight: 400;
}

.excursion-section .variation-country {
  height: 21px;
  vertical-align: middle;
}

.excursion-section .variation-country ~ span {
  vertical-align: middle;
  margin-left: 5px;
}

.excursion-section .price-section {
  display: inline-flex;
  align-items: center;
  font-family: "Ropa";
  font-size: 19px;
}

.excursion-section .price-section:first-child .icon {
  font-size: 30px;
}

.excursion-section .price-section:first-child .icon.single {
  padding-right: 10px;
}

.excursion-section .price-section:last-child {
  margin-left: 10px;
}

.excursion-section .price-section:last-child.single {
  margin-left: 0;
}

.excursion-section .prices {
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.excursion-section .prices .from-label {
  font-size: 19px;
  padding-right: 10px;
}

.excursion-section .variations-excursion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.excursion-section .variations-excursion .variation {
  max-width: 500px;
  flex: 500px;
  padding: 1em 0;
}

.excursion-section .variations-excursion .variations-top {
  position: absolute;
  right: -7px;
  top: -10px;
  color: white;
  border-radius: 10px;
  padding: 3px 5px;
  background: #f5af19;
  background: linear-gradient(to right, #f5af19, #f12711);
}

.excursion-section .variations-excursion .variations-top > span {
  font-size: 18px;
}

.excursion-section .excursion-gallery {
  padding-bottom: 25px;
  height: 400px;
  margin-top: 25px;
}

.excursion-section .excursion-gallery .excursion-image {
  max-height: 400px;
  padding: 0 10px;
}

.excursion-section .excursion-gallery .excursion-image img {
  cursor: pointer;
  max-height: inherit;
  margin: 0 auto;
  display: block;
}

.comments-wrapper .comments {
  list-style-type: none;
}

.comments-wrapper .comments .comment p.comment__message {
  white-space: normal;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  margin-top: 5px;
}

.comments-wrapper .comments .comment .comment__top-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

.comments-wrapper .comments .comment .comment__top-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.comments-wrapper .comments .comment .comment__profile {
  height: 50px;
  width: 50px;
  background-color: #ededed;
  overflow: hidden;
  border-radius: 50%;
}

.comments-wrapper .comments .comment .comment__profile img {
  height: inherit;
  width: inherit;
}

.comments-wrapper .comments .comment .comment__date {
  font-weight: 300;
}

.comments-wrapper .comments .comment .file-section {
  margin-top: 25px;
}

.comments-wrapper .comment_related-links-wrapper {
  text-align: left;
  margin-top: 5px;
}

.comments-wrapper .comment_related-links {
  text-align: left;
}

.comments-wrapper .comment_related-links span,
.comments-wrapper .comment_related-links a {
  color: #7ac1d9;
}

.comments-wrapper .comment-text-wrapper {
  margin-top: 20px;
}

.rating-section {
  display: flex;
}

.rating-section .rating-section__label {
  font-weight: 300;
  font-size: 17px;
  color: #5f5f5f;
}

.rating-section .comment-stars {
  margin-left: 10px;
}

.file-section {
  display: flex;
  flex-wrap: wrap;
}

.file-section__image-wrapper {
  width: 200px;
  overflow: hidden;
  position: relative;
  height: 175px;
  margin-left: 5px;
  margin-top: 5px;
}

.file-section__image-wrapper:first-child {
  margin-left: 0;
}

.file-section__image-wrapper img {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.file-section__image-wrapper .file-section__close-button {
  z-index: 1;
  color: black;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffffad;
  border-bottom-left-radius: 50%;
  right: -5px;
  top: -5px;
  position: absolute;
  font-size: 16px;
  border: none;
}

.comment-stars {
  color: #ffd665;
  border-radius: 15px;
  display: inline-flex;
  box-sizing: border-box;
}

.comment-stars .star {
  cursor: pointer;
  font-size: 21px;
  transition: 0.2s linear;
}

.comment-stars:hover .star {
  color: #f3b60c;
}

.list-excursion {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.country {
  width: 33%;
  height: 275px;
  padding: 5px;
  box-sizing: border-box;
}

.country .wrapper {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.country .wrapper:hover .image img {
  transform: translate(-50%, -50%) scale(1.05);
}

.country .image {
  position: absolute;
  height: inherit;
  width: 100%;
  cursor: pointer;
}

.country .image > div {
  height: inherit;
  width: inherit;
  position: relative;
  display: block;
}

.country .image > div .background {
  position: absolute;
  left: 0;
  right: 0;
  background-size: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: blur(30px);
}

.country .image > div img {
  transition: 0.6s linear;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 2;
}

.country .information {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  height: 75px;
  color: white;
  text-shadow: 1px 0px black;
  z-index: 2;
}

.country .information .title {
  font-size: 25px;
  font-weight: bold;
}

.country .information .description {
  font-weight: 300;
  font-size: 21px;
}

.list-excursion .excursion {
  width: 33%;
  padding: 5px;
  box-sizing: border-box;
  max-width: 500px;
}

.list-excursion .excursion .wrapper {
  width: 100%;
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 350px;
  max-width: 500px;
}

.list-excursion .excursion .image {
  height: 260px;
  position: relative;
  background-color: #ececec;
}

.list-excursion .excursion .image > div {
  height: inherit;
  width: inherit;
  text-decoration: none;
  position: relative;
  display: block;
  overflow: hidden;
}

.list-excursion .excursion .image > div .background {
  position: absolute;
  left: 0;
  right: 0;
  background-size: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: blur(30px);
}

.list-excursion .excursion .image > div img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 2;
}

.list-excursion .excursion .image .header_info {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 5px;
  box-sizing: border-box;
  z-index: 3;
  height: 100%;
  text-decoration: none;
}

.list-excursion .excursion .image .header_info .header_info__hit {
  padding: 2px 5px;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 5px;
  background: #f12711;
  background: linear-gradient(to right, #f5af19, #f12711);
}

.list-excursion .excursion .information {
  box-sizing: border-box;
  padding: 0 5px;
  color: initial;
}

.list-excursion .excursion .information h3 {
  font-size: 18px;
  margin: 10px 0 0 0;
  color: #404040;
}

.list-excursion .excursion .information > p {
  font-weight: 300;
  font-size: 17px;
  margin: 5px 0;
}

.list-excursion .excursion .information .stars {
  color: #f3b60c;
  border-radius: 15px;
  display: flex;
  box-sizing: border-box;
}

.list-excursion .excursion .information .stars .star {
  font-size: 21px;
}

.list-excursion .excursion .information .information__comments {
  color: #404040;
  display: flex;
  align-items: center;
}

.list-excursion .excursion .information .information__comments .information__comments-total {
  font-size: 14px;
  font-weight: 400;
  padding-left: 5px;
}

.list-excursion .excursion .information .price > div {
  display: inline-block;
  text-align: center;
}

.list-excursion .excursion .information .price > div > p {
  font-weight: 500;
  font-size: 18px;
  margin: 0;
}

.list-excursion .excursion .information .price .adult img {
  height: 55px;
}

.list-excursion .excursion .information .price .teen img {
  height: 45px;
}

.list-excursion .excursion .information .button-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 0;
  color: #069bc1;
}

.list-excursion .excursion .information .button-link .button-link__icon {
  margin-left: 5px;
}

.hours {
  height: 35px;
  width: 35px;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 50%;
  padding: 5px;
  color: #eaeaea;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-end;
  cursor: pointer;
}

.hours .favorite {
  position: absolute;
  color: #d86868db;
  text-shadow: 0px 1px #929292;
  opacity: 0.7;
  transition: 0.2s linear;
}

.hours .favorite__empty-star {
  opacity: 0.7;
  z-index: 1;
}

.hours .favorite__full-star {
  opacity: 0;
  z-index: 2;
}

.hours:hover .favorite__empty-star {
  opacity: 0;
}

.hours:hover .favorite__full-star {
  opacity: 1;
}

.rules-wrapper {
  background-color: #ececec;
  border-bottom: 1px solid #d0d0d0;
  border-top: 1px solid #e4e4e4;
}

.rules-wrapper .rules {
  justify-content: space-between;
  display: flex;
  max-width: 1200px;
  padding: 20px 100px;
  margin: 0 auto;
}

.rules-wrapper .rules .rule {
  text-align: center;
}

.comments {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.comments .splide__pagination {
  display: none;
}

.comments .splide__pagination .splide__pagination__page.is-active {
  background: black;
}

.comments .comment {
  margin: 20px auto 0 auto;
}

.comments .comment:first-child {
  margin-top: 0;
}

.comments .stars {
  display: flex;
  justify-content: center;
}

.comments .name .username,
.comments .name .excursion {
  font-weight: bold;
}

.comments .name > span {
  display: inline-block;
  padding-right: 5px;
}

.comments .name > span:last-child {
  padding-right: 0;
}

footer {
  background: #151515;
  color: white;
}

footer .contact-list {
  list-style-type: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

footer .contact-list li {
  margin-left: 15px;
}

footer .contact-list li:first-child {
  margin-left: 0;
}

footer .contact-list li img {
  height: 32px;
  cursor: pointer;
  transition: 0.2s linear;
}

footer .contact-list li img:hover {
  opacity: 0.7;
}

footer .wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

footer .wrapper .menu-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1em;
  max-width: 650px;
  margin: 0 auto;
}

footer .wrapper .menu-list .footer-links h3 {
  margin: 10px 0;
}

footer .wrapper .menu-list .footer-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer .wrapper .menu-list .footer-links ul li {
  font-weight: 300;
  padding: 6px 0;
}

footer .wrapper .menu-list .footer-links ul li a {
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: 0.2s linear;
}

footer .wrapper .menu-list .footer-links ul li a:hover {
  opacity: 0.7;
}

footer .wrapper .contact {
  padding: 2em 0;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

footer .wrapper .contact > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s linear;
}

footer .wrapper .contact > a:hover {
  opacity: 0.7;
}

footer .phone {
  font-size: 20px;
  font-family: "Ropa";
}

footer .separate {
  border-top: 1px solid #313131;
}

footer .separate .footer-sub-section {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  padding: 1em 0;
  font-weight: 300;
  text-align: center;
}

footer .separate .footer-sub-section a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s linear;
}

footer .separate .footer-sub-section a:hover {
  opacity: 0.7;
}

.dropdown__menu {
  top: 100%;
  right: 0;
  z-index: 10;
  overflow-y: auto;
  padding: 0;
  background: border-box;
  background-color: #f3f3f3;
  background-clip: padding-box;
  width: 100%;
  box-sizing: border-box;
  max-height: 500px;
  overflow-y: auto;
}

.dropdown__menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  padding: 0.8rem 0 0.8rem 2rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  border-radius: 0 50px 50px 0;
}

.dropdown__menu-link:hover {
  color: #17bf63;
  background-color: rgba(79, 192, 141, 0.1);
}

.dropdown__menu-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.dropdown__menu-text {
  font-weight: 300;
  margin-left: 1rem;
  margin-right: 1rem;
}

.dropdown__menu li {
  padding: 10px 5px 10px 5px;
  border-bottom: 1px solid #e5e6ea;
  transition: 0.1s linear;
  cursor: pointer;
  background-color: transparent;
}

.dropdown__menu li:not(.title-option):hover {
  background-color: #e8e8e896;
}

.dropdown__menu ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin: 0;
}

.slide-fade-enter-active,
.slide-fade-leave-active {
  transition: all 0.6s;
}

.slide-fade-enter,
.slide-fade-leave-active {
  opacity: 0;
}

.slide-fade-enter {
  transform: translateX(31px);
}

.slide-fade-leave-active {
  transform: translateX(-31px);
}

.dropdown-enter-active,
.dropdown-leave-active {
  transition: all 1s;
}

.dropdown-enter,
.dropdown-leave-to {
  opacity: 0;
  transform: translateY(30px);
}

.main {
  margin: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main__subtitle {
  color: #4f5959;
  font-weight: 100;
  margin-bottom: 2rem;
}

.main__link {
  margin-right: 1.5rem;
  display: inline-block;
}

.main__link:last-child {
  margin-right: 0;
}

.main__svg {
  width: 2rem;
  height: 2rem;
  opacity: 0.6;
  color: #94a2b0;
}

.main__svg:hover {
  color: #ffad1f;
}

.header-variation {
  display: flex;
  height: 100%;
  justify-content: space-between;
  font-weight: 400;
  font-family: Sans;
}

.header-variation p {
  margin: 0;
  line-height: 22px;
}

.header-variation .header-info {
  display: table;
  height: 100%;
}

.header-variation .header-info .info-row {
  display: table-row;
  height: 50%;
}

.header-variation .header-info .info-row .name-variation {
  display: inline-block;
  margin-top: 5px;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 275px;
}

.header-variation .header-info .info-row .variation-country {
  height: 21px;
  vertical-align: middle;
}

.header-variation .header-info .info-row .variation-country ~ span {
  vertical-align: middle;
  margin-left: 5px;
}

.header-variation .variation-price {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.header-variation .variation-price > p {
  font-family: "Source Sans Pro", sans-serif;
}

.header-variation .variation-price > p .currency,
.header-variation .variation-price > p .price {
  font-weight: 600;
}

.header-variation .variation-price > p .age {
  font-weight: 500;
}

.header-variation .variation-price-private {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
  padding: 5px;
}

.header-variation .variation-price-private > p {
  font-family: "Source Sans Pro", sans-serif;
}

.header-variation .variation-price-private > p .currency,
.header-variation .variation-price-private > p .price {
  font-weight: 600;
}

.header-variation .variation-price-private > p .transport {
  display: inline-flex;
  align-items: center;
}

.header-variation .variation-price-private > p .transport > span:first-child {
  padding-right: 5px;
}

.body-variation {
  font-family: Sans;
}

.body-variation .variation-options ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.body-variation .variation-options ul li .time {
  font-weight: 900;
}

.body-variation .variation-options .option {
  display: flex;
  align-items: flex-start;
  padding-bottom: 5px;
}

.body-variation .variation-options .option .marker {
  width: 25px;
  height: 10px;
  position: relative;
  margin-top: 7px;
}

.body-variation .variation-options .option .marker.circle::after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #232323;
  border-radius: 50%;
  position: absolute;
  left: 3px;
}

.body-variation .variation-options .option .option-text {
  width: calc(100% - 25px);
}

.body-variation .variation-options .option .option-text .text-marker-wrapper {
  width: 100px;
  display: inline-block;
}

.body-variation .variation-options .option.text-marker .marker {
  display: none;
}

.body-variation .variation-options .option.text-marker .option-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.body-variation .variation-options .option.text-marker .edit-option-text {
  display: inline-block;
  width: calc(100% - 125px);
}

.body-variation .variation-gallery .splide {
  width: 100%;
}

.body-variation .variation-gallery .splide .splide__track .splide__list .splide__slide {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.body-variation .variation-gallery img {
  max-height: 300px;
  padding: 0 5px;
}

.accordion.accordion-opened .header-variation .header-info .info-row .name-variation {
  white-space: initial;
}

.accordion {
  width: 100%;
  background-color: #e4e1e1;
  border-radius: 5px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #bdbdbd;
}

.accordion .header {
  height: 70px;
  padding: 2px 10px 2px 30px;
  position: relative;
  color: black;
  cursor: pointer;
  box-sizing: border-box;
}

.accordion .header-icon {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: rotate(0deg) translateY(-50%);
  transform-origin: center top;
  transition-duration: 0.3s;
}

.accordion .body {
  overflow: hidden;
  border-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  transition: 150ms ease-out;
  width: 100%;
}

.accordion .body-inner {
  padding: 10px 20px 10px 25px;
  overflow-wrap: break-word;
}

.accordion .header-icon.rotate {
  transform: rotate(180deg) translateY(-50%);
  transition-duration: 0.3s;
}

.accordion.purple {
  background-color: #8c618d;
}

.accordion.purple .body {
  border-color: #8c618d;
}

section.title-section h2,
section.title-section h3 {
  text-align: center;
  font-family: "Sans";
  font-weight: 900;
}

section.title-section h2 {
  font-size: 34px;
}

section.title-section h3 {
  font-size: 30px;
  margin: 20px 0;
  text-transform: uppercase;
}

section.excursion__gallery-section,
section.excursion__comments-section {
  margin-top: 50px;
}

.dropdown-option > a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.dropdown-option.excursion-option > a {
  justify-content: space-between;
}

.dropdown-option.city-option > a,
.dropdown-option.country-option > a {
  justify-content: flex-start;
}

.dropdown-option .text-option {
  position: relative;
}

.dropdown-option .text-option i {
  display: none;
}

.dropdown-option .text-option.icon {
  padding-left: 25px;
}

.dropdown-option .text-option.icon i {
  display: initial;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 21px;
  color: #5d67b7;
}

.dropdown-option .name {
  margin: 0;
  font-size: 16px;
  padding: 2px 0;
  font-weight: 400;
  max-width: 230px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-option .description {
  margin: 0;
  font-size: 14px;
  padding: 2px 0;
  font-weight: 300;
}

.dropdown-option .price {
  font-weight: 300;
}

.title-option {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 15px;
  color: #565656;
}

.container-custom {
  padding: 12px 0;
}

.container-list .container-custom p.container-title {
  font-weight: bold;
}

header .header__mobile-button {
  display: none;
  cursor: pointer;
}

header .header__mobile-button .header__hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .header__mobile-button .header__hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

header .header__mobile-button .header__hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

header .header__mobile-button .header__hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

header .header__mobile-button .header__hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

@media (max-width: 1100px) {
  header {
    padding: 0 15px;
  }

  .banner .wrapper-info {
    padding-right: 15px;
    padding-left: 15px;
  }

  .country-section .list-country .country {
    width: 50%;
  }

  .excursion-section .list-excursion .excursion {
    width: 50%;
  }

  .license-page {
    padding: 15px;
  }

  .license-page h2 {
    text-align: center;
  }

  .license-page .document {
    width: 100%;
  }
}

@media (max-width: 767px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
  }

  header.header_mobile-nav-show .header__hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  header.header_mobile-nav-show .header__hamburger-lines .line2 {
    transform: scaleY(0);
  }

  header.header_mobile-nav-show .header__hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  header.header_mobile-nav-show .header__section .header__navigation-section {
    right: 0;
  }

  header .header__mobile-button {
    display: block;
  }

  header .header_logo {
    width: initial;
  }

  header .contact-section.mobile-contact-section {
    display: flex;
  }

  header .header__section .header__navigation-section {
    flex-direction: column-reverse;
    position: fixed;
    background: white;
    bottom: 0;
    right: -400px;
    width: 400px;
    height: calc(100% - 60px);
    justify-content: flex-end;
    transition: linear 0.3s;
    padding: 50px 0;
    z-index: -1;
    justify-content: space-between;
  }

  header .header__section .header__navigation-section .nav-menu {
    max-height: 25px;
    height: initial;
    flex-direction: column;
    width: 100%;
  }

  header .header__section .header__navigation-section .nav-menu .nav-option {
    width: 100%;
    height: initial;
  }

  header .header__section .header__navigation-section .nav-menu .nav-option a {
    width: 100%;
    height: initial;
    justify-content: flex-end;
    padding: 5px 20px;
    font-size: 20px;
  }

  .banner .banner-image,
  .banner.banner-main .banner-image {
    height: 100%;
    width: initial;
  }

  .banner .banner-image img,
  .banner.banner-main .banner-image img {
    height: inherit;
    width: initial;
  }

  .banner .banner-title > h1,
  .banner.banner-main .banner-title > h1 {
    font-size: 36px;
  }

  .banner .banner-title .banner-description,
  .banner.banner-main .banner-title .banner-description {
    font-size: 21px;
  }

  .banner .wrapper-info,
  .banner.banner-main .wrapper-info {
    padding: 10px;
  }

  .country-section .list-country .country {
    width: 90%;
  }

  .country-section .list-country .country .image img {
    height: 100%;
    width: auto;
  }

  .accordion .body-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .excursion-section {
    padding: 0 15px;
  }

  .excursion-section .list-excursion .excursion {
    width: 90%;
    padding: 15px 5px;
  }

  .excursion-section .list-excursion .excursion .information {
    height: auto;
  }

  .excursion-section .list-excursion .excursion .image img {
    height: 100%;
    width: auto;
  }

  .excursion-section .description p {
    font-size: 18px;
  }

  .excursion-section section p {
    font-size: 16px;
  }

  .excursion-section section p.container-title {
    white-space: initial;
  }

  .excursion-section section h2 {
    font-size: 21px;
  }

  .excursion-section section h3 {
    font-size: 19px;
  }

  .excursion-section .variation section ul.list li {
    font-size: 14px;
  }

  .excursion-section .variation section h2 {
    font-size: 19px;
  }

  .excursion-section .variation section h3 {
    font-size: 17px;
  }

  .header-variation .header-info .info-row .name-variation {
    font-size: 17px;
    line-height: 17px;
  }

  .banner .wrapper-info .breadcrumbs {
    flex-wrap: wrap;
  }

  .comments {
    padding-bottom: 0;
  }

  .comments .splide {
    padding-bottom: 35px;
  }

  .comments .splide .splide__pagination {
    display: block;
  }

  .comments .splide .splide__arrows {
    display: none;
  }

  section.title-section h2 {
    font-size: 24px;
  }

  footer .separate .footer-sub-section {
    justify-content: center;
  }

  footer .wrapper {
    flex-wrap: wrap;
  }

  footer .wrapper > div {
    flex: 50%;
    padding: 15px;
  }

  footer .wrapper .menu-list {
    flex-direction: column;
    gap: 25px;
    justify-content: center;
  }

  footer .wrapper .contact {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 500px) {
  .search-wrapper .search-section {
    width: 90%;
  }

  .search-wrapper .search-section input {
    width: 100%;
  }

  header .header__section .header__navigation-section {
    width: 100%;
    right: -100%;
  }

  .rules-wrapper .rules {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 20px 0;
  }

  .rules-wrapper .rules .rule {
    text-align: left;
    padding: 20px 0;
    width: 50%;
  }

  .excursion-section .variations-wrapper .variations-excursion .variation {
    max-width: 100%;
    flex: 100%;
  }

  .dropdown-option {
    white-space: initial;
  }

  .dropdown-option > a {
    flex-wrap: wrap;
  }

  .accordion .header {
    height: initial;
  }

  .header-variation {
    height: initial;
    flex-wrap: wrap;
  }

  .header-variation .header-info {
    height: 60px;
  }

  .header-variation .variation-price {
    align-items: flex-start;
  }

  .file-section__image-wrapper {
    width: calc(50% - 5px);
  }
}

