html,
body {
  margin: 0 0;
  font-family: "Helvetica", sans-serif;
}

a {
  text-decoration: none;
}

a, button {
  outline: none;
}

p {
  margin: auto;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.package-list-container {
  max-width: calc(1200px - 12rem);
  margin: auto;
  padding: 0 1rem;
  position: relative;
}

.carousel .swiper-container {
  width: 100%;
  height: 100%;
}
.carousel .swiper-button-white {
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  display: flex;
  cursor: pointer;
  outline: none;
}
.carousel .swiper-button-white p {
  width: 40px;
  height: 40px;
  border-radius: 5rem;
  background: #d0b783;
}
.carousel .swiper-button-white p i {
  width: 100%;
  position: absolute;
  transform: translate(40%, -4%);
  font-size: 2rem;
  color: #191919;
  font-style: initial;
}
.carousel .swiper-button-white.swiper-bottom-button-next {
  right: 0;
}
.carousel .swiper-button-white.swiper-bottom-button-prev {
  left: 0;
}
.carousel .swiper-button-white:hover {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .carousel .swiper-button-white {
    display: none;
  }
}

#whatsApp-btn {
  color: white;
  display: none;
  background: #79b94a;
  border-radius: 57%;
  box-shadow: 2px 2px 27px -1px #333333;
  position: fixed;
  z-index: 10;
  font-size: 2rem;
  padding: 0.4rem 0.7rem;
  margin: 0 16px 16px;
  bottom: 0;
  left: 0;
}
#whatsApp-btn.show {
  display: block;
}

#go-to-top {
  border: none;
  height: 3rem;
  width: 3rem;
  z-index: 3;
  border-radius: 0.5rem 0 0 0.5rem;
  position: fixed;
  bottom: 5rem;
  right: 0;
  background: rgba(208, 183, 131, 0.7);
  color: #191919;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.175);
  transform: translate(4.8rem, 0);
  transition: transform 0.2s ease;
}
#go-to-top.show {
  transform: translate(0, 0);
}

.shadow {
  width: 100%;
  z-index: 10;
  position: absolute;
  -webkit-box-shadow: 0 6px 90px 130px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 6px 90px 130px rgba(0, 0, 0, 0.7);
  box-shadow: 0 6px 90px 130px rgba(0, 0, 0, 0.7);
}

#header-nav.header-with-color {
  background: #f7f7f7;
}
#header-nav.header-with-color .content {
  color: #191919;
}
#header-nav.header-with-color nav > ul > li > a {
  color: #191919 !important;
  font-weight: bold;
}

.container-navbar {
  position: fixed;
  z-index: 11;
  width: 100%;
}
.container-navbar .navbar {
  height: 100px;
  max-width: 1200px;
  margin: auto;
  padding: 0.5rem 1rem;
  display: flex;
  color: white;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.container-navbar .navbar a {
  margin: auto 0;
  color: #b19357;
}
.container-navbar .navbar a img {
  max-height: 100px;
}
.container-navbar .navbar a img.logo-colored {
  display: none;
}
.container-navbar .navbar .contacts, .container-navbar .navbar nav > ul {
  display: flex;
  justify-content: flex-end;
}
.container-navbar .navbar .menu-btn {
  font-size: 1.3rem;
  display: none;
}
.container-navbar .navbar .content {
  margin: auto 0;
}
.container-navbar .navbar .content nav > ul {
  margin: 0.5rem 0 0;
  list-style: none;
  text-transform: uppercase;
  padding: 0;
}
.container-navbar .navbar .content nav > ul > li {
  height: 27px;
  position: relative;
}
.container-navbar .navbar .content nav > ul > li > a {
  padding: 0.5rem 0.5rem;
  vertical-align: -webkit-baseline-middle;
  color: white;
}
.container-navbar .navbar .content nav > ul > li ul {
  top: 27px;
  width: 200px;
  position: absolute;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.5);
}
.container-navbar .navbar .content nav > ul > li ul li a {
  color: white;
  padding: 0.5rem;
  display: block;
}
.container-navbar .navbar .content nav > ul > li:hover {
  background: #d0b783;
}
.container-navbar .navbar .content nav > ul > li:hover > a {
  color: #191919;
}
.container-navbar .navbar .content nav > ul > li:hover ul {
  display: block;
}
.container-navbar .navbar .content nav > ul > li:hover ul li:hover {
  background: #d0b783;
}
.container-navbar .navbar .content nav > ul > li:hover ul li:hover a {
  color: #191919;
}
@media (max-width: 768px) {
  .container-navbar .navbar .content .contacts {
    display: none;
  }
  .container-navbar .navbar .content .menu-btn {
    display: block;
  }
  .container-navbar .navbar .content nav {
    display: none;
    position: absolute;
    top: 109px;
    left: 0;
    background: #f7f7f7;
    width: calc(100% - 4rem);
    padding: 2rem;
  }
  .container-navbar .navbar .content nav > ul {
    flex-direction: column;
  }
  .container-navbar .navbar .content nav > ul > li {
    height: auto;
  }
  .container-navbar .navbar .content nav > ul > li a {
    border-bottom: 0.05px solid #e0e0e0;
    display: block;
  }
  .container-navbar .navbar .content nav > ul > li ul {
    top: 0;
    position: relative;
    width: 100%;
  }
  .container-navbar .navbar .content nav.display {
    display: block;
  }
  .container-navbar.headroom--top.headroom--not-bottom nav {
    background: #d0b783;
  }
}

.social-networks {
  position: fixed;
  z-index: 2;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: space-evenly;
}
.social-networks .network {
  display: flex;
  flex-direction: column;
}
.social-networks .network a {
  background: rgba(208, 183, 131, 0.7);
  margin: 0.5rem 0;
  width: 50px;
  height: 50px;
}
.social-networks .network a i {
  color: #000000;
  display: flex;
  height: 100%;
}
.social-networks .network a i::before {
  margin: auto;
}
.social-networks .network a svg {
  width: 19px;
  height: 100%;
  display: flex;
  margin: auto;
  color: black;
}

.sticky {
  position: fixed;
  background: #f7f7f7;
  width: 100%;
  top: 0;
  z-index: 3;
}
.sticky img {
  display: none !important;
}
.sticky .logo-colored {
  display: block !important;
}
.sticky .content {
  color: #191919;
}
.sticky nav > ul > li > a {
  color: #191919 !important;
  font-weight: bold;
}

.footer {
  background: #292728;
  display: flex;
  justify-content: space-between;
}
.footer h5 {
  font-family: "Cinzel", serif;
  color: white;
  font-weight: 300;
  font-size: 0.9rem;
}
.footer .social {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  margin: auto 0;
  border-right: 1px solid #b6a175;
}
.footer .social a {
  color: white;
  margin: 0.5rem;
  transition: color 0.5s ease;
}
.footer .social a:hover {
  color: #b6a175;
}
.footer .info, .footer .links, .footer .logo {
  margin: auto;
}
.footer .info {
  margin: auto 1rem;
  width: 30%;
}
.footer .info i {
  display: none;
  color: #b6a175;
}
.footer .info p {
  font-family: "Roboto", sans-serif;
  color: #b6a175;
  font-weight: 300;
  font-size: 0.9rem;
  margin: 0;
}
.footer .links {
  width: 40%;
}
.footer .links .list {
  display: flex;
  flex-wrap: wrap;
}
.footer .links .list a {
  flex: 1 0 calc(30% - 1rem);
  white-space: nowrap;
  color: #b6a175;
  padding-bottom: 0.5rem;
  margin: 0.5rem;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.footer .links .list a:hover {
  color: #d0b783;
}
.footer .logo {
  width: 30%;
  padding: 1rem;
}
.footer .logo img {
  display: block;
  margin: auto;
  width: 80px;
}
@media (max-width: 1100px) {
  .footer {
    flex-direction: column;
  }
  .footer .social {
    padding: 0.5rem;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid #3f3b3d;
  }
  .footer .info {
    margin: 0;
  }
  .footer .info i {
    display: block;
    padding: 0 0.5rem 0.5rem 0;
  }
  .footer .info .row {
    border-bottom: 1px solid #3f3b3d;
    margin: 0.5rem 0;
  }
  .footer .info, .footer .links {
    width: calc(100% - 2rem);
    padding: 1rem;
  }
}

.home-page .intro {
  text-align: center;
  padding: 2rem 0;
}
.home-page .intro h2 {
  font-family: "minion-pro", serif;
  font-weight: lighter;
  font-size: 1.9rem;
  color: #5d4e25;
}
.home-page .intro p {
  font-family: "Merriweather", serif;
  font-weight: 300;
  max-width: 1000px;
  text-align: justify;
  text-align-last: center;
  padding: 0 1rem;
  font-size: 1.2rem;
  color: #484848;
}
.home-page .list {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}
.home-page .list .card {
  position: relative;
  display: grid;
  margin-bottom: 0.75rem;
}
.home-page .list .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.home-page .list .card .title {
  position: absolute;
  padding: 1rem;
  top: 0;
  width: calc(40% - 2rem);
  background: rgba(0, 0, 0, 0.3);
  height: calc(100% - 2rem);
  color: white;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.home-page .list .card .title h3 {
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}
.home-page .list .card .title h4 {
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}
.home-page .list .card .title a {
  color: #191919;
  background: #b19357;
  padding: 0.5rem;
  width: 100px;
  margin: 0 auto;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
}
.home-page .list .card .title a:hover {
  color: rgba(255,255,255,1.00);
  background: rgba(228,165,6,1.00);
}
.home-page .list .card .description {
  position: absolute;
  display: flex;
  color: white;
  text-align: center;
  font-family: "Roboto", sans-serif;
  background: rgba(0, 0, 0, 0.3);
  width: calc(60% - 2rem);
  height: calc(100% - 2rem);
  right: 0;
  padding: 1rem;
  opacity: 0;
}
.home-page .list .card:hover .description {
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
@media (max-width: 768px) {
  .home-page .list .card img {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .home-page .list .card img {
    height: 260px;
  }
}

.header-banner .swiper-container {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}
.header-banner .swiper-container .swiper-slide {
  background-size: cover;
  background-position: center;
}
.header-banner .swiper-container .swiper-slide .banner-info {
  position: absolute;
  bottom: 0;
  left: 2rem;
  color: white;
  font-size: 1.8rem;
  font-family: "EB Garamond", serif;
  text-shadow: #000 1px 1px 5px;
}
.header-banner .swiper-container .swiper-button-white p {
  display: none;
}
@media (max-width: 768px) {
  .header-banner .swiper-container {
    height: 500px;
  }
  .header-banner .swiper-container .swiper-slide .banner-info {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .header-banner .swiper-container {
    height: 350px;
  }
}

.card-thumb form button {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  color: transparent;
  background: transparent;
  border: none;
  z-index: 1;
  outline: none;
  cursor: pointer;
}
.card-thumb a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.card-thumb img {
  border-radius: 0.4rem;
}
.card-thumb h3 {
  background: #d0b783;
  color: #191919;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0.5rem;
  width: calc(100% - 1rem);
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
}
.card-thumb .bottom {
  position: absolute;
  bottom: 4px;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  color: white;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  font-family: "Montserrat", sans-serif;
}
.card-thumb .bottom .info {
  display: flex;
  justify-content: space-between;
}
.card-thumb .bottom .info h4 {
  margin: 0.5rem;
}
.card-thumb .bottom .info .star {
  margin: auto 0.15rem;
  color: #d0b783;
}
.card-thumb .bottom p {
  margin: 0.5rem;
}
@media (max-width: 480px) {
  .card-thumb h3 {
    font-size: 0.9rem;
  }
}

.modal-bottom {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 100;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  -webkit-animation-name: fadeIn;
  /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  /* Add Animation */
}
.modal-bottom .modal-header-container {
  max-width: 1000px;
  margin: auto;
}
.modal-bottom .modal-header-container .modal-header {
  width: calc(100% - 2rem);
  padding: 1rem;
  background-color: #b49351;
  position: relative;
  color: white;
  z-index: 2;
}
.modal-bottom .modal-header-container .modal-header .close {
  color: white;
  float: left;
  font-size: 2rem;
  line-height: 1.1rem;
  font-weight: bold;
}
.modal-bottom .modal-header-container .modal-header .close:hover, .modal-bottom .modal-header-container .modal-header .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-bottom .modal-header-container .modal-header .title {
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
}
.modal-bottom .modal-header-container .modal-header .title h3 {
  margin: 0;
  font-size: 2.5rem;
  font-family: "Cinzel", serif;
}
.modal-bottom .modal-header-container .modal-header .title .stars {
  justify-content: center;
}
.modal-bottom .modal-header-container .modal-header .title .stars .star {
  margin: auto 0.15rem;
  color: white;
}
.modal-bottom .modal-content {
  display: block;
  margin: auto;
  background-color: #fefefe;
  width: 100%;
  height: 80%;
  max-width: 1000px;
  overflow: scroll;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}
.modal-bottom .modal-content .modal-body {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  grid-auto-flow: column;
  padding: 1rem 0;
  height: 137%;
}
.modal-bottom .modal-content .modal-body .modal-body-container {
  width: 100%;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info {
  overflow: auto;
  max-width: 1000px;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto auto auto;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container {
  height: 100%;
  position: relative;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  position: absolute;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .swiper-container {
  width: 100%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .swiper-slide {
  background-size: cover;
  background-position: center;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .gallery-top {
  height: 80%;
  width: 100%;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .gallery-container .image .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .info {
  padding: 2rem 1rem;
}
.modal-bottom .modal-content .modal-body .modal-body-container .added-info .info .bottom-modal-title {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin: 0;
}
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tour-page .breadcrumb {
  padding: 1rem;
  background: #b49351;
  color: #191919;
  font-family: "Montserrat", sans-serif;
}
.tour-page .breadcrumb a {
  color: #191919;
}
.tour-page .breadcrumb a:hover {
  color: white;
}
.tour-page .info .package-title {
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 1.4rem;
  color: rgba(82,82,82,1.00);
  background: rgba(255,255,255,1.00);
  font-family: "minion-pro", serif;
}
.tour-page .info .tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  background: #f3f3f3;
}
.tour-page .info .tabs li {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  margin: 0 0.25rem;
  font-size: 1.25rem;
  font-family: "Cinzel Decorative", cursive;
}
.tour-page .info .tabs li.active {
  background: white;
  border: 1px solid #b19357;
}
.tour-page .info .tabs-content {
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem 1rem;
}
.tour-page .info .tabs-content h3 {
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.tour-page .info .tabs-content li {
  font-family: "Montserrat", sans-serif;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.tour-page .info .tabs-content #overview .itinerary, .tour-page .info .tabs-content #itinerary .itinerary {
  padding: 1rem 0;
}
.tour-page .info .tabs-content #overview .itinerary ul, .tour-page .info .tabs-content #itinerary .itinerary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-page .info .tabs-content #overview .itinerary ul li, .tour-page .info .tabs-content #itinerary .itinerary ul li {
  display: flex;
  margin: 0;
}
.tour-page .info .tabs-content #overview .itinerary ul li .day, .tour-page .info .tabs-content #itinerary .itinerary ul li .day {
  width: 60px;
  min-width: 60px;
  position: relative;
  padding: 1rem;
  margin: 0 1rem 0 0;
  text-align: right;
  border-right: 1px solid;
}
.tour-page .info .tabs-content #overview .itinerary ul li .day:before, .tour-page .info .tabs-content #itinerary .itinerary ul li .day:before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #b19357;
  top: 17px;
  right: -8px;
}
.tour-page .info .tabs-content #overview .itinerary ul li > .row, .tour-page .info .tabs-content #itinerary .itinerary ul li > .row {
  width: 100%;
  justify-content: space-between;
}
.tour-page .info .tabs-content #overview .itinerary ul li > .row .content, .tour-page .info .tabs-content #itinerary .itinerary ul li > .row .content {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  color: #818181;
}
.tour-page .info .tabs-content #overview .itinerary ul li .item, .tour-page .info .tabs-content #itinerary .itinerary ul li .item {
  padding: 0 1rem 1rem;
}
.tour-page .info .tabs-content #overview .itinerary ul li .title, .tour-page .info .tabs-content #itinerary .itinerary ul li .title {
  font-weight: bolder;
}
.tour-page .info .tabs-content #overview .itinerary ul li .title, .tour-page .info .tabs-content #overview .itinerary ul li .experience, .tour-page .info .tabs-content #itinerary .itinerary ul li .title, .tour-page .info .tabs-content #itinerary .itinerary ul li .experience {
  margin: 1rem 1rem 1rem 0;
  font-family: minion-pro,serif;
  color: rgba(82,82,82,1.00);
  font-size: 1.2rem;
}
.tour-page .info .tabs-content #overview .itinerary ul li .pic, .tour-page .info .tabs-content #itinerary .itinerary ul li .pic {
  padding: 1rem 0 2rem 0;
}
.tour-page .info .tabs-content #pricing .options .option .accordion {
  cursor: pointer;
  background: #f3f3f3;
  padding: 0 1rem;
}
.tour-page .info .tabs-content #pricing .options .option .accordion .price {
  display: inline-flex;
  margin-right: 0;
}
.tour-page .info .tabs-content #pricing .options .option .accordion .price b {
  padding: 1rem;
}
.tour-page .info .tabs-content #pricing .options .option .accordion .price .btn-arrow-bottom {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  background-image: url("../images/svg/arrow-bottom.svg");
  transition: all 0.2s;
}
.tour-page .info .tabs-content #pricing .options .option .accordion:hover {
  background: #b19357;
}
.tour-page .info .tabs-content #pricing .options .option .accordion.active .price .btn-arrow-bottom {
  transform: rotate(180deg);
}
.tour-page .info .tabs-content #pricing .options .option .panel {
  border-bottom: 1px solid #e2e2e2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.tour-page .info .tabs-content #pricing .options .option .panel h4 {
  font-family: "Montserrat", sans-serif;
}
.tour-page .info .tabs-content #pricing .options .option .panel .price {
  border: 1px solid #b49351;
  max-width: 500px;
  margin: 1.5rem auto;
}
.tour-page .info .tabs-content #pricing .options .option .panel .price h4 {
  margin: 1.5rem auto;
}
.tour-page .info .tabs-content #pricing .options .option .panel .carousel {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}
.tour-page .info .tabs-content #pricing .options .option .panel .carousel .card-thumb h3 {
  position: relative;
}
.tour-page .info .tabs-content #pricing .options .option .panel .carousel .card-thumb img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tour-page .info .tabs-content #booking {
  background: #f3f3f3;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .tour-page .info .tabs-content #itinerary .itinerary ul li .pic {
    display: none;
  }
}

.tours-page {
  padding: 150px 1rem 2rem;
}

.destinations-page {
  padding: 150px 1rem 2rem;
}
.destinations-page h2 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  text-align: center;
}

.contact-page {
  padding: 150px 1rem 2rem;
}

.about-page {
  padding: 150px 1rem 2rem;
  max-width: 1000px;
  margin: auto;
}
.about-page h1 {
  color: #d0b783;
  margin: 0;
  padding: 3rem 1rem;
  text-align: center;
}
.about-page h2, .about-page h3, .about-page h4, .about-page h5, .about-page h6 {
  color: #d0b783;
}

.resources-page {
  padding: 150px 1rem 2rem;
  max-width: 1100px;
  margin: auto;
}
.resources-page h1 {
  text-align: center;
  font-size: 1.7rem;
  font-family: "Cinzel Decorative", cursive;
  color: #191919;
}
.resources-page .options .option .accordion {
  cursor: pointer;
  background: #f3f3f3;
  padding: 0 1rem;
}
.resources-page .options .option .accordion .right {
  display: inline-flex;
  margin-right: 0;
}
.resources-page .options .option .accordion .right .btn-arrow-bottom {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  background-image: url("../images/svg/arrow-bottom.svg");
  transition: all 0.2s;
}
.resources-page .options .option .accordion:hover {
  background: #b19357;
}
.resources-page .options .option .accordion.active .right .btn-arrow-bottom {
  transform: rotate(180deg);
}
.resources-page .options .option .panel {
  border-bottom: 1px solid #e2e2e2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.resources-page .options .option .panel .info {
  padding: 1rem 0;
}
.resources-page .options .option .panel .info h1, .resources-page .options .option .panel .info h2, .resources-page .options .option .panel .info h3, .resources-page .options .option .panel .info h4, .resources-page .options .option .panel .info h5, .resources-page .options .option .panel .info h6 {
  color: #d0b783;
}
