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 {
  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 {
  opacity: 0.9;
  z-index: 10;
  display: flex;
  min-height: 60px;
  width: 100%;
  position: fixed;
  top: 0px;
  background-color: #F37342;
}

.mobile_Nav_X {
  display: none;
}

@media (max-width: 575px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 576px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 768px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile_Nav_Open {
    display: none;
  }
}
.mobile_Nav_Open a {
  display: flex;
  align-items: center;
}

.mobile_Nav_Close {
  display: none;
}

@media (max-width: 575px) {
  .mobile_Nav_X_Open {
    display: flex;
  }
}
@media (min-width: 576px) {
  .mobile_Nav_X_Open {
    display: flex;
  }
}
@media (min-width: 768px) {
  .mobile_Nav_X_Open {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile_Nav_X_Open {
    display: none;
  }
}
.mobile_Nav_X_Open a {
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .menu_Open {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .menu_Open li {
    padding: 11px;
  }
}
@media (min-width: 576px) {
  .menu_Open {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .menu_Open li {
    padding: 11px;
  }
}
@media (min-width: 768px) {
  .menu_Open {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .menu_Open li {
    padding: 11px;
  }
}

.menu_Close {
  display: flex;
}
@media (max-width: 575px) {
  .menu_Close {
    display: none;
  }
}
@media (min-width: 576px) {
  .menu_Close {
    display: none;
  }
}
@media (min-width: 768px) {
  .menu_Close {
    display: none;
  }
}
@media (min-width: 992px) {
  .menu_Close {
    display: flex;
  }
}

.main-header {
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1150px;
  align-items: center;
}

.main-nav {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
}
.main-nav li > a {
  white-space: nowrap;
}
@media (max-width: 575px) {
  .main-nav li > a {
    height: 43px;
    width: 43px;
    padding: 10px;
    color: white;
    font-size: 20px;
    -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;
  }
  .main-nav li > 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;
    text-decoration: none;
    color: #F37342;
    background-color: #fff;
  }
}
@media (min-width: 576px) {
  .main-nav li > a {
    height: 43px;
    width: 43px;
    padding: 10px;
    color: white;
    font-size: 20px;
    -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;
  }
  .main-nav li > 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;
    text-decoration: none;
    color: #F37342;
    background-color: #fff;
  }
}

@media (max-width: 575px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 576px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 768px) {
  .mobile_Nav_Open {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile_Nav_Open {
    display: none;
  }
}

.main-nav-logo, #menu {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .main-nav-logo, #menu {
    display: none;
  }
}
@media (min-width: 576px) {
  .main-nav-logo, #menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .main-nav-logo, #menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-nav-logo, #menu {
    display: flex;
  }
}

#logoOrange {
  height: 50px;
}

#button a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.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 {
  width: 100%;
  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%;
  }
}

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

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