/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #212529;
}

a {
  text-decoration: none;
  color: #ffff;
}

/****a:hover {
  color: #e24d55;
  text-decoration: none;
}*****/

a {
  color: #000;
  text-decoration: none;
}


h1,h2,h3,h4,h5,h6{
  font-family: "Poppins", sans-serif;
  color: #ffc107;
}



/********** Template CSS a:hover **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 48px;
    padding: 29px 0;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 20;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
 
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
	background: #00000;
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
	background: #00000;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
	background: #00000;
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/**************************new css************************************/
/*-- gallery --*/
/*-- gallery --*/
.gallery-top {
    padding: 4em 0;
	text-align:center;
}
.gallery-grids-top {
    margin-top: 3em ;
}
.gallery-info h2 {
    font-size: 3.5em;
    text-transform: capitalize;
    font-family: 'Rancho-Regular';
    color: #222;
}
.gallery-info p {
  color: #B2B2B2;
  font-size: .9em;
  margin: 1em auto 0;
  line-height: 1.8em;
  width: 70%;
}
.gallery-grid a {
    display: block;
}
.gallery-grid img {
  width: 100%;
}
.gallery-grid:hover img {
  -webkit-filter: grayscale(100%);
  opacity: 8;
  transition: all 300ms!important;
  -webkit-transition: all 300ms!important;
  -moz-transition: all 300ms!important;
}
.gallery-grids-middle{
	margin:2em 0;
}
.room-section {
  padding: 4em 0;
}
.room-grids {
    margin-top: 3em;
}
.room-section h2 {
    font-size: 3.5em;
    text-transform: capitalize;
    font-family: 'Rancho-Regular';
    color: #222;
    text-align: center;
}
.room2 {
  margin: 2em 0;
}
.room4 {
  margin-top: 2em ;
}
.room-grid1 h4 {
  font-size: 1.5em;
  color: #5ab645;
    font-weight: 600;
  text-transform: capitalize;
}
.room-grid img {
    width: 100%;
}
.room-grid1 p {
  font-size: 1em;
  color: #777;
  line-height:2em;
    margin: 1em 0 0em;
}
a.mask {
  text-decoration: none;
  overflow: hidden;
  display: block;
}
img.zoom-img {
  -webkit-transform: scale(1, 1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1, 1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}
img.zoom-img:hover {
  -webkit-transform: scale(1.1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 750ms;
  -moz-transform: scale(1.1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 750ms;
  overflow: hidden;
}
/*-- typography --*/
.typography-info {
    text-align: center;
    margin-bottom: 3em;
}
h2.type {
    font-size: 3.5em;
    text-transform: capitalize;
    font-family: 'Rancho-Regular';
    color: #222;
}
.typography {
    padding: 4em 0;
}
.show-grid [class^=col-] {
	background: #fff;
	text-align: center;
	margin-bottom: 10px;
	line-height: 2em;
	border: 10px solid #f0f0f0;
}
.show-grid [class*="col-"]:hover {
  background: #e0e0e0;
}
.grid_3{
	margin-bottom:2em;
}
.xs h3, h3.m_1{
	color:#000;
	font-size:1.7em;
	font-weight:300;
	margin-bottom: 1em;
}
.grid_3 p{
  color: #999;
  font-size: 0.85em;
  margin-bottom: 1em;
  font-weight: 300;
}
.grid_4{
	background:none;
	margin-top:50px;
}
.label {
  font-weight: 300 !important;
  border-radius:4px;
  -webkit-border-radius:4px;
	-moz-border-radius:4px;
}  
.grid_5{
	background:none;
	padding:2em 0;
}
.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg {
    margin-bottom: 1em;
    color: #222;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  border-top: none !important;
}
.tab-content > .active {
  display: block;
  visibility: visible;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 0;
}
.badge-primary {
  background-color: #03a9f4;
}
.badge-success {
  background-color: #8bc34a;
}
.badge-warning {
  background-color: #ffc107;
}
.badge-danger {
  background-color: #e51c23;
}
.grid_3 p{
  line-height: 2em;
  color: #888;
  font-size: 0.9em;
  margin-bottom: 1em;
  font-weight: 300;
}
.bs-docs-example {
  margin: 1em 0;
}
section#tables  p {
 margin-top: 1em;
}
.tab-container .tab-content {
  border-radius: 0 2px 2px 2px;
  border: 1px solid #e0e0e0;
  padding: 16px;
  background-color: #ffffff;
}
.table td, .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  padding: 15px!important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  font-size: 0.9em;
  color: #999;
  border-top: none !important;
}
.tab-content > .active {
  display: block;
  visibility: visible;
}
.label {
  font-weight: 300 !important;
}
.label {
  padding: 4px 6px;
  border: none;
  text-shadow: none;
}
.nav-tabs {
  margin-bottom: 1em;
}
.alert {
  font-size: 0.85em;
}
h1.t-button,h2.t-button,h3.t-button,h4.t-button,h5.t-button {
	line-height:1.8em;
  margin-top:0.5em;
  margin-bottom: 0.5em;
}
li.list-group-item1 {
  line-height: 2.5em;
}
.input-group {
  margin-bottom: 20px;
  }
.in-gp-tl{
	padding:0;
}
.in-gp-tb{
	padding-right:0;
}
.list-group {
  margin-bottom: 48px;
}
ol {
  margin-bottom: 44px;
}
h2.typoh2{
    margin: 0 0 10px;
}
@media (max-width:768px){
	.grid_5 {
		padding: 0 0 1em;
	}
	.grid_3 {
		margin-bottom: 0em;
	}
}
@media (max-width:640px){
	h1, .h1, h2, .h2, h3, .h3 {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5, h3.hdg, h3.bars {
		margin-bottom: .5em;
	}
	.progress {
		height: 10px;
		margin-bottom: 10px;
	}
	ol.breadcrumb li,.grid_3 p,ul.list-group li,li.list-group-item1 {
		font-size: 14px;
	}
	.breadcrumb {
		margin-bottom: 10px;
	}
	.well {
		font-size: 14px;
		margin-bottom: 10px;
	}
	h2.typoh2 {
		font-size: 1.5em;
	}
}
@media (max-width:480px){
	.table h1 {
		font-size: 26px;
	}
	.table h2 {
		font-size: 23px;
	}
	.table h3 {
		font-size: 20px;
	}
	.label {
		font-size: 53%;
	}
	.alert,p {
		font-size: 14px;
	}
	.pagination {
		margin: 20px 0 0px;
	}
}
@media (max-width: 320px){
	.grid_4 {
		margin-top: 18px;
	}
	h3.title {
		font-size: 1.6em;
	}
	.alert, p,ol.breadcrumb li, .grid_3 p,.well, ul.list-group li, li.list-group-item1,a.list-group-item {
		font-size: 13px;
	}
	.alert {
		padding: 10px;
		margin-bottom: 10px;
	}
	ul.pagination li a {
		font-size: 14px;
		padding: 5px 11px;
	}
	.list-group {
		margin-bottom: 10px;
	}
	.well {
		padding: 10px;
	}
	.nav > li > a {
		font-size: 14px;
	}
	table.table.table-striped,.table-bordered,.bs-docs-example {
		display: none;
	}
}
/*-- //typography --*/
/***contact page ***/
.contact{
	padding: 4em 0;
}
.contact h2 {
	font-size: 3.5em;
    text-transform: capitalize;
    font-family: 'Rancho-Regular';
    color: #222;
	text-align:center;
}
.google-map iframe {
	width: 100%;
	min-height: 400px;
	border: none;
	margin-bottom: 2em;
}
.google-map {
  margin-top: 3em;
}
.contact-left p {
	color: #777;
	font-size: 1em;
	line-height: 1.8em;
}
.contact-left p a {
    text-decoration: none;
    color: #777;
}
address {
   margin: 1em 0 0;
 }
.contact-right h5{
	font-size:1em;
	text-transform: uppercase;
	font-weight: 400;
	padding: 10px 0;
	color: #222;
	
}
.contact-right input[type="text"] {
	width: 100%;
	padding: 10px 10px;
	font-size: 1em;
	outline: none;
	border: 1px solid #000;
}
.contact-right textarea {
	width: 100%;
	padding: 10px 10px;
	font-size: 1em;
	height: 10em;
	resize: none;
	outline: none;
	border: 1px solid #000;
}
.contact-right input[type="submit"] {
	width: 20%;
	font-size: 1em;
	text-transform: uppercase;
	background: #222;
	border: none;
	outline: none;
	margin-top: 0.5em;
	color: #fff;
	font-weight: 500;
	padding: 10px 0;
}
.contact-right input[type="submit"]:hover {
	background: #5ab645;
}
/***End contact page ***/

			/**responsive**/
@media (max-width:1440px){
.slider {
    margin: 18em 0 0;
}
.header {
    min-height: 679px;
}
}
@media (max-width:1366px){
.header {
    min-height: 652px;
}
.slider {
    margin: 16em 0 0;
}
}
@media (max-width:1280px){
.header {
    min-height: 602px;
}
.slider {
    margin: 14em 0 0;
}
}
@media (max-width:1080px){
.header {
    min-height: 486px;
}
.slider {
    margin: 12em 0 0;
}
.rslides h3 {
    font-size: 3.5em;
}
.Welcome-section h2,.about-section h2,.services-main h2,.room-section h2 ,.gallery-info h2,h2.type,.contact h2{
    font-size: 3em;
}
.welcome-grid h4,.feature1 h4,.touch-grid h4 ,.choose-grid h4,.team-grid h4,.offer-grid h4,.offer-grid1 h4,.serv-text h4,.packages-grid h4,.room-grid1 h4{
    font-size: 1.4em;
}
.welcome-grid p,.feature2 p,.popular-grid1 p,.touch-grid p,.about-section p,.choose-grid p,.team-grid p,.offer-grid p,.serv-text p,.packages-grid p,.room-grid1 p,.contact-left p {
    font-size: 0.965em;
}
.features h3,.popular-grid h3, .popular-grid1 h3,.touch-section h3,.why-choose h3,.ourteam h3,.whatweoffer h3,.packages-section h3 {
    font-size: 3em;
}
.about-section h5 {
    font-size: 1.1em;
}
.contact-right h5 {
    font-size: 0.96em;
}
.google-map iframe {
    min-height: 350px;
}
}
@media (max-width:991px){
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 10px;
}
.navbar-brand h1 a {
    font-size: 1.4em;
}
.navbar-default .navbar-nav > li > a {
    font-size: 1.3em;
}
.header {
    min-height: 363px;
}
.slider {
    margin: 8em 0 0;
}
.rslides h3 {
    font-size: 3em;
}
.Welcome-section,.features,.touch-section,.about-section,.ourteam,.whatweoffer ,.services,.packages-section,.room-section,.gallery-top,.typography,.contact,.why-choose,.most-popular{
    padding: 3em 0;
}
.welcome-grid {
    float: left;
    width: 33.3%;
}
.welcome-grid h4, .feature1 h4, .touch-grid h4, .choose-grid h4, .team-grid h4, .offer-grid h4, .offer-grid1 h4, .serv-text h4, .packages-grid h4, .room-grid1 h4 {
    font-size: 1.3em;
}
.welcome-grid p, .feature2 p, .popular-grid1 p, .touch-grid p, .about-section p, .choose-grid p, .team-grid p, .offer-grid p, .serv-text p, .packages-grid p, .room-grid1 p, .contact-left p {
   
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.7em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3,.packages-section h3 {
    font-size: 2.7em;
}
.popular-grid ul li a {
    font-size: 0.85em;
}
.feature-grid {
    float: left;
    width: 50%;
}
.feature-grid:nth-child(3) {
    margin-top: 1em;
}
.feature-grid:nth-child(4) {
    margin-top: 1em;
}
span.glyphicon.glyphicon-user, span.glyphicon.glyphicon-camera, span.glyphicon.glyphicon-calendar, span.glyphicon.glyphicon-gift {
   padding: 25px;
}

.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 1.5em;
}
.popular-grid {
    float: left;
    width: 41%
}
.popular-grid1 {
    float: left;
    width: 59%;
}
.popular-grid1 h4 a {
    font-size: 0.85em;
}
.touch-grid {
    float: left;
    width: 33.3%;
}
.touch-grid h5 {
    font-size: 1em;
}
.about-section h5 {
    font-size: 1em;
}
.choose-grid {
    float: left;
    width: 33.3%;
}
.team-grid {
    float: left;
    width: 25%;
}
.offer-grid {
    float: left;
    width: 60%;
}
.offer-grid1 {
    float: left;
    width: 40%;
}
.serv-img {
    float: left;
    width: 40%;
}
.serv-text {
    float: left;
    width: 60%;
}
.services-grid {
    margin: 0em 0em 1.5em 0em;
}
.room-grid {
    float: left;
    width: 40%;
}
.room-grid1 {
    float: left;
    width: 60%;
}
.gallery-grid {
    float: left;
    width: 25%;
}
.contact-left {
    float: left;
    width: 50%;
}
.contact-right {
    float: left;
    width: 50%;
}
.contact-right input[type="text"],.contact-right textarea {
    padding: 6px 10px;
}
.contact-right input[type="submit"] {
    font-size: 0.95em;
}
.google-map iframe {
    min-height: 310px;
}
}
@media (max-width:640px){
.navbar-nav {
    float: none;
    margin: 0;
    width: 100%;
    text-align: center;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #652840;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #5ab645;
}
.navbar-default .navbar-toggle {
    border-color: #5ab645;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
}
.navbar-toggle {
     background-color: #5ab645;
}
.header-top {
    padding: 1em 0;
}
.navbar-brand {
    padding: 0px 0px;
}
.navbar-default {
    padding: .5em 0;
}
.slider {
    margin: 4.5em 0 0 0;
 }
.navbar-brand h1 a {
    font-size: 1.3em;
}
.rslides h3 {
    font-size: 2.7em;
}
.header {
    min-height: 301px;
}
.navbar-collapse {
    max-height: 387px;
}
.header-top {
    padding: .5em 0;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.5em;
}
.welcome-grid h4, .feature1 h4, .touch-grid h4, .choose-grid h4, .team-grid h4, .offer-grid h4, .offer-grid1 h4, .serv-text h4, .packages-grid h4, .room-grid1 h4 {
    font-size: 1.2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2.5em;
}
.head-top {
    padding-bottom: 0em;
}
.welcome-grid1:hover {
    border: 3px solid#5ab645;
}
.welcome-grid1 {
    border: 3px solid#fff;
}
.Welcome-grids,.features-grids,.touch-grids ,.choose-grids,.team-grids,.offer-grids,.packages-grids,.gallery-grids-top,.google-map,.room-grids{
    margin-top: 2em;
}
.touch-grid {
    width: 100%;
    text-align: left;
}
.touch-grid:nth-child(2) {
    margin: 1em 0;
}
.touch-grid h5 {
    font-size: 0.95em;
}
.about-section h5 {
    font-size: 0.95em;
}
.team-grid {
    float: left;
    width: 50%;
}
.team-grid:nth-child(3) {
    margin-top: 1em;
}
.team-grid:nth-child(4) {
    margin-top: 1em;
}
.offer-grid {
    width: 100%;
	margin-bottom: 1em;
}
.offer-grid1 {
    width: 100%;
}
.services1 {
    margin: 2em 0;
}
.packages-grid {
    float: left;
    width: 50%;
}
.packages-grid1:hover {
    border: 3px solid#5ab645;
}
.packages-grid1 {
    border: 3px solid#fff;
}
.packages-grid:nth-child(3) {
    margin-top: 1em;
}
.packages-grid:nth-child(4) {
    margin-top: 1em;
}
.gallery-grid {
    float: left;
    width: 50%;
    margin-bottom: 2em;
}
.contact-right input[type="submit"] {
    font-size: 0.92em;
    width: 25%;
}
.google-map iframe {
    min-height: 280px;
}
}
@media (max-width:480px){
.header {
    background: url(../images/banner1.jpg) no-repeat -130px 0px;
    background-size: cover;
}
.navbar-brand h1 a {
    font-size: 1.1em;
}
.rslides h3 {
    font-size: 2.5em;
}
.Welcome-section, .features, .touch-section, .about-section, .ourteam, .whatweoffer, .services, .packages-section, .room-section, .gallery-top, .typography, .contact, .why-choose, .most-popular {
    padding: 2em 0;
}
.welcome-grid p, .feature2 p, .popular-grid1 p, .touch-grid p, .about-section p, .choose-grid p, .team-grid p, .offer-grid p, .serv-text p, .packages-grid p, .room-grid1 p, .contact-left p {
    font-size: 0.92em;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2.2em;
}
.welcome-grid {
    width: 100%;
}
.welcome-grid:nth-child(2) {
    margin: 1em 0;
}
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 7.5em;
}
.popular-grid {
    width: 100%;
}
.popular-grid1 {
    width: 100%;
    margin-top: 1em;
}
.popular-grid1 h4 a {
    font-size: 0.75em;
}
.head-top {
    background-size: cover;
    background: url(../images/banner1.jpg) no-repeat 0px 0px;
}
.about-section h5 {
    font-size: 0.9em;
    line-height: 1.58em;
}
.choose-grid {
    width: 100%;
}
.choose-grid:nth-child(2) {
    margin: 1em 0;
}
.services-grid {
    padding: 0px;
}
.room-grid {
    width: 100%;
}
.room-grid1 {
    width: 100%;
 margin-top: 1em;
}
.google-map iframe {
    min-height: 250px;
}
.contact-left {
    width: 100%;
}
.contact-right {
    width: 100%;
 margin-top: 1em;
}
.contact-right input[type="text"], .contact-right textarea {
    padding: 4px 10px;
}
.contact-right input[type="submit"] {
    font-size: 0.9em;
    width: 20%;
}
}
@media (max-width:320px){
.header-top {
    padding: 0;
}
.rslides h3 {
    font-size: 2.1em;
}
.nav > li > a {
    padding: 6px 10px;
}
.header {
    background: url(../images/banner1.jpg) no-repeat -200px 0px;
    background-size: cover;
	    min-height: 260px;
}
.slider {
    margin: 4em 0 0 0;
    width: 100%;
}
.welcome-grid {
    padding: 0;
}
.feature-grid {
    padding: 0;
}
.Welcome-section, .features, .touch-section, .about-section, .ourteam, .whatweoffer, .services, .packages-section, .room-section, .gallery-top, .typography, .contact, .why-choose, .most-popular {
    padding: 1em 0;
}
.Welcome-grids, .features-grids, .touch-grids, .choose-grids, .team-grids, .offer-grids, .packages-grids, .gallery-grids-top, .google-map,.room-grids {
    margin-top: 1em;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2em;
}
.feature-grid {
    width: 100%;
}
.feature-grid:nth-child(2) {
    margin-top: 1em;
}
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 5.5em;
}
.popular-grid {
    padding: 0;
}
.popular-grid1 {
    padding: 0;
}
.popular-grid ul {
    margin-top: 1em;
}
.footer-section {
    padding: 1em 0;
}
.head-top {
    background-size: cover;
    background: url(../images/banner1.jpg) no-repeat 0px 0px;
	    min-height: 100px !important;
}
.team-grid {
    width: 100%;
	padding:0;
}
.choose-grid {
    padding: 0;
}
.team-grid:nth-child(2) {
    margin-top: 1em;
}
.offer-grid {
    padding: 0;
}
.offer-grid1 {
    padding: 0;
}
.serv-img {
    width: 100%;
	padding: 0;
}
.serv-text {
    width: 100%;
    margin-top: 1em;
    padding: 0;
}
.room-grid1 {
    padding: 0;
}
.room-grid {
    padding: 0;
}
.gallery-grid {
    float: none;
    width: 100%;
    margin-bottom: 1em;
    padding: 0;
}
.contact-left {
    padding: 0;
}
.contact-right {
    padding: 0;
}
.contact-right input[type="submit"] {
    font-size: 0.9em;
    width: 24%;
}
} 
p{
	padding:0 0;
	margin:0 0;
}

.Welcome-section,.features,.touch-section,.about-section,.ourteam,.whatweoffer ,.services,.packages-section,.room-section,.gallery-top,.typography,.contact,.why-choose,.most-popular{
    padding: 3em 0;
}
.welcome-grid {
    float: left;
    width: 33.3%;
}
.welcome-grid h4, .feature1 h4, .touch-grid h4, .choose-grid h4, .team-grid h4, .offer-grid h4, .offer-grid1 h4, .serv-text h4, .packages-grid h4, .room-grid1 h4 {
    font-size: 1.3em;
}
.welcome-grid p, .feature2 p, .popular-grid1 p, .touch-grid p, .about-section p, .choose-grid p, .team-grid p, .offer-grid p, .serv-text p, .packages-grid p, .room-grid1 p, .contact-left p {
    font-size: 1.10em;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.7em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3,.packages-section h3 {
    font-size: 2.7em;
}
.popular-grid ul li a {
    font-size: 0.85em;
}
.feature-grid {
    float: left;
    width: 50%;
}
.feature-grid:nth-child(3) {
    margin-top: 1em;
}
.feature-grid:nth-child(4) {
    margin-top: 1em;
}
span.glyphicon.glyphicon-user, span.glyphicon.glyphicon-camera, span.glyphicon.glyphicon-calendar, span.glyphicon.glyphicon-gift {
   padding: 25px;
}

.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 1.5em;
}
.popular-grid {
    float: left;
    width: 41%
}
.popular-grid1 {
    float: left;
    width: 59%;
}
.popular-grid1 h4 a {
    font-size: 0.85em;
}
.touch-grid {
    float: left;
    width: 33.3%;
}
.touch-grid h5 {
    font-size: 1em;
}
.about-section h5 {
    font-size: 1em;
}
.choose-grid {
    float: left;
    width: 33.3%;
}
.team-grid {
    float: left;
    width: 25%;
}
.offer-grid {
    float: left;
    width: 60%;
}
.offer-grid1 {
    float: left;
    width: 40%;
}
.serv-img {
    float: left;
    width: 40%;
}
.serv-text {
    float: left;
    width: 60%;
}
.services-grid {
    margin: 0em 0em 1.5em 0em;
}
.room-grid {
    float: left;
    width: 40%;
}
.room-grid1 {
    float: left;
    width: 60%;
}
.gallery-grid {
    float: left;
    width: 25%;
}
.contact-left {
    float: left;
    width: 50%;
}
.contact-right {
    float: left;
    width: 50%;
}
.contact-right input[type="text"],.contact-right textarea {
    padding: 6px 10px;
}
.contact-right input[type="submit"] {
    font-size: 0.95em;
}
.google-map iframe {
    min-height: 310px;
}
}
@media (max-width:640px){
.navbar-nav {
    float: none;
    margin: 0;
    width: 100%;
    text-align: center;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #652840;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #5ab645;
}
.navbar-default .navbar-toggle {
    border-color: #5ab645;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
}
.navbar-toggle {
     background-color: #5ab645;
}
.header-top {
    padding: 1em 0;
}
.navbar-brand {
    padding: 0px 0px;
}
.navbar-default {
    padding: .5em 0;
}
.slider {
    margin: 4.5em 0 0 0;
 }
.navbar-brand h1 a {
    font-size: 1.3em;
}
.rslides h3 {
    font-size: 2.7em;
}
.header {
    min-height: 301px;
}
.navbar-collapse {
    max-height: 387px;
}
.header-top {
    padding: .5em 0;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.5em;
}
.welcome-grid h4, .feature1 h4, .touch-grid h4, .choose-grid h4, .team-grid h4, .offer-grid h4, .offer-grid1 h4, .serv-text h4, .packages-grid h4, .room-grid1 h4 {
    font-size: 1.2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2.5em;
}
.head-top {
    padding-bottom: 0em;
}
.welcome-grid1:hover {
    border: 3px solid#5ab645;
}
.welcome-grid1 {
    border: 3px solid#fff;
}
.Welcome-grids,.features-grids,.touch-grids ,.choose-grids,.team-grids,.offer-grids,.packages-grids,.gallery-grids-top,.google-map,.room-grids{
    margin-top: 2em;
}
.touch-grid {
    width: 100%;
    text-align: left;
}
.touch-grid:nth-child(2) {
    margin: 1em 0;
}
.touch-grid h5 {
    font-size: 0.95em;
}
.about-section h5 {
    font-size: 0.95em;
}
.team-grid {
    float: left;
    width: 50%;
}
.team-grid:nth-child(3) {
    margin-top: 1em;
}
.team-grid:nth-child(4) {
    margin-top: 1em;
}
.offer-grid {
    width: 100%;
	margin-bottom: 1em;
}
.offer-grid1 {
    width: 100%;
}
.services1 {
    margin: 2em 0;
}
.packages-grid {
    float: left;
    width: 50%;
}
.packages-grid1:hover {
    border: 3px solid#5ab645;
}
.packages-grid1 {
    border: 3px solid#fff;
}
.packages-grid:nth-child(3) {
    margin-top: 1em;
}
.packages-grid:nth-child(4) {
    margin-top: 1em;
}
.gallery-grid {
    float: left;
    width: 50%;
    margin-bottom: 2em;
}
.contact-right input[type="submit"] {
    font-size: 0.92em;
    width: 25%;
}
.google-map iframe {
    min-height: 280px;
}
}
@media (max-width:480px){
.header {
    background: url(../images/banner1.jpg) no-repeat -130px 0px;
    background-size: cover;
}
.navbar-brand h1 a {
    font-size: 1.1em;
}
.rslides h3 {
    font-size: 2.5em;
}
.Welcome-section, .features, .touch-section, .about-section, .ourteam, .whatweoffer, .services, .packages-section, .room-section, .gallery-top, .typography, .contact, .why-choose, .most-popular {
    padding: 2em 0;
}
.welcome-grid p, .feature2 p, .popular-grid1 p, .touch-grid p, .about-section p, .choose-grid p, .team-grid p, .offer-grid p, .serv-text p, .packages-grid p, .room-grid1 p, .contact-left p {
    font-size: 0.92em;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2.2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2.2em;
}
.welcome-grid {
    width: 100%;
}
.welcome-grid:nth-child(2) {
    margin: 1em 0;
}
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 7.5em;
}
.popular-grid {
    width: 100%;
}
.popular-grid1 {
    width: 100%;
    margin-top: 1em;
}
.popular-grid1 h4 a {
    font-size: 0.75em;
}
.head-top {
    background-size: cover;
    background: url(../images/banner1.jpg) no-repeat 0px 0px;
}
.about-section h5 {
    font-size: 0.9em;
    line-height: 1.58em;
}
.choose-grid {
    width: 100%;
}
.choose-grid:nth-child(2) {
    margin: 1em 0;
}
.services-grid {
    padding: 0px;
}
.room-grid {
    width: 100%;
}
.room-grid1 {
    width: 100%;
 margin-top: 1em;
}
.google-map iframe {
    min-height: 250px;
}
.contact-left {
    width: 100%;
}
.contact-right {
    width: 100%;
 margin-top: 1em;
}
.contact-right input[type="text"], .contact-right textarea {
    padding: 4px 10px;
}
.contact-right input[type="submit"] {
    font-size: 0.9em;
    width: 20%;
}
}
@media (max-width:320px){
.header-top {
    padding: 0;
}
.rslides h3 {
    font-size: 2.1em;
}
.nav > li > a {
    padding: 6px 10px;
}
.header {
    background: url(../images/banner1.jpg) no-repeat -200px 0px;
    background-size: cover;
	    min-height: 260px;
}
.slider {
    margin: 4em 0 0 0;
    width: 100%;
}
.welcome-grid {
    padding: 0;
}
.feature-grid {
    padding: 0;
}
.Welcome-section, .features, .touch-section, .about-section, .ourteam, .whatweoffer, .services, .packages-section, .room-section, .gallery-top, .typography, .contact, .why-choose, .most-popular {
    padding: 1em 0;
}
.Welcome-grids, .features-grids, .touch-grids, .choose-grids, .team-grids, .offer-grids, .packages-grids, .gallery-grids-top, .google-map,.room-grids {
    margin-top: 1em;
}
.Welcome-section h2, .about-section h2, .services-main h2, .room-section h2, .gallery-info h2, h2.type, .contact h2 {
    font-size: 2em;
}
.features h3, .popular-grid h3, .popular-grid1 h3, .touch-section h3, .why-choose h3, .ourteam h3, .whatweoffer h3, .packages-section h3 {
    font-size: 2em;
}
.feature-grid {
    width: 100%;
}
.feature-grid:nth-child(2) {
    margin-top: 1em;
}
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
    margin-top: 5.5em;
}
.popular-grid {
    padding: 0;
}
.popular-grid1 {
    padding: 0;
}
.popular-grid ul {
    margin-top: 1em;
}
.footer-section {
    padding: 1em 0;
}
.head-top {
    background-size: cover;
    background: url(../images/banner1.jpg) no-repeat 0px 0px;
	    min-height: 100px !important;
}
.team-grid {
    width: 100%;
	padding:0;
}
.choose-grid {
    padding: 0;
}
.team-grid:nth-child(2) {
    margin-top: 1em;
}
.offer-grid {
    padding: 0;
}
.offer-grid1 {
    padding: 0;
}
.serv-img {
    width: 100%;
	padding: 0;
}
.serv-text {
    width: 100%;
    margin-top: 1em;
    padding: 0;
}
.room-grid1 {
    padding: 0;
}
.room-grid {
    padding: 0;
}
.gallery-grid {
    float: none;
    width: 100%;
    margin-bottom: 1em;
    padding: 0;
}
.contact-left {
    padding: 0;
}
.contact-right {
    padding: 0;
}
.contact-right input[type="submit"] {
    font-size: 0.9em;
    width: 24%;
}
}