@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500&family=Poppins:wght@400;600&display=swap");
/* Variables */
:root {
  --main-color: #ffbd00;
  --main-color-dark: #cf9b05;
  --black-color: #121616;
  --black-color-darkest: #040404;
  --white-color: #ffffff;
  --gray-color: #b2b2b2;
  --gray-color-dark: #242529;
  --background-black: #181c1c;
  --font-secondary: "Barlow", sans-serif;
  --font-main: "Poppins", sans-serif;
  --text-xs: 14px;
  --text-sm: 20px;
  --text-md-secondary: 28px;
  --text-md: 32px;
  --text-lg: 48px;
  --text-xl: 64px;
}

html {
  line-height: 1.5em;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-black);
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: var(--font-md);
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 10px;
}

* {
  font-size: var(--text-sm);
}
*::selection {
  color: var(--main-color);
  background: var(--black-color-darkest);
}

h1 {
  font-size: var(--text-lg);
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: var(--text-xl);
  }
}

h2 {
  font-size: var(--text-md-secondary);
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: var(--text-lg);
  }
}

h3 {
  font-size: var(--text-md);
}

h1,
h2,
h3 {
  font-weight: 600;
}

.text-small {
  font-size: var(--text-xs);
}

a {
  text-decoration: none;
  color: var(--main-color);
  font-size: inherit;
}
a:hover {
  color: var(--main-color-dark);
}

.btn {
  background-color: var(--main-color);
  border-radius: 20px;
  border: none;
  color: var(--white-color);
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding: 10px 56px;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 768px) {
  .btn {
    font-size: 24px;
  }
}
.btn:hover {
  cursor: pointer;
  background-color: var(--main-color-dark);
  color: var(--white-color);
}
.btn:active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.btn:focus {
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: none;
}
.btn:focus, .btn:focus-visible {
  outline: 3px solid var(--main-color);
  outline-offset: 3px;
}

.icon-local-container svg {
  font-size: 40px;
}

.icon-transp-container svg {
  font-size: 130px;
}

.color-primary {
  color: var(--main-color);
}

header.pandoras-header {
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  header.pandoras-header {
    margin-bottom: 8em;
  }
}
header.pandoras-header .img-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.27);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 370px;
}
@media only screen and (min-width: 768px) {
  header.pandoras-header .img-header {
    height: 100vh;
  }
}
header.pandoras-header .img-header .intro-text {
  position: absolute;
  padding-top: 3em;
}
header.pandoras-header .img-header .intro-text h1 {
  font-size: var(--text-md);
}
@media only screen and (min-width: 768px) {
  header.pandoras-header .img-header .intro-text h1 {
    font-size: var(--text-xl);
  }
}
header.pandoras-header .img-header .intro-text h2 {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  header.pandoras-header .img-header .intro-text h2 {
    font-size: var(--text-md);
  }
}
header.pandoras-header .img-header .scrolldown {
  position: absolute;
  bottom: 0;
  padding-bottom: 12px;
  display: none;
}
@media only screen and (min-width: 768px) {
  header.pandoras-header .img-header .scrolldown {
    display: block;
  }
}
header.pandoras-header .img-header .scrolldown .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white-color);
  border-radius: 60px;
  position: relative;
}
header.pandoras-header .img-header .scrolldown .mouse::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white-color);
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 40px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 40px;
  }
}

nav.navbar {
  transition: all ease-in-out 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
}
nav.navbar .navbar-brand img {
  height: 56px;
  width: 100px;
}
@media only screen and (min-width: 768px) {
  nav.navbar .navbar-brand img {
    height: 60px;
    width: 120px;
  }
}
nav.navbar .menu-container {
  padding: 1em;
}
nav.navbar .menu-container .header__item--divider {
  height: 1px;
  width: 100%;
  background-color: var(--main-color);
  list-style: none;
  margin-top: 2em;
}
@media only screen and (min-width: 992px) {
  nav.navbar .menu-container .header__item--divider {
    margin-top: 0px;
    height: 1.5em;
    width: 1px;
  }
}
nav.navbar .menu-container .btn-menu {
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  nav.navbar .menu-container .btn-menu {
    display: none;
  }
}
nav.navbar .menu-container .btn-menu i {
  margin-right: 7px;
}
nav.navbar .navbar-nav {
  width: 100%;
  justify-content: end;
  align-items: unset;
}
@media only screen and (min-width: 992px) {
  nav.navbar .navbar-nav {
    align-items: center;
  }
}
nav.navbar .navbar-nav li {
  font-size: 24px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  nav.navbar .navbar-nav li {
    margin-left: 22px;
    font-size: 16px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  nav.navbar .navbar-nav li {
    font-size: 0.9em;
  }
}
nav.navbar .navbar-nav li a {
  color: var(--white-color);
}
nav.navbar .navbar-nav li a:hover {
  color: var(--main-color-dark);
}
nav.navbar .navbar-nav a.booking-nav {
  display: none;
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 8px;
}
nav.navbar .navbar-nav a.booking-nav:hover {
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  nav.navbar .navbar-nav a.booking-nav {
    display: block;
  }
}
nav.navbar .navbar-nav .current_page_item a {
  color: var(--main-color);
}

.menu-scroll {
  background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0px 5px 6px -7px rgba(0, 0, 0, 0.5);
}

.menu-open {
  background-color: rgb(0, 0, 0);
}

.hamburger-icon {
  display: block;
  position: relative;
  height: 48px;
  width: 48px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 992px) {
  .hamburger-icon {
    display: none;
  }
}
.hamburger-icon .icon-1,
.hamburger-icon .icon-2,
.hamburger-icon .icon-3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 25px;
  height: 3px;
  background-color: var(--main-color);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
.hamburger-icon .icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}
.hamburger-icon .icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}

.icon-1.a {
  transform: rotate(40deg);
}

.icon-3.b {
  transform: rotate(-40deg);
}

.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

.bottom-booking {
  display: block;
  width: 100vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #121616;
  position: fixed;
  bottom: 0;
  text-align: center;
  z-index: 999;
}
.bottom-booking .btn-reserva {
  margin: auto;
  align-self: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding: 2px 56px;
  letter-spacing: 0.03em;
  border: 1px solid #121616;
  border-radius: 1rem;
  border-radius: 50px;
  background: var(--main-color);
  box-shadow: -9px -9px 18px #0f1313, 9px 9px 18px #151919;
  color: var(--black-color);
  margin-left: 12px;
}
.bottom-booking img {
  width: 80px;
}

footer.main-footer {
  background-color: var(--black-color-darkest);
  padding: 50px 0px;
}
footer.main-footer .figure img {
  width: 250px;
}
footer.main-footer .footer__contact {
  display: flex;
  flex-direction: column;
}
footer.main-footer .footer__contact p {
  margin-bottom: 6px;
}
footer.main-footer .footer__contact a,
footer.main-footer .legal-advice a {
  color: var(--white-color);
  transition: all 0.2s ease;
  font-size: 16px;
}
footer.main-footer .footer__contact a:hover,
footer.main-footer .legal-advice a:hover {
  color: var(--main-color);
}
footer.main-footer .footer__rrss {
  display: flex;
}
@media only screen and (min-width: 768px) {
  footer.main-footer .footer__rrss {
    justify-content: end;
  }
}
footer.main-footer .footer__rrss .btn {
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: var(--gray-color-dark);
  margin: 10px;
  border-radius: 20px;
  box-shadow: 0 5px 15px -5px var(--black-color);
  color: var(--white-color);
  overflow: hidden;
  position: relative;
  padding: 0.375rem 0.75rem;
}
footer.main-footer .footer__rrss .btn i {
  line-height: 45px;
  font-size: 1.4em;
  transition: 0.2s linear;
}
footer.main-footer .footer__rrss .btn::before {
  content: "";
  position: absolute;
  width: 125%;
  height: 120%;
  background-color: var(--main-color-dark);
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
footer.main-footer .footer__rrss .btn:hover::before {
  animation: hover 0.7s 1;
  top: -10%;
  left: -10%;
}
footer.main-footer .footer__rrss .btn:hover i {
  transform: scale(1.3);
  color: var(--gray-color-dark);
}
@keyframes hover {
  0% {
    top: -110%;
    left: 90%;
  }
  50% {
    top: 10%;
    left: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}
footer.main-footer .legal-advice a {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  footer.main-footer .legal-advice {
    text-align: right;
  }
}

.opinion-box {
  position: relative;
}
.opinion-box::before {
  content: '"';
  position: absolute;
  font-weight: 600;
  font-size: 150px;
  letter-spacing: -0.045em;
  color: var(--main-color);
  font-style: italic;
  left: -60px;
  top: -60px;
  opacity: 0.425;
}

.carousel-item {
  padding: 0 1.2em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .carousel-item {
    padding: 1em 8em;
  }
}

.price-table p {
  font-size: var(--text-md);
}

.aside-prices {
  height: fit-content;
}

div.single__post {
  padding-top: 4.75em;
}
@media only screen and (min-width: 992px) {
  div.single__post {
    padding-top: 2em;
  }
}
div.single__post article .img-container > figure {
  height: 280px;
}
@media only screen and (min-width: 992px) {
  div.single__post article .img-container > figure {
    height: 520px;
  }
}
div.single__post article .img-container > figure > img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
div.single__post article .title__post {
  font-size: var(--text-lg);
}

div.blog-cards .card {
  height: 280px;
  border: none;
  color: var(--white-color);
  border-radius: 0.55em;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 992px) {
  div.blog-cards .card {
    height: 400px;
  }
}
div.blog-cards .card:hover {
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.09), 0 10px 24px rgba(0, 0, 0, 0.1);
}
div.blog-cards .card > img {
  height: inherit;
  border-radius: calc(0.55em - 1px);
}
div.blog-cards .card > .card-img-overlay {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  background: rgba(0, 0, 0, 0.3);
  border-radius: calc(0.55em - 1px);
}
div.blog-cards .card > .card-img-overlay :is(h4, .card-text) {
  width: 100%;
}
div.blog-cards .card > .card-img-overlay .card-date {
  font-size: 16px;
  color: var(--main-color);
}
div.blog-cards .card.more-posts {
  height: 300px;
}

div.pagination {
  margin-bottom: 4em;
}
div.pagination .page-numbers {
  margin-left: 10px;
  margin-right: 10px;
}
div.pagination .page-numbers.current {
  padding: 0.5rem 0.75rem;
  line-height: 0.7;
  border-radius: 50px;
  color: var(--black-color);
  background-color: var(--main-color);
  border: none;
}

section.side-blog {
  background-color: var(--black-color);
  border-radius: 0.55em;
}
section.side-blog article.card-more-pages {
  margin-top: 3em;
}
section.side-blog article.card-more-pages .card {
  border: none;
}
section.side-blog article.card-more-pages .card .card-body {
  background-color: var(--black-color-darkest);
}
section.side-blog article.card-more-pages .card p:first-child {
  color: var(--white-color);
}

.tags-container i {
  color: var(--main-color);
  font-size: var(--text-xs);
  margin-right: 12px;
}
.tags-container .list-tags {
  list-style: none;
  padding-left: 0;
}

.bottom-line-green:after {
  background-color: var(--main-color);
  position: relative;
  bottom: 0;
  top: 5px;
  content: "";
  display: block;
  height: 2px;
  width: 130px;
}

/*# sourceMappingURL=style-my.css.map */
