body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #d8c46c;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
.pagination{
	float: right !important;
}
.current {
    background: #008df9 !important;
    color: #fff !important;
}

#pagin li {
  display: inline-block;
}

.prev {
  cursor: pointer;
}

.next {
  cursor: pointer;
}

.last{
  cursor:pointer;
  margin-left:5px;
}

.first{
  cursor:pointer;
  margin-right:5px;
}
/*Tab customize */
.tab-customiz{
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
    float: none;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 6px 0px;
}
.home-tabsec{
	    margin-top: -58px;
}
.home-topdec{
	    margin-top: 18px;
}
.home-tabsec .modal-content {
    padding-top: 40px;
	    padding-bottom: 20px;
}
.home-topdec .modal-content {
    padding-top: 40px;
	    padding-bottom: 20px;
}
.s_btn .btn {
	padding: 9px 32px;
    box-shadow: 0px 0px 5px 0px #0000004d;
    position: relative;
    top: 25px; 
}
.sp_btn{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a39348+0,d8c46c+100,6d0019+100,d8c46c+100 */
	background: rgb(163,147,72); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(163,147,72,1) 0%, rgba(216,196,108,1) 100%, rgba(109,0,25,1) 100%, rgba(216,196,108,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(163,147,72,1) 0%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%,rgba(216,196,108,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(163,147,72,1) 0%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%,rgba(216,196,108,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a39348', endColorstr='#d8c46c',GradientType=1 ); /* IE6-9 */

    border-color: transparent;
}
.sp_btn:hover{
	 /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d8c46c+0,d8c46c+32,a39348+100,d8c46c+100,6d0019+100 */
	background: rgb(216,196,108); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(216,196,108,1) 0%, rgba(216,196,108,1) 32%, rgba(163,147,72,1) 100%, rgba(216,196,108,1) 100%, rgba(109,0,25,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(216,196,108,1) 0%,rgba(216,196,108,1) 32%,rgba(163,147,72,1) 100%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(216,196,108,1) 0%,rgba(216,196,108,1) 32%,rgba(163,147,72,1) 100%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8c46c', endColorstr='#6d0019',GradientType=1 ); /* IE6-9 */
	border:1px solid #d8c46c !important;
}
.hotel-sec .controls-top.c_btn.sp_btn:hover {
    border: none !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #d8c46c;
}
.tab-customiz li.nav-item{
font-size: 20px;}

.tab-customiz .nav-link {
padding: 12px 40px;
    color: #000;}

a.btn.btn-outline-primary:hover {
    color: #fff;
}
/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #00adef;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#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 #f2f2f2;
  border-top: 6px solid #d8c46c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
	padding: 30px 0;
	background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.header-social li a {
    line-height: 1;
    width: 28px;
    height: 28px;
    padding: 5px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.36);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    color: inherit;
}
.header-social li, .header-social li a {
    margin: 2px;
}
.header-info li a {
    color: black;
}
.header1 {
    height: 45px!important;
    padding: 5!important;
    box-shadow: none !important;
}
.header2 {
    height: 83px !important;
    padding: 20px 0 !important;
    box-shadow: none !important;
}
.header-scrolled .logo img {
    margin-top: 14px;
}
.header-info {
    margin-top: -3px;
}
#header.header-scrolled, #header.header-pages {
    height: 60px;
    padding: 10px 0;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
    max-height: 100%;
    width: 12%;
    position: absolute !important;
    padding: 11px 0;
    top: 34px;
}
.header-scrolled .logo img {
    top: 0 !important;
       margin: 0 !important;
    padding: 0 !important;
}
#header1 .logo img {
    /* margin: 7px 0; */
    max-height: 100%;
	width: auto;
    position: absolute !important;
    top: 6px;
   /* border-radius: 45em/15em;*/
    padding-bottom: 7px;
    /*background: #fff;*/
}
.ofr .carousel-item.active{
	display: flex;
}
.b_sec {
    padding-top: 1em;
    padding-bottom: 1em;
}
.offr_title{
position: relative;}
.offr_title{
    padding: 2px;
    font-size: 40px;
    margin-bottom: 0;
}

.carousel-inner{
	width: 100%;
    overflow: hidden;
}
.ofr .controls-top.c_btn{
	width: fit-content;
    padding: 4px 4px;
    border-radius: 50px;
    position: absolute;
    float: right;
    top: -59px;
    right: 20px;
}
.ofr ol.carousel-indicators li {
    height: 20px;
    /* max-width: 20px; */
    background-color: #4285F4;
    margin-bottom: -60px;
}
.ofr .c_btn a {
    color: #ffffff;
    padding: 0px 10px;
}
.home-tabsec .modal-content{
    border-radius: 15px;
}
.home-topdec .modal-content{
    border-radius: 15px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: #1545b3;    
  border-radius: 42em/5em;
  padding: 140px 0 130px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
    width: 100%;
    float: none;
    text-align: center;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #d8c46c;
  border: 2px solid #d8c46c;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #d8c46c;
  border-color: #d8c46c;
  color: #fff;
}
.ofr center {
    border-radius: 50px;
    background: linear-gradient(-40deg, #d8c46c, #00adef);
}

.ofr_menu .active{
	color: #444444 !important;
    border-radius: 50px;
    background: white !important;
    margin: 3px 3px;
	padding: 5px;
}
.ofr center li.nav-item {
    font-size: 20px;
}
.ofr center li.nav-item .nav-link{
	color: #ffffff;
	padding-left: 20px;
	padding-right: 19px;
		
}
ul.med_icn li {
    display: inline-flex !important;
}
ul.med_icn li a {
    color: #ffffff;
}
ul.med_icn li a i:hover {
    color: #000000;
    background: #ffffffb5;
}
ul.med_icn li a i {
    background: #565656;
    padding: 6px;
    width: 28px;
    height: 25px;
    border-radius: 10px;
}
ul.med_icn.cards li i {
    font-size: 40px;
}
.footer-menu {
    padding: 0;
}
.footer-menu li a {
    color: #c1c1c1 !important;
}
.footer-menu li a:hover {
    color: #ffffff !important;
}
.c_txt a {
    color: #d8c46c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #000000;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform:uppercase;
}
.main-nav .loginbtn a {
    display: inline-block;
}
.main-nav .loginbtn a{	
  color: #ffffff;
}
.main-nav .loginbtn a:hover{	
  color: #ffffff;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
	color: #000000;
	text-decoration: none;
  /*border-radius: 4px;
	background: linear-gradient(45deg, #d8c46c, #00adef);*/
	text-decoration: none;
}
.bg-warning {
    background-color: #d8c46c!important;
}
#hotel_search {
    background: url(/public/images/himalayas.jpg) !important;
}
.htl_output:hover {
    border:1px solid rgb(216 196 108) !IMPORTANT;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.2rem 1.1rem 0px;
    cursor: pointer;
}
.airfilter_head {
    font-weight: 700 !IMPORTANT;
}
.main-nav a.active{
	color: #FFDD00;
	text-decoration: none;
	/*border-radius: 4px;
	background: linear-gradient(45deg, #d8c46c, #00adef);*/
	text-decoration: none;
}
.nav-sm .nav.child_menu li.active, .nav-sm .nav.side-menu li.active-sm {
    border-right: 5px solid #d8c46c !important;
}
.contactpg .media .fa {
    font-size: 36px;
    padding: 3px 0px;
	color:#d8c46c !important;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #d8c46c;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/
#intro-about {
    width: 100%;
    position: relative;
    padding: 140px 0 130px 0;
    background-image: url(/public/img/m-about.jpg);
    background-size: cover;
    background-position: center center;
	height: 500px;
}

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #d8c46c;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #d8c46c;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #d8c46c;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #d8c46c;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
 /* box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);*/
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #d8c46c;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #d8c46c;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #d8c46c;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #d8c46c;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #d8c46c;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #d8c46c;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/
#intro-cont {
    width: 100%;
    position: relative;
    padding: 240px 0 130px 0;
    background: url(/public/img/contact.jpg);
    background-size: cover;
    background-position: center center;
	background-repeat: no-repeat;
	
}

.cont-icon {
	float: left;
	margin-right: 20px;
}

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d8c46c;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #d8c46c;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #d8c46c;
}

#contact .social-links a:hover {
  background: #d8c46c;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #d8c46c;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #d8c46c;
  border: 1px solid #d8c46c;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #f44336;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #f44336;
  cursor: pointer;
}
/* privacy section  */
#intro-privacy {
	 width: 100%;
    position: relative;
    padding: 240px 0 130px 0;
	background-image: url(/public/img/privacy_policy.jpg);
    background-size: cover;
    background-position: center left;
	background-repeat: no-repeat;
	
}
/*------------------------------*/
/* terms_of_services section  */
#intro-term_srv {
	width: 100%;
    position: relative;
    padding: 140px 0 130px 0;
	background-image: url(/public/img/termCond.jpg);
    background-size: cover;
    background-position: center center;
	
}
/*------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #000000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
	border-top: 2px solid;
	border-color: #fcac17;
}

#footer .footer-top {
  background: #004a99;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #d8c46c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #d8c46c;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

.ph-no {
	margin-top: 20px;
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
    .header1 {
    display: none;
}
	.ph-no {
	margin-top: 4px;
}
  #header {
    height: 60px;
    padding: 10px 0;
  }
 section#intro .container {
    max-width: 100%;
}

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 120px 0 90px 0;
  }
  
  
  #intro .intro-info {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
  .modal-dialog.modal-xl.home-tabsec {
    max-width: 90%;
}

.modal-dialog.modal-xl.home-topdec{
	 max-width: 90%;
}
.item-box-blog-text {
    height: auto;
    overflow: visible;
}

li.loginbtn button a {
    display: inline-flex !important;
    margin: 0 auto;
}	
.car-tn {  
    bottom: 46px !important;
    left: 279px !important;
}
.car-t{
    bottom: 47px !important;
    left: 194px !important;
}
#hotelResult #title {
    padding-top: 10px;
}
#hotelResult .textcls1 {
    padding-top: 20px;
    text-align: left;
    font-size: 15px !important;
    line-height: 1.3em;
}
a.shbtn {
    margin-top: 12px !important;
    width: 100% !important;
    padding: 5px;
}

}
@media (max-width: 1199px) {
.item-box-blog-text .mt a {
    position: relative;
    bottom: 20px;
}
.offr_title {
    font-size: 32px;
}}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  .desimg {
    width: 20% !important;
    float: left;
	margin-right:2% !important;
}
.destext{
		width: 68% !important;
    	margin-left:2% !important;
	}
}

@media (max-width: 767px) {
	.destext{
		width: 68% !important;
    	margin-left:2% !important;
	}
	.desimg {
    width: 20% !important;
    float: left;
	margin-right:2% !important;
}
 #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
 
}

@media (max-width: 574px) {
  #intro {
    padding: 20px 0 20px 0;
  }
}
 
.cta-100 {
  margin-top: 100px;
  padding-left: 8%;
  padding-top: 7%;
}
.col-md-4{
    padding-bottom:20px;
}

.white {
  color: #fff !important;
}
.bg-blue-ui {
  background-color: #708198 !important;
}
figure img{width:300px;}

/* The colour of the indicators */

.blog .carousel-indicators li {
  background: #708198;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.blog .carousel-indicators .active {
  background: #0fc9af;
}




.item-carousel-blog-block {
  outline: medium none;
  padding: 15px;
}

.item-box-blog {
  border: 1px solid #dadada;
  z-index: 4;
  padding: 20px;
}

.item-box-blog-image {
  position: relative;
}

.item-box-blog-image figure img {
  width: 100%;
  height: auto;
}
.item-box-blog-heading a {
    color: #444444;
}
.item-box-blog-body {
  padding: 10px;
}

.item-heading-blog a h5 {
  margin: 0;
  line-height: 1;
  text-decoration:none;
  transition: color 0.3s;
}

.item-box-blog-heading a {
    text-decoration: none;
}

.item-box-blog-data p {
  font-size: 13px;
}

.item-box-blog-data p i {
  font-size: 12px;
}

.item-box-blog-text {
  max-height: 100px;
  overflow: hidden;
}
.item-box-blog-text1 {
  overflow: hidden;
  margin-bottom:20px;
}
.mt-10 {
  float: left;
  margin-top: -10px;
  padding-top: 10px;
}

.btn.bg-blue-ui.white.read {
  cursor: pointer;
  padding: 4px 20px;
  float: left;
  margin-top: 10px;
}
.heading .mt-5 {
    border-bottom: 2px solid;
    border-color: #d8c46c;
    width: fit-content;
    border-radius: 50px;
    padding: 5px 12px;
}
.Ajstfy {
    text-align: justify;
}
.contact-image {
    margin-top: 70px !important;
}
.term_srv-image {
background-image: url(/public/img/termCond.jpg);
height: 60% !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover !important;
margin-top: -3em;
width: 100% !important;
}
.privacy-image {
background-image: url(/public/img/privacy_policy.jpg);
height: 60% !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover !important;
margin-top: 70px !important;
width: 100% !important;
}
.contact-image
{
background-image: url(/public/img/contact.jpg);
height: 60% !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover !important;
width: 100% !important;
margin-top: 70px !important;
}
.about-image{
background-image: url(/public/img/m-about.jpg);
height: 70% !important;
background-position: center;
background-repeat: no-repeat;
background-size: cover !important;
width: 100% !important;
margin-top: 70px !important;
}
@media screen and (max-device-width: 767px) and (orientation: portrait) {
.privacy-image {
    background-size: contain !important;
    height: 320px !important;
	margin-top: -4em;
}
.term_srv-image {
    background-size: contain !important;
    height: 320px !important;
	margin-top: -4em;
}
.contact-image {
    background-size: contain !important;
    height: 320px !important;
}
.about-image {
    background-size: contain !important;
    height: 320px !important;
	margin-top: -4em;
}
} 
@media screen and (max-device-width: 767px) and (orientation: landscape) {

.nav.ofr_menu {
    display: inline-flex;
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
	.home-tabsec.ofr {
    max-width: 97%;
}

.home-topdec.ofr {
    max-width: 97%;
}

.ofr center li.nav-item .nav-link {
    padding-left: 9px;
	padding-right: 9px;
	}
}
.contact-image {
    background-size: contain !important;
    height: 320px !important;
}
.about-image {
    background-size: contain !important;
    height: 320px !important;
}
}
.sunimg{
	position: absolute;
   -webkit-animation:spin 8s linear infinite;
    -moz-animation:spin 8s linear infinite;
    animation:spin 8s linear infinite;
}
.car-t{
	position: absolute;
   -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
    bottom: 36px;
    left: 154px;
    opacity: 0.6;
}
.car-tn{
	position: absolute;
   -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
    bottom: 36px;
    left: 221px;
    opacity: 0.6;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.desimg img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.desimg {
    width: 20%;
    float: left;
	
}
.destext {
    width: 70%;
    float: left;
	margin-left:10%;
}
.destext h5 {
    margin-bottom: 7px !important;
}
.thrtop {
    margin-top: 5em;
}
.mrgdown{
	margin-top: 8em !important;
}
.row.heg {
    margin-right: 20px;
    margin-left: 20px;
}
.hdspc {
    margin-bottom: 9px;
}
.hidden {
    display: none;
}
.nnficn {
    position: absolute;
    right: 17px;
    font-size: 12px !important;
    top: 35px;
}
.tooltipr {
 /* position: relative;
  display: inline-block;*/
}

.tooltipr .tooltiptextr {
  visibility: hidden;
  width: max-content;
  background-color: #0000009e;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  left: -225px;
  box-shadow: 0px 0px 6px 0px #4c4b4b;
  top:25px;
}

.tooltipr:hover .tooltiptextr {
  visibility: visible;
}

i.fa.fa-sort-asc {
    font-size: 17px !important;
    line-height: 30px;
    color: #fff;
    padding-left: 4px;
	position: absolute;
}
i.fa.fa-long-arrow-right {
    font-size: 14px;
}
.Showdata {
    font-weight: 500;
    font-size: 13px;
}
.smtxt {
    font-size: 13px;
    padding: 3px 5px !important;
}
i.fa.fa-registered {
    color: #00A4F2;
}
.col-6 .fa {
    padding-left: 4px;
}
.actionbtnthr a, .actionbtnthr button {
    margin: 2%;
    float: left;
    padding: 3px;
}
.actionbtnthr a .fa, .actionbtnthr button .fa {
    padding: 0px 1px !important;
}
.actionbtnthr .fa {
    font-size: 10px;
}
#tophead span a {
    color: #000;
    font-size: 12px;
    font-weight: bold !IMPORTANT;
}
.bg-secondary1 {
    background-color: #d6e7f7!important;
}
.air_fl_results #tophead span a span {
	background:rgba(0, 0, 0, 0) url("/public/images/filteraero.png") no-repeat scroll 1px -17px;
	width: 11px;
    height: 7px;
    display: inline-block;
}

.air_fl_results #tophead span a.selected>.high,.air_fl_results #tophead span a.selected>.low{ background-position:-1px -23px !important;}

.air_fl_results #tophead span a.selected>.low, .air_fl_results #tophead span a.selected>.high {background:url("/public/images/filteraero.png") no-repeat;}

.air_fl_results #tophead span a.selected>.low, .air_fl_results #tophead span a.selected>.high {background:url("/public/images/filteraero.png") no-repeat;}

.air_fl_results #tophead span a.selected>.high, .air_fl_results #tophead span a.selected>.low{ background-position:-1px -23px!important;}

.air_fl_results #tophead span a.selected {
    color: #ffffff !important;
    background: #008cfa;
    border-radius: 5px 5px 0 0;
    padding: 6px 2px;
}
/* FANCY COLLAPSE PANEL STYLES */
.fancy-collapse-panel .panel-default > .panel-heading {
padding: 0;

}
.fancy-collapse-panel .panel-heading a {
padding: 7px 35px 7px 15px;
display: inline-block;
width: 100%;
background-color: #E0DEDE;
color: #131313;
position: relative;
text-decoration: none;
}
.fancy-collapse-panel .panel-heading a:after {
font-family: "FontAwesome";
content: "\f0d7";
position: absolute;
right: 20px;
font-size: 20px;
font-weight: 400;
top: 50%;
line-height: 1;
margin-top: -10px;
}
.oft label {
    font-size: 12px;
    line-height: 25px;
    margin: 0;
}

.outbft label {
    font-size: 13px;
}
.fancy-collapse-panel {
    border: 1px solid #E0DEDE;
}
.airfilter_head {
    font-size: 12px;
    padding: 0 12px;
}
#FLTClear {
    float: right;
    color: #131313;
}
.fancy-collapse-panel .panel-body {
    padding: 0 12px;
    text-align: left;
}
.fancy-collapse-panel .panel-heading a.collapsed:after {
content: "\f0da";
}
.fancy-collapse-panel .panel-title {
    font-size: 13px;
}
.custom-control-label::before {
    width: 15px !IMPORTANT;
    height: 15px !important;
}
.custom-control-label::after {;
    /* width: 1rem; */
    height: 15px !important;
}
.rslt_navi span a span{
background: rgba(0, 0, 0, 0) url(/public/images/filteraero.png) no-repeat scroll 1px -17px;
width: 11px;
height: 7px;
display: inline-block;
}
.rslt_navi span a.selected>.low, .rslt_navi span a.selected>.high{background:url("/public/images/filteraero.png") no-repeat scroll 0 0 transparent;}
.rslt_navi span a.selected>.high{ background-position:-1px -17px!important;}
.rslt_navi span a.selected>.low{background-position:-1px -23px!important;}
.rslt_navi span a.selected {
    color: #ffffff !important;
    background: #9a8730;
    border-radius: 5px 5px 0 0;
    padding: 5px 7px;
}
.min_htair {
    height: 120px;
    overflow: auto;
}
.fright {
    font-size: 12px;
    text-transform: capitalize;
    text-align: right;
}
.arriv {
    text-align: center;
    width: 50%;
}
.dept {
    text-align: center;
    width: 50%;
}
p.yserch {
    margin-bottom: 0px;
}

.breadcrumb {
    padding: 0px;
    background: #e0e1e2;
    list-style: none;
    overflow: hidden;
    margin: 4px 0;
}
.breadcrumb>li+li:before {
	padding: 0;
}
.breadcrumb li { 
	float: left; 
}
.breadcrumb li.active a {
	background: brown;                   /* fallback color */
	background: #d8c46c;
}
.breadcrumb li.completed a {                /* fallback color */
	background: #9c872a;
}
.breadcrumb li.active a:after {
	border-left: 30px solid #d8c46c;
}
.breadcrumb li.completed a:after {
	border-left: 30px solid #9c872a;
} 

.breadcrumb li a {
	color: #ffffff;
	text-decoration: none;
	padding: 6px 0 6px 45px;
	position: relative;
	display: block;
	font-size: 13px;
	float: left;
}
.breadcrumb li a:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
	border-bottom: 50px solid transparent;
	border-left: 30px solid hsl(210, 3%, 88%);
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 100%;
	z-index: 2;
}	
.breadcrumb li a:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
	border-bottom: 50px solid transparent;
	border-left: 30px solid #f8f9fa;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
}	
.breadcrumb li:first-child a {
	padding-left: 15px;
}
/*.breadcrumb li a:hover {background: #e0e1e2;}
.breadcrumb li a:hover:after { border-left-color: #e0e1e2   !important; }*/
.fl_head {
    background: #d7dff4;
}
.select2-container{
	
}
.spechotl .select2-container--default .select2-selection--single {
    height: calc(1.80rem + 2px);
line-height: 1;
}
.szbtn button
{
padding: 5px 5px !important;
    font-size: 14px !important;
}
#FLTClear:hover {
    color: #0091f8;
    text-decoration: underline;
}
.ar_link:hover {
    color: #4c4c4c;
    text-decoration: underline;
}
.ui-datepicker {
    font-size: 18px !important;
}
ul.hotlinfoul {
    list-style: none;
    padding-left: 0px;
}
.red {
color: red;
font-size: 12px;
text-align: left;
}
.form-group {
margin-bottom: .5rem !important;
}
.form-control {
height: calc(2rem + 2px) !important;
font-size: 14px !important;
}
.select2-container--default .select2-selection--single {
height: calc(2rem + 2px) !important;
font-size: 14px !important;
}
.txt-sm {
    font-size: 14px;
}
#travelInfo {
    color: #e09926;
}
.colorBackdrop {
    background: #fff !important;
    opacity: 9 !important;
}
/*.nxtval { 
    position: relative !important;
    bottom: 21px !important;
}*/
.popover {
    max-width: 100% !important;
    width: 460px !important;
    left: 62px !important;
}
.shd {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
.shd .active {
    background: #0097f6;
    color: #fff;
}
#sDest {
    color: #BE8305;
    font-size: 16px;
}
#sRating {
    font-size: 16px;
    font-weight: bold;
    color: #be8305;
}
.childage {
    display: none !important;
}


/*--------------------------------------------------------------
# Homepage form section
--------------------------------------------------------------*/
.home-fwidth{
	width:70%;
}
#header.header-scrolled {
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3) !IMPORTANT;
}
.text-muted{color:#000 !important;}
.home-fwidth .modal-content {
	background: rgb(255 255 255 / 95%);
}

#intro-h {
	width: 100%;
	position: relative;
	padding: 40px 0 40px 0;
	background: url(/public/images/himalayas.jpg);
    background-size: cover;
    background-position: center center;
}

.formalign {
	width: 420px;
	background: #fff;
	padding: 3%;
	border-radius: 20px;
}

.formalign label {
	width: 100%;
}

.formalign input[type="text"], .formalign input[type="password"], .formalign input[type="number"], .formalign input[type="email"] {
	width: 100%;
	padding: 0 10px;
	/*margin: 0px 0 22px 0;*/
	display: inline-block;
	border: none;
	background: #f1f1f1;
	height:40px;
} 

.formalign input[type="date"] {
	border: none;
	height: 40px;
	background: #f1f1f1;
	box-shadow: none;
	padding: 0 10px;
	width: 100%;
}

.formalign .dateleft {
	width: 49.5%;
	float: left;
	margin-right: .5%;
}

.formalign .dateright {
	width: 49.5%;
	float: left;
	margin-left: .5%;
}

.formalign .select1 {
	width: 32.33%;
	float: left;
	margin-right: 1%;
}

.formalign .select2 {
	width: 33.33%;
	float: left;
}

.formalign .select3 {
	width: 32.33%;
	float: left;
	margin-left: 1%;
}

.formalign select#adults {
	height: 40px;
	background: #f1f1f1;
	padding: 0px 10px;
	width: 100%;
	border: none;
}

.formalign select#childrens {
	height: 40px;
	background: #f1f1f1;
	padding: 0px 15px;
	width: 100%;
	border: none;
}

.formalign select#infants {
	height: 40px;
	background: #f1f1f1;
	padding: 0px 15px;
	width: 100%;
	border: none;
}

.formalign h2{
	font-size:30px;
}


.formalign .cancelbtn {
	padding: 14px 20px;
	float:left;
	width:50%;
	background-color: #f44336;
	color: white;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	opacity: 0.9;
}

.formalign p {
	margin-bottom: 15px;
}

.formalign .select2-container--default .select2-selection--single {
	min-height: 40px !important;
	border: none;
	background: #f1f1f1;
	font-size:16px !important;
}

.formalign .select2-container--default .select2-selection--single .select2-selection__placeholder{
	color:#888;
}

.propertyregister {
	background: #e2e2e2;
	padding: 7em 0px;
}

#colorlib-footer {
	background: #fff;
	color: #000 !important;
	padding: 1em 0px;
	clear:both;
}
#colorlib-footer p {
    margin: 0px !important;
}
#colorlib-footer .container {
	padding: 16px;
}

.form-left-p {
	width: 49.5%;
	float: left;
	margin-right: .5%;
}

.form-right-p {
	width: 49.5%;
	float: left;
	margin-left: .5%;
}
#intro-h .s_btn {
	text-align: center;
}

/*--------------------------------------------------------------
# Home Explore Ghumog
--------------------------------------------------------------*/

.exploresection {
	padding: 4em 0 !important;
}

.explore {
	box-shadow: 1px 1px 8px grey;
	border-radius: 20px;
}

.explore .img {
	width: 119px !important;
	height: 100px !important;
	border-top-left-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
border-top-right-radius: 0 !important;
border: none !important;
border-bottom-right-radius: 0px !important;

}

.explore .desc {
	height: 100px;
	vertical-align: middle;
	padding-top: 38px;
	padding-left: 135px;
}

.desc h4 {
	font-size: 18px;
}

.blog-post {
	margin-bottom: 2.5em;
	display: block;
	position: relative;
}

.blog-post .img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 90px;
	height: 90px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border: 4px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.colorlib-heading {
	margin-bottom: 5em;
}

/*--------------------------------------------------------------
# Home Ghumog Adventures
--------------------------------------------------------------*/
.services img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 1px 1px 6px #000;
}

.services h3 {
	margin-top: 8%;
	font-size:24px;
}
.adventuresection .colorlib-heading {
margin-bottom: 4em;
padding-top: 7em;
}

.adventuresection {
	padding-bottom: 7em;
}

/*--------------------------------------------------------------
# home subscribe
--------------------------------------------------------------*/
#colorlib-subscribe {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}

#colorlib-subscribe {
    padding: 9em 0;
}

#colorlib-subscribe .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	font-weight: 700;
}

#colorlib-subscribe .colorlib-heading h2 {
	color: #fff;
	font-size: 34px;
}

.colorlib-heading p {
	font-size: 18px !important;
}
.overlaybtn .btn-primary {
background: #ffffff;
color: #000;
border: 1px solid #FFDD00;
font-weight: bold;
padding: 12px 55px;
border-radius: 30px;
}

/*--------------------------------------------------------------
# Home intro
--------------------------------------------------------------*/
#colorlib-intro {
	z-index: 0;
	padding:9em 0;
}

#colorlib-intro .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

.text-salebox .text-lefts .sale-box .number {
	font-weight: 700;
	font-size: 90px;
	margin: 0;
	line-height: 1;
	display: inline-block;
	color: #FFDD00;
}

.text-salebox .text-lefts .sale-box .sup-2 {
	font-size: 36px;
	text-transform: uppercase;
	position: absolute;
	bottom: 8px;
	left: 100%;
	display: block;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

.text-salebox {
	display: table;
	width: 100%;
}

.text-salebox .text-lefts {
	text-align: left;
	display: table-cell;
	vertical-align: top;
}

.text-salebox .text-lefts .sale-box .sale-box-top {
	display: inline-block;
	position: relative;
}

.text-salebox .text-lefts .sale-box .text-sale {
	font-size: 72px;
	color: #fff;
	text-transform: uppercase;
	line-height: 55px;
	margin: 0;
	font-weight: 700;
}

.text-salebox .text-lefts .sale-box .sup-1 {
	font-size: 40px;
	position: absolute;
	top: 10px;
	left: 100%;
	display: block;
	line-height: 1;
	color: #FFDD00;
	font-weight: 700;
}

.colorlib-video:hover .video-overlay {
	background: rgba(0, 0, 0, 0.5) !important;
}

.text-salebox .text-rights .title {
	color: #fff;
	font-weight: 400;
	font-size: 21px;
}

.text-salebox .text-rights p {
	color: #fff;
	font-size:14px;
}

.text-salebox .text-rights {
	padding: 0 30px;
}

.colorlib-video:hover .video-overlay {
	background: rgba(0, 0, 0, 0.5) !important;
}

.colorlib-video .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.colorlib-video a i {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-size: 40px;
	color: #FFDD00;
}

.colorlib-video a {
	z-index: 1001;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	margin-left: -45px;
	width: 90px;
	height: 90px;
	display: table;
	text-align: center;
	background: #fff;
	-webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
	-ms-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
	-o-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

#colorlib-intro .video-wrap .colorlib-video {
	height: 380px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}



.icon-video::before {
	content: "\e9f5";
}

.colorlib-video a i {
	text-align: center;
	font-size: 40px;
	color: #FFDD00;
}

.text-salebox .text-rights .btn-outline {
	border: 1px solid #fff !important;
	color: #fff;
}

.btn-primary.btn-outline {
	background: transparent;
	color: #FFDD00;
	border: 1px solid #FFDD00;
}

#colorlib-intro .btn {
	border-radius: 30px;
	padding:8px 20px;
	margin-right: 4px;
	margin-bottom: 4px;
	font-size: 16px;
}

.btn-bg {
	background: #FD0;
	border: #FFDD00;
}

.overlaybtn .btn-primary:hover, #colorlib-intro .btn-bg:hover{

	background: #FD0;
}

#colorlib-intro{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
/*--------------------------------------------------------------
# Home hotel
--------------------------------------------------------------*/
#colorlib-hotel {
    width: 100%;
    display: block;
   /* float: left;*/
    padding: 9em 0 5em;
    clear: both;
}
.colorlib-light-grey {
    background: #fafafa;
}

.colorlib-light-grey .colorlib-heading h2 {
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #000;
    position: relative;
}
.hotel-entry .hotel-img {
    height: 200px;
    display: block;
    margin-bottom: 20px;
    position: relative;
        background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hotel-entry {
    border: 3px double #00BBF0;
	margin-bottom:20px;
}
.hotel-entry .hotel-img .price {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00BBF0;
    color: #fff;
    padding: 8px 12px;
    margin: 0;
}
.hotel-entry .desc {
    padding: 0px 20px;
}
span.rreview {
    border: 1px solid #00BBF0;
    border-radius: 10px;
    padding: 4px 7px;
    color: #000;
    border-bottom: 3px solid #00BBF0;
}
span.star {
    float: right;
}
.hotel-entry .desc .star {
    margin-bottom: 10px;
    font-size: 13px;
    color: #000000;
}
.hotel-entry .desc h3 a {
    color: #000;
}
.hotel-entry .desc .place {
    color: #b3b3b3;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}
.hotel-entry .desc .star span i {
    color: #FFDD00;
}

@media (min-width: 320px){
.colorlib-light-grey .col-md-offset-3 {
    margin-left: 25%;
}}

/*--------------------------------------------------------------
# Car page
--------------------------------------------------------------*/
#intro-c {
    width: 100%;
    position: relative;
    padding: 140px 0 130px 0;
    background: url(/public/images/himalayas.jpg);
    background-size: cover;
    background-position: center center;
}

#intro-c .s_btn {
    text-align: center;
}

/*-------------hotel_search----------*/
#hotel_search {
    width: 100%;
	height: 150px !important;  
	margin-bottom:50px;
    background:url(/public/images/Hserchimg.jpg);
    background-size: cover;
    background-position: center;
}

#hotelResult #title{
	text-transform:capitalize;
}

/*-----------hotel----------------*/
#intro-hotel {
    width: 100%;
	padding: 140px 0 40px 0;  
	margin-bottom:50px;
    background:url(/public/images/cover-img-4.jpg);
    background-size: cover;
    background-position: top;
}

#intro-hotel .s_btn {
    text-align: center;
}

.room-c .col-md-9, .room-c .col-md-3, .room-c .col-md-8, .room-c .col-md-4, .room-c .col-md-7, .room-c .col-lg-7,.room-c .col-md-5, .room-c .col-lg-5 {
	float: left;
}
/*------------ extra --------------*/
.input-group-text {
	padding: 4px 5px;
}

/*------------ room --------------*/
.room-color-overlay{
	opacity:0.6;
	background:#000;
	padding-top:6%;
}

/*-----------hotels---------------*/

.colorlib-hero {
	width: 100%;
	position: relative;
	padding: 140px 0 40px 0;
    background-size: cover;
    background-position: center center;
}
.Dlfia .col-md-3 {
	float:left;
}
.covimg1 {
	/* padding-top: 5%;  */
	background-size: cover;
	background-position:center !important;
	}
#colorlib-hero2 {
	width: 100%;
	position: relative;
	/*padding: 140px 0 40px 0;*/
    background-size: cover;
    background-position: center center;
	height:600px;
	}
.colorlib-heading h2 {
    font-size: 34px; 
    margin-bottom: 20px;
    line-height: 1.5;
    color: #000;
    position: relative;
	}
.textcls {
	    font-size: 22px !important;
		}
.exploresection {
    padding: 4em 0;
}
.extspace {
	padding-bottom: 0 !important;
}
.textcls1 {
	font-size: 16px !important;
	}	
.otherinfo{
	font-size:35px;
}
.query{
    font-size: 20px;
    padding-top: 35px;
} 
		
/*-----------hotels- End--------------*/

.btn-primary.disabled{border:none}

.cont-h #contbtn {
	margin: 10px -15px;
}

.cont-h #msg {
	height: 220px !important;
}

.cont-h{padding-top:10px;}

/*--------------------------------------------------------------
# property
--------------------------------------------------------------*/
.propertyregister{background: #e2e2e2;padding: 7em 0px;}
.registeralign{background: #fff; padding: 3%;border-radius: 20px;}
.inerpagesheader{position:relative !important;}
.rquired{color: red;font-size: 21px;}
.propertyregister label{width:100% !important;}
.propertyregister textarea {
    width: 100%;
    height: 45px !important;
    width: 100% !important;
    padding: 13px 15px;
    margin: 0px 0 22px 0 !important;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}
.propertyregister select{    height: 45px;
    background: #f1f1f1;
    padding: 0px 15px;
    width: 100%;
    border: none;
}
form.propertyregister p {
    margin-bottom: 0px;
}
.property1 {
    width: 24%;
    float: left;
    margin-right: 1%;
}
.property2 {
    width: 25%;
    float: left;
}
.property3{
    width: 24%;
    float: left;
    margin-left: 1%;
}
.property4{
    width: 24%;
    float: left;
    margin-left: 1%;
}
.registerbtn {
    width: 100%;
    margin-top: 4%;
    padding: 10px 20px;
    background-color: #f44336;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    /* border-radius: 20px; */
     border: none;
    cursor: pointer !important;
	color:#fff;
}
#terms{float: left;margin-right: 1%!important;margin: 4px 0 0;}
.propertyregister .acknowledge{float: left;width: 96% !important;}
 .dateleft{width:49.5%;float:left;margin-right:.5%;}
    .dateright{width:49.5%;float:left;margin-left:.5%;}
#intro-r {
   width: 100%;
   position: relative;
  background:#e2e2e2;
padding:70px 0 70px 0;
}
.propertyregister input#number {
 text-align: center;
 border: none;
 border-top: 1px solid #ddd;
 border-bottom: 1px solid #ddd;
 margin: 0px;
 width: 40px;
 height: 40px;
}
.select1{width:32.33%;float:left;margin-right: 1%;}
.select2{width:33.33%;float:left;}
.select3{width:32.33%;float:left;margin-left: 1%;}

.propertyregister input[type=text], .propertyregister input[type=password], .propertyregister input[type=number], .propertyregister input[type=email]{
 width: 100%;
 padding: 15px;
 margin: 0px 0 22px 0;
 display: inline-block;
 border: none;
 background: #f1f1f1;
}

.propertyregister input[type="text"], .propertyregister input[type="number"], .propertyregister input[type="email"] {
 height: 45px; }
 
@media only screen and (max-width:991px){.propertyregister .property1, .propertyregister .property2, .propertyregister .property3, .propertyregister .property4{width:100% !important;margin:0 !important;}}

@media only screen and (max-width:991px){
    .propertyregister .select1, .propertyregister .select2, .propertyregister .select3{width:100% !important;margin:0 !important;}}

@media only screen and (max-width:500px){.propertyregister .dateleft{width:100% !important;margin:0px !important;}
.propertyregister .dateright{width:100% !important;margin:0px !important;}}



.cencel {
    padding: 15px;
    background: #f6ec7c;
}
.cenceltop {
    padding: 15px;
    background: #b5d98a;
}
h5.midd {
margin-top: 5%;
}

.btn.bg-blue-ui.white.read1 {
cursor: text !important;
padding: 4px 20px;
float: left;
margin-top: 10px;
}
.btn:focus {
box-shadow: none;
color: #fff !important;
}
.bookcenl1 { 
    font-size: 19px;
    padding: 3px 10px 0 0;
    color: #f44336 !important;
    float: left;
}
.locate {
    color:black;
	font-weight: bold;
}
.tbspace {
    padding: 5.9em;
}
#hotelimgs{
	height:600px !important;
}

#hotelimgs li img {
	width: 100%;
	height: 100%;
}
h5.heigt {
    height: 82px;
} 
.phon{
	font-size: 20px;
    font-weight: bold;
}
.flot{
	float: left;
}
  .addon .col-md-2, .addon .col-md-8,.addon .col-sm-2,.addon .col-sm-8,.addon .col-xl-12{
    width: 100%;
    padding-right: 6px;
    padding-left: 3px;
}

/* use this css for responsive */
@media (min-width: 576px) {

	 .home-fwidth {
		width: 100%;
	}
	.display1 {display:none
	}
}
#StayWithAdventures .services a {
    cursor: default;
}
@media (min-width: 768px) {
	
  .home-fwidth {
		width: 100%;
	}
	.display1 {display:none
	}
	#addonform {
	margin-top: 40px;
}
	.iconcls{
		margin:20px 0;
	}
	.col-sm-6.col-lg-3.iconcls {
	float: left;
}

}

@media (min-width: 992px) {
	
	.home-fwidth {
		width: 50%;
	}
		.display1 {display:block}
		.display {display:none}
	
}

@media (min-width: 1200px) {
	
  .home-fwidth {
		width: 70%;
	}
	.display {display:none}
	.col-sm-6.col-lg-3.iconcls {
	float: left;
}

}
@media only screen and (max-width: 480px) {
.post-slide8 {
    margin: 0 !important;
}
.post-slide8 .post-content {
    padding: 18px !important;
}
}
    

/* #Tablet (Landscape)
----------------------------------------------------------------------*/
@media only screen and (min-width: 959px) and (max-width: 1177px) {
	.item-box-blog-image img{
		width:100% !important;
	}
	.car-t, .car-tn,.sunimg {
	display:none;
}
.privacy_policy {
	padding-top: 10px !important;
}
}

/* #Tablet (Portrait)
----------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.breadcrumb{
	flex-wrap:none;
}
.mobile-nav-toggle {
    position: fixed;
}
.shbtn {
	width: auto !important;
	font-size: 19px;
	float: none !important;
	margin-bottom:5px;
}
.price {
	font-size: 16px;
}
#hotelResult #title{
	font-size:16px;
}
.modal-dialog.modal-xl.home-tabsec, .modal-dialog.modal-xl.home-topdec {
    max-width: 96%;
}
.sresult {
	font-size: 20px;
}
.w50 .col-sm-12{
	padding-right:0 !important;
}
.swidth {
	padding-right: 0;
}
.services {
	margin-bottom: 50px !important;
}
.shadow-sm {
    margin-top: 30px;
}
h5.heigt{
	height:auto;
}
.adventuresection .colorlib-heading {
margin-bottom: 3em;
padding-top: 3em;
}

.adventuresection {
	padding-bottom: 2em;
}
.exploresection .colorlib-heading, .colorlib-heading{
	margin-bottom:2em;
}
.exploresection {
	padding: 3em 0 !important;
}
.modal-dialog{
	/* margin:1.75rem; */
}
#contform{
	margin-top:5%;
}
#colorlib-hero2{
	margin-top:-30px;
}
.car-t, .car-tn,.sunimg {
	display:none;
}
.privacy_policy {
	padding-top: 10px !important;
}
.Ajstfy h3, .Ajstfy li  {
	text-align: left;
}
.cont-h #msg {
	height: 150px !important;
}
}

/* #Mobile (Landscape)
----------------------------------------------------------------------*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
.display1 {display:none
	}
.formalign {
width: auto
	}

.text-salebox .text-rights {
	padding: 0;
}

.text-salebox .text-lefts {
	width: 100% !important;
	float: left;
	margin-bottom:30px;
}

.form-left-p, .form-right-p {width: 100%;}

#header {height: 59px;}

#colorlib-intro .video-wrap .colorlib-video {
	position: relative;
}
.colorlib-light-grey .col-md-offset-3{
	margin-left:0;
}
.ph-no {
	margin-top: 0px !important;
}
.shadow-sm {
    margin-top: 30px;
}
ul.hotlinfoul{
	margin-top:-55px;
}
.Dlfia .iconcls {
	margin: 20px 0;
}
#colorlib-hero2, #hotelimgs li img {
	width: 100%;
	height: 400px;
}
#hotelimgs{
	height: 400px !important;
}
#header .logo img{
	width:200px;
    top: 12px;
}
.breadcrumb{
	flex-wrap:nowrap;
	overflow-x:scroll;
}
.txt-sm{
	text-align:center !important;
}

.shbtn {
	width: auto !important;
	font-size: 19px;
	float: none !important;
	margin-bottom:5px;
}
.mobile-nav-toggle {
    position: fixed;
}
.gp{
	margin-bottom:30px;
}
.price {
	font-size: 16px;
}
#hotelResult #title{
	font-size:16px;
}
.modal-dialog.modal-xl.home-tabsec, .modal-dialog.modal-xl.home-topdec {
    max-width: 96%;
}
.ofr .carousel-item.active{
	display:block;
}
.sresult {
	font-size: 20px;
}
.swidth {
	padding-right: 0;
}
#addonform {
	margin-top: 40px;
}
.services {
	margin-bottom: 50px !important;
}
h5.heigt{
	height:auto;
}
#colorlib-hotel{
	padding:3em 0 3em;
}
.adventuresection .colorlib-heading {
margin-bottom: 3em;
padding-top: 3em;
}

.adventuresection {
	padding-bottom: 2em;
}
.exploresection .colorlib-heading, .colorlib-heading{
	margin-bottom:2em;
}
.exploresection {
	padding: 3em 0 !important;
}
.modal-dialog{
	/* margin:1.75rem; */
}
#contform{
	margin-top:5%;
}
#intro-about{
	height:auto;
}
.car-t, .car-tn,.sunimg {
	display:none;
}
.privacy_policy {
	padding-top: 10px !important;
}
.Ajstfy h3, .Ajstfy li  {
	text-align: left;
}
.cont-h #msg {
	height: 150px !important;
}
}

/*  #Mobile (Portrait) 320px
----------------------------------------------------------------------*/
@media only screen and (min-width: 100px) and (max-width: 479px) {
.display1 {display:none
	}
.formalign {
width: auto
	}
	
	.cont-h #msg {
	height: 150px !important;
}
 
  .container .home-fwidth {
    width: 100%;
   }
.text-salebox .text-rights {
	padding: 0;
}

.text-salebox .text-lefts {
	width: 100% !important;
	float: left;
	margin-bottom:30px;
}

.form-left-p, .form-right-p {width: 100%;}

#header {height: 59px;}

#colorlib-intro .video-wrap .colorlib-video {
	position: relative;
}
.colorlib-light-grey .col-md-offset-3{
	margin-left:0;
}
.Dlfia .col-md-3 {
	
	max-width:none;
}
.ph-no {
	margin-top: 0px !important;
}
.shadow-sm {
    margin-top: 30px;
	/*margin-bottom:20px;*/
}
.item-box-blog-text1{
	margin-bottom:30px;
}
ul.hotlinfoul{
	margin-top:-55px;
}
.Dlfia .iconcls {
	margin: 20px 0;
}
#colorlib-hero2, #hotelimgs li img {
	width: 100%;
	height: 300px;
}
#hotelimgs{
	height: 300px !important;
}
#header .logo img{
	width:200px;
    top: 12px;
}
.breadcrumb{
	flex-wrap:nowrap;
	overflow-x:scroll;
}
.txt-sm{
	text-align:center !important;
}

.shbtn {
	width: auto !important;
	font-size: 19px;
	float: none !important;
	margin-bottom:5px;
}
.price {
	font-size: 16px;
}
.mobile-nav-toggle {
    position: fixed;
}
.gp{
	margin-bottom:30px;
} 
#hotelResult #title{
	font-size:16px;
}
.modal-dialog.modal-xl.home-tabsec, .modal-dialog.modal-xl.home-topdec {
    max-width: 96%;
}
.ofr .carousel-item.active{
	display:block;
}
.w50 .col-sm-6{
	width:50%;
}
.sresult {
	font-size: 20px;
}
.w50 .pub_pr, .w50 .sorted {
	font-size: 15px;
}
.row.noshow {
	padding-left: 15px;
	padding-right: 15px;
}
.swidth {
	padding-right: 0;
}
.item-box-blog-image figure img {
  width: 100% !important;
}
  #quantity1, #quantity2 {
	margin-bottom: 20px;
}
#addonform {
	margin-top: 40px;
}
.qtyhead {
	width: 30% !important;
	}
.rshead {
	width: 15% !important;
}
.addhead {
	width: 55% !important;
} 
.services {
	margin-bottom: 50px !important;
}
h5.heigt{
	height:auto;
}
#colorlib-hotel{
	padding:3em 0 3em;
}
.adventuresection .colorlib-heading {
margin-bottom: 3em;
padding-top: 3em;
}

.adventuresection {
	padding-bottom: 2em;
}
.exploresection .colorlib-heading, .colorlib-heading{
	margin-bottom:2em;
}
.exploresection {
	padding: 3em 0 !important;
}
.modal-dialog{
	/* margin:1.75rem; */
}
#contform{
	margin-top:5%;
}
#intro-about{
	height:auto;
}
.car-t, .car-tn,.sunimg {
	display:none;
}
.privacy_policy {
	padding-top: 10px !important;
}
.Ajstfy h3, .Ajstfy li  {
	text-align: left;
}
}
a.back-to-top {
    left: 10px;
    background: #998734;
} 
.btn:hover{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d8c46c+0,d8c46c+32,a39348+100,d8c46c+100,6d0019+100 */
	background: rgb(216,196,108); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(216,196,108,1) 0%, rgba(216,196,108,1) 32%, rgba(163,147,72,1) 100%, rgba(216,196,108,1) 100%, rgba(109,0,25,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(216,196,108,1) 0%,rgba(216,196,108,1) 32%,rgba(163,147,72,1) 100%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(216,196,108,1) 0%,rgba(216,196,108,1) 32%,rgba(163,147,72,1) 100%,rgba(216,196,108,1) 100%,rgba(109,0,25,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8c46c', endColorstr='#6d0019',GradientType=1 ); /* IE6-9 */
    opacity: 0.9;
    box-shadow: 0 0 0 2px rgb(216 196 108 / 76%) !important;
}
@media only screen and (max-width: 991px) and (min-width: 100px){
.mobile-nav-active .mobile-nav {
    padding-left: 10px;
}
#intro-privacy {
    padding: 60px 0 130px 0 !important;
}
#intro-cont{
	padding: 110px 0 130px 0 !important;
}
}
.ui-datepicker-buttonpane.ui-widget-content {
    display: none;
}
@media (max-width: 767px){
#ui-datepicker-div {
    width: 94%!important;
    min-width: unset!important;
    left: 0!important;
    right: 0!important;
    margin: 0 auto!important;
}
.s_btn .btn {
    padding: 9px 24px !important;
    
}
    

.heading .mt-5 {
    font-size: 20px;
    text-align: left;
}.row.heg {
    margin: 0px !important;
}
.tbspace {
    padding: 15px;
}.thank_text_cp {
    font-size: 25px;
}
.ofr .controls-top.c_btn{
top: -46px;
padding: 0;}
.colorlib-heading h2 {
    font-size: 25px;
}
}
@media (max-width: 1199px){
.offr_title {
    font-size: 25px;
}
.item-box-blog-image figure img {
    width: 100% !important;
    height: auto !important;
}}
div#Room0_Child0, div#Room0_Child1 {
    display: none !important;
}
#ItineraryDetailsBox {
    color: #ffffff !important;
}
.ROfferSection{
	padding-top: 3rem!important;
	padding-bottom: 3rem!important;
}
img.bgImageSet {
    background-image: url(/public/uploads/room_upload/no_image.jpg) !important;
    background-position: center center !important;
}


/******************  News Slider Demo-8 *******************/
.post-slide8{margin:0 15px;position:relative;background:#fff;box-shadow:0 1px 2px rgba(43,59,93,.3);margin-bottom:2em}
.post-slide8 .post-img{position:relative;overflow:hidden}
.post-slide8 .post-img img{width:100%;height:auto}
.post-slide8 .over-layer{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;background:rgba(0,0,0,.6);transition:all .3s ease}
.post-slide8:hover .over-layer{opacity:1}
.post-slide8 .post-link{margin:0;padding:0;position:relative;top:45%;text-align:center}
.post-slide8 .post-link li{display:inline-block;list-style:none;margin-right:20px}
.post-slide8 .post-link li a{color:#fff;font-size:20px}
.post-slide8 .post-link li a:hover{color:#d8c46c;text-decoration:none}
.post-slide8 .post-date{position:absolute;top:10%;left:4%}
.post-slide8 .date{display:inline-block;border-radius:3px 0 0 3px;padding:5px 10px;color:#fff;font-size:20px;font-weight:700;text-align:center;background:#333;float:left}
.post-slide8 .month{display:inline-block;border-radius:0 3px 3px 0;padding:5px 13px;color:#111;font-size:20px;font-weight:700;background:#d8c46c}
.post-slide8 .post-content{padding:30px}
.post-slide8 .post-title{margin:0 0 15px 0}
.post-slide8 .post-title a{font-size:18px;font-weight:700;color:#333;display:inline-block;text-transform:capitalize;transition:all .3s ease 0s}
.post-slide8 .post-title a:hover{text-decoration:none;color:#d8c46c}
.post-slide8 .post-description{font-size:14px;line-height:24px;color:grey}
.post-slide8 .read-more{color:#333;font-size:16px;font-weight:700;text-transform:uppercase;position:relative;transition:color .2s linear}
.post-slide8 .read-more:hover{text-decoration:none;color:#a59549}
.post-slide8 .read-more:after{content:"";position:absolute;width:30%;display:block;border:1px solid #d8c46c;transition:all .3s ease}
.post-slide8 .read-more:hover:after{width:100%}
.post-bar span{display:inline-block;font-size:14px}
.post-bar span i{margin-right:5px;color:#999}
.post-bar span a{color:#999;text-transform:uppercase}
.post-bar span a:hover{text-decoration:none;color:#ff9412}
.post-bar span.comments {
    float: right;
    margin-top: 5px;
}
.post-bar {
    background: #e8e8e8;
    padding: 9px;
}
@media only screen and (max-width:479px){.post-slide8 .month{font-size:14px}
.post-slide8 .date{font-size:14px}
}

