body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 24px;
  color: #141414;
  overflow-x: hidden;
  position: relative;
  overflow-anchor: none;
  width: 100vw;
}
ul {
  list-style: none;
}
ol {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: #141414;
}
a:hover {
  color: #dc2828;
}
.kanit {
  font-family: "Kanit", sans-serif !important;
}
.lato {
  font-family: "Poppins", sans-serif !important;
}
.small-p p,
.small-p {
  font-size: 14px;
}
/* Nav & Menu CSS */
.big-header {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  z-index: 99;
}
.big-header.non-fixed-header {
  position: relative;
  background-color: #fefefe;
}
.big-header.non-fixed-header .header-menu li a,
.big-header.non-fixed-header #search-button {
  color: #141414;
}
.big-header.non-fixed-header #menu-button span {
  background-color: #141414;
}
.big-header.sticky {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.25);
}
.big-header.sticky.colored {
  background-color: #fefefe;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.sticky.colored .header-menu li a,
.sticky.colored #search-button {
  color: #141414;
}
.sticky.colored #menu-button span {
  background-color: #141414;
}
.logo img {
  width: 70px;
}
.logo p {
  font-size: 18px;
  font-family: "Kanit", sans-serif;
}
.header-menu {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.header-menu li {
  display: inline-block;
  padding: 2px 12px;
  margin: 0 8px;
}
.header-menu li a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
}
.header-menu li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.header-menu li a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.header-menu li.logo a:after {
  content: "";
  display: none;
}
.header-menu li.logo a:before {
  content: "";
  display: none;
}
.header-menu li.no-dropdown a:before {
  content: "";
  display: none;
}
.menu-down {
  position: absolute;
  background-color: transparent;
  padding: 0;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  height: 0;
  max-height: 300px;
  overflow: hidden;
}
.menu-down .inner-desktop-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 8px;
  background-color: #fff;
  box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.67);
}
.menu-down .inner-desktop-menu .menu-item-holder {
  /* flex-basis: 20%; */
  padding: 4px 8px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.menu-down .inner-desktop-menu .menu-item-holder .menu-img-wrapper {
  overflow: hidden;
}
.menu-down .inner-desktop-menu .menu-item-holder .menu-img-wrapper img {
  transition: all 0.3s ease-in-out;
}
.menu-down .inner-desktop-menu .menu-item-holder:hover .menu-img-wrapper img {
  transform: scale(1.2);
}

.menu-down .inner-desktop-menu .menu-item-holder p {
  text-align: left;
  color: #141414;
  margin-top: 8px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
}
.menu-down .inner-desktop-menu .menu-item-holder:hover p {
  color: #dc2828;
}
.header-menu li:hover > .menu-down {
  height: 300px;
}
.header-menu li:hover > .menu-down .menu-item-holder {
  opacity: 1;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.3s;
}
.header-menu li:hover a:before {
  content: "";
  opacity: 1;
}
.header-menu li:hover a:after {
  content: "";
  width: 100%;
}
.menu-item-list p i {
  font-size: 8px;
}

/* Main Menu */
#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.57);
  overflow: hidden;
  /* transform:translateX(100%); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.6s;
}
#main-menu.menu-open {
  /* transform:translateX(0); */
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease-in-out;
}
#main-menu .menu-wrapper {
  position: absolute;
  right: 0;
  width: 400px;
  height: 100vh;
  background-color: #fff;
  text-align: left;
  overflow-x: hidden;
  overflow-y: scroll;
  transform: translateX(1000%);
  transition: all 0.7s ease-in-out;
}
#main-menu.menu-open .menu-wrapper {
  transform: translateX(0px);
  transition: all 0.6s ease-in-out;
  transition-delay: 0.7s;
  padding-top: 20px;
}
#main-menu .menu-wrapper .inner-main-menu li .menu-child {
  padding: 0;
  margin: 0;
  /* display:none; */
  overflow-y: hidden;
  height: 0;
  /* transition: all 0.6s ease-in-out; */
  padding-left: 20px;
}
#main-menu .menu-wrapper .inner-main-menu li a {
  display: block;
  font-size: 18px;
  color: #000;
  padding: 18px 8px 18px 8px;
  border-bottom: 1px solid #f5f2f2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
#main-menu .menu-wrapper .inner-main-menu li a i {
  float: right;
  font-size: 14px;
  opacity: 0.4;
}
#main-menu .menu-wrapper .inner-main-menu li a:hover {
  color: #e9bf1f;
}
#main-menu .menu-wrapper .inner-main-menu li.has-child:hover .menu-child {
  display: block;
  height: 100%;
  /* transition: all 0.6s ease-in-out; */
}
#main-menu .menu-wrapper .inner-main-menu li.has-child .menu-child li a {
  padding: 12px 8px 12px 8px;
  font-size: 16px;
}
#main-menu .menu-wrapper .inner-main-menu li.has-child .menu-child li a:hover {
  padding: 12px 8px 12px 14px;
}
#menu-button span {
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 4px;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.2s ease-in-out;
}
#menu-button:hover span {
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
}
#close-button {
  padding: 4px 10px;
  font-size: 20px;
}
#close-button:hover {
  cursor: pointer;
}
#search-button {
  font-size: 24px;
  color: #fbfef9;
}
.header-menu .menu-down .inner-menu li {
  margin-left: 0;
  margin-right: 0;
}
.social-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-left: 32px;
}
.social-list li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.social-list li a {
  font-size: 24px;
  padding: 4px 16px 4px 0;
  color: #000;
}
.section {
  padding: 80px 0;
}
#video-bg {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /*background-image: url("../images/slide2.jpg");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}
#video-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 2;
}
#bgvid {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -o-object-fit: cover;
  object-fit: cover;
  opacity:0;
}
.main-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 20px;
  z-index: 9;
}
.main-hero-content .main-hero-content-wrapper {
  overflow-y: hidden;
}
.main-hero-content .main-hero-content-wrapper .main-hero-title {
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-size: 44px;
  margin: 0;
  margin-bottom: 32px;
  position: relative;
  opacity: 0;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.main-hero-content .main-hero-content-wrapper .main-hero-title:after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.6s ease-in-out;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.main-hero-content .main-hero-content-wrapper .main-hero-title.add-width:after {
  -webkit-animation-name: line-width;
  animation-name: line-width;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.main-hero-content .main-hero-content-wrapper .main-hero-subtitle {
  font-weight: 300;
  color: #fff;
  letter-spacing: 6px;
  font-size: 16px;
  margin: 0;
  opacity: 0;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.main-button-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.inner-button-wrapper:first-of-type {
  margin-right: 50px;
}
.inner-button-wrapper:first-of-type .main-hero-button {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.inner-button-wrapper:last-of-type .main-hero-button {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 3.3s;
  animation-delay: 3.3s;
}
.main-hero-button i {
  margin-right: 12px;
  font-size: 18px;
}
.welcome-section {
  background-image: url("../images/welceom-banner.jpg");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.no-padding {
  padding: 0;
}
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
h2.title-head {
  font-size: 44px;
  font-weight: 900;
  color: #141414;
}
.title-head {
  font-size: 44px;
  font-weight: 900;
  color: #141414;
}
.section.dark .title-head {
  font-size: 44px;
  font-weight: 900;
  color: #fefefe;
}
p.small {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: -10px;
  color: #141414;
}
.text-fade {
  opacity: 0.6;
  color: #141414;
}
.tour-card {
  border: 1px solid #e6e6e6;
  margin-bottom: 32px;
  transition: all 0.2s ease-in-out;
  position: relative;
  width: 100%;
  min-height: 400px;
}
.activity-line {
  position: relative;
  min-height: 120px;
}
.activity-line:after {
  content: "";
  position: absolute;
  right: 20px;
  top: -30px;
  background: #ababab;
  width: 1px;
  height: 140px;
}
.activity-line:last-of-type::after {
  display: none;
}
.activity-line .side-wrapper {
  background-color: transparent;
  padding: 8px;
}

.dark .tour-card {
  border: none;
}
a.tour_image {
  display: block;
  position: relative;
}
.tour-card img {
  border-radius: 0;
  width: 100%;
  height: auto;
}
a.tour_image .tour_price,
.tour-card .tour_price {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: #dc2828;
  padding: 3px 10px 2px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition-duration: 0.2s;
}
.portfolio_info_wrapper {
  padding: 5px 15px 0 15px;
}
.dark .portfolio_info_wrapper {
  background-color: #fefefe;
}
.dark .portfolio_info_wrapper p {
  color: #141414;
}
.tour_excerpt {
  font-size: 13px;
  margin-top: -5px;
}
.tour_attribute_wrapper {
  width: 100%;
}
.tour_attribute_rating {
  max-width: 60%;
  float: left;
}
.tour_attribute_days {
  font-size: 14px;
  font-weight: 600;
  line-height: 2em;
  margin: 0;
  padding: 0;
}
.tour_attribute_days li span {
  font-size: 16px;
}
.tour_attribute_days li {
  display: inline-block;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
}
.tour-card:hover a.tour_image .tour_price {
  left: 5px;
  transform: scale(1.2);
}
.tour_link h4 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}
/* Button CSS */
.button_cont {
  margin-top: 32px;
  margin-bottom: 16px;
}
.example_e {
  border: none;
  background: #e9bf1f;
  color: #ffffff !important;
  font-weight: 400;
  padding: 14px 20px;
  text-transform: uppercase;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease 0s;
  letter-spacing: 1px;
}
.example_e:hover {
  color: #404040 !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  background: none;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  transition: all 0.3s ease 0s;
}

.main-button.white-btn {
  background-color: #fefefe;
  color: #141414;
}
/* Button CSS */
.region-over-wrapper {
  overflow: hidden;
  border: 1px solid #fff;
  position: relative;
}

.region-wrapper {
  padding: 240px 10px;
  text-align: center;
  height: 550px;
  transition: all 0.4s ease-in-out;
}
.region-wrapper.mid-region {
  height: 274px;
  padding: 105px 10px;
}
.region-wrapper.mid-region {
    height: 274px;
    padding: 105px 10px;
}
.region-wrapper.bg-image{
    min-height:auto !important;
}
.region-wrapper h4 {
  font-size: 42px;
}
/* .region-wrapper:hover{
    transform: scale(1.2);
} */
.region-text h4,
.region-text-border-only h4 {
  position: relative;
}
.region-text h4:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 70px;
  height: 4px;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.region-text-border-only h4:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70px;
  height: 4px;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.region-text .hover-btn {
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.4s ease-in-out;
}
.region-over-wrapper:hover .region-text .hover-btn {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.region-over-wrapper:hover .region-text h4:after {
  opacity: 1;
  transform: translate(-50%, 0px);
}
.activity-text {
  padding: 32px 20px;
  background-color: #fff;
  position: relative;
}
.activity-text h5 {
  transition: all 0.4s ease-in-out;
  color: #171515;
  margin-bottom: 8px;
}
.activity-text p {
  font-size: 14px;
  line-height: 18px;
  transition: all 0.4s ease-in-out;
  color: #141414;
}

.activity-image {
  overflow: hidden;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.activity-box img {
  transition: all 0.4s ease-in-out;
}
.activity-box a:hover img {
  transform: scale(1.2);
}
.full-height {
  height: 75vh;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.half-height {
  background-size: cover;
  background-position: cente bottom;
  background-repeat: no-repeat;
}
.dark {
  background-color: #171515;
  color: #fbfef9;
}
.social-mid {
  margin: 0;
  padding: 0;
}
.social-mid li {
  display: inline-block;
}
.social-mid li a {
  font-size: 32px;
  margin-right: 24px;
  color: #fff;
}
.social-mid li a:hover {
  color: #e9bf1f;
}
.footer {
  background-color: #e3e3e3;
  padding: 60px 0 0 0;
}
.footer-list li a:hover {
  color: #141414;
}
.footer-title span {
  position: relative;
}
.footer-title span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96%;
  height: 2px;
  background-color: #141414;
}
.footer h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-list {
  margin: 0;
  padding: 0;
}
.footer-list li a {
  display: block;
  padding-bottom: 4px;
  font-size: 14px;
  color: #141414;
}

.footer-list li a i {
  margin-right: 8px;
}
.portfolio_info_wrapper a {
  color: #141414;
}
.end-foot {
  background-color: #141414;
  color: #fff;
}
.end-foot p a {
  color: #fff;
}
#featured-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
#featured-slider .owl-nav .owl-prev {
  text-align: left;
  font-size: 40px;
  color: #141414;
}
#featured-slider .owl-nav .owl-next {
  float: right;
  font-size: 40px;
  color: #141414;
}
#featured-slider .owl-nav .owl-prev:hover,
#featured-slider .owl-nav .owl-next:hover {
  color: #dc2828;
  transform: scale(1.2);
}
.slotholder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000;
  opacity: 0.4;
}
.left-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid transparent;
}
.right-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 10px solid transparent;
}

.main-button {
  white-space: normal;
  font-size: 12px;
  line-height: 47px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #353535;
  border-color: rgb(0, 0, 0);
  outline: none;
  box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  margin: 0px;
  padding: 0px 39px;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
  border-radius: 0px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 8px;
}
.main-button.small-sized {
  font-size: 12px;
  line-height: 32px;
  padding: 0 16px;
}
.main-button.small {
  font-size: 12px;
  line-height: 38px;
  padding: 0 32px;
}
.main-button:hover {
  background-color: #141414;
  color: #fff;
}
.main-button.white-btn {
  background-color: #fefefe;
  color: #141414;
}
.main-button.white-btn:hover {
  background-color: #e6dbdb;
  color: #141414;
}

.hover-btn {
  white-space: normal;
  font-size: 12px;
  line-height: 40px;
  font-weight: inherit;
  letter-spacing: 2px;
  display: inline-block;
  text-transform: uppercase;
  padding: 0 48px;
  border: 2px solid;
  border-color: #141414;
  background-color: transparent;
  color: #141414;
}
.hover-btn:hover {
  background-color: #141414;
  color: #fff;
}
.hover-btn.white {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.hover-btn.white:hover {
  background-color: #fff;
  color: #141414;
}

.form-control.custom-input {
  line-height: 47px;
  padding: 0px 16px;
  border-radius: 0;
  /*border-color: #dc2828;*/
}
.form-control.custom-input:focus, .form-control.custom-input:focus-within{
    border:1px solid #141414;
    outline:none;
    box-shadow:none;
}
.make-trip {
  background-image: url(../images/trip-bg.jpg);
  background-position: left bottom;
  background-size: 70%;
  background-repeat: no-repeat;
}
.floater {
  position: fixed;
  left: 0;
  z-index: 5;
}
.floater a {
  color: #fefefe;
}
.floater a:hover {
  color: #fefefe;
}

span.float-icon {
  height: 45px;
  width: 50px;
  background-color: #353535;
  z-index: 3;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floater.call {
  bottom: 70px;
}
.floater.whatsapp {
  bottom: 120px;
}
.floater.book-now {
  bottom: 20px;
}
span.float-icon img {
  max-width: 30px;
  height: auto;
  -webkit-filter: grayscale(1) brightness(100);
  filter: grayscale(1) brightness(100);
}
/* .floater.book-now span.float-icon{
    padding: 12px 8px;
}
.floater.book-now span.float-icon img{
    width:38px;
    -webkit-filter:grayscale(1) brightness(100);
            filter:grayscale(1) brightness(100)
}
.floater.call span.float-icon{
    font-size:24px;
} */
span.diss {
  vertical-align: middle;
  background-color: #353535;
  padding: 10px 20px;
  font-size: 16px;
  position: absolute;
  border: none;
  width: 200px;
  left: 0;
  top: 0px;
  transform: translateX(-100%);
  z-index: -1;
  transition: all 0.6s ease-in-out;
}
.floater:hover span.diss {
  transform: translateX(60px);
  transition: all 0.6s ease-in-out;
}
.floater.call span.diss {
  padding: 10px 20px;
}
.gray-bg {
  background-color: #fafafa;
}

/* SCroll DOwn Animation */
.scroll-link {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 99;
}
.mouse {
  display: block;

  margin: 0 auto;
  width: 26px;
  height: 46px;
  border-radius: 13px;
  border: 2px solid #fff;
  bottom: 20px;

  margin-left: -13px;
}
.mouse span {
  display: block;
  margin: 6px auto;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid transparent;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* Index CSS Ends Here */

/* Other Pages General */
.quater-height {
  height: 75vh;
}
.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 75vh;
}

.page-header .page-title h3 {
  font-size: 42px;
}
.page-header .page-title p {
  font-size: 14px;
  color: #fff;
}
.flex-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 60px;
}
.breadcrumb {
  background-color: transparent;
  position: absolute;
  top: 20px;
  left: 80px;
  z-index: 2;
}
h3.page-title {
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  font-size: 42px;
  position: absolute;
  bottom: 20px;
  left: 80px;
  z-index: 4;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item.active {
  color: #fefefe;
  font-size: 13px;
}
.breadcrumb .breadcrumb-item.active {
  color: #dc2828;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #dc2828;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #fefefe;
  content: ">";
  font-size: 12px;
}
.banner-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
#banner-carousel .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  color: #fff;
  font-size: 32px;
}
#banner-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  color: #fff;
  font-size: 32px;
}
.cat-text {
  font-size: 14px;
}

.side-wrapper {
  padding: 32px 20px;
  background: #fff;
}
.side-wrapper .tag {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.side-wrapper h3 {
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.side-wrapper h3 small {
  font-size: 60%;
  font-weight: 400;
}
.side-wrapper h3 small i {
  transform: scaleX(-1);
  font-size: 12px;
}
/* Details-slider */
.main-slider {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
}
.main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.slick-slide {
  position: relative;
  height: 350px !important;
}
.nav-slider .slick-slide {
  height: auto !important;
}
.nav-slider .slide-item {
  padding-left: 12px;
  padding-right: 12px;
}
.slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.slick-slide iframe {
  position: relative;
  pointer-events: none;
  height: 350px !important;
}
.slick-slide figure {
  position: relative;
  height: 100%;
}
.slick-slide .slide-image {
  opacity: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.slick-slide .slide-image.show {
  opacity: 1;
}
.slick-slide .image-entity {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.slick-slide .loading {
  position: absolute;
  top: 44%;
  left: 0;
  width: 100%;
}
.slick-slide .slide-media {
  -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.slick-slide.slick-active {
  z-index: 1;
}
.slick-slide.slick-active .slide-media {
  -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}

.slick-dots {
  text-align: center;
  padding-top: 15px;
}
.slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.slick-dots li button {
  width: 16px;
  height: 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 transparent;
  vertical-align: middle;
  color: #fff;
  background-color: #fff;
  transition: all 0.3s ease;
  opacity: 0.4;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover {
  opacity: 1;
}
.slick-dots li.slick-active button {
  border-color: #2d3042;
  box-shadow: 0 0 0 2px #fff;
  opacity: 1;
}

@-webkit-keyframes slideIn {
  from {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes slideIn {
  from {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes slideOut {
  from {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
}
@keyframes slideOut {
  from {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }
}

.detailed-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}
.detailed-icons div {
  line-height: initial;
}
.detailed-icons span {
  font-size: 44px;
  margin-right: 16px;
}
.detailed-icons p {
  margin-bottom: 0;
  margin-right: 10px;
}
.detailed-icons .icons-small {
  font-weight: 500;
  margin-bottom: 0;
  color: #141414;
  font-size: 11px;
}
.detailed-icons .icons-lead {
  font-weight: 500;
  font-size: 13px;
  margin-top: -6px;
}

.single-packaged .detailed-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 32px;
}
.single-packaged .detailed-icons span {
  font-size: 44px;
  margin-right: 16px;
}
.single-packaged .detailed-icons p {
  margin-bottom: 0;
}
.single-packaged .detailed-icons .icons-small {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 400;
}
.single-packaged .detailed-icons .icons-lead {
  font-weight: 500;
}
.single-packaged .detailed-icons div {
  width: 100%;
  display: block;
}
.share-social-media {
  font-size: 18px;
}
.share-social-media a:first-of-type {
  margin-left: 16px;
}
.share-social-media a {
  font-size: 20px;
  margin-right: 16px;
}
.nav.nav-tabs {
  position: -webkit-sticky;
  position: sticky;
  top: 83px;
  left: 0;
  width: 100%;
  z-index: 4;
  margin-bottom: 32px;
  background-color: #fff;
  justify-content: center;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 16px;
  letter-spacing: 1px;
  color: #353535;
  padding: 16px 24px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
  border-radius: 0;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  border-bottom: 2px solid #141414;
  color: #141414;
}
.tab-pane .fa.fa-check {
  color: green;
}
.tab-pane .fa.fa-times {
  color: red;
  opacity: 0.5;
}
.tour-card .tour_attribute_days img {
  width: 20px;
}
.icon-img {
  width: 40px;
  margin-right: 4px;
}
.tab-heading {
  margin-bottom: 12px;
}
.text-faded {
  color: #353535;
  opacity: 0.8;
}
.accordion h2 .btn-link {
  text-decoration: none;
  color: #141414;
}
.accordion .card {
  margin-bottom: 12px;
  border-radius: 0;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}
.card-header span {
  float: right;
  margin-top: -40px;
  font-size: 20px;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.card-header span.rotated {
  transform: rotate(-90deg);
}
.inner-box-one {
  padding: 30px 40px;
  background-color: #e6dbdb;
}
.inner-box-one p {
  font-size: 14px;
}
.gallery-list {
  padding: 0;
  margin: 0;
}
.gallery-list li {
  width: 32%;
  display: inline-block;
  /* margin:4px 4px; */
}
.gallery-list li img {
  display: block;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
.gallery-list li:hover img {
  transform: scale(1.1);
}
.gallery-list.videos li {
  width: 49%;
  position: relative;
  overflow: hidden;
}
.gallery-list.videos li a i {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #353535;
  z-index: 9;
  opacity: 0.6;
}
.see-more-container {
  margin-bottom: 32px;
  border-bottom: 1px solid #d5d4d4;
  padding-bottom: 10px;
}
.over-view-wrap {
  padding-left: 10px;
}
.see-more {
  margin: 2px 0;
  font-size: 13px;
}
.see-more:hover {
  cursor: pointer;
}
.show-more-content {
  height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.show-more-content.show-see-more {
  height: auto;
  overflow: hidden;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.less {
  display: none;
}
.form-wrapper {
  padding: 49px 16px;
  box-shadow: 0px 9px 14px 2px rgba(0, 0, 0, 0.25);
}
.form-title {
  font-weight: 800;
  text-transform: uppercase;
}
.form-title span {
  font-size: 14px;
  font-weight: 400;
  float: right;
  margin-top: 12px;
  opacity: 0.7;
}
.info-wrapper {
  padding: 40px 20px;
  background-color: #fafafa;
  margin-bottom: 24px;
}
.info-wrapper.small-font p {
  font-size: 13px;
}
.form-wrapper p {
  font-size: 14px;
}
.sub-title {
  margin-bottom: 16px;
}
.form-control {
  border-radius: 0;
}
.tab-pane ol {
  list-style-type: decimal;
  padding-left: 16px;
}
/* .gallery-hover effects */
/* Common style */
.grid figure {
  position: relative;
  overflow: hidden;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: capitalize;
  font-family: "Kanit", sans-serif;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h2 {
  word-spacing: inherit;
  font-weight: 300;
  font-size: 20px;
}

.grid figure h2 span {
  font-weight: 800;
}

.grid figure h2,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}
figure.effect-honey {
  background: #4a3753;
}

figure.effect-honey img {
  opacity: 1;
  transition: opacity 0.35s;
}

figure.effect-honey:hover img {
  opacity: 0.8;
}

figure.effect-honey figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #141414;
  content: "";
  transform: translate3d(0, 10px, 0);
}

figure.effect-honey h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  transform: translate3d(0, -10px, 0);
}

figure.effect-honey h2 i {
  font-style: normal;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(0, -30px, 0);
}

figure.effect-honey figcaption::before,
figure.effect-honey h2 {
  transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.testimonial {
  margin: 0 20px 40px;
}
.testimonial .testimonial-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  border: 1px solid #f0f0f0;
  position: relative;
}
.testimonial .testimonial-content:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 22px;
  transform: rotate(45deg);
}
.testimonial-content .testimonial-icon {
  width: 50px;
  height: 45px;
  background: #dc2828;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.test.thumb {
  margin-right: 20px;
}
.testimonial-content .testimonial-icon:before {
  content: "";
  border-bottom: 16px solid #911b1b;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.testimonial .description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}
.testimonial .title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #525252;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}
.testimonial .post {
  display: block;
  font-size: 14px;
  color: #692727;
}
.listed-list {
  list-style-type: disc;
}

/* Story Page */

.story-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.story-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 0;
}
.story-header .page-title {
  position: absolute;
  bottom: 0;
  left: 150px;
  z-index: 4;
  text-transform: uppercase;
  text-align: right;
}
.story-header .page-title h3 {
  font-size: 64px;
  font-weight: 700;
}
.story-first-pic {
  position: absolute;
  top: -250px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 9;
}
.styled-bg {
  position: relative;
}
.styled-bg:after {
  content: "";
  position: absolute;
  top: 38px;
  right: -20%;
  width: 100%;
  height: 200px;
  background-color: #692727;
  /* opacity:0.5; */
  z-index: -1;
}
.story-pic-sepia {
  position: relative;
  overflow: hidden;
}
.story-pic-sepia img {
  transition: all 0.2s ease-in-out;
  transition-delay: 0.1s;
  -webkit-filter: sepia(0.5);
  filter: sepia(0.5);
}
.story-pic-sepia {
  -webkit-filter: sepia(0.5);
  filter: sepia(0.5);
}
.story-pic-sepia:hover img {
  transform: scale(1.1) rotate(2deg);
  -webkit-filter: sepia(0.1);
  filter: sepia(0.1);
}
.parallax {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.parallax:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #141414;
  opacity: 0.7;
  z-index: 0;
}
.parallax .container-alt {
  position: relative;
  z-index: 2;
}
.scale-2 {
  transform: scale(1.2);
  position: relative;
  z-index: 2;
}
.scale-2 img {
  border-radius: 16px;
}
.radio-inline {
  margin-right: 12px;
}

/* contact-page */
.info-box,
.contact-form {
  flex-basis: 50%;
}
.info-box {
  padding: 30px;
  position: relative;
}
.contact-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
}
.contact-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #141414;
  opacity: 0.4;
  z-index: 0;
}
.contact-form {
  padding: 40px 50px;
  position: relative;
}
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fefefe;
}
.contact-list li p {
  margin-bottom: 2px;
}
.contact-list li h5 a,
.contact-list li i {
  color: #fefefe;
}
.contact-list li h5 a:hover {
  color: #dc2828;
}
.contact-list li i {
  margin-right: 12px;
}

/* Our Team */
.our-team {
  text-align: center;
}
.our-team .team_img {
  position: relative;
  overflow: hidden;
}
.our-team .team_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all 0.3s ease 0s;
}
.our-team:hover .team_img:after {
  bottom: 0;
}
.our-team img {
  width: 100%;
  height: auto;
}
.our-team .social {
  padding: 0 0 18px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: -100%;
  right: 10px;
  background: #f76c5e;
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.our-team:hover .social {
  top: 0;
}
.our-team .social li a {
  display: block;
  padding: 15px;
  font-size: 15px;
  color: #fff;
}
.our-team:hover .social li a:hover {
  color: #353535;
}
.our-team .team-content {
  padding: 20px 0;
  background: #fff;
}
.our-team .title {
  font-size: 18px;
  font-weight: bold;
  color: #353535;
  text-transform: capitalize;
  margin: 0 0 20px;
  position: relative;
}
.our-team .title:before {
  content: "";
  width: 25px;
  height: 1px;
  background: #dc2828;
  position: absolute;
  bottom: -10px;
  right: 50%;
  margin-right: 9px;
  transition-duration: 0.25s;
}
.our-team .title:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #dc2828;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: 9px;
  transition-duration: 0.25s;
}
.our-team:hover .title:before,
.our-team:hover .title:after {
  width: 50px;
}
.our-team .post {
  display: inline-block;
  font-size: 15px;
  color: #141414;
  text-transform: capitalize;
}
.our-team .post:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2828;
  margin: 0 auto;
  position: relative;
  top: -13px;
}
.description-wrapper {
  font-size: 13px;
  line-height: 16px;
  padding: 0 10px;
}
.description-wrapper.whole {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 2;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.99);
}
.moreless {
  color: #dc2828;
}
@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}
License Terms
/*SPACING*/
.mr0 {
  margin-right: 0;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb8 {
  margin-bottom: 8px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb48 {
  margin-bottom: 48px;
}
.mb56 {
  margin-bottom: 56px;
}
.mb64 {
  margin-bottom: 64px;
}
.mb72 {
  margin-bottom: 72px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb88 {
  margin-bottom: 88px;
}
.mb96 {
  margin-bottom: 96px;
}
.mb104 {
  margin-bottom: 104px;
}
.mb112 {
  margin-bottom: 112px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb160 {
  margin-bottom: 160px;
}
.mt0 {
  margin-top: 0 !important;
}
.mt8 {
  margin-top: 8px;
}
.mt16 {
  margin-top: 16px;
}
.mt24 {
  margin-top: 24px;
}
.mt32 {
  margin-top: 32px;
}
.mt40 {
  margin-top: 40px;
}
.mt48 {
  margin-top: 48px;
}
.mt56 {
  margin-top: 56px;
}
.mt64 {
  margin-top: 64px;
}
.mt72 {
  margin-top: 72px;
}
.mt80 {
  margin-top: 80px;
}
.mt88 {
  margin-top: 88px;
}
.mt96 {
  margin-top: 96px;
}
.mt104 {
  margin-top: 104px;
}
.mt112 {
  margin-top: 112px;
}
.mt120 {
  margin-top: 120px;
}
.mt160 {
  margin-top: 160px;
}
.p32 {
  padding: 0 32px;
}
.p24 {
  padding: 24px;
}
.p0 {
  padding: 0;
}
.pt0 {
  padding-top: 0;
}
.pt8 {
  padding-top: 8px;
}
.pt16 {
  padding-top: 16px;
}
.pt24 {
  padding-top: 24px;
}
.pt32 {
  padding-top: 32px;
}
.pt40 {
  padding-top: 40px;
}
.pt48 {
  padding-top: 48px;
}
.pt64 {
  padding-top: 64px;
}
.pt72 {
  padding-top: 72px;
}
.pt80 {
  padding-top: 80px;
}
.pt88 {
  padding-top: 88px;
}
.pt96 {
  padding-top: 96px;
}
.pt104 {
  padding-top: 104px;
}
.pt112 {
  padding-top: 112px;
}
.pt120 {
  padding-top: 120px;
}
.pt160 {
  padding-top: 160px;
}
.pt180 {
  padding-top: 180px;
}
.pt240 {
  padding-top: 240px;
}
.pb0 {
  padding-bottom: 0;
}
.pb8 {
  padding-bottom: 8px;
}
.pb16 {
  padding-bottom: 16px;
}
.pb24 {
  padding-bottom: 24px;
}
.pb32 {
  padding-bottom: 32px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb48 {
  padding-bottom: 48px;
}
.pb56 {
  padding-bottom: 56px;
}
.pb64 {
  padding-bottom: 64px;
}
.pb72 {
  padding-bottom: 72px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb88 {
  padding-bottom: 88px;
}
.pb96 {
  padding-bottom: 96px;
}
.pb104 {
  padding-bottom: 104px;
}
.pb112 {
  padding-bottom: 112px;
}
.pb120 {
  padding-bottom: 120px;
}
.pb160 {
  padding-bottom: 160px;
}
.pb180 {
  padding-bottom: 180px;
}
.pb240 {
  padding-bottom: 240px;
}
@media all and (max-width: 990px) {
  .mb-s-0 {
    margin-bottom: 0;
  }
  .mb-s-8 {
    margin-bottom: 8px;
  }
  .mb-s-16 {
    margin-bottom: 16px;
  }
  .mb-s-24 {
    margin-bottom: 24px;
  }
  .mb-s-32 {
    margin-bottom: 32px;
  }
  .mb-s-40 {
    margin-bottom: 40px;
  }
  .mb-s-48 {
    margin-bottom: 48px;
  }
  .mb-s-64 {
    margin-bottom: 64px;
  }
  .mb-s-72 {
    margin-bottom: 72px;
  }
  .mb-s-80 {
    margin-bottom: 80px;
  }
  .mb-s-88 {
    margin-bottom: 88px;
  }
  .mb-s-96 {
    margin-bottom: 96px;
  }
  .mb-s-104 {
    margin-bottom: 104px;
  }
  .mb-s-112 {
    margin-bottom: 112px;
  }
  .mb-s-120 {
    margin-bottom: 120px;
  }
}
@media all and (max-width: 990px) {
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .mb-sm-8 {
    margin-bottom: 8px;
  }
  .mb-sm-16 {
    margin-bottom: 16px;
  }
  .mb-sm-24 {
    margin-bottom: 24px;
  }
  .mb-sm-32 {
    margin-bottom: 32px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mb-sm-48 {
    margin-bottom: 48px;
  }
  .mb-sm-64 {
    margin-bottom: 64px;
  }
  .mb-sm-72 {
    margin-bottom: 72px;
  }
  .mb-sm-80 {
    margin-bottom: 80px;
  }
  .mb-sm-88 {
    margin-bottom: 88px;
  }
  .mb-sm-96 {
    margin-bottom: 96px;
  }
  .mb-sm-104 {
    margin-bottom: 104px;
  }
  .mb-sm-112 {
    margin-bottom: 112px;
  }
  .mb-sm-120 {
    margin-bottom: 120px;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-8 {
    margin-top: 8px;
  }
  .mt-sm-16 {
    margin-top: 16px;
  }
  .mt-sm-24 {
    margin-top: 24px;
  }
  .mt-sm-32 {
    margin-top: 32px;
  }
  .mt-sm-40 {
    margin-top: 40px;
  }
  .mt-sm-48 {
    margin-top: 48px;
  }
  .mt-sm-56 {
    margin-top: 56px;
  }
  .mt-sm-64 {
    margin-top: 64px;
  }
  .mt-sm-72 {
    margin-top: 72px;
  }
  .mt-sm-80 {
    margin-top: 80px;
  }
  .mt-sm-88 {
    margin-top: 88px;
  }
  .mt-sm-96 {
    margin-top: 96px;
  }
  .mt-sm-104 {
    margin-top: 104px;
  }
  .mt-sm-112 {
    margin-top: 112px;
  }
  .mt-sm-120 {
    margin-top: 120px;
  }
  .p0-sm {
    padding: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pt-sm-8 {
    padding-top: 8px;
  }
  .pt-sm-16 {
    padding-top: 16px;
  }
  .pt-sm-24 {
    padding-top: 24px;
  }
  .pt-sm-32 {
    padding-top: 32px;
  }
  .pt-sm-40 {
    padding-top: 40px;
  }
  .pt-sm-48 {
    padding-top: 48px;
  }
  .pt-sm-64 {
    padding-top: 64px;
  }
  .pt-sm-72 {
    padding-top: 72px;
  }
  .pt-sm-80 {
    padding-top: 80px;
  }
  .pt-sm-88 {
    padding-top: 88px;
  }
  .pt-sm-96 {
    padding-top: 96px;
  }
  .pt-sm-104 {
    padding-top: 104px;
  }
  .pt-sm-112 {
    padding-top: 112px;
  }
  .pt-sm-120 {
    padding-top: 120px;
  }
  .pt-sm-160 {
    padding-top: 160px;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pb-sm-8 {
    padding-bottom: 8px;
  }
  .pb-sm-16 {
    padding-bottom: 16px;
  }
  .pb-sm-24 {
    padding-bottom: 24px;
  }
  .pb-sm-32 {
    padding-bottom: 32px;
  }
  .pb-sm-40 {
    padding-bottom: 40px;
  }
  .pb-sm-48 {
    padding-bottom: 48px;
  }
  .pb-sm-64 {
    padding-bottom: 64px;
  }
  .pb-sm-72 {
    padding-bottom: 72px;
  }
  .pb-sm-80 {
    padding-bottom: 80px;
  }
  .pb-sm-88 {
    padding-bottom: 88px;
  }
  .pb-sm-96 {
    padding-bottom: 96px;
  }
  .pb-sm-104 {
    padding-bottom: 104px;
  }
  .pb-sm-112 {
    padding-bottom: 112px;
  }
  .pb-sm-120 {
    padding-bottom: 120px;
  }
}
@media all and (max-width: 767px) {
  .mb-xs-0 {
    margin-bottom: 0;
  }
  .mb-xs-8 {
    margin-bottom: 8px;
  }
  .mb-xs-16 {
    margin-bottom: 16px;
  }
  .mb-xs-24 {
    margin-bottom: 24px;
  }
  .mb-xs-32 {
    margin-bottom: 32px;
  }
  .mb-xs-40 {
    margin-bottom: 40px;
  }
  .mb-xs-48 {
    margin-bottom: 48px;
  }
  .mb-xs-64 {
    margin-bottom: 64px;
  }
  .mb-xs-72 {
    margin-bottom: 72px;
  }
  .mb-xs-80 {
    margin-bottom: 80px;
  }
  .mb-xs-88 {
    margin-bottom: 88px;
  }
  .mb-xs-96 {
    margin-bottom: 96px;
  }
  .mb-xs-104 {
    margin-bottom: 104px;
  }
  .mb-xs-112 {
    margin-bottom: 112px;
  }
  .mb-xs-120 {
    margin-bottom: 120px;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mt-xs-8 {
    margin-top: 8px;
  }
  .mt-xs-16 {
    margin-top: 16px;
  }
  .mt-xs-24 {
    margin-top: 24px;
  }
  .mt-xs-32 {
    margin-top: 32px;
  }
  .mt-xs-40 {
    margin-top: 40px;
  }
  .mt-xs-48 {
    margin-top: 48px;
  }
  .mt-xs-56 {
    margin-top: 56px;
  }
  .mt-xs-64 {
    margin-top: 64px;
  }
  .mt-xs-72 {
    margin-top: 72px;
  }
  .mt-xs-80 {
    margin-top: 80px;
  }
  .mt-xs-88 {
    margin-top: 88px;
  }
  .mt-xs-96 {
    margin-top: 96px;
  }
  .mt-xs-104 {
    margin-top: 104px;
  }
  .mt-xs-112 {
    margin-top: 112px;
  }
  .mt-xs-120 {
    margin-top: 120px;
  }
  .p0-xs {
    padding: 0;
  }
  .pt-xs-0 {
    padding-top: 0;
  }
  .pt-xs-8 {
    padding-top: 8px;
  }
  .pt-xs-16 {
    padding-top: 16px;
  }
  .pt-xs-24 {
    padding-top: 24px;
  }
  .pt-xs-32 {
    padding-top: 32px;
  }
  .pt-xs-40 {
    padding-top: 40px;
  }
  .pt-xs-48 {
    padding-top: 48px;
  }
  .pt-xs-64 {
    padding-top: 64px;
  }
  .pt-xs-72 {
    padding-top: 72px;
  }
  .pt-xs-80 {
    padding-top: 80px;
  }
  .pt-xs-88 {
    padding-top: 88px;
  }
  .pt-xs-96 {
    padding-top: 96px;
  }
  .pt-xs-104 {
    padding-top: 104px;
  }
  .pt-xs-112 {
    padding-top: 112px;
  }
  .pt-xs-120 {
    padding-top: 120px;
  }
  .pt-xs-160 {
    padding-top: 160px;
  }
  .pt-xs-180 {
    padding-top: 180px;
  }
  .pt-xs-240 {
    padding-top: 240px !important;
  }
  .pb-xs-0 {
    padding-bottom: 0;
  }
  .pb-xs-8 {
    padding-bottom: 8px;
  }
  .pb-xs-16 {
    padding-bottom: 16px;
  }
  .pb-xs-24 {
    padding-bottom: 24px;
  }
  .pb-xs-32 {
    padding-bottom: 32px;
  }
  .pb-xs-40 {
    padding-bottom: 40px;
  }
  .pb-xs-48 {
    padding-bottom: 48px;
  }
  .pb-xs-64 {
    padding-bottom: 64px;
  }
  .pb-xs-72 {
    padding-bottom: 72px;
  }
  .pb-xs-80 {
    padding-bottom: 80px;
  }
  .pb-xs-88 {
    padding-bottom: 88px;
  }
  .pb-xs-96 {
    padding-bottom: 96px;
  }
  .pb-xs-104 {
    padding-bottom: 104px;
  }
  .pb-xs-112 {
    padding-bottom: 112px;
  }
  .pb-xs-120 {
    padding-bottom: 120px;
  }
  .pb-xs-180 {
    padding-bottom: 180px;
  }
  .pb-xs-240 {
    padding-bottom: 240px !important;
  }
}

/* Animations */
@-webkit-keyframes line-width {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}
@keyframes line-width {
  0% {
    width: 0;
  }
  100% {
    width: 300px;
  }
}

.search-bar {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  padding: 24px 0;
  opacity: 0;
  background-color: #fefefe;
  transition: all 0.4s ease-in-out;
}
.search-bar.search {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}
.search-bar input.form-control {
  border: none;
  height: 35px;
  border-bottom: 1px solid #141414;
}
.search-bar input.form-control:focus {
  box-shadow: none;
  outline: none;
}
.close-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  opacity: 0.5;
}
.close-search:hover {
  cursor: pointer;
}
.bg-text {
  padding: 40px 20px;
  margin-right: 45px;
  text-align: justify;
  font-size: 14px;
}
.bg-text.nomargin {
  padding: 10px 20px;
  margin-right: 0;
  margin-left: 0;
  text-align: justify;
  font-size: 14px;
}
.order-sm-1 .bg-text {
  padding: 40px 20px;
  margin-right: 0;
  margin-left: 55px;
  text-align: justify;
}
.bg-image {
  width: 100%;
  min-height: 550px;
}
.story-break {
  margin-bottom: 64px;
}

.polaroid-image-wrapper {
  position: relative;
  min-height: 750px;
}
.polaroid {
  width: 45%;
  background-color: #fafafa;
  padding: 15px;
  padding-bottom: 60px;
  position: absolute;
}
.polaroid img {
  transition: all 0.3s ease-in-out;
  -webkit-filter: sepia(50%);
  filter: sepia(50%);
}
.polaroid1 {
  top: 115px;
  transform: rotate(-15deg);
  z-index: 1;
}
.polaroid:hover img {
  -webkit-filter: none;
  filter: none;
}
.polaroid2 {
  bottom: 30px;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.polaroid3 {
  top: 90px;
  right: 30px;
  transform: rotate(15deg);
  z-index: 2;
}
select.form-control {
  -webkit-appearance: menulist;
  margin-bottom: 12px;
}
@media only screen and (max-width: 600px) {
  .order-sm-1 .bg-text {
    padding: 40px 20px;
    margin-right: 0;
    margin-left: 0;
    text-align: justify;
    padding-bottom: 0;
  }
  .bg-text {
    padding: 40px 20px;
    margin-right: 0;
    text-align: justify;
    padding-bottom: 0;
  }
  .polaroid-image-wrapper {
    min-height: 350px;
  }
  .polaroid1 {
    top: 35px;
  }
  .polaroid2 {
    bottom: 20px;
  }
  .polaroid3 {
    top: 30px;
    right: 20px;
  }
  
}

.custom {
  margin-right: 5px;
}

.form-check-label {
  position: relative;
  margin-left: 15px;
}

.nav-link .form-check-label::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -25px;
  border: 1px solid #353535;
  width: 20px;
  border-radius: 50%;
  height: 20px;
}

.nav-link.active .form-check-label::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -25px;
  border: 6px solid #353535;
  width: 20px;
  border-radius: 50%;
  height: 20px;
}
#Itinerary .card-body p strong, #Itinerary .card-body strong{
    font-weight:400 !important;
}
#Itinerary .card-body p{
    text-align:justify;
    text-align-last:left;
    font-size:14px;
}
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}
.tour-card .main-button{
    width:95%;
    margin:0 auto;
}
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  /*background-color: #F2DEDE;*/
  border: 1px solid #B94A48;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  color:#B94A48;
  line-height: 0.9em;
  opacity: 0;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}
.includes ul li, .excludes ul li {
    font-size: 14px;
}
.includes ul li, .excludes ul li, .includes p, .excludes p {
    padding-left: 18px;
    position: relative;
}
.includes ul li:before, .includes p:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    color: #77dd77;
    position: absolute;
    left: 0;
}
.excludes ul li:before, .excludes p:before {
    content: '\f00d';
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    color: #c23a22;
    position: absolute;
    left: 0;
}
.story-carousel button:focus {
    outline: none;
}

.story-carousel .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    font-size:24px !important;
}

.story-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    font-size:24px !important;
}

.order-sm-1 .bg-text.nomargin {
    padding: 10px 20px;
    margin-right: 0;
    margin-left: 0;
    text-align: justify;
    font-size: 14px;
}
#story .owl-carousel .owl-item img{
    width:auto;
    margin:0 auto;
}
#story .row{
    margin-bottom:32px;
}
.region-text .hover-btn.white{
    background-color:#fefefe !important;
    color:#141414 !important;
}
.contact-img {
    width: 300px;
    margin-right: 32px;
}

.info .lead {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}