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

a {
  color: #F37342;
}

@media (min-width: 800px) {
  #map {
    width: 80vw;
    height: 25vw;
    max-width: 700px;
    min-height: 300px;
    max-height: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  #map {
    width: 80vw;
    height: 25vw;
    max-width: 600px;
    min-height: 300px;
    max-height: 600px;
    margin: 0 auto;
  }
}
#map iframe {
  width: 100%;
  height: 100%;
}

.posta {
  color: #848486;
}

.categoryselected {
  cursor: pointer;
  background-color: #F37342;
  color: white;
}

.categorynotselected {
  cursor: pointer;
  background-color: white;
  color: #F37342;
}

.categorynotselected:hover {
  cursor: pointer;
  background-color: #F37342;
  color: white;
}

#categoryselected {
  cursor: pointer;
  cursor: pointer;
  background-color: #F37342;
  color: white;
}

#relatedstory {
  margin-top: 40px;
  text-align: center;
}

#relatedstory div {
  display: inline-block;
  vertical-align: top;
}

.relatedstorycap {
  color: #F37342;
  font-size: 30px;
}

#arthor {
  height: 50px;
  vertical-align: middle;
  color: #F37342;
  font-weight: thin;
}

#arthor h3 {
  font-size: 20px;
}

#arthor h3 span {
  cursor: pointer;
}

#arthor span a i {
  color: #F37342;
  font-size: 40px;
  margin-left: 20px;
}

#arthor span a {
  text-decoration: none;
}

.post:hover a {
  text-decoration: none;
  color: #F37342;
}

.post: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: #F37342;
}

.post {
  color: #848486;
  -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;
  margin-top: 40px;
}

.photodiv img, .photodiv h2 {
  position: absolute;
}

.category {
  cursor: pointer;
}

.category div:hover {
  text-decoration: none;
}

.category a:hover {
  text-decoration: none;
}

@media (min-width: 1000px) {
  .slidecap img {
    /*left: calc(-750px + 50vw);*/
    width: 100vw;
  }
  .post {
    margin: 25px;
  }
  .postcap {
    /*color: #848486;*/
    width: 320px;
    text-align: left;
    font-size: 20px;
  }
  .photodiv {
    position: relative;
    text-align: left;
    height: 210px;
    width: 320px;
  }
  .photodiv img {
    width: 320px;
  }
  .photodiv h2 {
    font-size: 20px;
    padding: 10px;
    top: 160px;
    color: white;
    background-color: #F37342;
  }
}
@media (min-width: 700px) and (max-width: 1000px) {
  .slidecap img {
    overflow: hidden;
    position: absolute;
    left: calc(-750px + 50vw);
  }
  .post {
    margin: 15px;
  }
  .postcap {
    color: #848486;
    width: 30vw;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
    font-size: 20px;
  }
  .photodiv {
    position: relative;
    text-align: left;
    height: 22vw;
    min-width: 250px;
    max-width: 300px;
    width: 30vw;
  }
  .photodiv img {
    width: 30vw;
    min-width: 250px;
    max-width: 300px;
  }
  .photodiv h2 {
    font-size: 20px;
    padding: 10px;
    top: 16vw;
    color: white;
    background-color: #F37342;
  }
}
@media (min-width: 600px) and (max-width: 700px) {
  .slidecap img {
    overflow: hidden;
    position: absolute;
    left: calc(-750px + 50vw);
  }
  .post {
    margin: 15px;
  }
  .postcap {
    color: #848486;
    width: 30vw;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
    font-size: 20px;
  }
  .photodiv {
    position: relative;
    text-align: left;
    height: 22vw;
    min-height: 170px;
    min-width: 250px;
    max-width: 300px;
    width: 30vw;
  }
  .photodiv img {
    width: 30vw;
    min-width: 250px;
    max-width: 300px;
  }
  .photodiv h2 {
    font-size: 20px;
    padding: 10px;
    top: 120px;
    color: white;
    background-color: #F37342;
  }
}
@media (max-width: 600px) {
  .slidecap img {
    overflow: hidden;
    position: absolute;
    left: calc(-750px + 50vw);
  }
  .post {
    margin: 15px;
  }
  .postcap {
    color: #848486;
    width: 80vw;
    min-width: 250px;
    text-align: left;
    font-size: 20px;
  }
  .photodiv {
    position: relative;
    text-align: left;
    height: 53vw;
    min-height: 170px;
    min-width: 250px;
    width: 80vw;
  }
  .photodiv img {
    width: 80vw;
    min-width: 250px;
  }
  .photodiv h2 {
    font-size: 4vw;
    padding: 10px;
    top: 42vw;
    color: white;
    background-color: #F37342;
  }
}
@media (min-width: 600px) {
  .category {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .category div {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin: 5px;
  }
  .category div:hover {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin: 5px;
  }
  .category div h1 {
    margin-top: 13px;
    padding-top: 3px;
    font-size: 18px;
    width: 7vw;
    min-width: 120px;
  }
  .category a {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin: 5px;
    color: #F37342;
  }
  .category a:hover {
    border: 4px solid #F37342;
    background-color: #F37342;
    border-radius: 25px;
    color: white;
    display: inline-block;
    text-align: center;
    margin: 5px;
  }
  .category a h1 {
    margin-top: 10px;
    margin-top: 10px;
    font-size: 20px;
    width: 7vw;
    max-width: 141px;
    min-width: 120px;
  }
  .cap {
    position: absolute;
    top: 300px;
    left: 20vw;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .cap h2 {
    font-size: 25px;
    width: 30vw;
    color: white;
    margin: 20px;
  }
  #arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  #outtercategory {
    margin-top: 80px;
  }
  #category {
    display: none;
  }
  .category {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .category div {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin: 2px;
  }
  .category div:hover {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin: 2px;
  }
  .category div h1 {
    margin-top: 8px;
    margin-bottom: 5px;
    font-size: 12px;
    width: 7vw;
    min-width: 80px;
  }
  .category a {
    border: 4px solid #F37342;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    color: #F37342;
  }
  .category a:hover {
    border: 4px solid #F37342;
    background-color: #F37342;
    border-radius: 25px;
    color: white;
    display: inline-block;
    text-align: center;
    margin: 5px;
  }
  .category a h1 {
    margin-top: 10px;
    padding-top: 3px;
    font-size: 18px;
    width: 7vw;
    min-width: 120px;
  }
  #arrow {
    width: 55px;
    height: 55px;
    background-color: #F37342;
  }
  .arrow {
    background-color: #F37342;
  }
  .arrowdiv {
    background-color: #F37342;
  }
  #Pagination {
    display: none;
  }
  .cap {
    position: absolute;
    top: 300px;
    left: 15vw;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .cap h2 {
    font-size: 25px;
    width: 60vw;
    /*min-width: 200px;*/
    color: white;
    margin: 5vw;
  }
}
.slidecap img {
  overflow: hidden;
  position: absolute;
  /*left: calc(-750px + 50vw);*/
  /*width: 100vw;*/
}

.slidecap {
  position: relative;
  width: 100vw;
  overflow: hidden;
  height: 500px;
  /*text-align: center;*/
}

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

.feature iframe {
  width: 100%;
  height: 200px;
}

.blogcon {
  margin: auto 0px;
}

#themenav h1 {
  font-size: 25px;
  width: 120px;
  height: 40px;
}

.white {
  position: fixed;
  width: 100%;
}

@media (min-width: 480px) {
  .blogintro {
    height: 150px;
  }
  .blogintro {
    height: 120px;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  #themenav h1 {
    font-size: 30px;
    width: 120px;
    height: 40px;
    margin-top: 10px;
  }
  #share h2 {
    width: 400px;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 50px;
  }
}
.sharepic {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  text-align: center;
}

/*Spots*/
#themenavb {
  margin-top: 50px;
  margin-bottom: 20px;
}

#themenav {
  margin-top: 60px;
  margin-bottom: 20px;
}

#themenavb h1 {
  font-size: 20px;
  width: 180px;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#themenavb h2 {
  text-align: left;
  width: 282px;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/*#themenav h1 {
  font-size: 25px;
  width: 120px;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;

}*/
#themenav h2 {
  text-align: left;
  width: 282px;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.inline div {
  vertical-align: top;
  display: inline-block;
}

.use {
  color: #848486;
}

.se {
  color: white;
  background-color: #848486;
}

.ca {
  margin-top: 10px;
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}

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

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

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

.icon {
  height: 160px;
  width: 160px;
  margin-top: 10px;
  display: inline-block;
}

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

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

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

#intro div {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  #intro img {
    width: 100%;
    margin-bottom: 20px;
  }
}
#application {
  text-align: center;
  background-color: #b6b8ba;
}

#application h1 {
  padding: 20px;
  padding-top: 40px;
  margin: 0px;
  color: white;
}

#application h2 {
  color: white;
}

#application input {
  width: 400px;
  height: 50px;
  padding-left: 10px;
  margin: 10px;
}

#application select {
  width: 400px;
  margin: 10px 0;
}

@media (max-width: 700px) {
  #application input {
    width: 80%;
  }
}
#application button {
  width: 120px;
  height: 40px;
  margin-top: 30px;
  margin-bottom: 70px;
  border: 2px solid white;
  background-color: #F37342;
  color: white;
  font-size: 25px;
}

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

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

.fb-comments, .fb-comments * {
  width: 100% !important;
}

.share {
  background: url(/home/share.png) no-repeat center center;
  margin-top: 30px;
  height: 60px;
  width: 300px;
  display: inline-block;
}

.blogposts div {
  position: absolute;
}

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

.blogposts div 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);
}

.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;
  font-size: 30px;
}

.blogposts {
  width: 100%;
  height: 450px;
  position: relative;
}

@media (max-width: 500px) {
  .posttitle {
    background-color: rgba(243, 115, 66, 0.8);
    color: white;
    min-width: 200px;
    max-width: 400px;
    right: 0;
    top: 20vw;
    width: 70vw;
  }
  .posttitle h3 {
    font-size: 7vw;
    margin: 9px;
  }
  .blogposts {
    width: 100%;
    height: 50vw;
    position: relative;
  }
}
@media (max-width: 1100px) and (min-width: 500px) {
  .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;
  }
}
@media (min-width: 1100px) {
  .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;
  }
}

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