@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spirax&display=swap");
body, ::-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
}
body, :-ms-input-placeholder {
  font-family: 'Poppins', sans-serif;
}
body, ::-ms-input-placeholder {
  font-family: 'Poppins', sans-serif;
}
body, ::placeholder {
  font-family: 'Poppins', sans-serif;
}

.upcoming-trips .content .header-row {
  color: #1b2b3a66;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #1b2b3a66;
}

.upcoming-trips .content .row-items {
  border-bottom: 1px solid #1b2b3a66;
  padding: 10px 0;
}

.upcoming-trips .content .row-items .trip-name a {
  color: #000;
}

.upcoming-trips .content .row-items p {
  margin-bottom: 0;
}

.upcoming-trips .content .row-items .date, .upcoming-trips .content .row-items .discounted, .upcoming-trips .content .row-items .days, .upcoming-trips .content .row-items .status {
  font-size: 0.8rem;
}

.upcoming-trips .content .row-items .cp {
  font-weight: bold;
  font-size: 0.8rem;
}

.upcoming-trips .content .row-items .cp span {
  font-weight: normal;
}

.upcoming-trips .content .row-items .cp span {
  background: #3BBF44;
  padding: 5px;
  color: #fff;
  margin-left: 5px;
  border-radius: 3px;
}

.upcoming-trips .content .row-items .enquire-btn {
  padding: 10px 25px;
  background: transparent;
  white-space: nowrap;
  border: 1px solid #f15927;
  border-radius: 25px;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}

.upcoming-trips .content .row-items .enquire-btn:hover {
  background: #f15927;
}

.upcoming-trips .content .row-items .enquire-btn:hover a {
  color: #fff;
}

.upcoming-trips .content .row-items .enquire-btn a {
  font-size: 0.8rem;
  color: #f15927;
  -webkit-transition: ease-in color 0.2s;
  transition: ease-in color 0.2s;
}

.upcoming-trips .content .row-items .enquire-btn a:hover {
  text-decoration: none;
}

#CDSWIDWRL {
  margin: 0 auto !important;
  min-width: 100%;
}

.secondary-header .header-icon.call {
  display: none;
}

.menu-hamberger {
  display: none;
}

.menu-hamberger div {
  position: relative;
  width: 15px;
  height: 3.5px;
  margin-right: 0;
  background: black;
  border-radius: 5px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.menu-hamberger div::before, .menu-hamberger div::after {
  content: "";
  display: block;
  width: 25px;
  height: 3.5px;
  background: black;
  position: absolute;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}

.menu-hamberger div::before {
  top: -8px;
  right: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.menu-hamberger div::after {
  bottom: -8px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  right: 0;
}

.menu-hamberger div.active {
  visibility: hidden;
}

.menu-hamberger div.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  visibility: visible;
}

.menu-hamberger div.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  visibility: visible;
}

.popup-container.active {
  opacity: 1;
  pointer-events: all;
}

.popup-container {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  top: 0%;
  left: 0%;
  width: 100vw;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d9d9d973;
  padding: 2rem;
  z-index: 2000;
}

.popup-container .popup-content {
  background: #f2f2f2;
  position: relative;
  max-height: 90vh;
  overflow-y: scroll;
  padding: 2rem;
  overflow-x: hidden;
  border-radius: 5px;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  width: 60%;
}

.popup-container .popup-content textarea {
  height: 100px;
  resize: none;
}

.popup-container .popup-content p {
  margin-bottom: 0;
}

.popup-container .popup-content input, .popup-container .popup-content label {
  width: 100%;
}

.popup-container .popup-content i#close {
  position: absolute;
  top: 10px;
  left: calc(100% - 20px);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.popup-container .popup-content i#close:hover {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.lg-actions button {
  background: #fff !important;
}

.lg-actions button:after {
  color: #000 !important;
}

.lg-actions button:hover {
  background: #000 !important;
}

.lg-actions button:hover:after {
  color: #fff !important;
}

.discount {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: transparent;
  overflow: hidden;
}

.ribbon {
  top: -6px;
  color: white;
  font-size: 1.1rem;
}

.ribbon::after {
  content: '';
  height: 6px;
  width: 5px;
  background: #7636a3;
  position: absolute;
  left: -5px;
  border-top-left-radius: 5px;
  top: 0;
  z-index: 1;
}

.ribbon div {
  padding: 0.5rem 1.5rem;
}

.ribbon .best {
  background: #fa6400;
}

.ribbon .guaranteed {
  background: #00b600;
}

.ribbon .group {
  background: #0091ff;
}

.ribbon .private {
  background: #ca8d42;
}

ul {
  margin-left: 0;
}

button, #comments input[type="submit"], #popup-content input[type="submit"] {
  background: #F2811D;
  font-family: 'Poppins' , sans-serif;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
          box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  color: #fff;
  padding: 12px 2.5rem;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-in, -webkit-transform 0.1s linear;
  transition: all 0.4s ease-in, -webkit-transform 0.1s linear;
  transition: all 0.4s ease-in, transform 0.1s linear;
  transition: all 0.4s ease-in, transform 0.1s linear, -webkit-transform 0.1s linear;
}

button:hover, #comments input[type="submit"]:hover, #popup-content input[type="submit"]:hover {
  background: #f15927;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

address {
  margin-bottom: 0;
}

.header-icon {
  height: 36px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: bold;
  text-align: center;
}

.faq .accordion {
  max-width: 1000px;
}

.faq .accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.faq .accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.faq .accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.faq .accordion-item-header.active::after {
  content: "\2212";
}

.faq .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.faq .accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  -o-border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#34495e), to(transparent)) 1;
     border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.top-section-title {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.top-section-title h5 {
  font-size: 1.5rem;
  color: #f15927;
  position: relative;
  text-align: left !important;
  line-height: 15px;
  font-family: 'Spirax', sans-serif;
  font-weight: 700;
}

.top-section-title h4 {
  font-weight: 900;
  font-size: 2.5rem;
  color: #0D0D0D;
  text-align: left !important;
}

.owl-prev {
  position: absolute;
  left: -12px;
  top: 40%;
}

.owl-next {
  position: absolute;
  right: -5px;
  top: 40%;
}

.owl-nav {
  margin-top: 0 !important;
}

.search-results .button, .archive .button {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
  margin-bottom: 1rem;
}

.search-results .item, .archive .item {
  margin-bottom: 4rem;
  z-index: 2;
}

.search-results .item .image:hover img, .archive .item .image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.search-results .item .image, .archive .item .image {
  position: relative;
  z-index: 1;
}

.search-results .item .image .img, .archive .item .image .img {
  overflow: hidden;
}

.search-results .item .image .ribbon, .search-results .item .image .title, .search-results .item .image .pricing, .archive .item .image .ribbon, .archive .item .image .title, .archive .item .image .pricing {
  position: absolute;
  right: 0;
  z-index: 3;
}

.search-results .item .image .ribbon, .archive .item .image .ribbon {
  border-top-right-radius: 5px;
}

.search-results .item .image .pricing, .archive .item .image .pricing {
  height: 60px;
  z-index: unset;
  right: -10px;
  bottom: 40px;
  border-top-right-radius: 5px;
  background: #3eb368;
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
}

.search-results .item .image .pricing > span, .archive .item .image .pricing > span {
  padding: 0.3rem 2.5rem 0.3rem 0.5rem;
  display: inline-block;
}

.search-results .item .image .pricing > span::after, .archive .item .image .pricing > span::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: calc(100% - 0.3rem);
  bottom: 0;
  border-width: 30px;
  border-style: solid;
  border-color: #3eb368;
  border-left-color: transparent;
}

.search-results .item .image .pricing span span, .archive .item .image .pricing span span {
  font-size: 1.12rem;
  font-weight: 600;
}

.search-results .item .image .pricing::after, .archive .item .image .pricing::after {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
  content: '';
  height: 20px;
  width: 30px;
  background: #a46719b3;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.search-results .item .image .title, .archive .item .image .title {
  top: calc(100% - 40px) !important;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, #0000008c), color-stop(80%, #0000001f));
  background: linear-gradient(360deg, #0000008c 60%, #0000001f 80%);
}

.search-results .item .image a, .archive .item .image a {
  color: #fff;
  line-height: 40px;
  -webkit-transition: color 0.6s ease-in-out;
  transition: color 0.6s ease-in-out;
  font-size: 1.5rem;
}

.search-results .item .image a:hover, .archive .item .image a:hover {
  color: #f15927;
  text-decoration: none;
}

.search-results .item .image img, .archive .item .image img {
  -webkit-transition: all 0.44s ease-out;
  transition: all 0.44s ease-out;
}

.search-results .item .desc, .archive .item .desc {
  border: solid 1px #c5c5c5;
}

.search-results .item .title a, .archive .item .title a {
  color: #A12B04;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.search-results .item .title a:hover, .archive .item .title a:hover {
  color: #f15927;
}

.search-results .item .details .icon-layout, .archive .item .details .icon-layout {
  padding: 1rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-results .item .details .icon-layout i, .archive .item .details .icon-layout i {
  font-size: 2rem;
}

.search-results .item .details .icon-layout div, .archive .item .details .icon-layout div {
  margin-left: 1rem;
}

.search-results .item .details .icon-layout div span, .archive .item .details .icon-layout div span {
  font-size: 0.8rem;
}

.search-results .item .details .icon-layout div p, .archive .item .details .icon-layout div p {
  font-size: 1rem;
}

header {
  color: #000;
}

header .notice-bar {
  background: #3eb368;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 200;
  font-size: 0.85rem;
}

header .notice-bar a {
  color: white;
  text-decoration: underline;
}

header a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

header a:hover {
  color: #3BBF44;
}

header .top-header {
  background: #f15927;
  color: #fff;
}

header .top-header a {
  color: #000 !important;
}

header .top-header .social-icons a i {
  color: #fff !important;
}

header .top-header .cta-button .icon {
  margin-right: 1rem;
  height: 45px;
  width: 45px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: wheat;
  border-radius: 50%;
}

header .top-header .cta-button .icon i {
  font-size: 1.8rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .header-main-row {
  max-height: 130px;
  position: relative;
}

header .header-main-row .logo {
  border-radius: 10px;
  border-left: 1px solid #F2811D;
  border-bottom: 1px solid #F2811D;
}

header .header-main-row .social-icons {
  margin-left: 0;
  margin-bottom: 0;
}

header .header-main-row .social-icons a {
  margin-right: 10px;
}

header .header-main-row .social-icons a i {
  color: #000;
  font-size: 1.3rem;
  -webkit-transition: 0.6s color ease;
  transition: 0.6s color ease;
}

header .header-main-row .social-icons a i:hover {
  color: #F2811D;
}

header .header-main-row .content {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid #F2811D;
}

header .header-main-row .content h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

header .header-main-row .content p {
  font-size: 0.8rem;
}

header .secondary-header {
  border-top: 1px solid #cbb3b3;
  background: #ffffff;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

header .secondary-header .button {
  background: #277d3c;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

header .secondary-header .button:hover {
  background-color: #F15927;
}

header .secondary-header .button a {
  color: #fff;
}

header .secondary-header .search {
  position: relative;
}

header .secondary-header .search .abs-content {
  position: absolute;
  top: 150%;
  left: -100px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

header .secondary-header .search .abs-content.active {
  opacity: 1;
  pointer-events: all;
}

header .secondary-header .search .abs-content input {
  padding: 0.5rem 2rem;
}

header .secondary-header nav #primary-menu ul {
  margin-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

header .secondary-header nav #primary-menu ul li.current_page_item a {
  color: #F2811D;
}

header .secondary-header nav #primary-menu ul li {
  margin-right: 1.5rem;
}

header .secondary-header nav #primary-menu ul li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.55s ease-in-out;
  transition: color 0.55s ease-in-out;
}

header .secondary-header nav #primary-menu ul li a:hover {
  color: #F2811D;
}

header .secondary-header .contact img {
  height: 30px;
  margin-right: 10px !important;
}

header .secondary-header .contact a {
  text-decoration: none;
  color: #F2811D;
}

header .secondary-header .contact p {
  line-height: 2rem;
}

footer {
  position: relative;
}

footer .news-letter {
  background-color: #414143;
  color: #fff;
}

footer .news-letter .wpcf7-spinner {
  display: none;
}

footer .news-letter form br {
  display: none;
}

footer .news-letter form p {
  margin-bottom: 0;
}

footer .news-letter input[type="email"] {
  padding: 1rem;
  width: 100%;
}

footer .news-letter label {
  width: 100%;
}

footer .news-letter input[type="submit"] {
  background: #F2811D !important;
  margin: 0 auto;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}

footer .news-letter label {
  position: relative;
}

footer .news-letter label i {
  position: absolute;
  left: 38%;
  top: 30%;
}

footer .affiliations h4 {
  margin-bottom: 0;
}

footer .affiliations .slider-container {
  padding-top: 0 !important;
}

footer .affiliations .slider-container > div {
  gap: 5px;
}

footer .bottom-footer {
  background: #F2F2F2;
  font-size: 0.95rem;
}

footer #back-to-top {
  background: #F2811D;
  height: 30px;
  width: 30px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 99999999;
}

footer #back-to-top:hover {
  cursor: pointer;
}

footer #back-to-top i {
  color: white;
}

footer .logo img {
  height: 150px;
  width: 150px;
  text-align: center;
}

footer .social-icons {
  margin-left: 0;
  margin-bottom: 0;
}

footer .social-icons a {
  margin-right: 10px;
}

footer .social-icons a i {
  color: #fff;
  font-size: 1.1rem;
  -webkit-transition: 0.6s color ease;
  transition: 0.6s color ease;
}

footer .social-icons a i:hover {
  color: #F2811D;
}

footer .affiliation .slider-container {
  position: relative;
  padding-top: 2rem;
}

footer .affiliation .slider-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

footer .affiliation .slider-container .item .logo-icon {
  margin-right: 10px;
}

footer .affiliation .slider-container .item .logo-icon img {
  height: 70px;
}

footer .affiliation .slider-container .item .text p {
  font-size: 11.5px;
  margin-bottom: 0;
}

footer .bottom-footer ul li {
  list-style: none;
  margin-right: 1rem;
}

footer .bottom-links {
  background: #414143 !important;
  color: #F2F2F2;
  font-size: 0.8rem;
  line-height: 1.5rem;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

footer .bottom-links a {
  text-decoration: underline;
  color: #F2f2f2;
  -webkit-transition: color 0.45s ease-in;
  transition: color 0.45s ease-in;
}

footer .bottom-links a:hover {
  color: #F2811D !important;
}

footer .bottom-links h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 14px;
}

footer .bottom-links .quick-links {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .bottom-links .quick-links .left, footer .bottom-links .quick-links .right {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

footer .bottom-links ul {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}

footer .bottom-links ul li {
  list-style: none;
}

footer .bottom-links ul li::before {
  content: "\f0a4";
  font-family: "Font Awesome 5 Free";
  color: white;
  margin-right: 10px;
  -webkit-text-decoration: nones;
          text-decoration: nones;
}

.home video {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 700px;
  z-index: -1;
}

.home .hero {
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 75px;
  color: #fff;
}

.home .hero h4 {
  font-family: 'Spirax', sans-serif;
}

.home .hero h3 {
  color: #fff;
  font-weight: 900;
  font-size: 2.2rem;
}

.home .hero form {
  position: relative;
}

.home .hero form i {
  position: absolute;
  left: 10px;
  top: calc(50% - 8px);
  color: #000;
  font-size: 1.2rem;
}

.home .hero form input {
  border-radius: 5px;
  padding: 1rem 5rem;
  min-width: 520px;
  border-color: #F2811D;
}

.home .hero form input:focus-visible {
  outline-color: #F2811D;
}

.home .hero:after {
  -webkit-transition: 0.66s all linear;
  transition: 0.66s all linear;
  content: "";
  position: absolute;
  background: linear-gradient(173deg, #00000073 0%, #0000006e 40%, #000 75%);
  opacity: 0.8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home .popular-destination {
  position: relative;
  background: #f2f2f2;
}

.home .popular-destination p {
  margin-bottom: 0;
}

.home .popular-destination .ribbon::after {
  display: none;
}

.home .popular-destination .content .portrait .item {
  height: 400px;
}

.home .popular-destination .content .landscape {
  -ms-flex-negative: unset;
      flex-shrink: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home .popular-destination .content .landscape .item {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}

.home .popular-destination .content .item {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  -webkit-transition: all 0.7s linear;
  transition: all 0.7s linear;
}

.home .popular-destination .content .item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.home .popular-destination .content .item:hover::after {
  opacity: 0.3;
}

.home .popular-destination .content .item .ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #A12B04;
  padding: 5px 2rem;
  color: #fff;
}

.home .popular-destination .content .item a {
  color: #fff;
  -webkit-text-decoration-color: #f15927;
          text-decoration-color: #f15927;
}

.home .popular-destination .content .item a:hover {
  color: #f15927;
  text-decoration: none;
}

.home .popular-destination .content .item .details {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
}

.home .popular-destination .content .item .details h5 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.home .popular-destination .content .item > * {
  z-index: 100;
}

.home .popular-destination .content .item::after {
  -webkit-transition: 0.66s all linear;
  transition: 0.66s all linear;
  content: "";
  position: absolute;
  background: linear-gradient(173deg, #00000073 0%, #1d62966e 40%, #000 75%);
  opacity: 0.8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home .popular-destination .button {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.home .reviews {
  background: #f2f2f2;
}

.home .reviews h5::before {
  width: 10%;
}

.home .reviews .wprev-slider p, .home .reviews .wprev-slider span {
  font-family: "Poppins", sans-serif !important;
}

.home .about-us .feature-items-container .feature-item {
  -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 5px;
  background: #f2f2f2;
}

.home .about-us .feature-items-container .feature-item .icon {
  background: #37A647;
  border-radius: 50%;
  padding: 1.5rem;
}

.home .about-us .feature-items-container .feature-item p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.home .popular-packages {
  background: #f2f2f2;
}

.home .popular-packages .button {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
  margin-bottom: 1rem;
}

.home .popular-packages .item {
  margin-bottom: 4rem;
  z-index: 2;
}

.home .popular-packages .item .image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home .popular-packages .item .image {
  position: relative;
  z-index: 1;
}

.home .popular-packages .item .image .img {
  overflow: hidden;
}

.home .popular-packages .item .image .ribbon, .home .popular-packages .item .image .title, .home .popular-packages .item .image .pricing {
  position: absolute;
  right: 0;
  z-index: 3;
}

.home .popular-packages .item .image .ribbon > div {
  border-top-right-radius: 5px;
}

.home .popular-packages .item .image .pricing {
  height: 60px;
  z-index: unset;
  right: -10px;
  bottom: 40px;
  border-top-right-radius: 5px;
  background: #3eb368;
  color: #fff;
  font-weight: 400;
  font-size: 0.82rem;
}

.home .popular-packages .item .image .pricing > span {
  padding: 0.3rem 2.5rem 0.3rem 0.5rem;
  display: inline-block;
}

.home .popular-packages .item .image .pricing > span::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: calc(100% - 0.3rem);
  bottom: 0;
  border-width: 30px;
  border-style: solid;
  border-color: #3eb368;
  border-left-color: transparent;
}

.home .popular-packages .item .image .pricing span span {
  font-size: 1.1rem;
  font-weight: 600;
}

.home .popular-packages .item .image .pricing::after {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
  content: '';
  height: 20px;
  width: 30px;
  background: #a46719b3;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.home .popular-packages .item .image .title {
  top: calc(100% - 40px) !important;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, #0000008c), color-stop(80%, #0000001f));
  background: linear-gradient(360deg, #0000008c 60%, #0000001f 80%);
}

.home .popular-packages .item .image a {
  color: #fff;
  line-height: 40px;
  -webkit-transition: color 0.6s ease-in-out;
  transition: color 0.6s ease-in-out;
  font-size: 1.5rem;
}

.home .popular-packages .item .image a:hover {
  color: #f15927;
  text-decoration: none;
}

.home .popular-packages .item .image img {
  -webkit-transition: all 0.44s ease-out;
  transition: all 0.44s ease-out;
}

.home .popular-packages .item .desc {
  border: solid 1px #c5c5c5;
}

.home .popular-packages .item .title a {
  color: #A12B04;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.home .popular-packages .item .title a:hover {
  color: #f15927;
}

.home .popular-packages .item .details .icon-layout {
  padding: 1rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home .popular-packages .item .details .icon-layout i {
  font-size: 2rem;
}

.home .popular-packages .item .details .icon-layout div {
  margin-left: 1rem;
}

.home .popular-packages .item .details .icon-layout div span {
  font-size: 0.75rem;
}

.home .popular-packages .item .details .icon-layout div p {
  font-size: 1rem;
}

.home .activity-listing {
  background: #f2f2f2;
}

.home .activity-listing .item {
  border: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home .activity-listing .item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.home .activity-listing .item a {
  color: unset;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home .activity-listing .item a:hover {
  color: #f15927;
}

.home .activity-listing .item img {
  margin-bottom: 15px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.home .activity-listing .item img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home .activity-listing .item h5 {
  font-weight: 600;
  font-size: 1rem;
}

.home .activity-listing .item p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.home .gallery {
  background: #f2f2f2;
  margin-bottom: 0;
}

.home .gallery .gallery-top img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}

.home .gallery .follow-container {
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  background: #fff;
  padding: 3rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  font-size: 0.85rem;
  -webkit-transition: all 0.6s ease-in;
  transition: all 0.6s ease-in;
}

.home .gallery .follow-container i {
  font-size: 40px;
}

.home .gallery .follow-container:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.home .gallery .follow-container a {
  color: #f15927;
  text-decoration: none;
}

.home .top-deals .deals .deal-item {
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.home .top-deals .deals .deal-item:hover .image::after {
  background: linear-gradient(173deg, #00000000 0%, #1d629600 40%, #000000 85%);
}

.home .top-deals .deals .deal-item .image {
  position: relative;
}

.home .top-deals .deals .deal-item .image::after {
  -webkit-transition: 0.66s all linear;
  transition: 0.66s all linear;
  content: "";
  position: absolute;
  background: linear-gradient(173deg, #00000000 0%, #1d629600 40%, #f15927 85%);
  opacity: 0.8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home .top-deals .deals .deal-item img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.home .top-deals .deals .deal-item a {
  text-decoration: none;
  text-align: center;
}

.home .top-deals .deals .deal-item .content {
  -webkit-transition: 0.6s ease-in-out transform;
  transition: 0.6s ease-in-out transform;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.home .top-deals .deals .deal-item h4 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1rem;
  font-family: "Poppins", sans-serif;
}

.home .top-deals .deals .deal-item h5 {
  color: #ef0;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1rem;
  font-family: "Poppins", sans-serif;
}

.home .top-deals .deals .deal-item p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.8rem;
}

.home .top-deals .deals .deal-item p span {
  font-size: 1.2rem;
}

.home .blogs {
  background: #f2f2f2;
}

.home .blogs a {
  text-decoration: none;
  color: #f15927;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.home .blogs a:hover {
  color: #0D0D0D;
}

.home .blogs .author-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.home .testimonial-and-faq .accordion {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home .testimonial-and-faq .accordion .accordion-item {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}

.single .hero .background-section {
  background-size: cover !important;
  background-repeat: no-repeat;
  position: relative;
}

.single .hero .background-section .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 2;
  padding: 3rem;
  padding-bottom: 1rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(92%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0) 92%);
}

.single .hero .background-section .content h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}

html {
  scroll-behavior: smooth;
}

.horizontal-nav-menu {
  position: -webkit-sticky;
  position: sticky;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
  pointer-events: none;
  z-index: 1000;
  top: -50px;
  left: 0;
  background: #A12B04;
}

.horizontal-nav-menu.active {
  pointer-events: all;
  display: block;
  opacity: 1;
  top: 0;
  height: 100%;
}

.horizontal-nav-menu .gallery {
  margin-bottom: 0;
}

.horizontal-nav-menu div a {
  color: #fff;
}

.horizontal-nav-menu div button {
  padding: 10px 25px;
  background: #f15927;
  font-size: 0.8rem;
  border: 1px solid #F2811D;
  border-radius: 25px;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}

.horizontal-nav-menu div button a {
  text-decoration: none;
}

.horizontal-nav-menu div button:hover {
  background: transparent;
  -webkit-transform: none;
          transform: none;
  color: #fff;
}

.horizontal-nav-menu ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.horizontal-nav-menu ul li.active {
  background: #f2f2f2;
  cursor: pointer;
}

.horizontal-nav-menu ul li.active a {
  color: #000;
}

.horizontal-nav-menu ul li {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.horizontal-nav-menu ul li:hover {
  background: #f2f2f2;
  cursor: pointer;
}

.horizontal-nav-menu ul li:hover a {
  color: #000;
}

.horizontal-nav-menu ul li a {
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
}

.horizontal-nav-menu ul li a:hover {
  text-decoration: none;
}

.horizontal-nav-menu ul li a i {
  padding-right: 0.3rem;
}

.single-trip h2 {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #273D59;
}

.single-trip h2::after {
  content: "";
  height: 3.5px;
  width: 75px;
  background: #f15927;
  position: absolute;
  bottom: 0;
  left: 0;
}

.single-trip .hero .background-section {
  background-size: cover !important;
  background-repeat: no-repeat;
  position: relative;
}

.single-trip .hero .background-section .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 2;
  padding: 3rem;
  padding-bottom: 1rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(92%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0) 92%);
}

.single-trip .hero .background-section .content h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}

.single-trip .main-content .content section > div {
  background: #f2f2f2;
  -webkit-box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
          box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  border-radius: 10px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.single-trip .main-content .content section > div:first-child {
  margin-top: 0;
}

.single-trip .main-content .trip-facts {
  background: #f2f2f2;
  padding-top: 1rem;
  border-radius: 10px;
  padding-bottom: 1rem;
}

.single-trip .main-content .trip-facts .facts-container .item {
  -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%;
  border-bottom: 1px dashed #37A647;
  padding: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.single-trip .main-content .trip-facts .facts-container .item i {
  font-size: 2.2rem;
  color: #f15927;
}

.single-trip .main-content .trip-facts .facts-container .item .right span {
  font-size: 0.75rem;
  color: #f15927;
}

.single-trip .main-content .trip-facts .facts-container .item .right p {
  margin-bottom: 0;
  max-width: 210px;
}

.single-trip .main-content .highlights li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-trip .main-content .highlights ul {
  margin-bottom: 0;
  padding-left: 10px;
  padding-top: 1rem;
}

.single-trip .main-content .highlights ul li {
  list-style: none;
  padding-bottom: 10px;
}

.single-trip .main-content .highlights ul li::before {
  color: #37A647;
  font-weight: 600;
  margin-right: 10px;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
}

.single-trip .main-content .gallery #animated-thumbnails-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-trip .main-content .gallery a {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.single-trip .main-content .gallery a img {
  -o-object-fit: cover;
     object-fit: cover;
}

.single-trip .main-content .outline-itinery ul {
  position: relative;
}

.single-trip .main-content .outline-itinery ul::before {
  content: "";
  border-left: 2px solid #f15927;
  position: absolute;
  left: 23px;
  top: 6px;
  bottom: 16px;
}

.single-trip .main-content .outline-itinery ul li {
  list-style: none;
  padding-bottom: 2rem;
  position: relative;
}

.single-trip .main-content .outline-itinery ul li:hover::before {
  background: #f15927;
}

.single-trip .main-content .outline-itinery ul li::before {
  content: "";
  height: 15px;
  width: 15px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  border: 1px solid #f15927;
  background: #f2f2f2;
  border-radius: 50%;
  position: absolute;
  left: -23px;
  top: 5px;
}

.single-trip .main-content .outline-itinery ul li a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.single-trip .main-content .outline-itinery ul li a::after {
  content: "";
  height: 1.2px;
  width: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background: #f15927;
  position: absolute;
  bottom: -1.5px;
  left: 0;
}

.single-trip .main-content .outline-itinery ul li a:hover::after {
  width: 100%;
}

.single-trip .main-content .outline-itinery ul li:last-child {
  padding-bottom: 0;
}

.single-trip .main-content .detailed-itinery h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.single-trip .main-content .detailed-itinery .itinery-item {
  border-bottom: 1px solid #3232324a;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.single-trip .main-content .detailed-itinery .itinery-desc {
  min-width: 50%;
  max-width: 65%;
}

.single-trip .main-content .detailed-itinery .itinery-desc .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px !important;
  border-bottom: 1px dashed rgba(19, 18, 18, 0.842);
}

.single-trip .main-content .detailed-itinery .itinery-desc .item i, .single-trip .main-content .detailed-itinery .itinery-desc .item p {
  padding-right: 6px;
  margin-bottom: 0;
}

.single-trip .main-content .detailed-itinery .itinery-desc .item i {
  font-size: 1rem;
  width: 30px;
}

.single-trip .main-content .detailed-itinery .itinery-desc .item i:before {
  width: 20px;
}

.single-trip .main-content .what-included ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.single-trip .main-content .what-included ul li {
  list-style: none;
}

.single-trip .main-content .what-included ul li::before {
  color: #37A647;
  font-weight: 600;
  margin-right: 10px;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
}

.single-trip .main-content .what-excluded ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.single-trip .main-content .what-excluded ul li {
  list-style: none;
}

.single-trip .main-content .what-excluded ul li::before {
  color: #f54d4d;
  font-weight: 600;
  margin-right: 10px;
  content: "\f057";
  font-family: "Font Awesome 5 Free";
}

.single-trip .sidebar {
  padding: 1rem 0.5rem;
  border: 1px solid #aafbaa;
  position: relative;
  padding-top: 40px;
  -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
          box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.single-trip .sidebar.sticky {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 50px;
	background: #aafbaa !important;
}

.single-trip .sidebar .ribbon {
  position: absolute;
  top: -5px;
  left: 50%;
  font-size: 1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.single-trip .sidebar .ribbon::after {
  height: 5px;
}

.single-trip .sidebar .ribbon div {
  white-space: nowrap;
}

.single-trip .sidebar .days-info {
  font-size: 1.25rem;
  margin-bottom: 0.6rem !important;
}

.single-trip .sidebar .days-info span:not(.from) {
  font-weight: 600;
}

.single-trip .sidebar .days-info .from {
  font-style: italic;
}

.single-trip .sidebar h6 {
  font-size: 2rem;
}

.single-trip .sidebar .feature ul {
  padding-left: 1rem;
  padding-top: 1rem;
}

.single-trip .sidebar .feature ul li {
  list-style: none;
  font-size: 0.9rem;
  position: relative;
}

.single-trip .sidebar .feature ul li::before {
  content: "\f560";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-right: 5px;
  color: #37A647;
}

.single-trip .sidebar .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-trip .sidebar .cta .btn {
  margin-bottom: 1rem;
  background: #f15927;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.single-trip .sidebar .cta .btn a {
  color: #fff;
  text-decoration: none;
}

.single-trip .sidebar .cta .or {
  text-align: center;
}

.single-trip .sidebar .cta .or p, .single-trip .sidebar .cta .or span {
  font-size: 0.8rem;
}

.single-trip .sidebar .cta .or a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #A12B04;
  text-decoration: none;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.single-trip .sidebar .cta .or a:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  display: inline-block;
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  header {
    position: relative;
  }
  header .header-icon {
    min-width: 24px;
  }
  header .left {
    padding-left: 0;
    padding-right: 0;
  }
  header .header-main-row {
    padding-left: 120px;
  }
  header .logo {
    height: 100px !important;
    width: 110px !important;
  }
  header .social-icons {
    padding-left: 0 !important;
  }
  header .menu-hamberger {
    display: block;
    padding-left: 15%;
  }
  header .menu-hamberger:hover {
    cursor: pointer;
  }
  header ul.sub-menu {
    position: static !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  header .navigation-container {
    display: none;
  }
  header .ham-active.navigation-container {
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 2;
    display: block;
    position: absolute;
    top: 99%;
    left: 0;
    min-width: 100%;
    overflow: hidden;
    -webkit-animation: height 0.7s linear;
            animation: height 0.7s linear;
  }
  header .ham-active.navigation-container ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .ham-active.navigation-container ul li {
    padding-top: 1rem;
  }
  header .ham-active.navigation-container ul li:last-child {
    padding-bottom: 1rem;
  }
  header .logo-container {
    -ms-flex-preferred-size: 17% !important;
        flex-basis: 17% !important;
    max-width: 17% !important;
  }
  .hero {
    min-height: 500px !important;
  }
  .activity-listing .col-md-2 {
    -webkit-box-flex: 33.333% !important;
        -ms-flex: 33.333% !important;
            flex: 33.333% !important;
    max-width: 33.3333% !important;
    margin-bottom: 10px;
  }
  .top-deals .deals-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .top-deals .deals-container .deal-item {
    margin-bottom: 1rem;
    min-width: 195px;
  }
  .top-deals .deal-item {
    min-width: 250px;
  }
  .upcoming-trips .container .content {
    overflow-x: hidden;
  }
  .upcoming-trips .container .content .enquire-btn {
    white-space: nowrap;
  }
  .gallery .follow-container {
    padding: 1.54rem !important;
    left: 50% !important;
    top: 50% !important;
  }
  .gallery-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gallery-top img {
    min-width: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    height: 260px;
  }
  .gallery-bottom {
    display: none;
  }
  .single-trip .post-loop-template .item .desc .details {
    padding-left: 1rem !important;
  }
  .single-trip .post-loop-template .item .desc .details .icon-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .single-trip .post-loop-template .item .desc .details .icon-layout div {
    margin-left: 0;
  }
  .single-trip .post-loop-template .item .desc .details > div:nth-child(1) {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }
  .single-trip .post-loop-template .item .desc .details > div:nth-child(2) {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .single-trip .post-loop-template .item .desc .details > div:nth-child(3) {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }
}

@media (max-width: 1150px) {
  .horizontal-nav-menu ul {
    display: none;
  }
  .horizontal-nav-menu .container-fluid nav {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  #nav-content ul li {
    background: #A12B04;
  }
  .horizontal-nav-menu ul li.active {
    background: #f15927 !important;
  }
  ul.ham-active {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    height: 100%;
    z-index: 100;
  }
  .horizontal-nav-menu .menu-hamberger {
    display: -ms-grid;
    display: grid;
    place-content: center;
  }
  .horizontal-nav-menu .menu-hamberger div {
    background: #fff;
  }
  .horizontal-nav-menu .menu-hamberger div:before, .horizontal-nav-menu .menu-hamberger div:after {
    background-color: #fff;
  }
}

@media (max-width: 992px) {
  .post-loop-template .item .desc .details {
    padding-left: 1rem !important;
  }
  .post-loop-template .item .desc .details .icon-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .post-loop-template .item .desc .details .icon-layout div {
    margin-left: 0;
  }
  .post-loop-template .item .desc .details > div:nth-child(1) {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }
  .post-loop-template .item .desc .details > div:nth-child(2) {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .post-loop-template .item .desc .details > div:nth-child(3) {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }
  .upcoming-trips .main-row > div, .upcoming-trips .row > div, .upcoming-trips .d-flex > span {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .upcoming-trips .header-row {
    display: none;
  }
  .upcoming-trips .row-items {
    border-bottom: 2px solid #1b2b3a66 !important;
  }
  .upcoming-trips .row-items .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .upcoming-trips .row-items .bottom-buttons .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .upcoming-trips .trip-name {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .upcoming-trips .trip-name::before {
    content: "Trip Name";
    color: #9c9c96 !important;
  }
  .upcoming-trips .status {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .upcoming-trips .status::before {
    content: "Trip Status";
    color: #9c9c96 !important;
  }
  .upcoming-trips .pricing-sec {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .upcoming-trips .pricing-sec > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .upcoming-trips .pricing-sec > div .discounted {
    padding-right: 10px;
  }
  .upcoming-trips .pricing-sec::before {
    content: "Price";
    color: #9c9c96 !important;
  }
  .upcoming-trips .days-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .upcoming-trips .days-sec::before {
    content: "Departure Date";
    color: #9c9c96 !important;
  }
  .upcoming-trips .days-sec div {
    text-align: right;
  }
  .upcoming-trips .bottom-buttons .enquire-btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 6px;
    margin-bottom: 4px;
  }
  .upcoming-trips .trip-name, .upcoming-trips .pricing-sec, .upcoming-trips .days-sec, .upcoming-trips .status {
    padding-top: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid #e1e1e1;
  }
}

@media (max-width: 820px) {
  html {
    font-size: 13.5px;
  }
  .hero {
    min-height: 445px !important;
  }
  .top-header .right {
    padding-left: 0 !important;
  }
  .header-secondary {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 750px;
  }
  .bottom-links .row > div {
    margin-bottom: 1rem;
  }
  .top-header .left {
    display: none;
  }
  .reviews .col-md-9 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .reviews .top-section-title, .gallery .top-section-title {
    text-align: center;
  }
  .reviews .top-section-title h5, .gallery .top-section-title h5 {
    left: 0 !important;
  }
  .gallery-top {
    text-align: center;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .gallery-top img {
    min-width: 77.5% !important;
    -o-object-fit: cover;
       object-fit: cover;
    height: 260px;
    margin-bottom: 5px;
  }
  .gallery {
    text-align: center;
  }
  .gallery img {
    margin-bottom: 5px;
  }
  .popular-destination .item {
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
  .popular-destination .landscape {
    height: 450px;
    margin-top: 20px;
  }
  .blogs .item.card {
    margin-bottom: 10px;
  }
}

@media (max-width: 750px) {
  .hero {
    min-height: 400px !important;
  }
}

@media (max-width: 575px) {
  .top-header .middle {
    display: none;
  }
  .top-header .right > div {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .logo {
    left: 10px !important;
  }
  .hero {
    min-height: 380px !important;
  }
  .popular-destination .portrait .item {
    margin-bottom: 10px;
  }
  .bottom-links .col-sm-6 {
    text-align: center;
  }
  .quick-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .quick-links ul.left {
    margin-right: 0 !important;
  }
  .quick-links .left {
    margin-bottom: 1.3rem;
  }
  .quick-links .left, .quick-links .right {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}

@media (max-width: 550px) {
  html {
    font-size: 12px;
  }
  .hero {
    min-height: 380px !important;
  }
  .home .hero h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 350px !important;
  }
  .secondary-header .header-icon.call {
    display: block;
  }
  header .secondary-header .contact a {
    display: none;
  }
  header .secondary-header .contact a:last-child {
    display: block;
  }
}

@media (max-width: 425px) {
  .hero {
    min-height: 350px !important;
  }
  header .secondary-header .header-secondary {
    padding-left: 120px;
  }
  .home .hero form input {
    min-width: 90%;
  }
  .activity-listing .col-md-2 {
    -ms-flex-preferred-size: 50% !important;
        flex-basis: 50% !important;
    max-width: 50% !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}

@media (max-width: 414px) {
  .hero {
    min-height: 250px !important;
  }
  .hero h3 {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 200px !important;
    padding-bottom: 40px !important;
  }
  .hero h3 {
    font-size: 1.85rem !important;
  }
  .top-header .logo {
    height: 70px !important;
    width: 70px !important;
  }
  header .secondary-header .header-secondary {
    padding-left: 10px;
  }
}

.item img.img-fluid {
  width: 100%;
}

.activity-listing .item img.img-fluid {
  width: auto !important;
}

.post-loop-template a {
  color: #000 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
}

.post-loop-template .item-details > div {
  margin-bottom: 0.6rem;
}

.post-loop-template .item-details i {
  padding-right: 1rem;
  border-right: 1px solid #8d8d8d66;
}

.post-loop-template .in-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.post-loop-template .in-details a {
  background: #00b600;
  display: inline-block;
  color: #fff !important;
  padding: 0.54rem 1rem;
  margin-right: 2px;
  margin-bottom: 2px;
  font-size: 0.9rem !important;
  border-top-left-radius: 10px;
}

.post-loop-template .icon-layout {
  line-height: 1rem;
  text-transform: uppercase;
}

.post-loop-template .icon-layout i {
  -ms-flex-preferred-size: 13%;
      flex-basis: 13%;
}

.post-loop-template .icon-layout div {
  padding-left: 1rem;
}

.post-loop-template .icon-layout div b {
  font-weight: 500;
}

.post-loop-template .icon-layout h6 {
  margin-bottom: 0;
  padding-left: 1rem;
  font-weight: 400;
}

.blogs a {
  color: #000 !important;
}

.blogs .read-more {
  padding: 0.5rem;
  background: #A12B04;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blogs .read-more a {
  color: #fff !important;
}
/*# sourceMappingURL=custom.css.map */