/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
    overflow-x: hidden
}a {
  color:#E97925;
  text-decoration: none;
}
p {
    font-size: 14px
}
a:hover {
  color: #3b8af2;
  text-decoration: none;
}
.px-8 {
  padding-left: 100px;
  padding-right: 100px;
}
.pt-60 {
    padding-top: 60px;
}
 .hidden {
      display: none;
    }
#content {
  position: absolute;
  right: 0px;
  width: 280px;
  top: 0;
  box-shadow: 0 0 20px #00000040;
}
.d-i-b {
    
    display: inline-table;
}
#carouselExampleIndicators {
  height: 380px;
  overflow: hidden;
}
.list-ttr {
  list-style: none;
  padding: 0;
}
.custon-btns i {
  color: #fff;
  font-size: 40px;
  text-align: center;
  width: 100%;
}
.custon-btns a {
  display: grid;
}
.custon-btns span {
  text-align: center;
  color: #fff;
  font-size: 19px;
}
.bg-yellow {
    background: #EEB637;
}
.footer, .footer-btm {
  z-index: 120;
  position: relative;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.top-header  {
  background: #E97925;
  font-size: 13px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
 .social-links a {
  color: rgba(255, 255, 255, 1);
  line-height: 0;
  transition: 0.3s;
  padding: 11px 10px;
     font-weight: 500;
     margin: 0 2px;
      border-left: 1px solid #ffffff54;
}
.contact-info  a {
padding: 8px 10px;
  color: #fff;
  font-weight: 500;
  border-right: 1px solid #ffffff54;
    
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 600;
  color: #6c6c6c;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}



.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e97925;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.navbar-text h6 {
    font-family: 'Bebas Neue', sans-serif;
}
.call-ntn i {
  font-size: 36px;
  float: left;
  margin-right: 10px;
  color: #395628;
}
.navbar-text small {
  font-size: 10px;
  font-weight: 600;
}
.call-ntn h6 {
  font-size: 23px;
  color: #2e2e2e;
}
.call-ntn {
  color: #6c6c6c;
}
.navbar-text p {
float: right;
  font-size: 11px;
  font-weight: 600;
  margin: 30px 0 0 0;
    }
.navbar-text ul {
  list-style: none;
  float: left;
  padding-left: 15px;
}
.navbar-text li {
  display: inline flow-root list-item;
}
.search-ico {
    
    font-size: 22px;
  border-left: 1px solid #ccc;
  padding-left: 10px;
  color: #000;
}
.header-bar {
  width: 100%;
  float: left;
  padding: 10px 0;
}

.header-bar img {
  width: 90px;
  float: left;
}
.header-bar p {
  padding: 6px 0 6px 8px;
  margin: 0;
  float: left;
}
.header-bar i {
  float: left;
  font-size: 20px;
  padding: 3px 0 0 0;
}
/*==================  Slider Area  ==================*/
.slider-area {
  width: 100%;
  background: url("../images/bg.jpg") top left;
  background-size: cover;
  position: relative;
    padding: 60px 0;
}

.slider-area:before {
  content: "";
  background: rgba(0, 0,0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
/*form styles*/
#msform {
	width: 100%;
	text-align: center;
	position: relative;
    background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 40px 30px;
    min-height: 330px;
}
#msform fieldset {
	box-sizing: border-box;

	width: 100%;
  position: absolute;
  left: 0;
  padding: 0 30px;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
font-size: 25px;
  color: #2C3E50;
  margin-bottom: 24px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 24px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
    padding: 0;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 28px;
	line-height: 26px;
	display: block;
	font-size: 13px;
	color: #e97925;;
	background: white;
	border-radius: 20px;
	margin: 0 auto 5px auto;
    border: 1px solid #e97925;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
/*progressbar connectors*/
#progressbar li:after {
content: '';
  width: 100%;
  height: 2px;
  background: #e97925;
  position: absolute;
  left: -50%;
  top: 13px;
  z-index: 0;
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #00B67A;
  color: white;
}#progressbar li.active:before  {
	background: #00B67A;
     border: 1px solid #00B67A;
  color: white;
}
/* Slideshow container */
.slideshow-container {
  position: relative;
    font-family: 'Bebas Neue', sans-serif;
}

/* Slides */
.mySlides {
  display: none;
  padding: 0px;
  text-align: center;
}



.mySlides span {
  padding: 5px 20px 3px;
  border-radius: 30px;
  font-weight: normal;
}
.mySlides h1 {
  font-size: 96px;
  margin: 20px 0 0 0;
  line-height: 80px;
}
.mySlides h2 {
  font-size: 44px;
  margin: 0;
}
.mySlides h3 {
  font-size: 47px;
  color: #E97925;
}
.mySlides small {
  font-size: 26px;
  padding: 0 10px;
  color: #fff;
}
/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 4px;
  z-index: 2;
  position: relative;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active1, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
.after-slider {
  border-bottom: 1px solid #ccc;
}
 .after-slider img{
  width: 110px;
  float: left;
  margin-right: 12px;
}
.r-side {
  float: left;
  border-left: 1px solid #666;
  padding: 0 12px;
  margin: 5px 0;
}
.after-slider h5 {
  margin: 0;
  font-size: 17px;
  padding: 2px 0;
}

.r-side ul {
  list-style: none;
  display: inline-flex;
  padding:   0;
  margin: 0;
}

.r-side ul li {
  padding: 0 3px;
}
.r-side ul li i {
  color: #ffa500;
    font-size: 14px
}
section {
  padding: 70px 0;
}
.sec-heading h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.packages-wraper h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 15px 0;
}
.pck-op {
  padding: 10px;
}
.pck-img {
  position: relative;
    height: 220px;
  overflow: hidden;
}
.pck-img ul {
  list-style: none;
  margin: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
}
.pck-img ul li {
  float: left;
  padding: 0 3px;
}
.pck-img i {
  font-size: 14px;
  color: #ffa500;
}
.pck-body h4 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  padding: 12px 0;
  height: 71px;
  margin: 0;
  overflow: hidden;
}
.pck-body div {
  float: left;
  font-size: 13px;
  margin-right: 12px;
}
.pck-body h4 a {
    color: #000;
}
.footer-bars ul li a {
  color: #fff;
}
.footer-bars ul li a:hover, .pck-body h4 a:hover {
  color: #e97925 
}
.pck-footer h5 {
font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}
.pck-footer small {
  font-size: 12px;
  color: #acacac;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.travel-exp h1 {
  font-weight: 600;
  font-size: 34px;
  color: #000;
}
.travel-exp p {
  font-size: 15px;
  color: #666;
}
.travel-exp ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.travel-exp h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.travel-exp i {
  font-size: 35px;
  float: left;
  padding: 0 15px 37px 0;
}
.bi.bi-map.text-warning {
}
.travel-exp ul li p {
  font-size: 14px;
  height: 62px;
  overflow: hidden;
}
.pack-box {
  border: 1px solid #ccc;
  border-radius: 10px;
}
.pack-box h3 {
  padding: 10px;
  border-radius: 9px 9px 0 0;
}
.list {
  border-bottom: 1px solid #ccc;
    display: flow-root;
}
.pack-box a:last-child {
    border: none;
}
.pack-box img {
  float: left;
  margin-right: 20px;
  border-radius: 7px;
}
.pack-box span {
    color: #666
}
.pack-box p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
    color: #433E48;
}
.testimonial-itam h5 {
  font-size: 16px;
}
.testimonial-itam > p {
  font-size: 14px;
  height: 100px;
  overflow-x: scroll;
  padding-right: 10px;
}
.testimonial-itam h6 {
  margin: 0;
}
.custom-height {
  height: 500px;
  overflow-x: scroll;
}
.footer-bars ul {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 0;
}
.footer-bars li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-line p {
  font-size: 14px;
  margin: 0;
  padding: 5px 0;
}
.social-links1  a {
  border: 1px solid #CDD4E1;
  border-radius: 20px;
  padding: 6px;
  width: 38px;
  float: left;
  text-align: center;
  margin: 0 4px;
  color: #CDD4E1;
}
.social-links1 {
  float: right;
}
.payments a {
  padding: 0 6px;
}
.payments p {
  margin-bottom: 5px;
}
.call-btn {
  width: 240px;
  float: left;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.call-btn p {
  width: 46px;
  color: #fff;
  text-align: center;
  margin: 0;
  border-radius: 5px;
  float: left;
  height: 40px;
  line-height: 25px;
}
.call-btn h6 {
  font-size: 12px;
  font-weight: 500;
  float: left;
  margin: 0 4px;
  padding: 3px 10px;
  border-radius: 5px;
  color: #fff;
  height: 40px;
  line-height: 17px;
}
.z-index11 {
    z-index: 11;
}
.slider-top ul {
  list-style: none;
  padding: 0;
}
.slider-top li {
  padding: 4px 0;
}
.custom-div {
  position: absolute;
  transition: top 0.3s ease;
  width: 280px;
    height: 80vh;
  overflow-y: auto;
}
.fixed1 {
  position: fixed;
  top: 80px;
}
.form-label, .custom-div  input, .custom-div  textarea , .form-check-label{
font-size: 14px;
}
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:25px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
    line-height: 50px;
}
.float:hover {
	color: #fff;
}
.title-bg {
    background: url("../images/title-bg.png");
    background-size: cover;
    float: left;
    width: 100%;
    position: relative;
}
.mission {
    background: url("../images/ourvalues.jpg");
    background-size: cover;
    float: left;
    width: 100%;
    position: relative;
}
.overlay1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}
.count-item i {
  font-size: 35px;
  float: left;
  padding-right: 12px;
}
.counter {
  font-size: 25px;
  font-weight: 600;
  line-height: 26px;
}

.count-item p {
  margin: 0;
}
.cir {
  min-height: 250px;
  width: 260px;
  margin: 0 auto;
    margin-right: auto;
    margin-left: auto;
}
.bg-img1 {
  background-image: url("../images/whychooseus.png");
  background-position: right;
  background-repeat: no-repeat;
    background-size: cover;
}
.ps-6{
  padding-left: 6rem !important;
}
.font-16{
  font-size: 16px;
  line-height: 26px;
}
.map {
      filter: grayscale(100%);
    }
@media screen and (max-width: 768px) {
#msform {
  min-height: 460px;
}
    .count-item i {
  float: none;
  padding-right: 0;
}
    .count-item {
        text-align: center;
}
.fixed1 {
  position: relative;
  top: auto;
}
.custom-div {
  position: relative;
  width: auto;
  height: auto;
  overflow-y: auto;
}
}
@media screen and (max-width: 567px) {

    .col-6 {
  flex: 0 0 auto !important;
  width: 50%;
}
    .px-xs-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .header-bar p {
  padding: 8px 0 6px 8px;
  font-size: 12px;
}
    
}