


[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 9; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

/* ------------------------------
   Component: Overlay css
   ---------------------------- */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.zt-overlay {
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: middle;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  margin: 0;
  width: 100%; }

/* 6 for Safari */
.zt-overlay.zt-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }

/*
 * Remove margin from content
 */
.zt-overlay > :first-child {
  margin-bottom: 0; }

/* Sub-object `zt-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.zt-overlay-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #ffffff; }

/*
 * Remove margin from the last-child
 */
.zt-overlay-panel > :last-child,
.zt-overlay-panel.zt-flex > * > :last-child,
#header.home-three .zt-overlay-panel.zt-container > * > :last-child,
.filter-tour.home-three .filter-wrap .zt-overlay-panel.filter-box > * > :last-child,
.video-tour.home-three .box .box-icon .zt-overlay-panel.border > * > :last-child,
.footer-bottom .zt-overlay-panel.logo-footer > * > :last-child {
  margin-bottom: 0; }

/*
 * Keep color for headings if the default heading color is changed
 */

/* Transitions
 ========================================================================== */
.zt-overlay-fade,
.zt-overlay-scale,
.zt-overlay-spin,
.zt-overlay-grayscale,
.zt-overlay-blur,
[class*='zt-overlay-slide'] {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: opacity, transform, filter; }

.zt-overlay-active .zt-overlay-fade,
.zt-overlay-active .zt-overlay-scale,
.zt-overlay-active .zt-overlay-spin,
.zt-overlay-active [class*='zt-overlay-slide'] {
  transition-duration: 0.8s; }

/*
 * Fade
 */
 
 
 
 
 
 
 
 
 
 
 
.zt-overlay-fade {
  opacity: 0.7; }

.zt-overlay-hover:hover .zt-overlay-fade,
.zt-overlay-hover.zt-hover .zt-overlay-fade,
.zt-overlay-active .zt-active > .zt-overlay-fade {
  opacity: 1; }

/*
 * Scale
 */
.zt-overlay-scale {
  -webkit-transform: scale(1);
  transform: scale(1); }

.zt-overlay-hover:hover .zt-overlay-scale,
.zt-overlay-hover.zt-hover .zt-overlay-scale,
.zt-overlay-active .zt-active > .zt-overlay-scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

/*
 * Spin
 */
.zt-overlay-spin {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg); }

.zt-overlay-hover:hover .zt-overlay-spin,
.zt-overlay-hover.zt-hover .zt-overlay-spin,
.zt-overlay-active .zt-active > .zt-overlay-spin {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg); }

/*
 * Grayscale
 */
.zt-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.zt-overlay-hover:hover .zt-overlay-grayscale,
.zt-overlay-hover.zt-hover .zt-overlay-grayscale,
.zt-overlay-active .zt-active > .zt-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%); }

/*
 * Slide
 */
[class*='zt-overlay-slide'] {
  opacity: 0; }

/* Top */
.zt-overlay-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

/* Bottom */
.zt-overlay-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

/* Left */
.zt-overlay-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

/* Right */
.zt-overlay-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

/* Hover */
.zt-overlay-hover:hover [class*='zt-overlay-slide'],
.zt-overlay-hover.zt-hover [class*='zt-overlay-slide'],
.zt-overlay-active .zt-active > [class*='zt-overlay-slide'] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0); }

/* DEPRECATED
 * Sub-object `zt-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.zt-overlay-area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0); }

/*
 * Hover
 * 1. `zt-hover` to support touch devices
 * 2. Use optional `zt-overlay-toggle` to trigger the overlay earlier
 */
.zt-overlay:hover .zt-overlay-area,
.zt-overlay.zt-hover .zt-overlay-area,
.zt-overlay-toggle:hover .zt-overlay-area,
.zt-overlay-toggle.zt-hover .zt-overlay-area {
  opacity: 1; }

/*
 * Icon
 */
.zt-overlay-area:empty:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff; }

/* DEPRECATED
 * Sub-object `zt-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.zt-overlay-area:not(:empty) {
  font-size: 0.001px; }

/*
 * 1. Needed for vertical alignment
 */
.zt-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.zt-overlay-area-content {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
  color: #ffffff; }

/*
 * Remove margin from the last-child
 */
.zt-overlay-area-content > :last-child {
  margin-bottom: 0; }

/*
 * Links in overlay area
 */
.zt-overlay-area-content a:not([class]),
.zt-overlay-area-content a:not([class]):hover {
  color: inherit; }

/* DEPRECATED
 * Sub-object `zt-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.zt-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0); }

/*
 * Hover
 * 1. `zt-hover` to support touch devices
 * 2. Use optional `zt-overlay-toggle` to trigger the overlay earlier
 */
.zt-overlay:hover .zt-overlay-caption,
.zt-overlay.zt-hover .zt-overlay-caption,
.zt-overlay-toggle:hover .zt-overlay-caption,
.zt-overlay-toggle.zt-hover .zt-overlay-caption {
  opacity: 1; }

/* ------------------------------
   Component: Flex css
   ---------------------------- */
.zt-flex, #header.home-three .zt-container, .filter-tour.home-three .filter-wrap .filter-box, .video-tour.home-three .box .box-icon .border, .footer-bottom .logo-footer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.zt-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex; }

/*
 * Fixes initial flex-shrink value in IE10
 */
.zt-flex > *, #header.home-three .zt-container > *, .filter-tour.home-three .filter-wrap .filter-box > *, .video-tour.home-three .box .box-icon .border > *, .footer-bottom .logo-footer > *,
.zt-flex-inline > * {
  -ms-flex-negative: 1; }

/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.zt-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start; }

.zt-flex-middle, #header.home-three .zt-container, .filter-tour.home-three .filter-wrap .filter-box, .video-tour.home-three .box .box-icon .border, .footer-bottom .logo-footer {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.zt-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end; }

/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.zt-flex-center, .video-tour.home-three .box .box-icon .border, .footer-bottom .logo-footer {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; }

.zt-flex-right, #header.home-three .zt-container {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }

.zt-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.zt-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around; }

/* Direction
 ========================================================================== */
.zt-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.zt-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.zt-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse; }

/* Wrap
 ========================================================================== */
.zt-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.zt-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.zt-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse; }

/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.zt-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start; }

.zt-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center; }

.zt-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end; }

.zt-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between; }

.zt-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around; }

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.zt-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1; }

.zt-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99; }

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .zt-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1; }

  .zt-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99; } }
/* Tablet and bigger */
@media (min-width: 768px) {
  .zt-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1; }

  .zt-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99; } }
/* Desktop and bigger */
@media (min-width: 960px) {
  .zt-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1; }

  .zt-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99; } }
/* Large screen and bigger */
@media (min-width: 1220px) {
  .zt-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1; }

  .zt-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99; } }
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.zt-flex-item-none {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none; }

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.zt-flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1; }

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.zt-flex-item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1; }

/* ------------------------------
   Component: Animation Css
   ---------------------------- */
@-webkit-keyframes shake {
  /*0%, 100% {-webkit-transform: translateX(0);}*/
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-15px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(15px); } }
@keyframes shake {
  /*0%, 100% {transform: translateX(0);}*/
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-15px); }
  20%, 40%, 60%, 80% {
    transform: translateX(15px); } }
@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/* ------------------------------
   Global styles
   ---------------------------- */
 
img {
  max-width: 100%; }


.zt-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto; }

.zt-container-min {
  max-width: 730px;
  width: 100%;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto; }

.zt-overlay-background-primary {
  background: #f4b843;
  background: rgba(244, 184, 67, 0.85); }

.input-icon {
  position: relative; }
  .input-icon .input-addon {
    position: absolute;
    right: 15px;
    top: 10px; }

.home-three .sec-title {
  padding-bottom: 50px; }
  .home-three .sec-title h2 {
    margin-bottom: 10px;
    font-weight: 900; }

.sec-title.sec-title-padding {
  padding-bottom: 20px; }
.sec-title h2 {
  color: #222222;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0px;
  font-weight: 700;
}

.sec-title .tagline {
  font-family: 'Playfair Display';
  font-size: 18px;
  font-style: regular;
  margin-bottom: 30px;
  display: block; }
.sec-title .img-border:after {
  content: "";
  background: url("../images/shape.png") no-repeat center center;
  height: 15px;
  width: 100px;
  display: block;
  margin: 0 auto; }

.text-white {
  color: #ffffff; }
  .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white a, .text-white p, .text-white span, .text-white i, .text-white .tagline {
    color: #ffffff; }

.font-bold {
  font-family: "Open Sans";
  font-weight: bold; }

.img-box {
  min-height: 100px; }
  .img-box img {
    width: 100%;
	border-radius:10px;
	
	
	 }

.sidebar-box {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2); }
  .sidebar-box .sidebar-header {
    padding: 30px 10px; }
    .sidebar-box .sidebar-header h3.title {
      color: #222222;
      margin: 0;
      text-align: center;
     
      font-size: 24px;
      line-height: 24px;
      font-weight: bold;
      font-style: normal; }
  .sidebar-box .sidebar-content {
    padding: 45px 50px 45px 50px; }

.load-more {
  margin-top: 50px;
  text-align: center; }
  .load-more .btn {
    font-weight: bold;
    color: #555555 !important; }
    .load-more .btn:hover {
      color: #ffffff !important; }

.owl-carousel.type-1 .owl-stage-outer {
  margin: -30px;
  padding: 30px; }
.owl-carousel.type-1 .owl-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: -1;
  margin-top: -60px; }
  .owl-carousel.type-1 .owl-controls .owl-prev {
    margin-left: -65px;
    float: left; }
  .owl-carousel.type-1 .owl-controls .owl-next {
    margin-right: -65px;
    float: right; }
  .owl-carousel.type-1 .owl-controls .owl-nav [class*=owl-] {
    background: none;
    color: #555555;
    font-size: 13px;
    height: 33px;
    width: 33px;
    text-align: center;
    line-height: 23px;
    border: 1px solid #555555;
    border-radius: 0; }
    .owl-carousel.type-1 .owl-controls .owl-nav [class*=owl-]:hover {
      color: #f4b843;
      border-color: #f4b843; }

/* ------------------------------
   Typography styles
   ---------------------------- */

 
      .nav-holder .nav-footer ul.nav > li:hover > ul.submenu {
        visibility: visible;
        opacity: 1; }
      .nav-holder .nav-footer ul.nav > li ul.submenu {
        position: absolute;
        min-width: 248px;
        opacity: 0;
        visibility: hidden;
        z-index: 99999;
        padding-top: 10px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
        transition: all .3s ease; }
        .nav-holder .nav-footer ul.nav > li ul.submenu li {
          display: block;
          padding: 0;
          background: #282828; }
          .nav-holder .nav-footer ul.nav > li ul.submenu li a {
            color: #cccccc;
            font-family: 'Open Sans', sans-serif;
            padding: 8px 10px;
            text-transform: uppercase;
            border-bottom: 1px solid #323232;
            font-size: 13px;
            letter-spacing: .1em;
            position: relative;
            display: block;
            font-weight: 700;
            transition: all .3s ease; }
            .nav-holder .nav-footer ul.nav > li ul.submenu li a:before {
              content: '\f105';
              font-family: 'FontAwesome';
              margin-right: 10px; }
          .nav-holder .nav-footer ul.nav > li ul.submenu li:last-child a {
            border-bottom: 0; }
            .nav-holder .nav-footer ul.nav > li ul.submenu li:last-child a:after {
              display: none; }
          .nav-holder .nav-footer ul.nav > li ul.submenu li:hover > a {
            color: #f4b843; }
        .nav-holder .nav-footer ul.nav > li ul.submenu:before {
          content: '';
          width: 0;
          height: 0;
          border-left: 10px solid transparent;
          border-right: 10px solid transparent;
          border-bottom: 10px solid #282828;
          position: absolute;
          top: 0px;
          left: 45px; }
    .nav-holder .nav-footer ul.nav li.has-submenu > a > button {
      display: none; }

/* fixing arrow after scroll styles */
.nav-holder .nav-footer ul.nav > li > ul.submenu {
  padding-top: 1px; }
  .nav-holder .nav-footer ul.nav > li > ul.submenu:before {
    top: -9px; }

#header.stricky-fixed .nav-holder .nav-footer ul.nav > li {
  padding: 23px 0; }
  #header.stricky-fixed .nav-holder .nav-footer ul.nav > li > ul.submenu {
    padding-top: 0px; }
    #header.stricky-fixed .nav-holder .nav-footer ul.nav > li > ul.submenu:before {
      top: -10px; }

#header.stricky-fixed .nav-holder .nav-header {
  padding: 25px 0 28px; }
  #header.stricky-fixed .nav-holder .nav-header > ul > li > ul.submenu {
    top: 108%; }

/* ------------------------------
   Section block styles
   ---------------------------- */
.rev_slider_wrapper .rev_slider {
  height: 70vh; }
  .rev_slider_wrapper .rev_slider#slider2 {
    height: 100vh; }
  .rev_slider_wrapper .rev_slider#slider1 {
    background: #ddd; }

.filter-tour {
  position: relative; }
  .filter-tour .filter-wrap {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; }
    .filter-tour .filter-wrap .filter-box {
      border-radius: 4px;
      margin-top: -60px;
      padding: 25px;
      z-index: 100;
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.27);
      background: #ffffff;
      display: table;
      margin-left: auto;
      margin-right: auto; }
      .filter-tour .filter-wrap .filter-box input, .filter-tour .filter-wrap .filter-box select, .filter-tour .filter-wrap .filter-box button {
        color: #222222;
        height: 50px;
        line-height: inherit;
        width: 190px;
        font-size: 15px; }
      .filter-tour .filter-wrap .filter-box button {
        color: #ffffff;
        line-height: 20px;
        padding: 0 35px; }
      .filter-tour .filter-wrap .filter-box .form-group {
        margin-right: 15px; }
      .filter-tour .filter-wrap .filter-box input::-webkit-input-placeholder, .filter-tour .filter-wrap .filter-box select::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        opacity: 1;
        color: #222222; }
      .filter-tour .filter-wrap .filter-box input:-moz-placeholder, .filter-tour .filter-wrap .filter-box select:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        opacity: 1;
        color: #222222; }
      .filter-tour .filter-wrap .filter-box input::-moz-placeholder, .filter-tour .filter-wrap .filter-box select::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        opacity: 1;
        color: #222222; }
      .filter-tour .filter-wrap .filter-box input:-ms-input-placeholder, .filter-tour .filter-wrap .filter-box select:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        opacity: 1;
        color: #222222; }
  .filter-tour.home-two .filter-wrap .filter-box {
    margin-top: -200px;
    box-shadow: none;
    background: #000;
    background: rgba(0, 0, 0, 0.5); }
  .filter-tour.home-three {
    background-color: #f4b843; }
    .filter-tour.home-three .filter-wrap {
      position: relative; }
      .filter-tour.home-three .filter-wrap .filter-box {
        margin-top: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
        border-radius: 0; }
        .filter-tour.home-three .filter-wrap .filter-box .title {
          text-align: center;
          padding: 10px 20px 10px 0;
          margin-right: 50px;
          border-right: 1px solid;
          border-color: rgba(34, 34, 34, 0.2); }
          .filter-tour.home-three .filter-wrap .filter-box .title h3 {
            text-align: center;
            text-transform: uppercase;
            line-height: 32px;
            font-size: 11px; }
            .filter-tour.home-three .filter-wrap .filter-box .title h3 strong {
              font-size: 28px;
              display: block; }
        .filter-tour.home-three .filter-wrap .filter-box input, .filter-tour.home-three .filter-wrap .filter-box select, .filter-tour.home-three .filter-wrap .filter-box textarea {
          background: transparent;
          border-radius: 0;
          width: 188px;
          border-color: #fdf7d9; }
        .filter-tour.home-three .filter-wrap .filter-box .submit {
          margin-left: 35px; }
        .filter-tour.home-three .filter-wrap .filter-box button {
          position: relative;
          height: 100px;
          color: #000000;
          border: none;
          border-radius: 0;
          background: #ffffff; }
          .filter-tour.home-three .filter-wrap .filter-box button:before {
            content: '';
            position: absolute;
            border: #f4b843 solid 4px;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            opacity: 0;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-property: opacity;
            transition-property: opacity; }
          .filter-tour.home-three .filter-wrap .filter-box button:hover:before {
            opacity: 1; }

.choose-tour .box-awesome-service:hover .box-icon [class*="flaticon-"]:before {
  color: #f4b843; }
.choose-tour .box-awesome-service .box-icon {
  color: #959595;
  text-align: center; }
  .choose-tour .box-awesome-service .box-icon [class*="flaticon-"]:before {
    font-size: 70px;
    margin: 0; 
	
	}
	
.choose-tour .box-awesome-service .box-text h3 {

  font-weight: 700;
  font-size: 24px;
  margin-top: 25px;
  text-align: center; 
  color:#336666;
  }
  
.choose-tour .box-awesome-service .box-text p {
  color: #555555;
  margin-top: 25px;
  padding: 0 5px;
  font-size: 15px;
  text-align: center; }

.video-tour {
  font-family: 'Open Sans';
  font-size: 15px;
  line-height: 26px; }
  .video-tour .sec-title h2 {
    margin-bottom: 10px; }
  .video-tour .sec-title .tagline {
    margin-bottom: 22px; }
  .video-tour.home-three .sec-title {
    padding-bottom: 0; }
  .video-tour.home-three .img-video-box .wistia_embed {
    position: relative;
    height: initial; }
  .video-tour .img-video-box {
    overflow: hidden;
    position: relative; }
    .video-tour .img-video-box .wistia_embed {
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      position: absolute;
      height: 100%; }
      .video-tour .img-video-box .wistia_embed .wistia_click_to_play {
        height: 100% !important;
        width: auto !important; }
      .video-tour .img-video-box .wistia_embed a {
        display: block;
        height: 100%; }
    .video-tour .img-video-box .overlay-play {
      background: url("../images/video-play.png") no-repeat center center;
      background-size: 60px 60px;
      height: 100%;
      width: 60px;
      display: block;
      margin: auto; }
  .video-tour .btn-read-more {
    margin-top: 20px; }
  .video-tour.home-three .box {
    padding: 15px 0; }
    .video-tour.home-three .box .box-icon, .video-tour.home-three .box .box-content {
      display: table-cell;
      vertical-align: middle; }
    .video-tour.home-three .box .box-icon {
      padding-right: 20px; }
      .video-tour.home-three .box .box-icon .border {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid #f4b843; }
      .video-tour.home-three .box .box-icon .fa {
        position: relative;
        text-align: center;
        line-height: 40px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        color: #989898;
        font-size: 16px;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .video-tour.home-three .box .box-icon .fa:after {
          content: "";
          position: absolute;
          z-index: -1;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-radius: 50%;
          background-color: #f4b843;
          -webkit-transform: scale(0);
          transform: scale(0);
          -webkit-transition-property: transform;
          transition-property: transform;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
    .video-tour.home-three .box:hover .fa {
      color: #ffffff; }
      .video-tour.home-three .box:hover .fa:after {
        -webkit-transform: scale(1);
        transform: scale(1); }
    .video-tour.home-three .box .box-content h4 {
      text-transform: uppercase;
      color: #222222;
      font-size: 16px;
      line-height: 26px;
      font-weight: bold; }
    .video-tour.home-three .box .box-content p {
      color: #555555;
      font-size: 11px;
      line-height: 20px;
      font-style: italic;
      margin: 0; }
  .video-tour.home-three .img-video-box {
    border-bottom: 5px solid #f4b843;
    background-color: #cdcdcd; }
    .video-tour.home-three .img-video-box .zt-overlay-panel {
      padding: 40px 60px; }
    .video-tour.home-three .img-video-box .img-content .overlay-play {
      background: url("../images/video-play-2.png") no-repeat center center;
      background-size: 50px 36px;
      height: 36px;
      width: 50px;
      display: block;
      margin-left: 15px;
      margin-bottom: 27px;
      -webkit-animation: shake 10s infinite;
      animation: shake 10s infinite; }
    .video-tour.home-three .img-video-box .img-content h3 {
   
      font-weight: 800;
      font-size: 24px;
      line-height: 28px;
      color: #ffffff;
      margin-bottom: 5px;
      text-transform: uppercase; }
    .video-tour.home-three .img-video-box .img-content p {
      
      font-weight: 300;
      font-size: 14px;
      line-height: 18px;
      color: #ffffff;
      margin: 0; }
    .video-tour.home-three .img-video-box img {
      display: block;
      width: 100%; }

.popular-services.sec-padding {
  padding: 0px 0 15px 0; }
.popular-services .tour-list-box {
  margin-bottom: 15px; border: #E4DACB solid 0px;
  border-radius:10px; }
  .popular-services .tour-list-box:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); }
  .popular-services .tour-list-box .overlay-content {
    width: 100%;
    display: block;
    z-index: 9; }
    .popular-services .tour-list-box .overlay-content .price {
      float: left; }
      .popular-services .tour-list-box .overlay-content .price h3 {
        margin: 0;
        font-size: 15px;
        line-height: 19px;
        color: #f4b843;
        font-weight: 600; }
    .popular-services .tour-list-box .overlay-content .rating {
      float: right;
      margin-top: 5px;
      font-size: 13px; }
  .popular-services .tour-list-box h3 {

    
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    margin: 20px 0 10px 0; }
  .popular-services .tour-list-box .rating {
    line-height: initial;
    font-size: 12px;
    color: #eee; }
  .popular-services .tour-list-box .driver {
    margin: 20px auto;
    height: 1px;
    width: 56px;
    background-color: #e7e7e7; }
  .popular-services .tour-list-box .duration {
    display: block;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#313131;
    font-size: 14px;
    line-height: 26px;
    padding-bottom: 3px; }
  .popular-services .tour-list-box ul li {
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: #222222; }
    .popular-services .tour-list-box ul li:before {
      font-family: "FontAwesome";
      content: ">>";
      speak: none;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      padding-right: 9px;
      color: #222222; }
.popular-services.home-two .tour-list-box {
  background: #ffffff;
  border: 1px solid #e7e7e7; }
  .popular-services.home-two .tour-list-box:hover {
    /*box-shadow: none;*/ }
  .popular-services.home-two .tour-list-box .img-box .zt-overlay-panel {
    padding: 0; }
  .popular-services.home-two .tour-list-box .img-box img {
    width: 100%;
    height: 200px; }
  .popular-services.home-two .tour-list-box .img-box .box-wrap-img {
    margin-right: 30px;
    height: 100%; }
    .popular-services.home-two .tour-list-box .img-box .box-wrap-img .box-padding {
      padding: 15px; }
    .popular-services.home-two .tour-list-box .img-box .box-wrap-img .box-item {
      font-size: 12px;
      line-height: 18px;
      text-transform: uppercase; }
      .popular-services.home-two .tour-list-box .img-box .box-wrap-img .box-item span {
        display: block; }
    .popular-services.home-two .tour-list-box .img-box .box-wrap-img .driver {
      margin: 20px auto;
      height: 1px;
      width: 56px;
      background-color: #e7e7e7; }
  .popular-services.home-two .tour-list-box .box-content {
    padding: 10px 20px 20px 15px; }
    .popular-services.home-two .tour-list-box .box-content h3 {
      font-size: 15px; }
    .popular-services.home-two .tour-list-box .box-content .rating {
      margin-bottom: 25px; }
    .popular-services.home-two .tour-list-box .box-content .excert {
      font-family: "Open Sans";
      font-size: 15px;
      line-height: 26px;
      padding-bottom: 10px; }
    .popular-services.home-two .tour-list-box .box-content .zt-default {
      color: #555555 !important;
      font-size: 14px;
      letter-spacing: 2px; }
      .popular-services.home-two .tour-list-box .box-content .zt-default:hover {
        color: #ffffff !important; }
.popular-services.home-three {
  background: url("../images/bg-destinations.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  .popular-services.home-three .zt-overlay-panel {
    padding: 25px 30px; }
  .popular-services.home-three .tour-list-box {
    position: relative; }
    .popular-services.home-three .tour-list-box:hover {
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
      .popular-services.home-three .tour-list-box:hover .box-book-now {
        opacity: 1; }
  .popular-services.home-three .box-content {
    border-bottom: 5px solid #f0f0f0;
    padding: 20px 15px;
    text-align: left;
    background-color: #f8f8f8; 
	line-height:21px;
	color:#333333;
	font-family:Arial, Helvetica, sans-serif;
	}
    .popular-services.home-three .box-content h3 {
      margin: 0;
      font-weight: 800;

      font-size: 17px;
      color: #222222;
      text-align: left; }
  .popular-services.home-three .box-book-now {
    margin-top: -5px;
    opacity: 0;
    height: 50px; }
    .popular-services.home-three .box-book-now .btn {
      width: 100%;
      height: 50px;
      border-radius: 0; }
	  
	  
	  
.yellow-btn{background-color: #C31818;
    
    background-position: 8px center;
    background-repeat: no-repeat;
    
    border-radius: 25px;
	text-align:center;
    clear: both;
    color: rgb(255, 255, 255);
    display: inline-block;
	font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size: 15px;
    margin:17px 0;
    min-height: 20px;
    padding: 5px 25px 7px 25px;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-weight: normal;
    text-transform: capitalize;}
.yellow-btn:hover{background-image: url(../images/white-link-arrow.png);
    background-position: 8px center;
    background-repeat: no-repeat;
    
    border-radius: 25px;
	text-align:center;
    clear: both;
    color: rgb(255, 255, 255);
    display: inline-block;
	font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size: 15px;
    margin:17px 0;
    min-height: 20px;
    padding: 5px 25px 7px 25px;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-weight: normal;
    text-transform: capitalize;
background:#FAA61A; color:#FFFFFF;}
	  
	  

.famous-locations {
  background: url("../images/bg-famous-locations.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  .famous-locations .bx-wrapper {
    height: 550px;
    margin-bottom: 0; }
    .famous-locations .bx-wrapper .bx-controls {
      position: relative;
      width: 58%;
      height: 1px;
      margin-left: auto; }
      .famous-locations .bx-wrapper .bx-controls .bx-controls-direction a {
        top: -90px;
        z-index: 999; }
    .famous-locations .bx-wrapper .bx-prev {
      left: 35px;
      background: url("../images/slider/control-prev.png") no-repeat; }
    .famous-locations .bx-wrapper .bx-next {
      left: 70px;
      background: url("../images/slider/control-next.png") no-repeat; }
    .famous-locations .bx-wrapper .famous-slider .item {
      left: 0; }
      .famous-locations .bx-wrapper .famous-slider .item img {
        height: 550px;
        width: 100%; }
      .famous-locations .bx-wrapper .famous-slider .item .map-location {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1; }
      .famous-locations .bx-wrapper .famous-slider .item .content {
        padding: 120px 0;
        width: 590px;
        padding-left: 20px; }
        .famous-locations .bx-wrapper .famous-slider .item .content h3 {
          text-transform: uppercase;
          margin-bottom: 25px; }
        .famous-locations .bx-wrapper .famous-slider .item .content .famous-locations-meta {
          font-weight: bold;
          font-style: italic;
       
          font-size: 24px;
          line-height: auto;
          margin-bottom: 20px; }
          .famous-locations .bx-wrapper .famous-slider .item .content .famous-locations-meta .number {
            font-size: 33px; }
        .famous-locations .bx-wrapper .famous-slider .item .content p {
          font-style: italic;
          font-size: 15px;
          line-height: 26px; }
        .famous-locations .bx-wrapper .famous-slider .item .content a.btn {
          margin-top: 15px; }
    .famous-locations .bx-wrapper .bx-controls .bx-pager {
      display: none; }

.clients-says {
  background: url("../images/bg-testimonials.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  .clients-says .position-relative ul {
    list-style: none; }
  .clients-says .position-relative .bx-wrapper {
    position: initial !important; }
    .clients-says .position-relative .bx-wrapper .bx-controls-direction a {
      z-index: 9;
      top: 88px; }
    .clients-says .position-relative .bx-wrapper .bx-controls {
      position: relative;
      width: 330px;
      margin: auto;
      height: 1px; }
    .clients-says .position-relative .bx-wrapper .bx-prev {
      left: 0px;
      background: url("../images/slider/control-left.html") no-repeat; }
    .clients-says .position-relative .bx-wrapper .bx-next {
      right: 0px;
      background: url("../images/slider/control-right.html") no-repeat; }
  .clients-says .meta-profile .color-primary {
    font-style: italic;
    font-family: 'Playfair Display'; }
  .clients-says .slider-thumbnail .slider-thumbnail-item {
    display: inline; }
    .clients-says .slider-thumbnail .slider-thumbnail-item a {
      margin: 10px 20px 10px 0;
      height: 60px;
      width: 60px;
      display: block;
      overflow: hidden; }
      .clients-says .slider-thumbnail .slider-thumbnail-item a.active {
        margin: 0 20px 0 0;
        height: 80px;
        width: 80px; }
        .clients-says .slider-thumbnail .slider-thumbnail-item a.active .zt-overlay-background {
          background: none; }
        .clients-says .slider-thumbnail .slider-thumbnail-item a.active img {
          height: 80px;
          width: 80px; }
    .clients-says .slider-thumbnail .slider-thumbnail-item img {
      height: 60px;
      width: 60px; }
      .clients-says .slider-thumbnail .slider-thumbnail-item img.img {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        max-width: 100%;
        background-color: transparent; }
      .clients-says .slider-thumbnail .slider-thumbnail-item img.circular {
        border-radius: 500rem;
        overflow: hidden; }
  .clients-says ul li {
    text-align: center;
    font-size: 18px;
    line-height: 26px; }

.clients-says-2 {
  padding-bottom: 0;
  margin-bottom: 60px; }
  .clients-says-2 .sec-title h2 {
    margin-bottom: 10px; }
  .clients-says-2 .bx-viewport {
    overflow: initial !important; }
  .clients-says-2 .box-img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    background-color: #ededed; }
    .clients-says-2 .box-img img {
      width: 100%;
      margin-bottom: -60px; }
  .clients-says-2 .box {
    padding-left: 30px; }
  .clients-says-2 .box-content {
    margin-bottom: 90px; }
    .clients-says-2 .box-content p {
      font-size: 15px;
      font-weight: 400; }
    .clients-says-2 .box-content .meta {
      font-size: 13px;
      font-weight: 400; }
      .clients-says-2 .box-content .meta .color-primary {
        font-weight: bold; }
  .clients-says-2 .bx-pager {
    display: none; }
  .clients-says-2 .bx-controls {
    margin-top: -50px; }
    .clients-says-2 .bx-controls .bx-controls-direction {
      width: 66.66666667%;
      position: relative;
      margin-left: auto;
      margin-top: -20px; }
    .clients-says-2 .bx-controls .bx-controls-direction a {
      top: 88%;
      width: 15px;
      height: 20px; }
    

.location {
  background: url("../images/location.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.location-slider .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap; }
.location-slider .row > [class*='col-'] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column; }
.location-slider .box-img {
  z-index: 9; }
  .location-slider .box-img img {
    padding: 5% 0;
    display: block;
    width: 100%; }
.location-slider .box-content {
  background-color: #ffffff;
  margin-left: -10%;
  border: 5px solid #f0f0f0;
  padding: 40px 2% 40px 11.8%;
  font-size: 15px;
  color: #555555;
  line-height: 26px; }
  .location-slider .box-content .active {
    float: left;
    font-size: 48px;
    font-weight: 800;
    margin-top: 2px;
    margin-right: 10px;
    line-height: 49px;
    color: #f4b843; }
  .location-slider .box-content .rating {
    margin-top: 5px;
    margin-bottom: 22px; }
  .location-slider .box-content ul li {
    margin-bottom: 15px; }
    .location-slider .box-content ul li a {
      color: #555555;
      font-size: 15px;
      font-weight: 600; }
      .location-slider .box-content ul li a .fa {
        padding-right: 5px; }
      .location-slider .box-content ul li a:hover {
        color: #f4b843; }
.location-slider .owl-controls {
  position: absolute;
  right: 0;
  top: 50%; }
  .location-slider .owl-controls .owl-nav {
    display: none; }
  .location-slider .owl-controls .owl-dots {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-right: -15px; }
    .location-slider .owl-controls .owl-dots .owl-dot {
      background: #ffffff;
      width: 16px;
      border-radius: 50%;
      text-align: center;
      border: 2px solid #cccccc;
      height: 16px;
      position: relative;
      margin-right: 9px; }
      .location-slider .owl-controls .owl-dots .owl-dot.active span {
        display: block;
        height: 6px;
        width: 6px;
        margin: auto;
        text-align: center;
        background: #f4b843;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -3px;
        margin-left: -3px; }
      .location-slider .owl-controls .owl-dots .owl-dot span {
        display: none; }

.top-location {
  margin: 0; }
  .top-location .top-location-slider {
    height: 530px;
    padding: 0; }
    .top-location .top-location-slider .map-location {
      position: absolute;
      top: 0;
      right: 0; }
      .top-location .top-location-slider .map-location img {
        height: 222px !important;
        width: 100% !important; }
    .top-location .top-location-slider .owl-item {
      width: auto !important; }
      .top-location .top-location-slider .owl-item .item {
        width: 1000px; }
      .top-location .top-location-slider .owl-item .overlay-bg {
        z-index: 1; }
      .top-location .top-location-slider .owl-item .caption {
        z-index: 0;
        position: absolute;
        top: 55%;
        padding: 0;
        height: 240px; }
        .top-location .top-location-slider .owl-item .caption .top-location-content {
          padding: 50px 70px; }
        .top-location .top-location-slider .owl-item .caption h3 {
          color: #f4b843;
          letter-spacing: 2px;
          font-size: 24px;
          line-height: 24px;
          font-family: 'Playfair Display';
          text-transform: uppercase;
          font-weight: bold;
          font-style: italic; }
        .top-location .top-location-slider .owl-item .caption p {
          color: #ffffff;
          font-size: 15px;
          line-height: 26px; }
        .top-location .top-location-slider .owl-item .caption a {
          text-decoration: none;
          margin-top: 50px;
          color: #ffffff;
          font-size: 15px;
          line-height: 26px; }
      .top-location .top-location-slider .owl-item.active.center .overlay-bg {
        z-index: 0; }
      .top-location .top-location-slider .owl-item.active.center {
        width: 1000px !important; }
        .top-location .top-location-slider .owl-item.active.center .caption {
          z-index: 3; }
      .top-location .top-location-slider .owl-item img {
        height: 530px;
        width: 100%; }
    .top-location .top-location-slider .owl-controls {
      width: 1000px;
      height: 1px;
      margin: auto;
      position: relative; }
      .top-location .top-location-slider .owl-controls .owl-nav i.control.control-prev {
        background: url("../images/slider/control-prev.png") no-repeat;
        display: block;
        height: 30px; }
      .top-location .top-location-slider .owl-controls .owl-nav i.control.control-next {
        background: url("../images/slider/control-next.png") no-repeat;
        display: block;
        height: 30px; }
      .top-location .top-location-slider .owl-controls .owl-nav .owl-prev {
        display: inline-block;
        width: 30px;
        height: 30px;
        top: -300px;
        background: none;
        position: absolute;
        transition: all 0.7s;
        left: -120px; }
      .top-location .top-location-slider .owl-controls .owl-nav .owl-next {
        display: inline-block;
        width: 30px;
        height: 30px;
        top: -300px;
        position: absolute;
        background: none;
        transition: all 0.7s;
        right: -120px; }

.gallery-member.home-two {
  background-color: #f8f8f8; }
.gallery-member .img-box img {
  width: 100%; }
.gallery-member .img-box .box-gallery {
  text-align: center; }
  .gallery-member .img-box .box-gallery h3 {
    font-size: 18px;
    
    text-transform: uppercase;
    margin: 0;
    line-height: 28px; }
  .gallery-member .img-box .box-gallery p {
    margin: 0;
    
    font-size: 15px;
    font-style: italic; }
.gallery-member.gallery-masonry .img-box img {
  width: 100%; }
.gallery-member.gallery-masonry .grid .grid-item {
  padding-bottom: 30px; }

.latest-news.even div[class*='col-']:nth-child(even) .single-latest-news {
  position: relative;
  top: 100%;
  left: 0;
  right: 0; }
  .latest-news.even div[class*='col-']:nth-child(even) .single-latest-news .img-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%; }
  .latest-news.even div[class*='col-']:nth-child(even) .single-latest-news .text-box .angle-up:before {
    bottom: -17px;
    content: '';
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 17px solid #f8f8f8;
    position: absolute;
    left: 40px; }
  .latest-news.even div[class*='col-']:nth-child(even) .single-latest-news .text-box .angle-up:after {
    display: none !important; }
.latest-news .single-latest-news {
  margin-bottom: 30px; }
  .latest-news .single-latest-news .img-box img {
    width: 100%; }
  .latest-news .single-latest-news .text-box {
    padding: 20px;
    background-color: #f8f8f8; }
    .latest-news .single-latest-news .text-box .angle-up:after {
      top: -17px;
      content: '';
      width: 0;
      height: 0;
      border-left: 17px solid transparent;
      border-right: 17px solid transparent;
      border-bottom: 17px solid #f8f8f8;
      position: absolute;
      left: 40px; }
    .latest-news .single-latest-news .text-box h3 {
      
      font-weight: 600;
      font-size: 21px;
      line-height: 26px;
      margin-top: 10px;
      margin-bottom: 15px; }
    .latest-news .single-latest-news .text-box .meta-blog {
      font-family: 'Playfair Display';
      font-size: 12px;
      font-style: italic;
      line-height: 26px;
      display: block;
      color: #ababab;
      margin-bottom: 15px; }
    .latest-news .single-latest-news .text-box p {
      font-family: 'Open Sans';
      font-weight: normal;
      font-size: 15px;
      line-height: 26px; }
    .latest-news .single-latest-news .text-box .latest-read-more {
      font-size: 15px;
      margin-top: 20px;
      color: #222222; }
      .latest-news .single-latest-news .text-box .latest-read-more:hover {
        text-decoration: none; }
.latest-news.home-two .single-latest-news {
  min-height: initial; }
  .latest-news.home-two .single-latest-news:hover .img-box .zindex {
    z-index: 2; }
    .latest-news.home-two .single-latest-news:hover .img-box .zindex .img-wrap-box {
      transition: all .5s ease;
      background: #000; }
  .latest-news.home-two .single-latest-news:hover .img-box .zt-overlay-scale {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .5s ease; }
    .latest-news.home-two .single-latest-news:hover .img-box .zt-overlay-scale a {
      text-decoration: none; }
  .latest-news.home-two .single-latest-news .img-box .zindex {
    right: initial; }
  .latest-news.home-two .single-latest-news .img-box .zt-overlay-panel {
    padding: 0; }
  .latest-news.home-two .single-latest-news .img-box .zt-overlay-scale {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .5s ease;
    background: #fc3;
    background: rgba(255, 204, 51, 0.7);
    text-align: center; }
    .latest-news.home-two .single-latest-news .img-box .zt-overlay-scale a {
      text-decoration: none !important;
      display: table;
      width: 100%;
      height: 100%;
      color: #fff; }
      .latest-news.home-two .single-latest-news .img-box .zt-overlay-scale a .fa {
        display: table-cell;
        vertical-align: middle;
        font-size: 24px; }
  .latest-news.home-two .single-latest-news .img-box .zt-overlay-icon:before {
    content: '\f0c1'; }
  .latest-news.home-two .single-latest-news .img-box .img-wrap-box {
    margin-left: 30px; }
    .latest-news.home-two .single-latest-news .img-box .img-wrap-box .datetime {
      text-align: center;
      padding: 15px;
      font-size: 12px;
      line-height: 16px; }
      .latest-news.home-two .single-latest-news .img-box .img-wrap-box .datetime span {
        margin-bottom: 5px;
        font-size: 25px;
        line-height: 16px;
        display: block; }
  .latest-news.home-two .single-latest-news .img-box img {
    height: 240px; }

.our-partners .our-partners-carousel .owl-carousel .item {
  padding-left: 15px; }

.footer-top-cta {
  background: #f4b843; }
  .footer-top-cta .form {
    position: absolute;
    height: 100%;
    width: 95%;
    padding-left: 50px;
    min-height: 120px; }
    .footer-top-cta .form .form-group {
      width: 100%; }
    .footer-top-cta .form input {
      height: 60px; }
    .footer-top-cta .form .input-addon {
      top: 18px; }
      .footer-top-cta .form .input-addon .fa {
        font-size: 20px;
        color: #252525; }

/* ------------------------------
   Footer styles
   ---------------------------- */
#footer {
  background: url("../images/bg-footer.html") no-repeat center center;
  background-color: #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  #footer.sec-padding {
    padding: 120px 0 100px 0; }
  #footer .footer-widget.notitle .title {
    display: none !important; }
  #footer .footer-widget .title {
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 20px; }
    #footer .footer-widget .title h3 {
      text-transform: uppercase;
      color: #ffffff;
      font-size: 18px;
      margin-top: 0; }
  #footer .footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  #footer .about-widget {
    color: #999999;
    line-height: 30px;
    font-family: 'Open Sans';
    font-size: 14px; }
    #footer .about-widget img.logo-footer {
      height: 20px;
      margin-bottom: 30px; }
    #footer .about-widget p {
      color: #ccc;
      margin: 0;
      padding: 0; }
    #footer .about-widget .fa {
      width: 25px;
      text-align: center; }
    #footer .about-widget a {
      color: #ccc; }
      #footer .about-widget a:hover {
        text-decoration: underline; }
        #footer .about-widget a:hover .fa {
          color: #f4b843; }
    #footer .about-widget ul li {
      color: #ccc;
      line-height: 24px; }
  #footer .post-news-widget ul li {
    margin-bottom: 5px; }
    #footer .post-news-widget ul li a {
      font-size: 14px;
      color: #ccc; }
      #footer .post-news-widget ul li a:before {
        font-family: "FontAwesome";
        content: "ï„Œ";
        speak: none;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        padding-right: 10px; }
      #footer .post-news-widget ul li a:hover {
        color: #f4b843;
        text-decoration: none; }
  #footer .post-link-widget ul li {
    margin-bottom: 5px; }
    #footer .post-link-widget ul li a {
      font-size: 14px;
      color: #ccc; }
      #footer .post-link-widget ul li a:before {
        font-family: "FontAwesome";
        content: "ï„…";
        speak: none;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        padding-right: 10px; }
      #footer .post-link-widget ul li a:hover {
        color: #f4b843;
        text-decoration: none; }
  #footer .gallery-widget ul li {
    padding: 0 4px 4px 0;
    display: inline; }
    #footer .gallery-widget ul li a .gallery-wrap {
      width: initial;
      margin-bottom: 6px; }
      #footer .gallery-widget ul li a .gallery-wrap img {
        height: 85px;
        width: 85px; }
  #footer.home-three {
    padding-bottom: 90px;
    background: #272727; }
    #footer.home-three .sec-padding {
      padding-top: 50px; }
    #footer.home-three .about-widget {
      line-height: 26px; }
      #footer.home-three .about-widget .fa {
        color: #f4b843; }
    #footer.home-three .footer-topbar {
      padding-bottom: 50px;
      margin-bottom: 60px;
      border-bottom: 1px solid #686868; }
    #footer.home-three .post-link-widget ul li a:before {
      font-family: "FontAwesome";
      content: "ï„";
      speak: none;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      text-decoration: none;
      padding-right: 10px; }
    #footer.home-three .gallery-widget ul li {
      padding: 0 2px 2px 0; }
      #footer.home-three .gallery-widget ul li a img {
        height: 63px;
        width: 63px; }

.social-footer {
  margin: 20px 0 0 0;
  list-style: none;
  padding: 0; }
  .social-footer li {
    display: inline; }
    .social-footer li a {
      color: #999999;
      font-size: 20px;
      line-height: 45px;
      padding-right: 15px; }
      .social-footer li a:hover {
        color: #f4b843; }

.footer-bottom {
  clear: both;
  padding: 20px 0;
  background-color: #0c0c0c; }
  .footer-bottom .logo-footer {
    width: 164px;
    height: 60px;
    margin-left: 12px;
    margin-top: -50px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg);
    background: #646464; }
    .footer-bottom .logo-footer img {
      display: block;
      margin: auto;
      -webkit-transform: skew(20deg);
      -moz-transform: skew(20deg);
      -o-transform: skew(20deg);
      transform: skew(20deg); }
    .footer-bottom .logo-footer + .left-text {
      margin-left: 200px;
	
      margin-top: -20px; }
      .footer-bottom .logo-footer + .left-text a {
        color: #ffffff;
        text-decoration: underline; }
      .footer-bottom .logo-footer + .left-text p {
        margin: 0; }
  .footer-bottom .social-footer {
    margin: 0;
    margin-top: -10px; }
    .footer-bottom .social-footer li a {
      font-size: 14px;
      line-height: 16px; }
      .footer-bottom .social-footer li a:hover, .footer-bottom .social-footer li a span:hover {
        color: #f4b843; }
  .footer-bottom .menu-footer {
    list-style: none;
    margin: 0;
    padding: 0; }
    .footer-bottom .menu-footer li {
      padding-right: 30px;
      display: inline; }
      .footer-bottom .menu-footer li a {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase; }
        .footer-bottom .menu-footer li a:hover {
          color: #f4b843;
          text-decoration: none; }

/* ------------------------------
   Banner styles
   ---------------------------- */
.inner-banner {
  background-image: url("../images/inner-banner.jpg");
  padding: 160px 0 0px 0;
  background-color: #1E1E1E;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center; 
  
  }
  
  .inner-banner .box h2 {
    color: #ffffff;
    font-family: "Open Sans";
    font-weight: bold;
    text-transform: uppercase;
    font-size: 36px;
    line-height: auto;
    padding-bottom: 100px; }
  .inner-banner .box ul.breadcumb {
    margin: 0;
    padding: 0; }
    .inner-banner .box ul.breadcumb li {
      display: inline;
      color: #ffffff;
      margin-right: 7px; }
      .inner-banner .box ul.breadcumb li:first-child:before {
        display: none; }
      .inner-banner .box ul.breadcumb li:before {
        font-family: "FontAwesome";
        content: "ï„…";
        speak: none;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        margin-right: 10px; }
      .inner-banner .box ul.breadcumb li a {
        font-family: "Playfair Display";
        font-size: 17px;
        font-style: italic;
        color: #ffffff; }
        .inner-banner .box ul.breadcumb li a:hover {
          text-decoration: none; }
      .inner-banner .box ul.breadcumb li span {
        font-family: "Playfair Display";
        font-style: italic;
        font-size: 17px;
        color: #b8b8b8; }

#slider1 .banner-caption-h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  line-height: 75px;
  text-transform: uppercase; }
#slider1 .color-primary {
  color: #f4b843 !important; }
#slider1 .banner-caption-p {
  font-family: 'Playfair Display';
  font-style: italic;
  color: #ffffff;
  font-size: 24px;
  line-height: 36px; }

#slider2 .banner-caption-h1 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  line-height: 75px;
  text-transform: uppercase; }
#slider2 .banner-caption-p {
  font-family: 'Playfair Display';
  font-style: italic;
  color: #ffffff;
  font-size: 30px;
  line-height: 36px; }
#slider2 .banner-caption-scroll a {
  display: block;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 24px !important;
  color: #777676;
  background-color: #f9f9f9; }
  #slider2 .banner-caption-scroll a:hover {
    background-color: #f4b843;
    color: #ffffff; }

#slider3 {
  height: 100vh; }
  #slider3 .banner-caption-h1 {
    color: #ffffff;
    font-size: 120px;
    font-weight: 800;
    line-height: 120px; }
  #slider3 .color-primary {
    color: #f4b843 !important; }
  #slider3 .banner-caption-p {
    font-family: 'Playfair Display', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400; }
  #slider3 .banner-caption-scroll {
    border-radius: 3px;
    padding: 7px 25px;
    border: 1px solid #f4b843; }
    #slider3 .banner-caption-scroll:hover {
      background: #f4b843 !important; }
    #slider3 .banner-caption-scroll a {
      color: #ffffff;
      font-size: 14px; }

/* ------------------------------
   Destinations  styles
   ---------------------------- */
.destinations .destination-content-wrap .tab {
  border: 1px solid #e9e9e9; }
  .destinations .destination-content-wrap .tab li {
    width: 20%;
    height: 100px;
    line-height: 100px;
    border-right: 1px solid #e9e9e9;
    margin: 0;
    position: relative; }
    .destinations .destination-content-wrap .tab li:last-child {
      border: none; }
    .destinations .destination-content-wrap .tab li a {
      padding: 20px 0 0 0;
      color: #a5a0a0;
      margin: 0;
      display: block;
      height: 100px;
      border: none;
      border-radius: 0;
      text-align: center;
      transition: all 0.5 ease;
      font-size: 12px;
      text-transform: uppercase;
      font-family: "Open Sans";
      font-weight: bold; }
      .destinations .destination-content-wrap .tab li a span.fa {
        display: block;
        margin-bottom: 13px;
        font-size: 36px; }
      .destinations .destination-content-wrap .tab li a:hover, .destinations .destination-content-wrap .tab li a:focus {
        color: #ffffff;
        border: none;
        border-radius: 0;
        transition: all 0.5 ease;
        background: #f4b843;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
        .destinations .destination-content-wrap .tab li a:hover:after, .destinations .destination-content-wrap .tab li a:focus:after {
          bottom: -17px;
          content: '';
          width: 0;
          height: 0;
          border-left: 17px solid transparent;
          border-right: 17px solid transparent;
          border-top: 17px solid #f4b843;
          position: absolute;
          left: 37%; }
    .destinations .destination-content-wrap .tab li.active a {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      color: #ffffff;
      background: #f4b843; }
      .destinations .destination-content-wrap .tab li.active a:after {
        bottom: -17px;
        content: '';
        width: 0;
        height: 0;
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-top: 17px solid #f4b843;
        position: absolute;
        left: 37%; }
.destinations .destination-content-wrap .tab-content {
  margin-top: 40px; }
  .destinations .destination-content-wrap .tab-content .panel {
    background-color: #f7f7f7;
    font-size: 15px;
    padding: 50px; }
    .destinations .destination-content-wrap .tab-content .panel strong {
      font-weight: bold; }
  .destinations .destination-content-wrap .tab-content iframe {
    border: 0;
    width: 100%;
    height: 400px; }
  .destinations .destination-content-wrap .tab-content .tab-details {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    background-color: #f7f7f7; }
  .destinations .destination-content-wrap .tab-content ul {
    padding: 0;
    margin: 0;
    list-style: none; }
    .destinations .destination-content-wrap .tab-content ul li {
      margin-bottom: 10px;
      font-size: 15px;
      line-height: 18px; }
      .destinations .destination-content-wrap .tab-content ul li:before {
        font-family: "FontAwesome";
        content: "ï€Œ";
        speak: none;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        margin-right: 10px;
        color: #f4b843; }
.destinations .destination-content-wrap .destination-content {
  margin-top: 40px; }
  .destinations .destination-content-wrap .destination-content .thumbnail {
    padding: 0;
    border: none;
    width: 100%; }
    .destinations .destination-content-wrap .destination-content .thumbnail img {
      padding: 0;
      width: 100%; }
  .destinations .destination-content-wrap .destination-content h1 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 24px; }
  .destinations .destination-content-wrap .destination-content blockquote {
    border-left: 5px solid #f4b843;
    font-family: "Playfair Display";
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    font-style: italic; }
  .destinations .destination-content-wrap .destination-content p {
    font-size: 15px;
    line-height: 26px; }
  .destinations .destination-content-wrap .destination-content img {
    padding: 30px 15px 30px 0; }
.destinations .destination-sidebar-wrap {
  margin-bottom: 80px; }
  .destinations .destination-sidebar-wrap .sidebar-header {
    background-color: #3f3c3c; }
    .destinations .destination-sidebar-wrap .sidebar-header h3 {
      color: #ffffff; }
  .destinations .destination-sidebar-wrap .sidebar-book {
    border-bottom: 1px solid #e9e9e9; }
    .destinations .destination-sidebar-wrap .sidebar-book .form .form-group {
      margin-bottom: 30px; }
      .destinations .destination-sidebar-wrap .sidebar-book .form .form-group .input-icon .input-addon {
        top: 15px; }
    .destinations .destination-sidebar-wrap .sidebar-book .form input, .destinations .destination-sidebar-wrap .sidebar-book .form select {
      height: 55px;
      line-height: 55px; }
      .destinations .destination-sidebar-wrap .sidebar-book .form input::-webkit-input-placeholder, .destinations .destination-sidebar-wrap .sidebar-book .form select::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        opacity: 1;
        color: #222222; }
.center-head{text-align: center;}

/* styles for pop up form */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
    z-index: 99999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: rgba(33, 37, 68, 1);
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all .500s ease-in-out;
}

.popup h2 {
  margin: 0 0 15px 0;
	padding: 0;
  color: #fff;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ff7a23;
}
.popup .close:hover {
  color: #fff;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 1399px){
  .box{
    width: 50%;
  }
  .popup{
    width: 50%;
  }
}
@media screen and (max-width: 991px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}
@media screen and (max-width: 767px){
  .box{
    width: 90%;
  }
  .popup{
    width: 90%;
  }
}
@media screen and (max-width: 600px){
    .popup .query-form .col-6.arrive-date,
    .popup .query-form .col-6.dest{width: 100%;}
}
.popup .query-form form{width: 100%;padding: 0;}
/* styles for pop up form end*/


/* Offer banner styles */
.section-offer-banner{position: relative;padding: 0 0 70px;display: none;}
.section-offer-banner .banner-div{padding: 0 15px;}
.banner-div a{display: flex;
	background-color: #ff6a00;color: #fff;position: relative;
	background-image: url("../../images/kumbh-mela-banner.png");
	background-position: top left;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 7px #00000021;
}
.banner-div a:hover{background-color: #ff4038; color:#FFFFFF;}
.banner-div a .div1{width: 50%;padding: 30px 30px 15px 100px;}
.div1 h4{margin: 0;padding: 0;font-size: 36px;}
.offer-body{background: #281515;padding: 10px 20px;margin: 15px 0;
	display: flex;flex-wrap: wrap;align-items: center;
}
.offer-body div{display: flex;flex-wrap: wrap;padding-right: 15px;border-right: 1px solid #fff;line-height: 1.5;}
.offer-body span{display: flex;flex-wrap: wrap;align-items: center;padding-left: 15px;}
.offer-body span strong{font-size: 26px;font-weight: normal;}
.offer-body span i{font-style: normal;font-size: 12px;}
.banner-div p{margin: 0 0 15px 0;padding: 0;}
.banner-div a .div2{width: 50%;overflow: hidden;position: relative;}
.div2 img{vertical-align: top;transform: scale(1);width: 100%;height: 100%;transition: transform .3s;}
.div2::after{position: absolute;background-image: url("../../images/kumbh-mela-banner2.png");
	content: "";width: 100px;height: 213px;bottom: 0;right: 0;z-index: 999;
}
.banner-div a:hover .div2 img{-webkit-transform:scale(1.05);transform:scale(1.05)}
.offer-page{text-align: center;position: relative;}
.offer-page div{position: absolute;bottom: 0;background: #ff6600;color: #fff;left: 50%;border-radius: 5px;
  transform: translate(-50%);font-size: 26px;padding: 15px 0;width: 205px;line-height: 0.6;}
.offer-page div b{font-size: 13px;text-transform: uppercase;display: block;margin-bottom: 10px;}
.offer-page div span{text-transform: uppercase;font-size: 11px;}
.offer-page img{border-radius: 50%;width: 100%;max-width: 300px;box-shadow: 0px 0px 7px #00000021;}
@media(max-width: 991px){
	.banner-div a{flex-wrap: wrap;}
	.banner-div a .div1, .banner-div a .div2{width: 100%;}
	.banner-div a .div2{border-radius: 0 0 10px 10px;}
}
@media(max-width: 767px){
	.offer-body span{padding-left: 0;}
}


.banner-par{padding-top: 30px;}
