@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dosis:wght@200..800&display=swap");
body {
  position: relative;
  font-family: "DM Sans", serif;
  color: black;
  overflow-x: hidden;
  background-color: #fafafa;
}
body p {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 0;
}
body .btn-red {
  background-color: #D2042D;
  padding: 8px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  display: inline-block;
  width: auto;
}
body .btn-red:hover {
  background-color: #a00322;
  padding: 8px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
}
body .btn-red-p {
  background-color: #D2042D;
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  display: block;
  width: auto;
}
body .btn-red-p:hover {
  background-color: #a00322;
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
}
body .btn-black {
  background-color: black;
  padding: 8px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 25px;
}
body .btn-black:hover {
  background-color: black;
  padding: 8px 20px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
}
body .btn-border {
  background-color: transparent;
  padding: 8px 20px;
  color: #D2042D;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #D2042D;
  transition: 0.5s;
}
body .btn-border:hover {
  background-color: transparent;
  padding: 8px 20px;
  color: #D2042D;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #D2042D;
}
body .navbar {
  padding: 10px;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 990px) {
  body .navbar {
    position: fixed;
    background-color: black;
  }
}
body .navbar .navbar-brand img {
  width: 80px;
}
@media (max-width: 990px) {
  body .navbar .navbar-brand img {
    width: 70px;
  }
}
body .navbar .nav-item .nav-link {
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  transition: 0.5s;
}
body .navbar .nav-item .nav-link:hover {
  color: #f8e42f;
}
body .navbar .nav-item .nav-link.active {
  color: #f8e42f;
}
body .navbar .navbar-toggler {
  box-shadow: none;
  border: none;
  box-shadow: none;
  border: none;
  position: absolute;
  z-index: 4;
  right: 0;
}
body .navbar .navbar-toggler .navbar-toggler-icon {
  box-shadow: none;
  border: none;
  filter: invert(1);
  transition: 0.5s;
}
body .navbar .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
  background-image: url("../img/menu.png") !important;
}
body .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  transition: 0.5s;
  background-image: url("../img/close.png") !important;
}
@media (max-width: 990px) {
  body .navbar .navbar-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #222;
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body .section-padding {
  padding: 60px 0;
}
body .section-padding-b {
  padding: 0 0 60px;
}
body .section-tag {
  font-family: "Dosis", serif;
  font-size: 30px;
  font-weight: 400;
  color: #D2042D;
}
@media (max-width: 990px) {
  body .section-tag {
    font-size: 30px;
  }
}
body .section-title {
  font-family: "DM Sans", serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 990px) {
  body .section-title {
    font-size: 35px;
  }
}
body .mt-20 {
  margin-top: 20px;
}
body a {
  text-decoration: none;
}
body .hero {
  position: relative;
  height: auto;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(to bottom, rgba(2, 2, 2, 0.8), rgba(0, 0, 0, 0) 80%);
  /*    img {
        width: 100%;
        height: 650px;
        object-fit: cover;

        animation: moveImage $animation-duration ease-in-out infinite; // Apply the animation

      }
      @keyframes moveImage {
        0% {
          transform: translateY(0) scale(1); // Start position
        }

        50% {
          transform: translateY(-$image-move-distance) scale(1.01); // Move up slightly
        }

        100% {
          transform: translateY(0) scale(1); // Return to start position
        }
      }
  */
}
body .hero img.divider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
body .hero .search-form {
  position: relative;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  width: auto;
  display: block;
}
body .hero .search-form #messageContainer {
  font-size: 10px;
  color: red;
  line-height: 12px;
}
body .hero .search-form #step-form {
  width: 400px;
  background-color: #f8e42f;
  padding: 20px;
  border-radius: 25px;
}
@media (max-width: 990px) {
  body .hero .search-form #step-form {
    width: auto;
  }
}
body .hero .search-form #step-form legend {
  font-size: 18px;
  color: #1282a2;
  font-weight: 500;
}
body .hero .search-form #step-2,
body .hero .search-form #step-3,
body .hero .search-form #step-4 {
  overflow-x: auto;
  padding: 30px 25px !important;
  width: 100%;
  border-radius: 0;
  background-color: white;
}
body .hero .search-form #step-2 .period,
body .hero .search-form #step-3 .period,
body .hero .search-form #step-4 .period {
  height: 150px;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 .period,
  body .hero .search-form #step-3 .period,
  body .hero .search-form #step-4 .period {
    height: auto;
    margin-bottom: 20px;
  }
}
body .hero .search-form #step-2 .period h3,
body .hero .search-form #step-3 .period h3,
body .hero .search-form #step-4 .period h3 {
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  background: linear-gradient(to right, #D2042D, transparent);
}
body .hero .search-form #step-2 .period p,
body .hero .search-form #step-3 .period p,
body .hero .search-form #step-4 .period p {
  padding: 0 10px;
}
body .hero .search-form #step-2 .period p i,
body .hero .search-form #step-3 .period p i,
body .hero .search-form #step-4 .period p i {
  color: #D2042D;
}
body .hero .search-form #step-2 legend,
body .hero .search-form #step-3 legend,
body .hero .search-form #step-4 legend {
  background-color: #f8e42f;
  color: black;
  padding-left: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 5px 10px;
  text-transform: uppercase;
}
body .hero .search-form #step-2 table,
body .hero .search-form #step-3 table,
body .hero .search-form #step-4 table {
  max-width: 100%;
  border-collapse: collapse;
}
body .hero .search-form #step-2 table thead tr th,
body .hero .search-form #step-3 table thead tr th,
body .hero .search-form #step-4 table thead tr th {
  border-bottom: 1px solid #555;
  color: #D2042D;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
body .hero .search-form #step-2 table tbody tr th,
body .hero .search-form #step-3 table tbody tr th,
body .hero .search-form #step-4 table tbody tr th {
  display: flex;
  align-items: center;
  border: none;
  padding: 10px;
}
body .hero .search-form #step-2 table tbody tr th img,
body .hero .search-form #step-3 table tbody tr th img,
body .hero .search-form #step-4 table tbody tr th img {
  width: 100px;
  height: 100px;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table tbody tr th img,
  body .hero .search-form #step-3 table tbody tr th img,
  body .hero .search-form #step-4 table tbody tr th img {
    width: 90px;
    height: 90px;
  }
}
body .hero .search-form #step-2 table tbody tr td,
body .hero .search-form #step-3 table tbody tr td,
body .hero .search-form #step-4 table tbody tr td {
  border: none;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table tbody tr td,
  body .hero .search-form #step-3 table tbody tr td,
  body .hero .search-form #step-4 table tbody tr td {
    font-size: 14px;
  }
}
body .hero .search-form #step-2 table tbody tr td h4,
body .hero .search-form #step-3 table tbody tr td h4,
body .hero .search-form #step-4 table tbody tr td h4 {
  color: black;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 22px;
  margin: 0;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table tbody tr td h4,
  body .hero .search-form #step-3 table tbody tr td h4,
  body .hero .search-form #step-4 table tbody tr td h4 {
    font-size: 14px;
  }
}
body .hero .search-form #step-2 table tbody tr td p,
body .hero .search-form #step-3 table tbody tr td p,
body .hero .search-form #step-4 table tbody tr td p {
  color: #555;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table tbody tr td p,
  body .hero .search-form #step-3 table tbody tr td p,
  body .hero .search-form #step-4 table tbody tr td p {
    font-size: 12px;
  }
}
body .hero .search-form #step-2 table.price-chart thead tr th,
body .hero .search-form #step-3 table.price-chart thead tr th,
body .hero .search-form #step-4 table.price-chart thead tr th {
  border: 1px solid #555;
  text-align: center;
  font-size: 16px;
  color: black;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table.price-chart thead tr th,
  body .hero .search-form #step-3 table.price-chart thead tr th,
  body .hero .search-form #step-4 table.price-chart thead tr th {
    font-size: 14px;
  }
}
body .hero .search-form #step-2 table.price-chart tbody tr td,
body .hero .search-form #step-3 table.price-chart tbody tr td,
body .hero .search-form #step-4 table.price-chart tbody tr td {
  border: 1px solid #555;
  text-align: center;
}
body .hero .search-form #step-2 table.price-chart tbody tr td h4,
body .hero .search-form #step-3 table.price-chart tbody tr td h4,
body .hero .search-form #step-4 table.price-chart tbody tr td h4 {
  font-size: 16px !important;
}
@media (max-width: 990px) {
  body .hero .search-form #step-2 table.price-chart tbody tr td h4,
  body .hero .search-form #step-3 table.price-chart tbody tr td h4,
  body .hero .search-form #step-4 table.price-chart tbody tr td h4 {
    font-size: 14px;
  }
}
body .hero .search-form h2 {
  text-align: center;
  color: #f8e42f;
}
body .hero .search-form label {
  text-align: left;
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
  color: #333;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}
body .hero .search-form input,
body .hero .search-form select,
body .hero .search-form textarea {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: white;
  margin-bottom: 10px;
}
body .hero .search-form input:focus,
body .hero .search-form select:focus,
body .hero .search-form textarea:focus {
  border-color: #f8e42f;
  outline: none;
  box-shadow: 0 0 5px rgba(248, 228, 47, 0.5);
}
body .hero .search-form select {
  min-width: 50px;
}
body .hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
body .hero video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 80%);
  z-index: 1;
}
body .hero .content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}
body .hero .content h1 {
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 990px) {
  body .hero .content h1 {
    font-size: 42px;
  }
}
body .about {
  padding: 30px 0 70px;
}
body .about .service-item {
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body .about .service-item:hover img {
  transform: scale(1.1);
}
body .about .service-item .item-img {
  overflow: hidden;
  height: 220px;
}
body .about .service-item .item-img img {
  transition: 0.3s;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .about .service-item .content {
  padding: 20px;
}
body .about .service-item .content h5 {
  font-size: 24px;
  font-weight: 500;
}
body .about .service-item .content p {
  margin-bottom: 10px;
}
body .about .service-item .content a {
  color: #D2042D;
  font-size: 16px;
  font-weight: 400;
}
body .overflow-hidden {
  overflow: hidden;
}
body .vehicle {
  background: linear-gradient(to bottom, #FCB519, rgba(252, 181, 25, 0.3764705882)), url("../img/bg-vehicle.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  margin-top: 100px;
}
@media (max-width: 990px) {
  body .vehicle {
    text-align: center;
  }
}
body .vehicle .tuktuk-swiper .swiper-button-next,
body .vehicle .tuktuk-swiper .swiper-button-prev {
  color: #D2042D;
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
}
body .vehicle .tuktuk-swiper .swiper-button-next::after,
body .vehicle .tuktuk-swiper .swiper-button-prev::after {
  font-size: 20px;
}
body .vehicle .tuktuk-swiper .tuktuk-item {
  background-color: white;
  text-align: center;
  position: relative;
}
body .vehicle .tuktuk-swiper .tuktuk-item .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
body .vehicle .tuktuk-swiper .tuktuk-item .item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .vehicle .tuktuk-swiper .tuktuk-item .content {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}
body .vehicle .tuktuk-swiper .tuktuk-item .content h5 {
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}
body .vehicle .box {
  background-color: transparent;
  padding: 30px 20px 100px;
  border-radius: 20px;
  margin-top: -170px;
  margin-bottom: 20px;
  position: relative;
  background-image: url("../img/brush-bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
body .vehicle .box img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
body .vehicle .contact {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 30px;
  width: auto;
}
@media (max-width: 990px) {
  body .vehicle .contact {
    flex-wrap: wrap;
    justify-content: center;
  }
}
body .vehicle .contact i {
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: black;
  margin-right: 5px;
}
body .vehicle .contact a {
  color: black;
  font-size: 32px;
  font-weight: 600;
}
body .vehicle .contact-2 {
  margin-top: 10px;
  text-align: center;
}
body .vehicle .contact-2 h5 {
  font-size: 18px;
  font-weight: 500;
  color: black;
}
body .vehicle .contact-2 h5 a {
  color: black;
}
body .vehicle .contact-2 h5 span {
  font-weight: 700;
}
body .video {
  position: relative;
  margin-top: 60px;
}
body .video video {
  width: 100%;
}
body .video .content {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50px;
  width: 45%;
  background-color: white;
  padding: 30px 20px;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 990px) {
  body .video .content {
    position: relative;
    transform: none;
    padding: 0 0 30px;
    width: 100%;
    left: 0;
    box-shadow: none;
  }
}
body .review {
  position: relative;
}
body .gallery .gallery-swiper {
  margin-top: 30px;
}
body .gallery .gallery-swiper .gallery-item {
  cursor: pointer;
  position: relative;
}
body .gallery .gallery-swiper .gallery-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #D2042D, black);
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
body .gallery .gallery-swiper .gallery-item:hover:before {
  opacity: 0.4;
}
body .gallery .gallery-swiper .gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .gallery .fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
body .gallery .fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}
body .gallery .fullscreen-overlay.active {
  display: flex;
  /* Show when active */
}
body .book .book-item {
  width: 100%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
}
body .book .book-item h5 {
  background-color: #f8e42f;
  color: black;
  margin-right: 10px;
  height: 48px;
  width: 48px;
  margin: 0;
  padding: 0;
  line-height: 45px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  left: 0;
  position: absolute;
  border-right: 1px solid black;
}
body .book .book-item p {
  padding-left: 60px;
  margin: 0;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
body .hotel {
  background: linear-gradient(to top, rgba(210, 4, 45, 0.3137254902), rgba(0, 0, 0, 0.3137254902)), url("../img/rock-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  margin-bottom: 150px;
  position: relative;
}
@media (max-width: 990px) {
  body .hotel {
    text-align: center;
  }
}
body .hotel img.divider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
}
body .hotel img.divider-2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  height: 50px;
}
body .hotel h6 {
  color: white;
  background-color: #D2042D;
  border-radius: 30px;
  display: block;
  width: auto;
  font-size: 32px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 5px 20px;
}
body .hotel .hotel-img {
  margin-bottom: -200px;
  padding-top: 50px;
  position: relative;
}
body .hotel .hotel-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .hotel img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .hotel .section-title {
  color: #f8e42f;
}
body .hotel p {
  color: white;
}
body footer {
  background: #222;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 50px;
  color: white;
}
@media (max-width: 990px) {
  body footer {
    text-align: center;
  }
}
body footer .footer-top {
  background-color: #f1f1f1;
  margin-bottom: 50px;
  padding: 50px 0 20px;
}
body footer .footer-top h5 {
  color: #D2042D !important;
}
body footer .footer-top .links {
  padding: 0 10px !important;
}
body footer .footer-top .links li {
  color: black !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
body footer img {
  width: 120px;
  margin-bottom: 20px;
}
body footer .contact {
  margin: 10px 0 0;
  padding: 0;
}
body footer .contact li {
  list-style: none;
  padding-bottom: 10px;
}
body footer .contact li:first-child {
  margin-right: 10px;
}
body footer .contact li a {
  color: white;
  font-size: 16px;
  font-weight: 400;
}
body footer .contact li a:hover {
  color: #f8e42f;
}
body footer .social {
  margin: 0;
  display: flex;
  margin-top: 10px;
  padding: 0;
}
@media (max-width: 990px) {
  body footer .social {
    justify-content: center;
  }
}
body footer .social li {
  list-style: none;
}
body footer .social li a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f8e42f;
  color: #222;
  line-height: 32px;
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 0 3px;
}
body footer h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
body footer .links {
  padding: 0;
}
body footer .links li {
  list-style: none;
  margin-bottom: 5px;
}
body footer .links li a {
  font-size: 16px;
  font-weight: 400;
  color: white;
}
body footer .links li a:hover {
  color: #f8e42f;
}
body footer .copyright {
  margin: 10px 0 0;
  padding: 20px 0 0;
  font-size: 14px;
  font-weight: 600;
}
body footer .copyright a {
  color: white;
}
body .page-header {
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
body .page-header:before {
  content: "";
  background: linear-gradient(to bottom, rgba(2, 2, 2, 0.6), rgba(2, 2, 2, 0.4));
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
body .page-header img.divider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
body .page-header .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 3;
  text-align: center;
}
body .page-header .content h5 {
  font-size: 42px;
  font-weight: 500;
  color: white;
}
body .tour-page {
  padding: 50px 0;
}
@media (max-width: 990px) {
  body .tour-page {
    text-align: center;
  }
}
body .tour-page .tour-item {
  background-color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body .tour-page .tour-item:hover img {
  transform: scale(1.1);
}
body .tour-page .tour-item .overlay {
  background: linear-gradient(to bottom, #D2042D, black);
  opacity: 0.5;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
body .tour-page .tour-item .item-img img {
  width: 100%;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
body .tour-page .tour-item .content {
  padding: 10px;
  text-align: left;
  position: absolute;
  margin: 10px;
  left: 0;
  bottom: 0;
}
body .tour-page .tour-item .content .days {
  background-color: #f8e42f;
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
}
body .tour-page .tour-item .content .days h6 {
  font-size: 16px;
  font-weight: 700;
  color: black;
  padding: 0;
  margin: 0;
}
body .tour-page .tour-item .content h5 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
body .tour-page .tour-item .content p {
  color: white;
  line-height: 1.2;
}
body .pricing-page {
  padding: 50px 0;
}
body .pricing-page h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #D2042D;
}
body .pricing-page table {
  display: inline-block;
}
body .pricing-page table thead tr th {
  border: 1px solid #555;
  text-align: center;
  font-size: 16px;
  color: black;
  text-transform: uppercase;
  font-weight: 400;
}
body .pricing-page table thead tr th:first-child {
  background-color: #f8e42f;
}
@media (max-width: 990px) {
  body .pricing-page table thead tr th {
    font-size: 14px;
  }
}
body .pricing-page table tbody tr td {
  border: 1px solid #555;
  text-align: center;
}
body .pricing-page table tbody tr td:first-child {
  background-color: #f8e42f;
}
body .pricing-page table tbody tr td h4 {
  font-size: 16px !important;
}
@media (max-width: 990px) {
  body .pricing-page table tbody tr td h4 {
    font-size: 14px;
  }
}
body .pricing-page table.table-extra thead tr th {
  border: 1px solid #555;
  text-align: center;
  font-size: 16px;
  color: black;
  text-transform: uppercase;
  font-weight: 400;
  background-color: #f8e42f;
}
body .pricing-page table.table-extra thead tr th:first-child {
  text-align: left;
}
@media (max-width: 990px) {
  body .pricing-page table.table-extra thead tr th {
    font-size: 14px;
  }
}
body .pricing-page table.table-extra tbody tr td {
  border: 1px solid #555;
  text-align: center;
}
body .pricing-page table.table-extra tbody tr td:first-child {
  background-color: white;
  text-align: left;
}
body .pricing-page table.table-extra tbody tr td h4 {
  font-size: 16px !important;
}
@media (max-width: 990px) {
  body .pricing-page table.table-extra tbody tr td h4 {
    font-size: 14px;
  }
}
body .about-page {
  padding: 50px 0;
}
@media (max-width: 990px) {
  body .about-page {
    text-align: center;
  }
}
body .about-page img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .about-page h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin-top: 10px;
}
body .about-page h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  padding-bottom: 10px;
  margin-top: 20px;
}
body .wework-page {
  padding: 50px 0;
}
body .wework-page img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .wework-page .item {
  text-align: center;
  padding: 15px;
}
@media (max-width: 990px) {
  body .wework-page .item {
    padding: 40px 15px;
  }
}
body .wework-page .item h5 {
  font-size: 25px;
  font-weight: 700;
}
body .wework-page .item p {
  margin-bottom: 20px;
}
body .wework-page .tuktuk-srilanka h5 {
  font-size: 25px;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 0;
}
body .wework-page .tuktuk-srilanka p {
  padding: 0;
  margin-bottom: 20px;
}
body .wework-page .yellow-box {
  background-color: #f8e42f;
}
body .details-page {
  padding: 50px 0;
}
@media (max-width: 990px) {
  body .details-page {
    text-align: center;
  }
}
body .details-page img {
  width: 100%;
}
body .details-page h6 {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
}
body .blog-page {
  padding: 50px 0;
}
body .blog-page .item {
  background-color: white;
  text-align: center;
}
body .blog-page .item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .blog-page .item .content {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}
body .blog-page .item .content h5 {
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}
body .blog-page .item .content h4 {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
}
body .licence-page {
  padding: 50px 0;
}
body .licence-page ul {
  padding-left: 0;
}
body .licence-page ul li {
  list-style: none;
  font-size: 17px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 20px;
}
body .licence-page ul ul {
  margin-left: 10px;
}
body .licence-page ul ul li {
  margin-top: 0;
}
body .licence-page .form-container p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 20px;
  margin-bottom: 10px;
  padding: 0;
}
body .licence-page .form-container h1 {
  text-align: center;
  color: #f8e42f;
}
body .licence-page .form-container label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 5px;
}
body .licence-page .form-container input[type=text],
body .licence-page .form-container select {
  width: 50%;
  background-color: #f1f1f1;
  padding: 10px;
  border: none;
  margin-bottom: 15px;
  box-shadow: none;
  border-radius: 0;
  margin-top: 10px;
}
body .licence-page .form-container input[type=file] {
  width: 50%;
  background-color: transparent;
  padding: 10px;
  border: none;
  margin-bottom: 15px;
  box-shadow: none;
  border-radius: 0;
  margin-top: 10px;
}
body .licence-page .form-container .terms {
  margin: 15px 0;
}
body .licence-page .form-container button {
  background-color: #D2042D;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
body .licence-page .form-container button:hover {
  background-color: #D2042D;
}
body .gallery-page {
  padding: 50px 0;
}
@media (max-width: 990px) {
  body .gallery-page {
    text-align: center;
  }
}
body .gallery-page .gallery-item {
  cursor: pointer;
  position: relative;
}
body .gallery-page .gallery-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #D2042D, black);
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.1s;
  pointer-events: none;
}
body .gallery-page .gallery-item:hover:before {
  opacity: 0.4;
}
body .gallery-page .gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
body .gallery-page .fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
body .gallery-page .fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}
body .gallery-page .fullscreen-overlay.active {
  display: flex;
  /* Show when active */
}
body .contact-page {
  padding: 50px 0;
}
@media (max-width: 990px) {
  body .contact-page {
    text-align: center;
  }
}
body .contact-page .social {
  margin: 0;
  display: flex;
  margin-top: 10px;
  padding: 0;
}
@media (max-width: 990px) {
  body .contact-page .social {
    justify-content: center;
  }
}
body .contact-page .social li {
  list-style: none;
}
body .contact-page .social li a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #D2042D;
  color: white;
  line-height: 32px;
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 0 3px;
}
body .contact-page .contact {
  display: flex;
  margin-top: 10px;
  align-items: center;
}
@media (max-width: 990px) {
  body .contact-page .contact {
    flex-wrap: wrap;
    justify-content: center;
  }
}
body .contact-page .contact i {
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: white;
  background-color: #25d366;
  margin-right: 5px;
}
body .contact-page .contact i.bi.bi-telephone {
  background-color: #ea4335 !important;
}
body .contact-page .contact a {
  color: black;
  font-size: 32px;
  font-weight: 600;
}
body .contact-page .contact-2 {
  margin-top: 10px;
}
body .contact-page .contact-2 h5 {
  font-size: 18px;
  font-weight: 500;
}
body .contact-page .contact-2 h5 a {
  color: black;
}
body .contact-page .contact-2 h5 span {
  font-weight: 700;
}
body .contact-page img {
  width: 100%;
}
body .contact-page .contact-form {
  border-radius: 0;
  padding: 20px 0 0;
}
body .contact-page .contact-form h2 {
  text-align: center;
  color: #f8e42f;
}
body .contact-page .contact-form .form-group {
  margin-bottom: 15px;
}
body .contact-page .contact-form .form-group label {
  text-align: left;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
body .contact-page .contact-form .form-group input,
body .contact-page .contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 16px;
}
body .contact-page .contact-form .form-group input:focus,
body .contact-page .contact-form .form-group textarea:focus {
  border-color: #f8e42f;
  outline: none;
  box-shadow: 0 0 5px rgba(248, 228, 47, 0.5);
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  animation: move 3s linear infinite;
  z-index: 5;
}
.whatsapp:hover {
  animation: none;
}
@keyframes move {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.03);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.whatsapp img {
  width: 150px;
}

.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(0, 0, 0, 0.3);
}

.popup-content {
  background-color: #f1f1f1;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 30px 30px 50px;
  border-radius: 20px;
  width: 60%;
  box-shadow: 1px 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 990px) {
  .popup-content {
    width: 80%;
  }
}
.popup-content h5 {
  color: #D2042D;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 10px;
  border-bottom: 0.05em solid #D2042D;
  text-transform: uppercase;
}
.popup-content p {
  font-size: 14px;
  color: #434343;
  line-height: 16px;
  padding-bottom: 10px;
}

.popup.show .popup-content {
  transform: scale(1);
  opacity: 1;
  /* Scale to normal size */
}

.close {
  color: #555;
  float: right;
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 20px;
}

.close:focus,
.close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */