body {
  font-family: "Cereal", Arial, sans-serif;
  font-weight: 550;
  color: #848486;
  margin: 0;
  padding-top: 60px;
}
@font-face {
  font-family: "Cereal";
  src: url("https://a0.muscache.com/airbnb/static/airbnb-dls-web/build/fonts/Airbnb_Cereal-Book-9a1c9cca9bb3d65fefa2aa487617805e.woff2") format("woff2"), url("https://a0.muscache.com/airbnb/static/airbnb-dls-web/build/fonts/Airbnb_Cereal-Book-aa38e86e3f98554f9f7053d7b713b4db.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h2 {
    font-size: 20px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h3 {
    font-size: 18px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
}
@media (min-width: 576px) {
  h1 {
    font-size: 36px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h2 {
    font-size: 23px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
  h3 {
    font-size: 23px;
    font-family: "Cereal", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
  }
}
p {
  font-size: 16px;
  font-weight: 100;
}

a {
  text-decoration: none;
}

:root {
  --airbnb-red: #FFC107;
  --airbnb-dark: #222222;
  --airbnb-light: #FFFFFF;
  --airbnb-gray: #717171;
  --airbnb-gray-light: #F7F7F7;
  --airbnb-border: #DDDDDD;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

#reviews-container {
  font-family: "Circular", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  max-width: 100%;
  padding: 16px;
  color: var(--airbnb-dark);
}

.reviews-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.rating-summary {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.rating-score {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.star {
  color: var(--airbnb-red);
  margin-right: 4px;
}

.rating-count {
  color: var(--airbnb-gray);
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background-color: var(--airbnb-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.reviewer-name {
  text-align: left;
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.stars {
  color: var(--airbnb-red);
}

.time {
  color: var(--airbnb-gray);
}

.review-text {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.view-profile {
  display: inline-block;
  color: var(--airbnb-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--airbnb-dark);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.view-profile:hover {
  color: var(--airbnb-red);
  border-color: var(--airbnb-red);
}

.error {
  color: var(--airbnb-red);
  text-align: center;
  padding: 24px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  #reviews-container {
    padding: 12px;
  }
  .review-card {
    padding: 16px;
  }
}
/* =====================================================
   HEADER & NAVIGATION STYLES
   ===================================================== */
/* Header Container */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F37342;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-header {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* Logo */
.main-nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

#logoOrange {
  height: 50px;
  width: auto;
  display: block;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-toggle .mobile-nav-close {
  display: none;
}

.mobile-nav-toggle.active .mobile-nav-open {
  display: none;
}

.mobile-nav-toggle.active .mobile-nav-close {
  display: block;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  padding: 17px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-menu li a:hover {
  background-color: white;
  color: #F37342;
}

/* Cart Link Specific Styles */
.cart-item {
  margin-left: 10px;
}

.cart-link {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.cart-link i {
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  border: 2px solid white;
}

/* =====================================================
   TABLET STYLES (768px - 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .nav-menu li a {
    padding: 14px;
    font-size: 16px;
  }
  .main-header {
    padding: 0 15px;
  }
}
/* =====================================================
   MOBILE STYLES (< 768px)
   ===================================================== */
@media (max-width: 767px) {
  /* Show mobile toggle */
  .mobile-nav-toggle {
    display: block;
  }
  /* Mobile menu styling */
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: calc(100vh - 60px);
    background-color: #F37342;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-menu.nav-menu-open {
    right: 0;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu li a {
    width: 100%;
    padding: 16px 24px;
    height: auto;
    border-radius: 0;
    justify-content: flex-start;
  }
  .nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  /* Cart item in mobile */
  .cart-item {
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding-top: 10px;
  }
  .cart-link {
    justify-content: flex-start !important;
    gap: 12px;
  }
  .cart-link::before {
    content: "Cart";
    font-size: 16px;
  }
  /* Overlay for mobile menu */
  body.nav-open::before {
    content: "";
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}
/* =====================================================
   SMALL MOBILE STYLES (< 480px)
   ===================================================== */
@media (max-width: 479px) {
  .main-header {
    padding: 0 10px;
  }
  #logoOrange {
    height: 40px;
  }
  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }
  body.nav-open::before {
    top: 55px;
    height: calc(100vh - 55px);
  }
}
/* =====================================================
   ACCESSIBILITY
   ===================================================== */
.mobile-nav-toggle:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.nav-menu li a:focus {
  outline: 2px solid white;
  outline-offset: -2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body.nav-open {
    overflow: auto;
  }
}
.fade-in {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.announcement {
  max-width: 1000px;
  text-align: center;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
@media (max-width: 575px) {
  .announcement {
    padding: 0 15px 0 15px;
    margin-top: 10px;
  }
}
@media (min-width: 576px) {
  .announcement {
    padding: 0 30px 0 30px;
    margin-top: 30px;
  }
}
.announcement h1 {
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #F37342;
  display: flex;
}
.announcement h2 {
  justify-content: center;
  display: flex;
}
.announcement a {
  text-decoration: underline;
  color: red;
}

.banner-body {
  position: relative;
}

.banner-body-title-box {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-body-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .banner-body-title h2 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 22px;
  }
  .banner-body-title h3 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .banner-body-title h2 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 35px;
  }
  .banner-body-title h3 {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 8px;
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .banner-body-title h2 {
    font-size: 45px;
  }
  .banner-body-title h3 {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .banner-body-title h2 {
    font-size: 60px;
  }
  .banner-body-title h3 {
    font-size: 40px;
  }
}

.circle {
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  background: #F37342;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.circle p {
  font-weight: 500;
}
@media (max-width: 575px) {
  .circle {
    width: 60px;
    height: 60px;
  }
  .circle p {
    font-size: 13px;
    margin-top: 24px;
  }
}
@media (min-width: 576px) {
  .circle {
    width: 80px;
    height: 80px;
  }
  .circle p {
    font-size: 17px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle p {
    font-size: 20px;
    margin-top: 35px;
  }
}

#orangebackground .back-img {
  opacity: 0.6;
}
#orangebackground a :hover .tour-icon {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
#orangebackground a :hover .foot-note {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
#orangebackground a :hover .back-img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.tours-body {
  max-width: 1000px;
  text-align: center;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
@media (max-width: 575px) {
  .tours-body {
    padding: 0 15px 0 15px;
  }
}
@media (min-width: 576px) {
  .tours-body {
    padding: 0 30px 0 30px;
  }
}

.headline {
  height: 22px;
  width: 100%;
  border-bottom: 10px solid #F37342;
  margin-bottom: 10px;
}
.headline span {
  margin-top: 15px;
  background-color: white;
  padding: 0 10px 0 0;
  color: #F37342;
  float: left;
  font-weight: 20;
  overflow: hidden;
}
@media (max-width: 575px) {
  .headline span {
    font-size: 20px;
  }
}
@media (min-width: 576px) {
  .headline span {
    font-size: 25px;
  }
}

.tours-section {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.tours-section-long {
  margin-top: 10px;
  width: 100%;
  height: 100%;
}
.tours-section-long img {
  width: 100%;
}

.tours-section-blocks {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.tours-section-blocks a {
  background-color: black;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (max-width: 575px) {
  .tours-section-blocks a {
    margin: 7px;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks a {
    margin: 5px;
  }
}
.tours-section-blocks a :hover .tour-icon {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks a :hover .foot-note {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks a :hover .back-img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 300px;
}
@media (max-width: 575px) {
  .tours-section-blocks div {
    width: 40vw;
    height: 40vw;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks div {
    width: 38vw;
    height: 38vw;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks div {
    width: 29vw;
    height: 29vw;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks div {
    width: 300px;
    height: 300px;
  }
}
.tours-section-blocks .tour-icon {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (max-width: 575px) {
  .tours-section-blocks .tour-icon {
    width: 80%;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks .tour-icon {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .tours-section-blocks .tour-icon {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .tours-section-blocks .tour-icon {
    width: 70%;
  }
}
.tours-section-blocks .back-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.tours-section-blocks .foot-note {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  color: white;
  position: absolute;
}
@media (max-width: 575px) {
  .tours-section-blocks .foot-note {
    font-size: 12px;
    bottom: -5px;
    right: 10px;
  }
}
@media (min-width: 576px) {
  .tours-section-blocks .foot-note {
    font-size: 20px;
    bottom: 0;
    right: 15px;
  }
}

.body-about {
  width: 100%;
  display: flex;
  justify-content: center;
}
.body-about div {
  display: flex;
  justify-content: center;
  max-width: 768px;
}
@media (max-width: 575px) {
  .body-about div {
    width: 100%;
    padding-top: 28.87%;
  }
}
@media (min-width: 576px) {
  .body-about div {
    width: 90%;
    padding-top: 28.87%;
  }
}
@media (min-width: 768px) {
  .body-about div {
    padding-top: 18.87%;
  }
}
@media (min-width: 992px) {
  .body-about div {
    padding-top: 12.87%;
  }
}
.body-about img {
  width: 100%;
  height: 100%;
}

.body-video {
  background-image: url("/home/videoPic.jpg");
  background-size: cover;
  margin-top: 50px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.body-video h3 {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 45px;
}
.body-video a {
  font-size: 80px;
  color: white;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.body-video a :hover {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  color: #FF0000;
}

@media (max-width: 575px) {
  .description {
    font-size: 19px;
  }
  .tourOptions {
    border: solid 4px #F37342;
  }
}
@media (min-width: 576px) {
  .description {
    font-size: 24px;
  }
  .tourOptions {
    border: solid 4px #F37342;
  }
}
.bookingCalendar {
  border-radius: 5px;
  margin: 5px;
  background-color: white;
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  display: inline-block;
  vertical-align: center;
  font-family: "Cereal", Arial, sans-serif;
  font-weight: 550;
  color: #848486;
  width: 90vw;
  max-width: 600px;
}
.bookingCalendar .fc-day-grid-event .fc-content {
  white-space: break-spaces;
}

.footer {
  background-color: #F37342;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 575px) {
  .footer {
    height: auto;
    flex-direction: column;
  }
  .footer div {
    margin: 0px;
  }
}
@media (min-width: 576px) {
  .footer div {
    margin: 17px;
  }
}

.footer-TA {
  text-align: center;
}
.footer-TA img {
  max-width: 90%;
  max-height: 300px;
}

.footer-text {
  color: #fff;
  text-align: left;
}
.footer-text .footer-text-title {
  font-size: 35px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-text a {
  color: #fff;
}
@media (max-width: 575px) {
  .footer-text {
    text-align: center;
  }
  .footer-text a {
    font-size: 35px;
  }
}
@media (min-width: 576px) {
  .footer-text a {
    font-size: 50px;
  }
}

.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 20vw;
    /*margin-left: -300px;*/
    width: 60vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 25px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 991px) and (min-width: 600px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 10vw;
    /*margin-left: -300px;*/
    width: 80vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 25px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 600px) {
  .reveal-modal {
    visibility: hidden;
    top: 50px;
    left: 3vw;
    /*margin-left: -300px;*/
    width: 90vw;
    background: #eee url(/home/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 2vw;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
.reveal-modal.small {
  width: 200px;
  margin-left: -140px;
}

.reveal-modal.medium {
  width: 400px;
  margin-left: -240px;
}

.reveal-modal.large {
  width: 600px;
  margin-left: -340px;
}

.reveal-modal.xlarge {
  width: 800px;
  margin-left: -440px;
}

.reveal-modal .close-reveal-modal {
  font-size: 22px;
  line-height: 0.5;
  position: absolute;
  top: 8px;
  right: 11px;
  color: #aaa;
  text-shadow: 0 -1px 1px rbga(0, 0, 0, 0.6);
  font-weight: bold;
  cursor: pointer;
}

.editbutton {
  padding: 5px;
  cursor: pointer;
  color: white;
  float: left;
  margin: 0px;
  border: none;
  border-radius: 5px;
  width: 48%;
  background-color: rgb(190, 190, 191);
  font-size: 20px;
}

.paybutton {
  padding: 5px;
  cursor: pointer;
  color: white;
  margin: 0px;
  width: 48%;
  border-radius: 5px;
  border: none;
  background-color: #f37342;
  float: right;
  font-size: 20px;
}

.editbutton:hover {
  border: 2px solid #555;
  background-color: #F67645;
  color: black;
}

.paybutton:hover {
  border: 2px solid #555;
  background-color: #F67645;
  color: black;
}

@media (min-width: 800px) {
  #reviews .slidecap {
    width: 50vw;
    margin: 0 auto;
  }
  .brnotshow {
    display: block;
  }
  .brshow {
    display: none;
  }
}
@media (max-width: 800px) {
  #reviews .slidecap {
    width: 60vw;
    margin: 0 auto;
  }
  .slidecap {
    text-align: center;
  }
  .brnotshow {
    display: none;
  }
  .brshow {
    display: block;
  }
}
#arrow {
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: #F37342;
}

.arrowdiv {
  background-color: #F37342;
}

#Pagination span {
  background: #F37342;
  width: 15px;
  height: 15px;
}

#reviews h1 {
  color: #F37342;
  text-align: center;
}

#reviews .stars {
  color: #F37342;
  margin-bottom: 50px;
}

@media (max-width: 1201px) and (min-width: 992px) {
  .intro h2 {
    font-size: 18px;
    margin-top: 10px;
  }
  .title h1 {
    font-size: 35px;
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 40px;
    min-width: 500px;
  }
}
@media (max-width: 992px) and (min-width: 600px) {
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  .twobutton {
    width: 100%;
    text-align: center;
  }
  .title h1 {
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 40px;
    min-width: 500px;
  }
  .title p {
    display: inline-block;
    float: left;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .title p {
    display: inline-block;
    float: left;
    font-size: 20px;
  }
  .title h1 {
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .twobutton {
    width: 100%;
    text-align: left;
  }
}
.tour-description {
  font-size: 20px;
}

#link {
  color: #F37342;
  text-decoration: underline;
}

.smallicon {
  width: 30px;
  text-align: center;
}

@media (min-width: 1200px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 40px;
    margin: 30px auto;
    color: #f37342;
    max-width: 700px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  #intro {
    height: 400px;
    position: relative;
  }
  #introlow {
    height: 300px;
    position: relative;
  }
  .twobutton {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 45px;
    margin: 0 auto;
    color: #f37342;
    max-width: 700px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  #intro {
    height: 330px;
    position: relative;
  }
  #introlow {
    height: 250px;
    position: relative;
  }
  .twobutton {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: left;
  }
}
@media (max-width: 991px) and (min-width: 600px) {
  #confirmationname {
    font-size: 36px;
  }
  .furthercollab h2 {
    font-size: 28px;
    margin: 0 auto;
    color: #f37342;
    max-width: 500px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 14px;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-right: 2%;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    margin-left: 2%;
  }
  .twobutton {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  #confirmationname {
    font-size: 8vw;
  }
  .furthercollab h2 {
    font-size: 25px;
    margin: 0 auto;
    color: #f37342;
    max-width: 500px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .qwert {
    color: #f37342;
    background-color: white;
    display: inline-block;
    font-size: 3vw;
  }
  .booknow .moretour {
    width: 100%;
  }
  .booknow {
    cursor: pointer;
    background-color: #d92435;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .moretour {
    cursor: pointer;
    background-color: #848486;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    width: 100%;
  }
  .title h1 {
    font-size: 30px;
    display: inline-block;
    color: #f37342;
    vertical-align: middle;
    line-height: 40px;
  }
  .title p {
    display: inline-block;
    float: left;
    font-size: 4vw;
  }
  .centerorleft {
    text-align: center;
  }
}
.booknow h2 {
  display: inline-block;
  color: white;
  padding-bottom: 5px;
}

.moretour h2 {
  display: inline-block;
  color: #ffffff;
  padding-bottom: 5px;
}

.title {
  display: inline-block;
  margin-bottom: 20px;
  vertical-align: middle;
  padding: 0px;
}

.title p i {
  color: #F37342;
}

#noshow {
  display: none;
}

@media (min-width: 1135px) {
  .bannerad {
    cursor: pointer;
    text-align: center;
  }
  .pccolor {
    background-color: black;
  }
  .hgcolor {
    background-color: #F34D51;
  }
  .bannerad-m {
    display: none;
  }
  header.header-up {
    top: -121px;
  }
}
@media (max-width: 1135px) and (min-width: 600px) {
  .bannerad {
    cursor: pointer;
    text-align: center;
  }
  .bannerad-m {
    display: none;
  }
  .bannerad img {
    width: 100vw;
  }
  header.header-up {
    top: -10.7vw;
    /*top: -121px;*/
  }
}
@media (max-width: 600px) {
  .bannerad {
    display: none;
  }
  .bannerad-m {
    cursor: pointer;
    text-align: center;
  }
  .bannerad-m img {
    width: 100vw;
  }
  header.header-up {
    top: -29.9vw;
    /*top: -121px;*/
  }
}
.tabletourorder {
  color: white;
  background-color: #F37342;
  padding: 0px;
  display: initial;
  padding: 7px;
  margin-left: 11px;
}

@media (max-width: 992px) {
  #weaccept {
    margin: 0 auto;
    margin-bottom: 70px;
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  #weaccept {
    margin: 0 auto;
    padding-bottom: 0px;
    margin-top: 10px;
  }
}
.tablebottom {
  border-bottom: 2px dotted #F37342;
  /*margin-bottom: 30px;*/
}

.tabletop {
  margin-top: 20px;
  border-top: 2px solid #F37342;
}

.tourtable {
  margin-top: 20px;
  font-size: 20px;
  /*margin: 0 auto;*/
  text-align: left;
}

@media (max-width: 450px) {
  .tourtable tr td {
    overflow: hidden;
    max-width: 195px;
  }
}
.tourtable tr td {
  padding: 15px;
  vertical-align: center;
  text-align: left;
  color: black;
  border-top: none;
  overflow: hidden;
}

.tourtable tr th {
  width: 150px;
  padding: 15px;
  font-weight: normal;
  vertical-align: center;
  text-align: left;
  color: #F37342;
  border-top: none;
  /*border-bottom:1.5pt solid #194C4C;*/
}

.tourtable {
  font-weight: normal;
  text-align: center;
  /*margin: 0 auto;*/
  /*border-collapse: collapse; */
}

@media (min-width: 800px) {
  .feature {
    height: 300px;
  }
  #mobile {
    display: none;
  }
  .mobile {
    display: none;
  }
}
@media (max-width: 800px) {
  .feature {
    height: 200px;
  }
  #desktop {
    display: none;
  }
  .desktop {
    display: none;
  }
}
.triangle h2 {
  width: 90%;
}

@media (min-width: 991px) {
  #partnerlogo a img {
    width: 16vw;
  }
  .air {
    height: 315px;
  }
  .checkbox button {
    min-width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 16px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 991px) and (min-width: 650px) {
  #partnerlogo a img {
    width: 20vw;
  }
  .air {
    height: 410px;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 16px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 650px) and (min-width: 500px) {
  #partnerlogo a img {
    width: 30vw;
  }
  .air {
    height: 400px;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 15px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 500px) {
  .nopadding {
    padding: 0px;
  }
  .title img {
    display: none;
  }
  #partnerlogo a img {
    width: 28vw;
  }
  .checkbox button {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 13px;
  }
  .checkbox button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
  .air {
    height: 240px;
  }
}
#ntup {
  width: 100%;
  display: block;
  margin: auto;
}

#logo {
  width: 60%;
  display: block;
  margin: auto;
}

.foot {
  padding: 0px;
}

.white {
  position: fixed;
  /*background-color: white;*/
  width: 100%;
}

/**/
.nav {
  background-color: white;
  width: 100%;
  margin-top: 0px;
}

.nav a {
  padding: 9px !important;
}

#tours img {
  padding: 40px 15px 0px 15px;
}

#route {
  padding: 0px;
  margin: auto;
  width: 100%;
}

#intro i {
  color: #F37342;
}

#introlow i {
  color: #F37342;
}

#intro h1 {
  margin-top: 0px;
}

#intro h2 {
  line-height: 100%;
}

#intro p {
  font-size: 20px;
  text-align: justify;
}

#intro img {
  margin-top: 90px;
  margin-bottom: 0px;
}

@media (min-width: 991px) {
  #paddle {
    font-weight: bold;
    font-size: 30px !important;
    padding-left: 70px;
  }
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 140px;
    height: 140px;
    margin: 10px;
  }
  .options div a img {
    width: 140px;
    height: 140px;
  }
  #intro {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .slide {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .icon {
    height: 160px;
    width: 160px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .pubcrawlm {
    margin-top: 50px;
    text-align: center;
  }
  .hungerm {
    margin-top: 150px;
    text-align: center;
  }
  .pubcrawlm i {
    font-size: 100px;
    color: white;
    text-align: center;
  }
  .pubcrawlm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .hungerm i {
    font-size: 100px;
    color: white;
    text-align: center;
  }
  .hungerm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySectionZentour {
    background-image: url("/home/zencover.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hunger {
    background-image: url("/home/hunger.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .play {
    background: url(/home/button.png) no-repeat center center;
    margin-top: 50px;
    height: 84px;
  }
  .play:hover {
    background: url(/home/button2.png) no-repeat center center;
  }
  .whatsUpTaipei img {
    margin-top: 40px;
    margin-bottom: 5px;
  }
  .icon {
    height: 160px;
    width: 160px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .belowbar {
    margin-top: 64px;
  }
  .mobilemargin {
    margin-top: 10px;
  }
  #paddle {
    font-weight: bold;
    font-size: 25px !important;
  }
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 5px;
  }
  .options div a img {
    width: 100px;
    height: 100px;
  }
  .slide {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  #intro {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #intro img {
    width: 100%;
  }
  .centerBlock div {
    height: 100px;
    width: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .pubcrawlm {
    margin-top: 10px;
    text-align: center;
  }
  .pubcrawlm a i {
    font-size: 50px;
    color: white;
  }
  .pubcrawlm a i:hover {
    font-size: 50px;
    color: #ff0000;
  }
  .hungerm {
    margin-top: 100px;
    text-align: center;
  }
  .hungerm a i {
    font-size: 100px;
    color: white;
  }
  .hungerm a i:hover {
    font-size: 100px;
    color: #ff0000;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection {
    background-image: url("/home/pub.jpg");
    background-size: cover;
    margin: 50px auto;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySectionZentour {
    background-image: url("/home/zencover.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hunger {
    background-image: url("/home/hunger.jpg");
    background-size: cover;
    margin: 25px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 500px) {
  .options {
    text-align: center;
  }
  .options div {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin: 5px;
  }
  .options div a img {
    width: 90px;
    height: 90px;
  }
  .slide {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #intro img {
    width: 100%;
  }
  .centerBlock div {
    height: 100px;
    width: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
}
@media (max-width: 350px) {
  .icon {
    height: 150px;
    width: 150px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
  }
  .select-wrapper {
    text-decoration: none;
    display: block;
    text-align: center;
    display: inline-block;
    vertical-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 550;
    color: #848486;
    width: 80%;
  }
}
/*trying*/
select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: white;
  border-radius: 0px;
  border-color: gray;
  border-width: 1px;
  display: block;
  outline: 0;
  text-decoration: none;
  text-align: center;
}

/* Form from now on */
@media (min-width: 630px) {
  .select-wrapper {
    border-radius: 5px;
    margin: 5px;
    z-index: 2;
    background-color: white;
    position: relative;
    text-decoration: none;
    display: block;
    text-align: center;
    display: inline-block;
    vertical-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 550;
    color: #848486;
    width: 600px;
    height: 50px;
  }
  .select-wrapper p {
    color: #f37342;
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 30px;
  }
  .select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-transform: none !important;
  }
  .select-wrapper select::-ms-expand {
    display: none;
    text-align: center;
  }
  .application {
    text-align: center;
    background-color: rgb(254, 244, 240);
    display: block;
  }
  .application h1 {
    padding-top: 100px;
    margin: 0px;
    color: #f37342;
    text-transform: uppercase;
  }
  .application h2 {
    font-size: 20px;
    color: #f37342;
  }
  .application input {
    border: none;
    border-radius: 5px;
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 5px;
    font-size: 18px;
  }
  .application input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b6b8ba;
    font-weight: 100;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #b6b8ba;
    font-weight: 100;
  }
  .application select {
    z-index: 2;
    background-color: transparent;
    color: #f37342;
    border: none;
    border-radius: 5px;
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    font-size: 18px;
    text-align: center;
  }
  .privateapp {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .privateapp h1 {
    padding: 20px;
    padding-top: 70px;
    margin: 0px;
  }
  .privateapp input {
    width: 600px;
    height: 50px;
    padding-left: 10px;
    margin: 10px;
    font-size: 18px;
  }
  .privateapp select {
    width: 400px;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .br {
    display: none;
  }
  .send button {
    width: 250px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 70px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 25px;
  }
  .send button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
@media (max-width: 630px) {
  .select-wrapper {
    border-radius: 5px;
    margin: 5px;
    z-index: 2;
    background-color: white;
    position: relative;
    text-decoration: none;
    display: block;
    text-align: center;
    display: inline-block;
    vertical-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 550;
    color: #848486;
    width: 90vw;
    height: 50px;
  }
  .select-wrapper p {
    color: #f37342;
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 30px;
  }
  .select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-transform: none !important;
  }
  .select-wrapper select::-ms-expand {
    display: none;
    text-align: center;
  }
  .application {
    text-align: center;
    background-color: rgba(243, 115, 66, 0.1);
    display: block;
  }
  .br {
    display: block;
  }
  .application h1 {
    padding-top: 40px;
    margin: 0px;
    padding-left: 20px;
    padding-right: 20px;
    color: #f37342;
    text-transform: uppercase;
  }
  .application h2 {
    font-size: 20px;
    color: #f37342;
    padding-left: 20px;
    padding-right: 20px;
  }
  .application input {
    border: none;
    border-radius: 5px;
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 5px;
    font-size: 18px;
  }
  .application input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b6b8ba;
    font-weight: 100;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #b6b8ba;
    font-weight: 100;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #b6b8ba;
    font-weight: 100;
  }
  .application select {
    z-index: 2;
    background-color: transparent;
    color: #f37342;
    border: none;
    border-radius: 5px;
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    font-size: 18px;
    text-align: center;
  }
  .privateapp {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .privateapp h1 {
    padding: 20px;
    padding-top: 70px;
    margin: 0px;
  }
  .privateapp input {
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 10px;
    font-size: 18px;
  }
  .privateapp select {
    width: 90vw;
    height: 50px;
    padding-left: 10px;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .send button {
    width: 250px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 70px;
    border: 2px solid white;
    background-color: #F37342;
    color: white;
    font-size: 20px;
  }
  .send button:hover {
    border: 2px solid #555;
    background-color: #F67645;
    color: black;
  }
}
html, body {
  width: 100%;
  height: 100%;
  /*overflow:hidden;*/
}

.feature iframe {
  height: 100%;
  width: 100%;
  border: 0;
  -webkit-backface-visibility: hidden;
}

#privatetour {
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  background-color: #1f1f1f;
}

#privatetour span span {
  color: #F67645;
}

#privatetour:hover {
  border: 2px solid #F67645;
  background-color: #F67645;
  color: white;
}

#privatetour:hover span span {
  color: white;
}

#reserve {
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  margin-left: 3px;
}

/*footer*/
#footerpic {
  width: 100%;
}

.slidecap img {
  width: 100%;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  font-size: 18px;
}

.autocomplete-items div {
  font-size: 18px;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

@media screen and (min-width: 600px) {
  #schedule div div {
    text-align: left;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 46%;
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 21%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 48%;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 31%;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 46%;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 22%;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 48%;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 12px;
  }
  #schedule div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #schedule div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
@media (min-width: 400px) and (max-width: 600px) {
  #schedule div div {
    text-align: center;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 20px;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 99%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 32%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    width: 99%;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 250px;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #schedule div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #schedule div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
@media screen and (max-width: 400px) {
  #schedule div div {
    text-align: center;
  }
  #schedule div div p {
    display: inline-block;
    border: solid;
    border-radius: 25px;
    margin: 3px;
    font-size: 5vw;
    padding-top: 3px;
    text-align: center;
    /*float: right;*/
  }
  #schedule div div .day {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .twodays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 49%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .time {
    border: 2px solid #848486;
    color: #848486;
    min-width: 25vw;
  }
  #schedule div div .twotimes {
    border: 2px solid #848486;
    color: #848486;
    min-width: 25vw;
  }
  #schedule div div .threedays {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 31%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #schedule div div .pts {
    border: 2px solid #848486;
    color: #848486;
    min-width: 120px;
    width: 97%;
  }
  #schedule div div .ptf {
    background-color: #F37342;
    border: 2px solid #F37342;
    color: white;
    width: 97%;
  }
  #schedule div div .threetime {
    border: 2px solid #848486;
    color: #848486;
    min-width: 83vw;
  }
  #schedule div div .tourname {
    cursor: pointer;
    border: 2px solid #F37342;
    color: #F37342;
    min-width: 55vw;
  }
  #schedule .days {
    border-bottom: 0.5px dotted #F37342;
    padding-bottom: 10px;
    max-width: 87vw;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  #schedule div div .tourname:hover {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    color: white;
    background-color: #F37342;
  }
  #schedule div div .tourname {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
}
#sendemail {
  display: block;
  width: 100%;
}
#sendemail a {
  color: white;
}

/*# sourceMappingURL=virtual.css.map */
