/*--------------------------------------------------



    CSS INDEX
    ================

    
    1. Default CSS
        1.1 General
        1.2 Section title
        1.3 button
        1.4 Input
        1.5 social-icon
        1.6 Input
        1.7 scroll to top
        1.8 Basic margin padding
        1.9 Background Variation Set
    2. Header CSS
    3. Slider Area CSS
    4. Booking Area CSS
    5. About Area CSS
    6. Our Favorite Room Area
    7. Service Area CSS
    8. Fun Factor Area CSS
    9. Discount Room Area CSS
    10. Team Area CSS
    11. Gallery Area CSS
    12. Pricing Area CSS
    13. Blog Area CSS
    14. Brand Area CSS
    15. Footer Area CSS
        15.1 Footer Top Area CSS
        15.2 Footer Bottom Area CSS
    16. Breadcrumb Area CSS
    17. Pagination CSS
    18. Location Page CSS
    19. Contact Page CSS
    
        



/*************************
    General
*************************/
/*-----------------------------------------
    Google Font Oswald+Poppins
-------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600,700|Poppins:300,400,500,600,700');

body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	width: 100%;
	color: #151515;
	margin: 0;
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: var(--bs-gutter-x, .90rem);
	padding-left: var(--bs-gutter-x, .90rem);
}

.row {
	margin-right: calc(var(--bs-gutter-x) * -.6);
	margin-left: calc(var(--bs-gutter-x) * -.6);
}

.row>* {
	position: relative;
	padding-right: calc(var(--bs-gutter-x) * .6);
	padding-left: calc(var(--bs-gutter-x) * .6);
}

.img {
	max-width: 100%;
}

.img-full img {
	width: 100%;
}

a,
button {
	text-decoration: none;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	color: #eb7921;
	text-decoration: none;
}

a,
button,
input {
	outline: medium none;
	color: #434343;
}

.uppercase {
	text-transform: uppercase
}

.capitalize {
	text-transform: capitalize
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: normal;
	color: #434343;
	margin-top: 0px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 36px;
	font-weight: 500;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

ul {
	margin: 0px;
	padding: 0px;
}

p {
	margin-bottom: 15px;
}

hr {
	margin: 60px 0;
	padding: 0px;
	border-bottom: 1px solid #eceff8;
	border-top: 0px;
}

label {
	font-size: 15px;
	font-weight: 400;
	color: #626262;
}

*::-moz-selection {
	background: #88a43e;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #88a43e;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #88a43e;
	color: #fff;
	text-shadow: none;
}

.mark,
mark {
	background: #88a43e none repeat scroll 0 0;
	color: #ffffff;
}

.fix {
	overflow: hidden
}

.browserupgrade {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}

/*************************
    Section title
***********************/
.section-title {
	margin-bottom: 35px;
}

.section-title>span {
	font-size: 14px;
	color: #222;
	margin-bottom: 15px;
	text-transform: uppercase;
	font-weight: 300;
	font-family: 'Oswald', sans-serif;
}

.section-title>h3 {
	font-size: 36px;
	color: #1eb1cc;
	text-transform: capitalize;
	font-weight: 700;
}

.section-title:after {
	content: "";
	background-image: url(img/icon/title-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	margin-top: 7px;
	width: 100%;
	height: 15px;
}

.section-title p {
	font-size: 15px;
	line-height: 26px;
	max-width: 620px;
	margin: auto;
}

.section-title.title-2:after {
	display: none;
}

/*************************
         button
*************************/

/*************************
       social-icon
*************************/



.social-buttons {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: flex-start;
	-webkit-box-align: flex-start;
	-moz-box-align: flex-start;
	-ms-flex-align: flex-start;
	-webkit-align-items: flex-start;
	gap: 8px;
}

.social-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	width: 45px;
	height: 45px;
	text-decoration: none;
	border-radius: 100%;
	background: #fff;
	text-align: center;
}

.social-button::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	border-radius: 100%;
	transition: 0.3s;
}

.social-button:focus,
.social-button:hover {
	color: #fff;
}

.social-button:focus::after,
.social-button:hover::after {
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	margin-left: calc(-50% - 1px);
}

.social-button i,
.social-button svg {
	position: relative;
	z-index: 1;
	transition: 0.3s;
}

.social-button i {
	font-size: 25.6px;
}

.social-button svg {
	height: 40%;
	width: 40%;
}

.social-button--facebook {
	color: #3b5999;
}

.social-button--facebook::after {
	background: #3b5999;
}

.social-button--snapchat {
	color: #FF0000;
}

.social-button--snapchat::after {
	background: #FF0000;
}



.social-button--instagram {
	color: #e4405f;
}

.social-button--instagram::after {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}




/*************************
        Input
*************************/
input {
	background: transparent;
	border: 2px solid #88a43e;
	height: 56px;
	box-shadow: none;
	padding-left: 10px;
	font-size: 14px;
	color: #a4a4a4;
	width: 100%;
	box-shadow: none;
	border-radius: 0;
}

select {
	width: 100%;
	background: #eceff8;
	border: 2px solid #eceff8;
	height: 45px;
	padding-left: 10px;
	box-shadow: none;
	font-size: 14px;
	color: #626262;
}

option {
	background: #fff;
	border: 0px solid #626262;
	padding-left: 10px;
	font-size: 14px;
}

input:focus {
	background: transparent;
	border: 2px solid #88a43e;
}

textarea {
	resize: vertical;
	background: #eceff8;
	border: 2px solid #eceff8;
	padding: 10px;
	width: 100%;
	font-size: 14px;
}

textarea:focus {
	background: transparent;
	border: 2px solid #88a43e;
	outline: none;
}

::-moz-placeholder {
	color: #444;
}

/*************************
        scroll to top
*************************/
#scrollUp {
	background: #333;
	width: 40px;
	height: 40px;
	line-height: 40px;
	bottom: 25px;
	right: 25px;
	color: #fff;
	text-align: center;
	font-size: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#scrollUp:hover {
	background: #88a43e;
}

/*************************
  Basic margin padding
*************************/
.m-0 {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.p-0 {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

/*************************
         Margin top
*************************/
.mt-0 {
	margin-top: 0
}

.mt-10 {
	margin-top: 10px
}

.mt-15 {
	margin-top: 15px
}

.mt-20 {
	margin-top: 20px
}

.mt-30 {
	margin-top: 30px
}

.mt-40 {
	margin-top: 40px
}

.mt-50 {
	margin-top: 50px
}

.mt-60 {
	margin-top: 60px
}

.mt-70 {
	margin-top: 70px
}

.mt-80 {
	margin-top: 80px
}

.mt-90 {
	margin-top: 90px
}

.mt-100 {
	margin-top: 100px
}

.mt-110 {
	margin-top: 110px
}

.mt-120 {
	margin-top: 120px
}

.mt-130 {
	margin-top: 130px
}

.mt-140 {
	margin-top: 140px
}

.mt-150 {
	margin-top: 150px
}

/*************************
      Margin right
*************************/
.mr-0 {
	margin-right: 0px
}

.mr-10 {
	margin-right: 10px
}

.mr-15 {
	margin-right: 15px
}

.mr-20 {
	margin-right: 20px
}

.mr-30 {
	margin-right: 30px
}

.mr-40 {
	margin-right: 40px
}

.mr-50 {
	margin-right: 50px
}

.mr-60 {
	margin-right: 60px
}

.mr-70 {
	margin-right: 70px
}

.mr-80 {
	margin-right: 80px
}

.mr-90 {
	margin-right: 90px
}

.mr-100 {
	margin-right: 100px
}

.mr-110 {
	margin-right: 110px
}

.mr-120 {
	margin-right: 120px
}

.mr-130 {
	margin-right: 130px
}

.mr-140 {
	margin-right: 140px
}

.mr-150 {
	margin-right: 150px
}

/*************************
      Margin bottom
*************************/
.mb-0 {
	margin-bottom: 0
}

.mb-10 {
	margin-bottom: 10px
}

.mb-15 {
	margin-bottom: 15px
}

.mb-20 {
	margin-bottom: 20px
}

.mb-30 {
	margin-bottom: 30px
}

.mb-35 {
	margin-bottom: 35px
}

.mb-40 {
	margin-bottom: 40px
}

.mb-50 {
	margin-bottom: 50px
}

.mb-60 {
	margin-bottom: 60px
}

.mb-70 {
	margin-bottom: 70px
}

.mb-75 {
	margin-bottom: 75px
}

.mb-80 {
	margin-bottom: 80px
}

.mb-90 {
	margin-bottom: 90px
}

.mb-95 {
	margin-bottom: 95px
}

.mb-100 {
	margin-bottom: 100px
}

.mb-110 {
	margin-bottom: 110px
}

.mb-120 {
	margin-bottom: 120px
}

.mb-130 {
	margin-bottom: 130px
}

.mb-140 {
	margin-bottom: 140px
}

.mb-150 {
	margin-bottom: 150px
}

/*************************
        Margin left
*************************/
.ml-0 {
	margin-left: 0
}

.ml-10 {
	margin-left: 10px
}

.ml-15 {
	margin-left: 15px
}

.ml-20 {
	margin-left: 20px
}

.ml-30 {
	margin-left: 30px
}

.ml-40 {
	margin-left: 40px
}

.ml-50 {
	margin-left: 50px
}

.ml-60 {
	margin-left: 60px
}

.ml-70 {
	margin-left: 70px
}

.ml-80 {
	margin-left: 80px
}

.ml-90 {
	margin-left: 90px
}

.ml-100 {
	margin-left: 100px
}

.ml-110 {
	margin-left: 110px
}

.ml-120 {
	margin-left: 120px
}

.ml-130 {
	margin-left: 130px
}

.ml-140 {
	margin-left: 140px
}

.ml-150 {
	margin-left: 150px
}

/*************************
        Padding top
*************************/
.pt-0 {
	padding-top: 0
}

.pt-10 {
	padding-top: 10px
}

.pt-15 {
	padding-top: 15px
}

.pt-20 {
	padding-top: 20px
}

.pt-30 {
	padding-top: 30px
}

.pt-35 {
	padding-top: 35px
}

.pt-40 {
	padding-top: 40px
}

.pt-50 {
	padding-top: 50px
}

.pt-60 {
	padding-top: 60px
}

.pt-65 {
	padding-top: 65px
}

.pt-70 {
	padding-top: 70px
}

.pt-80 {
	padding-top: 80px
}

.pt-85 {
	padding-top: 85px
}

.pt-90 {
	padding-top: 90px
}

.pt-95 {
	padding-top: 95px
}

.pt-100 {
	padding-top: 100px
}

.pt-110 {
	padding-top: 110px
}

.pt-120 {
	padding-top: 120px
}

.pt-130 {
	padding-top: 130px
}

.pt-140 {
	padding-top: 140px
}

.pt-150 {
	padding-top: 150px
}

/*************************
        Padding right
*************************/
.pr-0 {
	padding-right: 0
}

.pr-10 {
	padding-right: 10px
}

.pr-15 {
	padding-right: 15px
}

.pr-20 {
	padding-right: 20px
}

.pr-30 {
	padding-right: 30px
}

.pr-40 {
	padding-right: 40px
}

.pr-50 {
	padding-right: 50px
}

.pr-60 {
	padding-right: 60px
}

.pr-70 {
	padding-right: 70px
}

.pr-80 {
	padding-right: 80px
}

.pr-90 {
	padding-right: 90px
}

.pr-100 {
	padding-right: 100px
}

.pr-110 {
	padding-right: 110px
}

.pr-120 {
	padding-right: 120px
}

.pr-130 {
	padding-right: 130px
}

.pr-140 {
	padding-right: 140px
}

/*************************
        Padding bottom
*************************/
.pb-0 {
	padding-bottom: 0
}

.pb-5 {
	padding-bottom: 5px !important
}

.pb-10 {
	padding-bottom: 10px
}

.pb-15 {
	padding-bottom: 15px
}

.pb-20 {
	padding-bottom: 20px
}

.pb-30 {
	padding-bottom: 30px
}

.pb-35 {
	padding-bottom: 35px
}

.pb-40 {
	padding-bottom: 40px
}

.pb-45 {
	padding-bottom: 45px
}

.pb-50 {
	padding-bottom: 50px
}

.pb-60 {
	padding-bottom: 60px
}

.pb-65 {
	padding-bottom: 65px
}

.pb-70 {
	padding-bottom: 70px
}

.pb-80 {
	padding-bottom: 80px
}

.pb-90 {
	padding-bottom: 90px
}

.pb-95 {
	padding-bottom: 95px
}

.pb-100 {
	padding-bottom: 100px
}

.pb-110 {
	padding-bottom: 110px
}

.pb-120 {
	padding-bottom: 120px
}

.pb-130 {
	padding-bottom: 130px
}

.pb-140 {
	padding-bottom: 140px
}

.pb-150 {
	padding-bottom: 150px
}

/*************************
        Padding left
*************************/
.pl-0 {
	padding-left: 0
}

.pl-10 {
	padding-left: 10px
}

.pl-15 {
	padding-left: 15px
}

.pl-20 {
	padding-left: 20px
}

.pl-30 {
	padding-left: 30px
}

.pl-40 {
	padding-left: 40px
}

.pl-50 {
	padding-left: 50px
}

.pl-60 {
	padding-left: 60px
}

.pl-70 {
	padding-left: 70px
}

.pl-80 {
	padding-left: 80px
}

.pl-90 {
	padding-left: 90px
}

.pl-100 {
	padding-left: 100px
}

.pl-110 {
	padding-left: 110px
}

.pl-120 {
	padding-left: 120px
}

.pl-130 {
	padding-left: 130px
}

.pl-140 {
	padding-left: 140px
}

.pl-150 {
	padding-left: 150px
}


/***************************
    Page section padding 
****************************/
.ptb-0 {
	padding: 0
}

.ptb-10 {
	padding: 10px 0
}

.ptb-20 {
	padding: 20px 0
}

.ptb-30 {
	padding: 30px 0
}

.ptb-40 {
	padding: 40px 0
}

.ptb-50 {
	padding: 50px 0
}

.ptb-60 {
	padding: 60px 0
}

.ptb-70 {
	padding: 70px 0
}

.ptb-80 {
	padding: 80px 0
}

.ptb-90 {
	padding: 90px 0
}

.ptb-100 {
	padding: 100px 0
}

.ptb-110 {
	padding: 110px 0
}

.ptb-120 {
	padding: 120px 0
}

.ptb-130 {
	padding: 130px 0
}

.ptb-140 {
	padding: 140px 0
}

.ptb-150 {
	padding: 150px 0
}

/***************************
    Page section margin 
****************************/
.mtb-0 {
	margin: 0
}

.mtb-10 {
	margin: 10px 0
}

.mtb-15 {
	margin: 15px 0
}

.mtb-20 {
	margin: 20px 0
}

.mtb-30 {
	margin: 30px 0
}

.mtb-40 {
	margin: 40px 0
}

.mtb-50 {
	margin: 50px 0
}

.mtb-60 {
	margin: 60px 0
}

.mtb-70 {
	margin: 70px 0
}

.mtb-80 {
	margin: 80px 0
}

.mtb-90 {
	margin: 90px 0
}

.mtb-100 {
	margin: 100px 0
}

.mtb-110 {
	margin: 110px 0
}

.mtb-120 {
	margin: 120px 0
}

.mtb-130 {
	margin: 130px 0
}

.mtb-140 {
	margin: 140px 0
}

.mtb-150 {
	margin: 150px 0;
}

/*************************************
    Background variation set 
 **************************************/
/*colored background*/
.white-bg {
	background: #fff !important;
}

.gray-bg {
	background: #f5f6f7 !important;
}

.gray-bg2 {
	background: #f2f2f2 !important;
}

.gray-bg3 {
	background: #f8f8f8 !important;
}

.black-bg {
	background: #313131 !important;
}

.default-bg {
	background: #50C1F0 !important;
}

.transparent-bg {
	background: transparent !important;
}

/*Opacity background*/
.bg-opacity-black-10:before,
.bg-opacity-black-20:before,
.bg-opacity-black-30:before,
.bg-opacity-black-40:before,
.bg-opacity-black-50:before,
.bg-opacity-black-60:before,
.bg-opacity-black-70:before,
.bg-opacity-black-80:before,
.bg-opacity-black-90:before,
.bg-opacity-white-10:before,
.bg-opacity-white-20:before,
.bg-opacity-white-30:before,
.bg-opacity-white-40:before,
.bg-opacity-white-50:before,
.bg-opacity-white-60:before,
.bg-opacity-white-70:before,
.bg-opacity-white-80:before,
.bg-opacity-white-90:before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.bg-opacity-black-10:before {
	background: rgba(0, 0, 0, 0.1);
}

.bg-opacity-black-20:before {
	background: rgba(0, 0, 0, 0.2);
}

.bg-opacity-black-30:before {
	background: rgba(0, 0, 0, 0.3);
}

.bg-opacity-black-40:before {
	background: rgba(0, 0, 0, 0.4);
}

.bg-opacity-black-50:before {
	background: rgba(0, 0, 0, 0.5);
}

.bg-opacity-black-60:before {
	background: rgba(0, 0, 0, 0.6);
}

.bg-opacity-black-70:before {
	background: rgba(0, 0, 0, 0.7);
}

.bg-opacity-black-80:before {
	background: rgba(0, 0, 0, 0.8);
}

.bg-opacity-black-90:before {
	background: rgba(0, 0, 0, 0.9);
}

.bg-opacity-white-10:before {
	background: rgba(255, 255, 255, 0.1);
}

.bg-opacity-white-20:before {
	background: rgba(255, 255, 255, 0.2);
}

.bg-opacity-white-30:before {
	background: rgba(255, 255, 255, 0.3);
}

.bg-opacity-white-40:before {
	background: rgba(255, 255, 255, 0.4);
}

.bg-opacity-white-50:before {
	background: rgba(255, 255, 255, 0.5);
}

.bg-opacity-white-60:before {
	background: rgba(255, 255, 255, 0.6);
}

.bg-opacity-white-70:before {
	background: rgba(255, 255, 255, 0.7);
}

.bg-opacity-white-80:before {
	background: rgba(255, 255, 255, 0.8);
}

.bg-opacity-white-90:before {
	background: rgba(255, 255, 255, 0.9);
}

/*-------------------
Common Style CSS
-------------------*/
.pl-230 {
	padding-left: 230px;
}

.pr-230 {
	padding-right: 230px;
}

/*----------------------------------
       2. Header CSS
------------------------------------*/
/*header menu sticky*/
.header-sticky {
	-webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
	transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}

.header-sticky.is-sticky {
	background: rgba(255, 255, 255, .85);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.default-header-area.header-style-2.header-sticky.is-sticky .main-menu>li>a {
	color: #373537;
}

.default-header-area.header-style-2.header-sticky.is-sticky .main-menu>li>a:hover {
	color: #88a43e;
}

.default-header-area.header-style-2.header-sticky.is-sticky .book-now-btn a {
	color: #FFF;
	border-color: #FFF;
}

.default-header-area.header-style-2.header-sticky.is-sticky .book-now-btn a:hover {
	background-color: #88a43e;
	border-color: #88a43e;
	color: #fff;
}



.default-header-area.header-style-2 .header-logo .second-img {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 22px;
	opacity: 0;
	visibility: hidden;
}

.default-header-area.header-style-2.header-sticky.is-sticky .header-logo .second-img {
	opacity: 1;
	visibility: visible;
}

.default-header-area.header-style-2.header-sticky.is-sticky .header-logo .first-img {
	opacity: 0;
	visibility: hidden;
}


/*header menu sticky*/
.header-logo {
	padding: 6px 0;
	position: relative;
}

.header-logo img{
    width: 100%;
    max-width: 255px;
}

.header-bottom-area {
	padding-top: 15px;
}

.header-logo>a {
	display: block;
	margin: 15px 0;
}

.main-menu>li {
	display: inline-block;
	list-style: none;
	position: relative;
}

.main-menu>li:last-child a {
	padding-right: 0;
}

.main-menu>li>a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	padding: 30px 15px;
	color: #88a43e;
	line-height: 30px;
	text-transform: uppercase;
}

.main-menu>li>a:first-child {
	padding-right: 0;
}

.main-menu>li>a:last-child {
	padding-right: 0px;
}

.main-menu>li.active>a,
.main-menu>li:hover>a {
	color: #eb7921;
}

.main-menu>li>ul {
	background: #fff none repeat scroll 0 0;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	display: block;
	left: 0px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	padding: 25px 0px 27px;
	position: absolute;
	text-align: left;
	top: 120%;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 230px;
	z-index: 999;
}

.main-menu>li:nth-last-child(1)>ul,
.main-menu>li:nth-last-child(2)>ul {
	left: auto;
	right: 0;
}

.main-menu>li:hover>ul {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	top: 100%;
	visibility: visible;
}

.main-menu>li>ul>li {
	display: block;
	padding: 0 18px;
	position: relative;
}

.main-menu>li>ul>li>a {
	color: #373537;
	display: block;
	font-weight: 400;
	letter-spacing: 0.8px;
	line-height: 32px;
	text-transform: capitalize;
	font-size: 15px;
}

.main-menu>li>ul>li>a:before {
	background: #eb7921 none repeat scroll 0 0;
	content: "";
	height: 7px;
	left: 15px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: absolute;
	top: 14px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 7px;
	border-radius: 50%;
	z-index: 999;
}

.main-menu>li>ul>li:hover>a:before {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.main-menu>li>ul>li:hover>a {
	padding-left: 15px;
	color: #eb7921;
}

/*Mobile Menu CSS*/
.mobile-menu .mean-nav>ul {
	overflow-y: auto;
	max-height: 400px;
}

.mobile-menu {
	-webkit-box-flex: 1 !important;
	-ms-flex: 1 0 100% !important;
	flex: 1 0 100% !important;
}

.mobile-menu .mean-bar {
	position: relative;
	/*---- Mean Nav ----*/
}

.mobile-menu .mean-bar .meanmenu-reveal {
	position: absolute;
	top: -60px;
}

.mobile-menu .mean-bar .meanmenu-reveal span {
	position: relative;
	/*---- Menu Open ----*/
	/*---- Menu Close ----*/
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: #282828;
	height: 3px;
	margin-top: 3px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #202020;
}

.mean-container a.meanmenu-reveal {
	color: #282828;
}

.mean-container .mean-bar {
	padding: 0;
	min-height: 0;
}

.mean-container .mean-nav {
	background: transparent;
	margin-top: 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:before {
	top: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar:after {
	bottom: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
	height: 2px;
	width: 26px;
	background-color: transparent;
	display: block;
	margin: 8px 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #202020;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close:after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mobile-menu .mean-bar .mean-nav {
	background-color: #ffffff;
}

.mobile-menu .mean-bar .mean-nav>ul {
	margin-bottom: 30px;
	border: 1px solid #eeeeee;
	border-top: 0px solid transparent;
	overflow-x: hidden;
}

@media only screen and (max-width: 767px) {
	.mobile-menu .mean-bar .mean-nav>ul {
		max-height: 180px;
		overflow-y: auto;
	}
}

@media only screen and (max-width: 479px) {
	.mobile-menu .mean-bar .mean-nav>ul {
		max-height: 220px;
		overflow-y: auto;
	}
}

.mobile-menu .mean-bar .mean-nav>ul li {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	/*---- Sub Menu & Mega Menu ----*/
}

.mobile-menu .mean-bar .mean-nav>ul li a {
	font-size: 13px;
	display: block;
	color: #444444;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 44px;
	position: relative;
	border-top: 1px solid #eeeeee;
	padding: 0 40px 0 20px;
	width: 100%;
}

.mobile-menu .mean-bar .mean-nav>ul li a:hover {
	color: #202020;
	padding-left: 25px;
}

.mobile-menu .mean-bar .mean-nav>ul li a.mean-expand {
	border: 1px solid #eeeeee;
	position: absolute;
	right: -1px;
	top: 0;
	font-size: 20px !important;
	color: #444444;
	line-height: 44px;
	height: 46px;
	width: 40px;
	text-align: center;
	padding: 0 !important;
	background-color: transparent;
}

.mobile-menu .mean-bar .mean-nav>ul li a.mean-expand.mean-clicked {
	line-height: 40px;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul {
	position: static;
	background-color: rgba(0, 0, 0, 0.03);
	margin: 0;
	padding: 0 !important;
	width: 100%;
	box-shadow: none;
	margin: 0;
	display: none;
	float: left;
	width: 100%;
	opacity: 1;
	visibility: visible;
	transition: none;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li,
.mobile-menu .mean-bar .mean-nav>ul li ul li {
	padding: 0;
	margin: 0;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	border-right: 0px solid transparent;
	width: 100%;
	display: block !important;
	float: left;
	width: 100%;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li a {
	font-size: 12px;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li a:before,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li a:before,
.mobile-menu .mean-bar .mean-nav>ul li ul li a:before {
	display: none;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul {
	background-color: rgba(0, 0, 0, 0.04);
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul li a {
	border-top: 1px solid #dddddd;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul li a.mean-expand {
	border: 1px solid #dddddd;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul {
	background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu li a,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul li a {
	border-top: 1px solid #eeeeee;
}

.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .sub-menu li ul ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li .mega-menu li ul ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li .sub-menu ul li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul .sub-menu li a.mean-expand,
.mobile-menu .mean-bar .mean-nav>ul li ul li ul ul li a.mean-expand {
	border: 1px solid #eeeeee;
}

/*Mobile Menu css end*/
/*Book Botton CSS*/


.book-now-btn {
	float: right;
}

.book-now-btn a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	text-transform: uppercase;
	border: 1px solid #FFF;
	padding: 6px 16px;
	height: 40px;
	border-radius: 50px;
	line-height: 28px;
	display: inline-block;
}

.book-now-btn a:hover {
	background-color: #88a43e;
	color: #fff;
	border-color: #88a43e;
}

.book-now-btn a i {
	padding-right: 5px;
}

/*Header Style 2 CSS*/
.header-absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.header-style-2 .main-menu>li>a {
	color: #fff;
}

.header-style-2 .main-menu>li>a:hover {
	color: #88a43e;
}

.header-style-2 .book-now-btn a {
	color: #fff;
	border-color: #fff;
}

.header-style-2 .book-now-btn a:hover {
	border-color: #88a43e;
	background-color: #88a43e;
}

/*-----------------------------
    3. Slider Area CSS
------------------------------*/
.hero-slider-content>* {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.active .hero-slider-content>h1 {
	-webkit-animation: 800ms ease-in-out 0s normal none 1 running slideInUp;
	animation: 800ms ease-in-out 0s normal none 1 running slideInUp;
}

.active .hero-slider-content>p {
	-webkit-animation: 1100ms ease-in-out 0s normal none 1 running slideInUp;
	animation: 1100ms ease-in-out 0s normal none 1 running slideInUp;
}

.active .hero-slider-content>.slider-btn {
	-webkit-animation: 1500ms ease-in-out 0s normal none 1 running slideInUp;
	animation: 1500ms ease-in-out 0s normal none 1 running slideInUp;
}

.single-slider {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 99;
}

.single-slider:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	z-index: 1;
}

.single-slider .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ki tarah fit hoga */
  z-index: -1;       /* Content ke niche chala jayega */
}

.hero-slider-content {
	max-width: 930px;
	text-align: center;
    position: relative;
    z-index: 1;
}

.hero-slider-content>h1 {
	font-size: 60px;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-slider-content>p {
	font-size: 16px;
	color: #fff;
	line-height: 26px;
	max-width: 600px;
	margin: 0 auto;
}

.hero-slider-content .slider-btn a {
	line-height: 60px;
	padding: 0 55px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	background: #fff;
	color: #88a43e;
	display: inline-block;
	margin-top: 25px;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.hero-slider-content .slider-btn a:hover {
	background: #88a43e;
	color: #fff;
}

.hero-slider .owl-nav>button {
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	line-height: 60px !important;
	background: #fff !important;
	text-align: center;
	border-radius: 100%;
	font-size: 26px !important;
	color: #363636;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hero-slider:hover .owl-nav>button {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
}

.hero-slider .owl-nav>button:hover {
	color: #88a43e !important;
}

.hero-slider .owl-nav>.owl-next {
	left: auto;
	right: 30px;
}

/*Slider Style 2 CSS*/
.single-slider.single-slider-2 {
	height: 850px;
}

.hero-slider-content.slider-content-2 h1 {
	font-size: 75px;
	line-height: 90px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

/*-------------------------------
    4. About Area CSS
---------------------------------*/
.about-container h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 46px;
	color: #1eb1cc;
	margin-bottom: 30px;
}



.about-container p {
	font-size: 15px;
	color: #151515;
	line-height: 26px;
	margin-bottom: 25px;
	text-align: justify;
}

.about-container a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #1eb1cc;
	text-transform: uppercase;
	border: 1px solid #1eb1cc;
	padding: 6px 30px;
	height: 40px;
	border-radius: 50px;
	line-height: 26px;
	margin-top: 15px;
}

.about-container a:hover {
	color: #fff;
	background-color: #1eb1cc;
	border-color: #1eb1cc;
}

.welcome-image-area {
	text-align: center;
	position: relative;
}

.first-welcome-image {
	position: relative;
	top: 120px;
	left: 75px;
	box-shadow: 0 2px 20px rgba(34, 30, 31, 0.4);
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
}

.first-welcome-image img {
	width: 100%;
	max-width: 350px;
	height: 350px;
}

.secound-iamge-area {
	position: absolute;
	top: 15px;
	left: 40px;
	box-shadow: 0 2px 20px rgba(34, 30, 31, 0.4);
	border-radius: 10px;
	overflow: hidden;
}

.secound-iamge-area img {
	width: 100%;
	min-width: 360px;
	max-height: 300px;
	object-fit: cover;
}

.welcome-title h3 {
	background: #1eb1cc;
	color: #fff;
	padding: 30px 0;
	border-radius: 0px 0px 5px 5px;
	font-size: 20px;
	font-weight: 400;
	margin: 0;
}

/*About Style 2 CSS*/
.about-style-2 .welcome-image-area {
	text-align: right;
	position: relative;
	display: block;
}

.about-style-2 .first-welcome-image {
	top: 110px;
}

.about-style-2 .secound-iamge-area {
	right: 160px;
}

.about-style-2 .about-container {
	padding-left: 20px;
}

.about-style-2 .about-container h3 {
	margin-left: -140px;
	margin-bottom: 70px;
}

.about-style-2 .secound-iamge-area {
	right: 160px;
	left: auto;
}




/*--------------------------
  6. Our Favorite Room Area
----------------------------*/


#book-main {
	width: 100%;
	display: inline-block;
}


.book {
	width: 100%;
	display: inline-block;
	background: url(../img/membership-product/background-1.jpg) no-repeat fixed center center;
	background-size: cover;
	position: relative;
}

.book::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.book-heading {
	width: 100%;
	display: inline-block;
	position: relative;
	z-index: 11;
	padding: 80px 80px;
}

.book-text h3 {
	font-size: 55px;
	color: #fff;
	padding-bottom: 20px;
}

.book-text h3 span {
	font-size: 50px;

}

.book-text a {
	padding: 12px 25px;
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.book-text a:hover {
	color: #000;
	background-color: #fff;
}

.book-text p {
	color: #fff;
	font-size: 35px;
	font-weight: 500;
	padding: 15px 0 0 0;
	text-transform: capitalize;
	line-height: 40px;
}

.book-text span {
	color: #fff;
	font-size: 20px;
}


/*about profile CSS*/


.profile-text {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.profile-text h2 {
	font-size: 40px;
	margin-bottom: 60px;
	display: block;
}

.profile .about-container p {
	line-height: 23px;
}

.profile .first-welcome-image {
	top: 22px;
	left: 20px;
}

.profile .first-welcome-image img {
	max-width: unset;
	height: 600px;
}


#profile-bootom {
	width: 100%;
	display: inline-block;
	margin-top: 50px;
}

.vision-mission {
	width: 100%;
	display: inline-block;
	margin-bottom: 80px;
}

.vision-mission .mission {
	width: 100%;
	display: inline-block;
}

.vision-mission .mission .mission-img {
	width: 100%;
	display: inline-block;
	position: relative;
	padding: 32px 74px 0px 46px;
}

.vision-mission .mission .mission-img::after {
	/* content: ""; */
	position: absolute;
	background: url(img/about/Vision-Mission.png);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	/* transform: translate(50%,50%); */
	z-index: 9999;

}

.vision-mission .mission .mission-img img {
	width: 100%;
}

.vision-mission .mission .mission-text {
	width: 100%;
	display: inline-block;
	background-color: #88a43e;
	padding: 75px 113px;
	box-shadow: -20px 20px 60px #bebebe,
		20px -20px 60px #ffffff;
}

.vision-mission .mission .mission-text h3 {
	text-transform: uppercase;
	font-size: 65px;
}

.vision-mission .mission .mission-text p {
	font-size: 15px;
	margin-top: 15px;
	text-align: justify;
}



.vision-mission .vision {
	width: 100%;
	display: inline-block;
	margin-top: 40px;
}

.vision-mission .vision .vision-img {
	width: 100%;
	display: inline-block;
	padding: 62px 36px 0px 73px;
}

.vision-mission .vision .vision-img img {
	width: 100%;
}

.vision-mission .vision .vision-text {
	width: 100%;
	display: inline-block;
	background-color: #1eb1cc;
	padding: 75px 113px;
	box-shadow: 20px -20px 60px #bebebe,
		-20px 20px 60px #ffffff;
}

.vision-mission .vision .vision-text h3 {
	text-transform: uppercase;
	font-size: 65px;
}

.vision-mission .vision .vision-text p {
	font-size: 15px;
	margin-top: 15px;
	text-align: justify;
}


/* about-brand-start */

#brand-main {
	width: 100%;
	display: inline-block;
	background-color: #f2f2f2;
}

.brand {
	width: 100%;
	display: inline-block;
}

.brand .brand-main-text {
	width: 100%;
	display: inline-block;
}

.brand .brand-main-text h2 {
	text-align: center;
	font-size: 40px;
	color: #1eb1cc;
	font-weight: bold;
	letter-spacing: .96px;
	text-transform: uppercase;
	padding-bottom: 15px;
}

.brand .brand-main-text p {
	padding-top: 15px;
	line-height: 26px;
	letter-spacing: .256px;
}

.text-justify{
    text-align: justify !important;
}

.brand .brand-text h3 {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: .96px;
	text-transform: uppercase;
	padding-bottom: 15px;
	margin-top: 100px;
	color: #1eb1cc;
}



/*Magic card*/
.card {
	width: 100%;
	height: 400px;
	background: #fff;
	overflow: visible;
	box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 100px;
	cursor: pointer;
	position: relative;
}

.brand .card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 264px;
	height: 4px;
	background-color: #88a43e;

}

.card-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 16px;
}

.card-img {
	--size: 100px;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	transform: translateY(-50%);
	background: #88a43e;
	position: relative;
	transition: all .3s ease-in-out;
	border: 16px solid #f2f2f2;
	margin-bottom: -30px;
	padding: 13px 9px 10px 12px;
}

.card-img img {
	width: 100%;
}

.card-img a {
	display: inline-block;
	width: 100%;
}



.card-img .air {
	margin-top: 8px;
	transform: scale(1.1);
}

.card-img .dry {
	margin-left: -1px;
	transform: scale(1.1);
	margin-top: -4px;
}

.card-img .bath {
	margin-top: 9px;
	transform: scale(1.1);
}

.card-img .laun {
	margin-left: -2px;
	margin-top: -3px;
}

.card-img .tele {
	margin-top: 4px;
}

.card-img .iron {
	margin-top: -5px;
	margin-left: -2px;
}

.card-img .news {
	transform: scale(1.2);
	margin-left: -1px;
}

.card-img .toilet {
	transform: scale(1.5);
	margin-top: -2px;
}

.card-img .umb {
	margin-top: -4px;
}

.card-img .torch {
	margin-top: 6px;
}

.card-img .pool {
	transform: scale(1.3);
}



/*Text*/
.text-title {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	color: #88a43e;
	letter-spacing: .200px;
}

.text-body {
	text-align: center;
	font-size: 15px;
	color: #898989;
	line-height: 26px;
	letter-spacing: .225px;
}

.card:hover .card-img {
	width: 120px;
	height: 120px;
}


/*-------------------------
    7. Featured area start
---------------------------*/
.featured-area {
	width: 100%;
	display: inline-block;
}

.slick-slide {
	margin-right: 30px;
}

.featured-box {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	transition: all ease 0.5s;
}

.featured-box:hover {
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

}

.feature {
	width: 100%;
	display: inline-block;
	background-color: #fff;
	padding: 10px;
	border-radius: 20px;
	position: relative;
	border: 1px solid #DDD;
}

.feature img {
	width: 100%;
	border-radius: 20px;
}

.feature h4 {
	font-size: 25px;
	text-align: center;
	padding: 15px 0 5px 0;
	margin: 0;
	transition: all ease 0.5s;
}

.feature:hover h4 {
	color: #88a43e;

}


/*--------------------------------
           value area css
----------------------------------*/
.value-area {
	width: 100%;
	display: inline-block;
}

/* 
.carousel-item{
	margin-left:20px;
} */


.value {
	width: 100%;
	min-height: 370px;
	padding: 50px 12px 0 12px;
	border-radius: 30px;
	color: #313131;
	transition: all 0.4s;
}

.dis-0 {
	display: none;
}

.dis-btn {
	display: none;
}

.gr-1 {
	background: linear-gradient(170deg, #fff 0%, #88a43e 100%);
}

.gr-2 {
	background: linear-gradient(170deg, #fff 0%, #eb7921 100%);
}

.gr-3 {
	background: linear-gradient(170deg, #fff 0%, #1eb1cc 100%);
}



.value .value-body {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.value .value-body h3 {
	font-size: 28px;
	text-transform: capitalize;
	padding-top: 20px;

}

.value .value-body p {
	font-size: 16px;
	color: #313131;
	padding-top: 10px;
}

.value .value-body img {
	width: 100%;
	max-width: 90px;
}


.carousel-indicators [data-bs-target] {
	background-color: #88a43e;
}

.carousel-indicators {
	bottom: -70px;
	/* left: 35px; */
}




/*--------------------------------
    9. Discount Room Area CSS
----------------------------------*/
.discount-content h2 {
	font-size: 36px;
	color: #88a43e;
	font-weight: 700;
}

.discount-content p {
	font-size: 20px;
	color: #88a43e;
	font-family: 'Oswald', sans-serif;
	max-width: 200px;
	margin: 0 auto;
}

.discount-btn {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #88a43e;
	text-transform: uppercase;
	border: 1px solid #88a43e;
	padding: 6px 20px;
	height: 40px;
	border-radius: 50px;
	line-height: 26px;
	margin-top: 35px;
}

.discount-btn:hover {
	background: #88a43e;
	color: #fff;
}

.discount-bg {
	background-color: #021832;
}

.single-discount-room {
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	position: relative;
}

.room-image img {
	width: 100%;
}

.discount {
	position: absolute;
	top: 40px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	z-index: 9;
	font-size: 26px;
	padding: 0 10px;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
}

.room-content h3 a {
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	margin: 0;
	padding: 15px 0;
	display: block;
	font-family: 'Oswald', sans-serif;
}



/*------------------------------
    10. membership area CSS
--------------------------------*/



#products-main {
	width: 100%;
	display: inline-block;
}

.products {
	width: 100%;
	display: inline-block;
}

.products .products-text {
	width: 100%;
	display: inline-block;
	margin-right: 40px;
	text-align: justify;
}


.products .products-text h3 {
	font-size: 31px;
	line-height: 30px;
	color: #1eb1cc;
	margin-bottom: 20px;
}

.products-text .benefit {
	font-size: 18px;
	color: #88a43e;
	padding-top: 10px;
}

.products .product-image {
	width: 100%;
	position: relative;
	display: inline-block;
}

.product-image .one {
	position: absolute;
	top: 0px;
	right: 50px;
	box-shadow: 25px 30px 50px #f7f7f7;
}

.product-image .one img {
	width: 100%;
	max-width: 350px;
}

.product-image .two {
	position: absolute;
	left: 50px;
	top: 50px;
	box-shadow: 0 16px 50px rgb(13 41 51 / 30%);
}

.product-image .two img {
	width: 100%;
	max-width: 203px;
}

.product-image .three {
	position: absolute;
	right: 0px;
	top: 240px;
}

.product-image .three img {
	width: 100%;
	max-width: 135px;
}


.products .resort-list {
	width: 100%;
	display: inline-block;
}

.products .resort-list ul li {
	font-size: 19px;
	font-weight: 500;
	color: #000;
	position: relative;
	padding-left: 75px;
	line-height: 47px;
	display: block;
	-webkit-transition: all 300ms linear 0s;
	-o-transition: all 300ms linear 0s;
	transition: all 300ms linear 0s;
}


.arrow {
	transform: rotate(270deg);
	cursor: pointer;
	position: absolute;
	top: 16px;
	left: 33px;
}

.arrow span {
	display: block;
	width: 13px;
	height: 13px;
	border-bottom: 4px solid #88a43e;
	border-right: 4px solid #88a43e;
	transform: rotate(45deg);
	margin: -15px;
	animation: animate28797 2s infinite;
}

.arrow span:nth-child(2) {
	animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate28797 {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}


#member-main {
	width: 100%;
	display: inline-block;
	background-color: #000;
}


.member {
	width: 100%;
	display: inline-block;
	background: url(../img/membership-product/background-11.jpg) no-repeat fixed center center;
	background-size: cover;
	/* padding: 70px 0px 65px 0px; */
	position: relative;
}

.member::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	z-index: 1;
}






.member .img-back {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.member .img-back .member-img {
	width: 100%;
	max-width: 400px;
	height: 350px;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px 0 #88a43e52;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 1rem;
	padding: 1.5rem;
	z-index: 10;
	color: whitesmoke;
	margin: 20px;
}

.member .img-back .member-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member .title {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.member.subtitle {
	font-size: 1rem;
	margin-bottom: 2rem;
}

.member .btn {
	background: none;
	border: none;
	text-align: center;
	font-size: 1rem;
	color: whitesmoke;
	background-color: #88a43e;
	padding: 0.8rem 1.8rem;
	border-radius: 2rem;
	cursor: pointer;
}



.member .member-img {
	width: 100%;
	display: inline-block;
	position: relative;
	z-index: 11;
}


.member .member-img img {
	width: 100%;
	max-width: 500px;
}

.member .member-text {
	width: 100%;
	display: inline-block;
	padding: 80px 80px;
	position: relative;
	z-index: 99;
}

.member .member-text h4 {
	font-size: 30px;
	text-align: left;
	color: #fff;
	padding-bottom: 10px;
	position: relative;
}

.member .member-text h4::after {
	content: "";
	position: absolute;
	top: 17px;
	left: 205px;
	width: 40px;
	height: 3px;
	background-color: #fff;
}

.member .member-text h2 {
	color: #fff;
	font-size: 26px;
	line-height: 35px;
	padding-bottom: 10px;
}

.member .member-text h2 span {
	color: #fff;
}

.member .member-text a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	text-transform: uppercase;
	border: 2px solid #FFF;
	padding: 6px 16px;
	height: 40px;
	border-radius: 50px;
	line-height: 26px;
}

.member .member-text a:hover {
	background-color: #1eb1cc;
	color: #fff;
	border-color: #1eb1cc;
}


#plan-main {
	width: 100%;
	display: inline-block;
}

.plan-main-text {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.plan-main-text h3 {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: .96px;
	text-transform: uppercase;
	padding-bottom: 15px;
	color: #1eb1cc;
}

.plan-main-text p {
	font-size: 16px;
	line-height: 26px;
	padding-top: 25px;
}

.plan .card {
	width: 100%;
	height: 350px;
	display: inline-block;
	transition: all 0.2s;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	background-color: #4c2f70;
	margin-top: 100px;
}

.plan .plan-text {
	width: 100%;
	display: inline-block;
	padding: 50px;
	text-align: justify;
}


.plan-text h3 {
	font-size: 25px;
	padding-bottom: 10px;
	color: #fff;
}

.plan-text p {
	font-size: 15px;
	color: #fff;
}

.plan-text a {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border: 2px solid #fff;
	padding: 4px 10px;
	border-radius: 50px;
	line-height: 26px;
}

.plan-text a:hover {
	background-color: #fff;
	color: #4c2f70;
	border-color: #fff;
}


.plan .card-a {
	width: 100%;
	height: 350px;
	display: inline-block;
	transition: all 0.2s;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	background-color: #f8f8f8;
	margin-top: 100px;
}

.plan .plan-text-a {
	width: 100%;
	display: inline-block;
	padding: 50px;
	text-align: justify;
}


.plan-text-a h3 {
	font-size: 25px;
	padding-bottom: 10px;
	color: #222;
}

.plan-text-a p {
	font-size: 15px;
	color: #222;
}

.plan-text-a a {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #222;
	text-transform: uppercase;
	border: 2px solid #222;
	padding: 4px 10px;
	border-radius: 50px;
	line-height: 26px;
	margin-top: 28px;
}

.plan-text-a a:hover {
	background-color: #fff;
	color: #222;
	border-color: #fff;
}



/******* benefit main *********/


#benefit-main {
	width: 100%;
	display: inline-block;
	background: url(../img/bg/tidy-hall-with-white-coch.jpg)
}

#benefit-main .section-title h3 {
	color: #1eb1cc;
}

#benefit-main .section-title p {
	max-width: initial;
	padding-top: 20px;
	color: #e5e5e5;
}

.benefit-bg {
	background-color: #fff;
	padding: 30px 15px;
	margin-bottom: 60px;


}

.benefit-text {
	width: 100%;
	display: inline-block;
	padding: 45px 10px;
}

.benefit-text h3 {
	font-size: 30px;
}

.benefit-text h4 {
	font-size: 22px;
	line-height: 30px;
	padding-bottom: 10px;
}

.benefit-text p {
	font-size: 16px;
	text-align: justify;
}



.benefit-img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.benefit-img img {
	width: 100%;
	transform: scale(1);
	transition: all ease 0.8s;
}

.benefit-img img:hover {
	transform: scale(1.1);
}

.icon-1 {
	width: 60px;
	display: inline-block;
	position: absolute;
	bottom: -30px;
	left: -15px;
	padding: 12px 12px 0px 2px;
	background-color: #333;
	border-top-right-radius: 40px;
}

.icon-2 {
	width: 60px;
	display: inline-block;
	position: absolute;
	bottom: -30px;
	right: -15px;
	padding: 12px 2px 0px 12px;
	background-color: #333;
	border-top-left-radius: 40px;
}



#superb-main {
	width: 100%;
	display: inline-block;
	padding-top: 100px;

}

#superb-main h2 {
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	padding-bottom: 70px;
}

.superb-img {
	width: 100%;
	display: inline-block;
}

.superb-img img {
	width: 100%;
	max-width: 700px;
}


.superb-text {
	width: 100%;
	display: inline-block;
	margin-top: 15px;

}

.superb-text ul li {
	display: block;
	padding: 23px 0px 23px 70px;
	/* padding: 14px 0px 0px 70px; */
	position: relative;
}

.superb-text ul li a {
	font-size: 20px;
	color: #313131;
}



.superb-text .arrow {
	transform: rotate(270deg);
	cursor: pointer;
	position: absolute;
	top: 30px;
	left: 40px;
}

.superb-text .arrow span {
	display: block;
	width: 13px;
	height: 13px;
	border-bottom: 4px solid #eb7921;
	border-right: 4px solid #eb7921;
	transform: rotate(45deg);
	margin: -15px;
	animation: animate 2s infinite;
}

.superb-text.arrow span:nth-child(2) {
	animation-delay: -0.2s;
}

.superb-text .arrow span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-10px, -10px);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: rotate(45deg) translate(10px, 10px);
	}
}


.Superb-area {
	width: 100%;
	display: inline-block;
}

.Superb-area .Superb-box {
	width: 100%;
	display: inline-block;
	background-color: #fffbf6;
	border-radius: 135px;
	margin-bottom: 100px;
	min-height: 263px;
	position: relative;
	/* box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
	/* box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px; */
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -25px;
}

.Superb-area .Superb-box .Superb-text {
	width: 100%;
	display: inline-block;
	padding: 45px 380px 30px 50px;
	position: relative;
	z-index: 99;
}

.Superb-area .Superb-box .Superb-text h3 {
	font-size: 35px;
	text-transform: capitalize;
	color: #313131;
	padding-bottom: 10px;
}

.Superb-area .Superb-box .Superb-text p {
	font-size: 17px;
	line-height: 24px;
}

.Superb-area .Superb-box .Superb-img {
	width: 100%;
	display: inline-block;
	position: absolute;
	top: -15px;
	right: 70px;
	text-align: right;
}

.Superb-area .Superb-box .Superb-img img {
	width: 100%;
	max-width: 300px;
	border-bottom-RIGHT-radius: 120px;
	border-top-left-radius: 120px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.Superb-area .Superb-box .Superb-img-left {
	width: 100%;
	display: inline-block;
	position: absolute;
	top: -15px;
	left: 70px;
}

.Superb-area .Superb-box .Superb-img-left img {
	width: 100%;
	max-width: 300px;
	border-bottom-left-radius: 120px;
	border-top-right-radius: 120px;
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}


.Superb-area .Superb-box .Superb-text-left {
	width: 100%;
	display: inline-block;
	padding: 45px 30px 30px 390px;
	position: relative;
	z-index: 99;
}

.Superb-area .Superb-box .Superb-text-left h3 {
	font-size: 35px;
	text-transform: capitalize;
	color: #313131;
	padding-bottom: 10px;
}

.Superb-area .Superb-box .Superb-text-left p {
	font-size: 17px;
	line-height: 24px;
}


.Superb-area .Superb-box .box-1 {
	padding: 55px 380px 30px 75px;
}

.Superb-area .Superb-box .box-2 {
	padding: 57px 30px 30px 390px;
}

.Superb-area .Superb-box .box-3 {
	padding: 65px 380px 30px 75px;
}

.box-4 {

	padding: 57px 30px 30px 390px !important;
}

.box-5 {
	padding: 65px 380px 30px 75px !important;
}

.box-6 {
	padding: 57px 30px 30px 390px !important;
}



/*------------------------------
    10. packages Area CSS
--------------------------------*/


.packages {
	display: flex;
	align-items: center;
	justify-content: center;
}



.packages-card {
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background: #fff;
	transition: all 0.5s ease;
	cursor: pointer;
	user-select: none;
	z-index: 10;
	overflow: hidden;
}

.packages-card .backgroundEffect {
	bottom: 0;
	height: 0px;
	width: 100%;
}

.packages-card:hover {
	color: #fff;
	transform: scale(1.025);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px;
}

.packages-card:hover .backgroundEffect {
	bottom: 0;
	height: 450px;
	width: 100%;
	position: absolute;
	z-index: -1;
	background: #88a43e;
	animation: popBackground 0.3s ease-in;
}

@keyframes popBackground {
	0% {
		height: 20px;
		border-top-left-radius: 50%;
		border-top-right-radius: 50%;
	}

	50% {
		height: 80px;
		border-top-left-radius: 75%;
		border-top-right-radius: 75%;
	}

	75% {
		height: 160px;
		border-top-left-radius: 85%;
		border-top-right-radius: 85%;
	}

	100% {
		height: 420px;
		border-top-left-radius: 100%;
		border-top-right-radius: 100%;
	}
}

.packages-card .pic {
	position: relative;
}

.packages-card .pic img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	overflow: hidden;
}

.packages-card .date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 70px;
	background-color: #88a43e;
	color: white;
	position: absolute;
	bottom: 0px;
	transition: all ease 0.2s;
}

.packages-card .date .day {
	font-size: 35px;
	font-weight: 600;
}

.packages-card:hover .date {
	color: #88a43e;
	background-color: #fff;
}



.packages-card .content {
	padding: 0 20px;
}


.content h3 {
	font-size: 25px;
	line-height: 30px;
	padding-top: 20px;
	color: #88a43e;
}

.packages-card:hover .content h3 {
	color: #fff;
}

.packages-card .content h4 {
	color: #88a43e;
	padding-top: 15px;
	font-size: 20px;

}

.packages-card:hover .content h4 {
	color: #fff;

}

.content ul.icons-gap {
	width: calc(50px - 100%);
}

.content ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.content ul li img {
	width: 35px;
	/* border: 1px solid #313131; */
	border-radius: 50%;
	padding: 3px;
	transition: all ease 0.5s;
	margin-right: 10px;
}

.packages-card:hover .content ul li img {
	/* border: 1px solid #fff; */
	background-color: #fff;
}



/*-------------------------
    11. Gallery Area CSS
--------------------------*/


.gallery__menu {
	margin-bottom: 30px;
}

.gallery__menu button {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	color: #333333;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	margin: 0 16px 0;
	padding: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.gallery__menu .dropdown{
	display: inline-block;
}
.gallery__menu button.is-checked, .gallery__menu .dropdown button:hover{
	border-bottom: none;
}

.gallery__menu button.is-checked, .gallery__menu .dropdown .dropdown-item .dropdown-item button:hover{
	border-bottom: none !important;
} 

.dropdown-item:focus, .dropdown-item:hover{
	background-color: transparent;
}
.dropdown-menu{
	left: 15px !important;
}

.gallery__menu button.is-checked,
.gallery__menu button:hover {
	border-bottom: 1px solid #eb7921;
	color: #eb7921;
	outline: medium none;
}

.portfoloi {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 20px;
}

/*.portfoloi:before,*/
/*.portfoloi:after,*/
/*.portfoloi .portfoloi-content:before,*/
/*.portfoloi .portfoloi-content:after {*/
/*	content: "";*/
/*	width: 50%;*/
/*	height: 50%;*/
/*	background: rgba(0, 0, 0, 0.8);*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	opacity: 0;*/
/*	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";*/
/*	-webkit-transition: all 0.5s ease 0s;*/
/*	transition: all 0.5s ease 0s;*/
/*}*/

/*.portfoloi:after {*/
/*	top: 50%;*/
/*}*/

/*.portfoloi:hover:after {*/
/*	top: 0;*/
/*	opacity: 1;*/
/*	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";*/
/*}*/

/*.portfoloi:hover:before {*/
/*	left: 50%;*/
/*	opacity: 1;*/
/*	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";*/
/*}*/

.portfoloi .portfoloi-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index: 1;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.portfoloi:hover .portfoloi-content {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.portfoloi .portfoloi-content:before,
.portfoloi .portfoloi-content:after {
	top: 0;
	left: 50%;
	z-index: -1;
}

.portfoloi:hover .portfoloi-content:before {
	top: 50%;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.portfoloi .portfoloi-content:after {
	top: 50%;
}

.portfoloi:hover .portfoloi-content:after {
	left: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.portfoloi__inner {
	bottom: 0;
	left: 0;
	padding-bottom: 50px;
	padding-left: 30px;
	padding-right: 30px;
	position: absolute;
	text-align: left;
}

.portfoloi__inner h2 {
	margin-bottom: 7px;
}

.portfoloi__inner h2 a {
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
}

.portfoloi__inner p {
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
}

.portfoloi img {
	width: 100%;
	height: auto;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 15px 0;
	margin: 2px 0 0;
	list-style: none;
	font-size: 14px;
	text-align: left;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	transition: all ease 0.2s;
}

.dropdown-menu li {
	padding: 5px 15px;
}

.dropdown-menu li a {
	color: #88a43e;
	letter-spacing: 1px;

}

.dropdown:hover .dropdown-menu {
	display: unset;
}



.pricing-area {
	width: 100%;
	display: inline-block;
	background-color: #e5e5e5;
}


.pricing {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.pricing-box {
	width: 100%;
	display: inline-block;
	max-width: 1000px;
	height: 400px;
	background-color: #fff;
	border-radius: 40px;
	position: relative;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.pricing-text {
	width: 100%;
	display: inline-block;
	text-align: left;
	padding-left: 400px;
	margin-top: 75px;
}

.pricing-img {
	width: 100%;
	display: inline-block;
	position: absolute;
	top: 48%;
	left: -70px;
	transform: translateY(-50%);
	max-width: 400px;
	background-color: #fff;
	border-radius: 40px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	animation: move 2s infinite;
	animation-timing-function: ease-in-out;
}

@keyframes move {
	0% {
		top: 48%;
	}

	50% {
		top: 53%;
	}

	100% {
		top: 48%;
	}
}


.pricing-img img {
	width: 100%;
	max-width: 400px;
	padding: 30px;
}

.pricing-text h2 {
	font-size: 40px;
	letter-spacing: 1px;
	color: #1eb1cc;
	font-weight: 800;
	padding-bottom: 15px;
}

.pricing-text ul li {
	padding: 5px 0;
	font-size: 17px;
}

.pricing-text ul li i {
	padding-right: 10px;
}

.pricing-text ul li a {
	color: #1eb1cc;
	font-weight: 600;
	font-size: 17px;
	margin-top: 10px;
	display: inline-block;
}

.pricing-text ul li a:hover {
	color: #313131;
}




/*------------------------
    13. Blog Area CSS
-------------------------*/


.read-more {
	font-size: 26px;
	display: block;
	line-height: 1;
}


.sent-btn {
	display: inline-block;
	height: 45px;
	background: #88a43e;
	padding: 10px 30px;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 16px;
	position: relative;
	vertical-align: middle;
	overflow: hidden;
	border: 1px solid #88a43e;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	margin-top: 20px;
}

.sent-btn:hover {
	background: #fff;
	color: #303030;
}

/*accomodation area start*/

.accomodation-area {
	width: 100%;
	display: inline-block;
}

.accomodation-area .section-title p {
	max-width: none;
	padding-top: 10px;
	font-size: 18px;
}

.studio {
	width: 100%;
	display: inline-block;
}

.studio-room {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.studio-room img {
	width: 100%;
	transition: 0.6s all ease-in-out;
}

.studio-room:hover img {
	transform: scale(1.1);
}



.studio-content {
	width: 100%;
	display: inline-block;
	background-color: #fff;
	position: absolute;
	max-width: 506px;
	bottom: -126px;
	right: 0px;
	transform: translateY(-50%);
	padding: 30px;
	box-shadow: rgba(149, 219, 84, 0.15) 1.95px 1.95px 2.6px;
}

.studio-content h4 {
	font-size: 30px;
	letter-spacing: 1px;
	color: #88a43e;
	position: relative;
	padding-bottom: 8px;
}

.studio-content h4:after {
	content: "";
	position: absolute;
	top: 16px;
	left: 96px;
	width: 25px;
	height: 3px;
	background-color: #88a43e;
}

.studio-content p {
	text-align: justify;
	font-size: 16px;
	padding-bottom: 5px;
}

.studio-content ul li {
	display: inline-block;
	padding: 8px;
	margin-right: 8px;
	border: 1px solid #6c757d;
	border-radius: 50%;
}

.studio-content ul li img {
	width: 100%;
	max-width: 20px;

}


.bedroom-content {
	left: 0px;
	bottom: -113px;
	box-shadow: rgba(149, 219, 84, 0.15) -2.05px 1.95px 2.6px;
}

.bedroom-content h4:after {
	content: "";
	position: absolute;
	top: 16px;
	left: 182px;
	width: 25px;
	height: 3px;
	background-color: #88a43e;
}


/* career area start */


#career-main {
	width: 100%;
	display: inline-block;
	background-color: #f2f2f2;
}

.career {
	width: 100%;
	display: inline-block;
	padding-bottom: 40px;
}

.career .career-text {
	width: 100%;
	display: inline-block;
}

.career h3 {
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: .96px;
	text-transform: uppercase;

}

.career p {
	line-height: 26px;
	letter-spacing: .256px;
	text-align: justify;
}

.file-a {

	padding-top: 6px;
}

.option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

/*----------------------------
     14. testimonial-area Css
-----------------------------*/



.testimonial-area {
	width: 100%;
	display: inline-block;
	background: url(./img/testimonial/Untitled-2.png) no-repeat center center;
	background-size: cover;
	height: 630px;
	position: relative;

}

.slick-slider {
	padding-left: 27px;
}

.testimonials-slider .testimonial-details {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.testimonials-slider video {
  border-radius: 10px;
  outline: none;
   width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);  
}

.testimonial-details img {
	width: 100px;
	min-height: 100px;
	border-radius: 50%;
	margin: 0 auto;
}

.testimonial-details h3 {
	margin: 25px 0 10px;
	color: #eb7921;
}

.testimonial-details span {
	display: block;
	color: #ffbf00;
	margin: 20px 0;
}

.testimonial-details p {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;

}



.testimonial-area .slick-prev:before,
.slick-next:before {
	color: #eb7921;
	font-size: 40px;
}

.slick-prev {
	left: 0;
	z-index: 1;
}

.slick-next {
	right: 0;
}


/*-------------------------
     14. Brand Area CSS
---------------------------*/
.brand-area {
	background-color: #fff;
	padding: 0 0 50px;
}


.brand-area .row{
	align-items: center;
}

.brand-image {
	width: 100%;
	display: inline-block;
}

.brand-image .brand-text h4 {
	line-height:30px;
	font-size: 22px;
}

.brand-image .brand-text a{
	padding:8px 20px;
	background-color: #1eb1cc;
	color: #fff;
	display: inline-block;
	margin-top: 6px;
}

.brand-content {
	display: flex;
	align-items: center;
}

.brand-logo {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.brand-logo img {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 3/2;
	object-fit: contain;
}

.brand-logo.ktdc img{
	max-width: 200px;
}

/*--------------------------------
    15.1 Footer Top Area CSS 
----------------------------------*/
.footer-title>h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 25px;
}

.footer-title img {
	width: 100%;
	max-width: 200px;
	margin-bottom: 25px;
}

.single-footer-widget>p {
	color: #e4e4e4;
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 25px;
	text-align: justify;
}

.contact-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-info>ul>li {
	font-size: 14px;
	list-style: none;
	-moz-box-flex: initial;
	-webkit-box-flex: initial;
	display: flex;
	align-items: baseline;
	justify-content: normal;
	line-height: 25px;
	margin-bottom: 5px;
	color: #e4e4e4;

}

.contact-info>ul>li>a {
	color: #e4e4e4;
}

.contact-info>ul>li>a:hover {
	color: #eb7921;
}

.contact-info ul li i {
	color: #fff;
	margin-right: 8px;
}

.link-widget>li {
	list-style: none;
	display: block;
	margin-bottom: 10px;
}

.link-widget>li>a {
	font-size: 14px;
	line-height: 25px;
	color: #e4e4e4;
	padding-left: 12px;
	position: relative;
	display: block;
}

.link-widget>li>a:before {
	content: '\f105';
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -2px;
	display: block;
	font-size: 15px;
}

.link-widget>li>a:hover {
	margin-left: 10px;
	color: #eb7921;
}



/*-------------------------------
    15.2 Footer Bottom Area CSS 
--------------------------------*/
.footer-bottom-area {
	background-color: #181818;
	padding: 20px 0;
}

.footer-copyright>p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
	line-height: 30px;
}

.footer-copyright>p>a {
	color: #88a43e;
}

.footer-copyright>p>a:hover {
	text-decoration: underline;
}

.footer-design-by>p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
	line-height: 30px;
}

/*------------------------------
    16. Breadcrumb Area CSS
--------------------------------*/
.breadcrumb-banner-area {
	background: rgba(0, 0, 0, 0) url("../img/bg/bg1.jpg") no-repeat scroll 0 0;
	color: #ffffff;
	padding: 100px 0;
	position: relative;
	background-position: 50% 27%;
	background-size: cover;
}

.breadcrumb-banner-area:after {
	background: rgba(45, 62, 80, 0.5) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.breadcrumb-text {
	z-index: 9;
	position: relative;
}

.breadcrumb-text h1 {
	line-height: 25px;
	text-transform: uppercase;
	font-size: 36px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 20px;
}

.breadcrumb-bar .breadcrumb {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	line-height: 12px;
	margin-bottom: 0;
	padding: 15px 0 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.breadcrumb-bar li {
	color: #ffffff;
	font-size: 14px;
	line-height: 12px;
	margin: 0 16px;
	position: relative;
	text-transform: uppercase;
}

.breadcrumb-bar .breadcrumb>li:first-child:before {
	border-radius: 50%;
	content: "\f2fb";
	display: inline-block;
	font-family: "Material-Design-Iconic-Font";
	font-size: 18px;
	position: absolute;
	right: -22px;
	top: 0px;
}

.breadcrumb-bar a {
	color: #ffffff;
}

/* .event-area{
	background-color: #f8f8f8;
} */

/*--------------------------
    18. Location Page CSS
----------------------------*/

.location-area .section-title h3 {
	font-size: 45px;
}


.location-menu {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-bottom: 30px;
}



.location-menu button {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	color: #333333;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	margin: 0 16px 16px;
	padding: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}



.location-menu button.is-checked,
.location-menu button:hover {
	border-bottom: 1px solid #88a43e;
	color: #88a43e;
	outline: medium none;
}



.location-img {
	position: relative;
	overflow: hidden;
	z-index: 9;
}

.location-img:before {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	width: 100%;
}

.single-location:hover .location-img:before {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	visibility: visible;
}

.location-img img {
	width: 100%;
}

.single-location {
	width: 100%;
}

.single-location a h3 {
	background: #313131;
	padding: 25px 5px 0 5px;
	width: 100%;
	font-size: 23px;
	font-weight: 500;
	color: #f9f9ff;
	text-align: center;
	text-transform: uppercase;
	height: 80px;
}

.margin-t {
	padding-top: -10px;
}




/*destination-inner page*/


.destination {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.destination-img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.destination-img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: all ease 0.9s;
	transform: scale(1);
}

.destination-img img:hover {
	transform: scale(1.1);
	transition: all ease 0.9s;
}

.destination-small-img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.destination-small-img img {
	width: 100%;
	transition: all ease 0.9s;
	transform: scale(1);
}

.destination-small-img img:hover {
	transform: scale(1.1);
	transition: all ease 0.9s;
}

.destination-area .destination p {
	font-size: 18px;
	text-align: justify;
}

.destination-facilities {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.destination-facilities ul li {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	padding: 20px 0px;
	margin-top: 20px;
	margin-right: 20px;
	transition: all ease 0.3s;
	/* border-bottom: 1px solid #ddd; */
	border-left: 1px solid #ddd;
}

.destination-facilities ul li:hover {
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	border-left: none;
}

.destination-facilities ul li:nth-child(3n-2) {
	border-left: none;
}

.destination-facilities ul li img {
	width: 20px;
	padding-right: 5px;
}


.destination-place {
	width: 100%;
	display: inline-block;
	text-align: left;
}

.destination-place h3 {
	font-size: 32px;
	color: #021832;
	text-transform: capitalize;
	font-weight: 700;
	padding-bottom: 20px;
}

.destination-place ul li {
	padding: 9px 0;
	text-transform: uppercase;
}

.destination-place ul li i {
	padding-right: 5px;
	color: #495c15;
}

.destination-map h3 {
	font-size: 32px;
	color: #021832;
	text-transform: capitalize;
	font-weight: 700;
	padding-bottom: 20px;
}


/*---------------------------------
    19. Contact Page CSS
----------------------------------*/


.contact-form-title>h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
}

.contact-form-title p {
	font-size: 16px;
	line-height: 25px;
	color: #353535;
	max-width: 571px;
}

.contact-form .single-input>input {
	border: 1px solid #a7a7a7;
	font-size: 16px;
	line-height: 30px;
	color: #656565;
	height: 50px;
	margin-top: 15px;
}

.contact-form .single-input>textarea {
	border: 1px solid #a7a7a7;
	font-size: 16px;
	line-height: 32px;
	color: #656565;
	height: 190px;
	margin-top: 15px;
}

.contact-form .single-input>select {
	border: 1px solid #a7a7a7;
	font-size: 16px;
	background-color: #fff;
	color: #656565;
	height: 50px;
	margin-top: 15px;
}

.contact-form p.form-messege {
	padding-top: 15px;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
}

.contact-form p.form-messege.success {
	color: #00AC1F;
}

.contact-form p.form-messege.error {
	color: #EF785A;
}

.dis-btn-1 {
	display: none;
}

.gap-01 {
	padding: 0 15px;
}