@charset "UTF-8";
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;
  }
}

.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;
  }
}

#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;
}

.body-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .body-blog {
    padding: 0 15px 0 15px;
  }
}
@media (min-width: 576px) {
  .body-blog {
    padding: 0 30px 0 30px;
  }
}

.body-blog-title {
  text-align: center;
}
.body-blog-title h2 {
  color: #F37342;
}
@media (max-width: 575px) {
  .body-blog-title h2 {
    font-size: 28px;
  }
}
@media (min-width: 576px) {
  .body-blog-title h2 {
    font-size: 40px;
  }
}

.body-blog-blogs {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  max-width: 992px;
}
@media (max-width: 575px) {
  .body-blog-blogs {
    width: 90%;
  }
}
@media (min-width: 576px) {
  .body-blog-blogs {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .body-blog-blogs {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .blog-align-right .blog-article-title {
    left: -1vw;
  }
}
@media (min-width: 576px) {
  .blog-align-right .blog-article-title {
    left: 3vw;
  }
}
@media (min-width: 768px) {
  .blog-align-right .blog-article-title {
    left: 0;
  }
}
.blog-align-right img {
  float: right;
}

.blog-article {
  width: 100%;
  position: relative;
}
@media (max-width: 575px) {
  .blog-article {
    margin-bottom: 25px;
  }
}
@media (min-width: 576px) {
  .blog-article {
    margin-bottom: 50px;
  }
}
.blog-article img {
  max-width: 768px;
}
@media (max-width: 575px) {
  .blog-article img {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .blog-article img {
    width: 100%;
  }
}
.blog-article-title {
  background-color: rgba(243, 115, 66, 0.7);
  color: white;
  min-width: 200px;
  max-width: 400px;
  position: absolute;
  text-decoration: none;
  -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;
}
.blog-article-title:hover {
  background-color: rgba(243, 115, 66, 0.9);
  -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;
}
.blog-article-title i {
  float: right;
  font-size: 10px;
}
@media (max-width: 575px) {
  .blog-article-title {
    bottom: 5vw;
    right: -1vw;
    width: 90vw;
  }
  .blog-article-title p {
    margin: 0;
    padding: 16px;
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .blog-article-title {
    bottom: 5vw;
    right: 3vw;
    width: 90vw;
  }
  .blog-article-title p {
    margin: 0;
    padding: 20px;
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .blog-article-title {
    bottom: 40px;
    right: 0;
    width: 100%;
  }
}

/* For mobile devices */
@media only screen and (max-width: 600px) {
  .apple-pay-button {
    width: 90%;
    height: 50px;
  }
}
.priceTable {
  width: 100%;
  table-layout: fixed;
}
.priceTable br {
  display: none;
}
.priceTable .remark {
  font-size: 12px;
  line-height: normal;
}
.priceTable .pricetag {
  font-weight: bold;
  color: #F37342;
  font-size: 24px;
  padding-bottom: 5px;
}
.priceTable .favorited th {
  color: #F37342;
}
.priceTable .favorited th, .priceTable .favorited td {
  border: 3px #F37342 solid;
}
.priceTable th, .priceTable td {
  border: 1px solid;
  text-align: left;
  padding: 10px;
  /* Four columns, so each column takes 25% of the table width */
}
.priceTable th {
  width: 25%;
}
.priceTable td {
  width: 75%;
}
.priceTable th h2, .priceTable td h2 {
  margin: 0;
}
@media (max-width: 575px) {
  .priceTable {
    font-size: 20px;
  }
  .priceTable br {
    display: block;
  }
  .priceTable .favorited .pricetag span {
    font-size: 17px;
    color: white;
    background-color: #F37342;
    padding: 2px 8px 2px 8px;
  }
  .priceTable th {
    font-size: 20px;
  }
}
.priceTable .favorited .pricetag span {
  font-size: 15px;
}
@media (min-width: 576px) {
  .priceTable br {
    display: none;
  }
  .priceTable .favorited .pricetag span {
    font-size: 17px;
    color: white;
    background-color: #F37342;
    padding: 3px 10px 3px 10px;
  }
  .priceTable th {
    font-size: 24px;
  }
  .priceTable .pricetag {
    font-size: 24px;
  }
  .priceTable span {
    font-size: 24px;
  }
}

.priceTableH1 {
  color: #F37342;
  text-align: center;
}

.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;
}

#pig span {
  background-color: #F37342;
}

@media (min-width: 991px) {
  .headslide {
    width: 250px;
    border-radius: 250px;
    overflow: hidden;
    margin: 80px 40px 70px;
  }
  .headinfo {
    text-align: left;
  }
  .slidearrow {
    background-color: rgba(243, 115, 66, 0.9);
    padding: 30px;
  }
}
@media (min-width: 600px) and (max-width: 991px) {
  .slidearrow {
    background-color: rgba(243, 115, 66, 0.9);
    padding: 3vw;
    background-size: 2vw;
  }
  .headslide {
    width: 250px;
    border-radius: 250px;
    overflow: hidden;
    margin: 80px 40px 70px;
  }
  .headinfo {
    text-align: left;
    max-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .headslide {
    width: 50vw;
    border-radius: 250px;
    overflow: hidden;
    margin: 0 auto;
  }
  #slideblock {
    display: block;
  }
  .headinfo {
    text-align: center;
    margin-bottom: 35px;
  }
  .slidearrow {
    background-color: rgba(243, 115, 66, 0.9);
    padding: 6vw;
    background-size: 5vw;
  }
}
.beericon {
  display: inline-block;
  color: white;
  border-radius: 50px;
  background-color: #F37342;
}

.beericon i {
  padding: 15px;
  font-size: 25px;
}

.position {
  font-style: italic;
}

.headname {
  color: #F37342;
}

.quote {
  font-style: italic;
}

.headslide img {
  width: 100%;
}

.partnerdes {
  margin: 20px auto;
  font-weight: 600;
  color: #F37342;
  max-width: 900px;
  font-size: 28px;
  font-weight: 400;
  color: #848486;
  line-height: 45px;
}

.partnertitle {
  margin: 20px auto;
  margin-top: 40px;
  font-weight: 600;
  font-size: 42px;
  color: #F37342;
  max-width: 1000px;
}

.topphoto {
  width: 100%;
}

.partner {
  text-align: center;
}

.partner a {
  color: #dfe0d8;
}

.active {
  color: white;
}

.topnav .ic {
  display: none;
  padding: 8px;
}

@media screen and (max-width: 1250px) {
  .break {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .brfree {
    display: none;
  }
}
@media screen and (min-width: 675px) {
  #freetours a img {
    width: 10vw;
    max-width: 150px;
  }
  .air {
    height: 30vw;
    max-height: 450px;
  }
  .partner img {
    margin: 20px;
    display: inline-block;
    border: 1px solid;
    border-color: #dfe0d8;
    border-radius: 120px;
    width: 10vw;
    max-width: 250px;
  }
  #pcx {
    display: none;
  }
  .topnav {
    overflow: hidden;
    /*background-color: #333;*/
    /*padding-left: 10%;
    padding-right: 0;*/
  }
  .navSelected {
    border-top: 5px solid #F37342 !important;
  }
  #navlogo {
    padding: 0px;
  }
  /* DEMO-SPECIFIC STYLES */
  .typewriter {
    text-align: center;
    color: #F37342;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: 0.15em solid #F37342; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: 0.15em; /* Adjust as needed */
    animation: typing 3s steps(30, end), blink-caret 0.5s step-end infinite;
  }
  /* The typing effect */
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to {
      border-color: transparent;
    }
    50% {
      border-color: orange;
    }
  }
}
@media screen and (max-width: 675px) {
  .air {
    height: 50vw;
  }
  .partner img {
    margin: 20px;
    display: inline-block;
    border: 1px solid;
    border-color: #dfe0d8;
    border-radius: 120px;
    width: 20vw;
  }
  .topnav a#navlogo {
    padding: 0px;
    display: none;
  }
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.ic {
    float: left;
    display: block;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .ic {
    display: none;
  }
  .topnav.responsive a {
    float: none;
    display: block;
  }
  /* DEMO-SPECIFIC STYLES */
  .typewriter {
    text-align: center;
    font-size: 30px;
    color: #F37342;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: 0.15em solid transparent; /* The typwriter cursor */
    white-space: normal; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: 0.15em; /* Adjust as needed */
  }
}
#TMAX div {
  min-height: 0px;
  background-image: url("/home/8.gif");
  background-size: cover;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#CBC div {
  min-height: 0px;
  background-image: url("/home/tours/cbc/cbc_desktop2.gif");
  background-size: cover;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#CNY div {
  min-height: 0px;
  background-image: url("/home/herbalparty/1.jpg");
  background-size: cover;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#CNYM {
  min-height: 0px;
  background-image: url("/home/cny/cny2.gif");
  background-size: cover;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 90vw;
  margin-bottom: 40px;
}

#CBCM {
  min-height: 0px;
  background-image: url("/home/tours/cbc/cbc_desktop2.gif");
  background-size: cover;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 90vw;
  margin-bottom: 40px;
}

@media (min-width: 1100px) {
  #headtitle {
    font-size: 40px;
  }
  #headtitleh3 {
    font-size: 30px;
  }
  .toursubtitle {
    background-color: white;
    padding: 0 10px 0 0;
    color: #F37342;
    float: left;
    font-size: 25px;
    font-weight: 20;
    overflow: hidden;
    max-width: 90vw;
  }
  .posttitle {
    background-color: rgba(243, 115, 66, 0.8);
    color: white;
    min-width: 200px;
    max-width: 400px;
    right: 0;
    top: 15vw;
    width: 40vw;
  }
  .posttitle h3 {
    margin: 20px;
  }
  .blogposts {
    width: 100%;
    height: 450px;
    position: relative;
  }
  #headtitle {
    font-size: 70px;
  }
  #headtitleh3 {
    font-size: 40px;
  }
  .FAQP {
    background-color: #848486;
    color: white;
    text-align: center;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
  }
  .FAQPA {
    color: #848486;
    text-align: center;
    font-size: 20px;
    padding: 10px;
  }
  #TMAX {
    height: 30vh;
    width: 60vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  #CBC {
    height: 30vh;
    width: 60vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  #CNY {
    height: 30vh;
    width: 60vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .resizetitle {
    font-size: 4vw;
  }
}
@media (max-width: 1100px) and (min-width: 500px) {
  #headtitle {
    font-size: 40px;
  }
  #headtitleh3 {
    font-size: 30px;
  }
  .toursubtitle {
    background-color: white;
    padding: 0 10px 0 0;
    color: #F37342;
    float: left;
    font-size: 25px;
    font-weight: 20;
    overflow: hidden;
    max-width: 90vw;
  }
  .posttitle {
    background-color: rgba(243, 115, 66, 0.8);
    color: white;
    min-width: 200px;
    max-width: 400px;
    right: 0;
    top: 20vw;
    width: 60vw;
  }
  .posttitle h3 {
    margin: 20px;
  }
  .blogposts {
    width: 100%;
    height: 50vw;
    max-height: 400px;
    /*min-height: 400px;*/
    position: relative;
  }
  #headtitle {
    font-size: 50px;
  }
  #headtitleh3 {
    font-size: 30px;
  }
  .FAQP {
    background-color: #848486;
    color: white;
    text-align: center;
    font-size: 22px;
    padding: 6px;
    cursor: pointer;
  }
  .FAQPA {
    color: #848486;
    text-align: center;
    font-size: 18px;
    padding: 10px;
  }
  #TMAX {
    height: 30vh;
    width: 80vw;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  #CBC {
    height: 30vh;
    width: 80vw;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  #CNY {
    height: 30vh;
    width: 80vw;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .resizetitle {
    font-size: 6vw;
  }
}
@media (max-width: 500px) {
  #headtitle {
    font-size: 13vw;
  }
  #headtitleh3 {
    font-size: 6vw;
  }
  .toursubtitle {
    background-color: white;
    padding: 0 10px 0 0;
    color: #F37342;
    float: left;
    font-size: 7vw;
    font-weight: 20;
    overflow: hidden;
    max-width: 90vw;
  }
  .posttitle {
    background-color: rgba(243, 115, 66, 0.8);
    color: white;
    /*min-width:200px;*/
    max-width: 400px;
    right: 0;
    top: 25vw;
    width: 70vw;
  }
  .posttitle h3 {
    font-size: 6vw;
    margin: 9px;
  }
  .blogposts {
    width: 100%;
    height: 60vw;
    position: relative;
  }
  .FAQP {
    background-color: #848486;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 4px;
    cursor: pointer;
  }
  .FAQPA {
    color: #848486;
    text-align: center;
    font-size: 16px;
    padding: 10px;
  }
  #TMAX {
    height: 30vh;
    width: 90vw;
    margin-bottom: 40px;
  }
  #CBC {
    height: 30vh;
    /*width:90vw;*/
    margin-bottom: 40px;
  }
}
@media (min-width: 1151px) {
  #mobile {
    display: none;
  }
}
@media (max-width: 1151px) {
  #desktop {
    display: none;
  }
}
.ic {
  text-align: center;
  margin: 0px auto;
}

.ic div {
  display: inline-block;
}

body {
  font-family: "Cereal", Arial, sans-serif;
}

.navbar-nav {
  margin-top: 0px;
  margin-bottom: 0px;
}

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

/*banner*/
#bannerVideo {
  margin-top: 63px;
}

@media (min-width: 480px) {
  #theme h2 {
    width: 292px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #848486;
  }
}
@media (min-width: 1363px) {
  .centerBlock div {
    height: 240px;
    width: 240px;
    margin: 15px;
    display: inline-block;
  }
  .ts {
    width: 75%;
    /*margin-left:200px;
    margin-right:200px; */
  }
}
@media (max-width: 1363px) {
  .centerBlock div {
    height: 240px;
    width: 240px;
    margin: 10px;
    display: inline-block;
  }
  .ts {
    width: 80%;
    /*margin-left:200px;
    margin-right:200px; */
  }
}
@media (min-width: 1135px) {
  #bannerInfo {
    margin: 0px auto;
    padding-top: 80px;
    text-align: center;
    margin-bottom: 12vw;
  }
}
@media (max-width: 1135px) {
  #bannerInfo {
    margin: 0px auto;
    padding-top: 80px;
    text-align: center;
    margin-bottom: 30px;
  }
  .centerBlock div {
    height: 230px;
    width: 230px;
    margin: 5px;
    display: inline-block;
  }
  .ts {
    width: 90%;
    /*margin-left:200px;
    margin-right:200px; */
  }
}
@media (min-width: 1000px) {
  /*Tour Icon everything*/
  .icon {
    height: 300px;
    width: 300px;
    position: absolute;
    background-color: black;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .tourdes {
    position: absolute;
    top: 240px;
    left: 90px;
    width: 200px;
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdes {
    position: absolute;
    text-shadow: 0.5px 0.5px gray;
  }
  .tourdeslong {
    position: absolute;
    top: 250px;
    right: 10px;
    /*width: 350px;*/
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdeslong {
    position: absolute;
    text-shadow: 0.5px 0.5px gray;
  }
  .effect {
    position: relative;
    float: left;
  }
  .logo {
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .effect .logo {
    position: absolute;
    z-index: 2;
    top: 72px;
    left: 59px;
    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;
  }
  .effect:hover .logo {
    position: absolute;
    z-index: 2;
    top: 72px;
    left: 59px;
    opacity: 0.1;
  }
  .effect .icon {
    opacity: 0.4;
    -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;
  }
  .effect:hover .icon {
    opacity: 1;
  }
  .headline {
    width: 950px;
  }
  .tourblock {
    display: inline-block;
    margin: 10px;
    overflow: hidden;
    overflow: hidden;
    width: 300px;
    height: 300px;
    background-color: black;
  }
  .tourblocklong {
    display: inline-block;
    margin: 10px;
    overflow: hidden;
    overflow: hidden;
    width: 950px;
    height: 300px;
    background-color: black;
  }
  /*End for tour icon everything*/
}
@media (max-width: 1000px) and (min-width: 877px) {
  /*Tour Icon everything*/
  .icon {
    height: 250px;
    width: 250px;
    position: absolute;
    background-color: black;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .tourdes {
    margin: 10px;
    position: absolute;
    top: 210px;
    left: 45px;
    width: 200px;
    z-index: 4;
    color: white;
    font-size: 20px;
  }
  .effect :hover .tourdes {
    position: absolute;
    text-shadow: 0.5px 0.5px gray;
  }
  .tourdeslong {
    position: absolute;
    top: 21vw;
    right: 10px;
    width: 350px;
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdeslong {
    position: absolute;
    text-shadow: 0.5px 0.5px gray;
  }
  .effect {
    position: relative;
    float: left;
  }
  .logo {
    top: 55px;
    left: 37.5px;
    width: 175px;
    z-index: 2;
    position: absolute;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .effect .logo {
    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;
  }
  .effect:hover .logo {
    opacity: 0.1;
  }
  .effect .icon {
    opacity: 0.4;
    -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;
  }
  .effect:hover .icon {
    opacity: 1;
  }
  .headline {
    width: 250px;
  }
  .tourblock {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    width: 250px;
    height: 250px;
    background-color: black;
  }
  .tourblocklong {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    width: 800px;
    height: 250px;
    background-color: black;
  }
  /*End for tour icon everything*/
}
@media (max-width: 877px) and (min-width: 420px) {
  /*Tour Icon everything*/
  .icon {
    height: 190px;
    width: 190px;
    position: absolute;
    background-color: black;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .tourdes {
    margin: 10px;
    position: absolute;
    top: 160px;
    left: 40px;
    font-size: 15px;
    width: 140px;
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdes {
    text-shadow: 0.5px 0.5px gray;
  }
  .tourdeslong {
    margin: 10px;
    position: absolute;
    top: 23vw;
    right: 10px;
    font-size: 15px;
    /*width: 230px;*/
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdeslong {
    text-shadow: 0.5px 0.5px gray;
  }
  .effect {
    position: relative;
    float: left;
  }
  .logo {
    top: 45px;
    left: 30px;
    width: 130px;
    z-index: 2;
    position: absolute;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .effect .logo {
    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;
  }
  .effect:hover .logo {
    opacity: 0.1;
  }
  .effect .icon {
    opacity: 0.4;
    -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;
  }
  .effect:hover .icon {
    opacity: 1;
  }
  .tourblock {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    width: 190px;
    height: 190px;
    background-color: black;
  }
  .tourblocklong {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    /*width: 80vw;*/
    height: 190px;
    background-color: black;
  }
  /*End for tour icon everything*/
}
@media (max-width: 420px) {
  /*Tour Icon everything*/
  .icon {
    height: 40vw;
    width: 40vw;
    position: absolute;
    background-color: black;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .tourdes {
    margin: 10px;
    position: absolute;
    top: 33vw;
    left: 6vw;
    font-size: 12px;
    width: 140px;
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdes {
    text-shadow: 0.5px 0.5px gray;
  }
  .tourdeslong {
    margin: 10px;
    position: absolute;
    top: 21vw;
    right: 5px;
    font-size: 12px;
    /*width: 180px;*/
    z-index: 3;
    color: white;
  }
  .effect :hover .tourdeslong {
    text-shadow: 0.5px 0.5px gray;
  }
  .effect {
    position: relative;
    float: left;
  }
  .logo {
    top: 8vw;
    left: 5vw;
    width: 30vw;
    z-index: 2;
    position: absolute;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .effect .logo {
    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;
  }
  .effect:hover .logo {
    opacity: 0.1;
  }
  .effect .icon {
    opacity: 0.4;
    -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;
  }
  .effect:hover .icon {
    opacity: 1;
  }
  .headline {
    width: 80vw;
  }
  .tourblock {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    width: 40vw;
    height: 40vw;
    background-color: black;
  }
  .tourblocklong {
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    overflow: hidden;
    width: 80vw;
    height: 40vw;
    background-color: black;
  }
  /*End for tour icon everything*/
}
@media (max-width: 635px) {
  .centerBlock div {
    height: 145px;
    width: 145px;
    margin: 2px;
    display: inline-block;
  }
  .ts {
    width: 95%;
    /*margin-left:200px;
    margin-right:200px; */
  }
  /*.ts div{
    width:40%;
    margin-left:200px;
    margin-right:200px; 
  }
  */
}
@media (max-width: 1000px) {
  #bgvid {
    display: none;
  }
  .callToAction {
    display: none;
  }
  #callToActionLine {
    display: none;
  }
  #bannerVideo {
    background: url(/home/index_slide/2-cover.jpg) no-repeat center center;
    background-size: cover;
  }
  #about img {
    width: 100%;
  }
}
video#bgvid {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -1;
}

.callToAction {
  margin-top: 30px;
}

#callToActionLine {
  height: 200px;
  width: 0px;
  border: 2px solid #F37342;
  margin: 0 auto;
}

.picRow3 {
  display: block;
  margin: 0px auto;
  max-width: 780px;
}

.picRow2 {
  display: block;
  margin: 0px auto;
  max-width: 510px;
}

.picBlock {
  padding: 15px;
}

/*content*/
.whitesection {
  background-color: white;
  width: 100%;
}

#sectionHometitle1 h1 {
  margin: 0px auto 50px auto;
  padding-top: 55px;
}

/*#section-hometitle2 {
  margin: 120px auto 120px auto;
}*/
@media (min-width: 480px) {
  .circle {
    cursor: pointer;
    text-align: center;
    vertical-align: center;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background: #F37342;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
  }
  .circle p {
    font-weight: 500;
    font-size: 20px;
  }
  .whatsUpTaipei h3 {
    font-size: 45px;
  }
  .graySection {
    background-size: cover;
    margin: 50px auto;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection div {
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  .circle {
    cursor: pointer;
    text-align: center;
    vertical-align: center;
    margin: 0 auto;
    width: 50vw;
    height: 50vw;
    max-width: 100px;
    max-height: 100px;
    background: #F37342;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
  }
  .circle p {
    font-weight: 500;
    font-size: 5vw;
  }
  .whatsUpTaipei h3 {
    font-size: 14vw;
  }
  .picBlock {
    display: block;
    margin: 0 auto;
  }
  #blog h1 {
    margin-bottom: 100px;
  }
  .inline {
    margin-bottom: 100px;
  }
  #bannerInfo h1 {
    margin-bottom: 0px;
    font-size: 50px;
    text-shadow: 2px 2px 4px #4c4c57;
  }
  #theme h2 {
    width: 240px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #848486;
  }
  .art {
    width: 240px;
    /* padding-top: 20px;
     padding-bottom: 20px;*/
    text-align: center;
  }
  .graySection {
    background-size: cover;
    margin: 50px auto;
    height: 250px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .graySection div {
    margin-top: 50px;
  }
}
/*What’s up Taipei!*/
.whatsUpTaipei {
  text-align: center;
  color: white;
}

#play {
  color: white;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  /* ...and now for the proper property */
  transition: 0.5s;
}

#play:hover {
  color: #FF0000;
}

/*pic*/
.cb {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

.cb div {
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

#about {
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 0px;
  text-align: center;
}

#blog h1 {
  text-align: center;
  font-size: 40px;
  height: 50px;
  margin-top: 20px;
  width: 80%;
}

#blog h2 {
  text-align: center;
  font-size: 20px;
  width: 60%;
  margin-bottom: 20px;
}

#theme {
  vertical-align: top;
  margin: 5px;
  text-align: center;
}

#theme h1 {
  text-align: center;
  font-size: 40px;
  width: 600px;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#theme h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #848486;
}

#art img {
  width: 292px;
  height: 180px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.inline div {
  display: inline-block;
  text-align: center;
}

.inline {
  display: inline-block;
  text-align: center;
}

.exit button {
  z-index: 10;
  font-size: 20px;
  background-color: transparent;
  border: none;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrowdown {
  border: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.blogposts a {
  position: absolute;
}

.blogposts a:hover {
  text-decoration: none;
  color: white;
}

.blogposts a img {
  width: 100%;
}

.posttitle h3 i {
  float: right;
  font-size: 10px;
}

.posttitle {
  -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;
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.posttitle:hover {
  background-color: rgb(243, 115, 66);
  -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;
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.tourstours {
  max-width: 1000px;
}

.tourkindtitle {
  margin: 0 auto;
}

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