/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('HelveticaNeue-Roman.woff2') format('woff2'),
        url('HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Google Font */
    --helvetica-neue: 'Helvetica Neue', sans-serif;
    
    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #E2D6C0;
    --secondary: #717171;
    --tertiary: #B99F98;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--helvetica-neue);
    font-size: 26px;
    font-weight: 300;
    line-height: normal;
    background:var(--white);
    text-rendering: optimizeLegibility;
    color: var(--secondary);
    overflow-x:hidden;
    position: relative;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
section, .section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}
a, button, img {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button, button:focus, .btn:focus {
	outline: none;
	box-shadow: none;
	border: none;
}
button {
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}

ol li, ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    border: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
  background: var(--tertiary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tertiary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--tertiary);
  color: var(--white);
  text-shadow: none;
}


/* Page Theme Start */
p {
	font-size: 26px;
	letter-spacing: .3px;
	font-weight: 300;
    line-height: 1.35;
}
h1 {
	line-height: .98;
	letter-spacing: 24.5px;
	font-weight: 200;
}

.white-bg {
    position: relative;
    z-index: 5;
}
.white-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
}
.section-mt {
    margin-top: 110px;
}
/* Page Theme End */


/* Bootstrap Customized Class Start */
.fs-1 {
	font-size: 200px !important;
}

.fs-200 {
    font-size: 200px !important;
} 

.fs-2 {
	font-size: 122px !important;
	line-height: 0.98;
	letter-spacing: 13px;
	font-weight: 200;
}
/* Bootstrap Customized Class End */

/* Scroll BTN Start */
.scroll-btn {
	width: 145px;
	height: 145px;
	background-color: var(--primary);
	justify-content: center;
	align-items: center;
	display: flex;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all .3s ease-in-out;
}
.scroll-btn img {
    max-width: 60px;
}
.scroll-btn:hover {
    background-color: var(--tertiary);
}

.scrollDown {
    position: fixed;
	top: calc(100vh - 145px);
    right: 0vw;
	z-index: 9;
}

.scrollTop {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 9;
}
/* .scrollTop.active {
	opacity: 1;
    visibility: visible;
} */
/* Scroll BTN End */


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header-area {
	min-height: 145px;
	background-color: #fff;
}

.header-wrapper {
	max-width: 1870px;
	width: 100%;
	margin: auto;
	padding: 25px;
}
.menu-hamburger {
    max-width: 40px;
}

.offcanvas-menu {
	z-index: 15;
	margin-top: 35px;
	margin-right: 35px;
	padding: 15px;
	background-color: #fff;
	border-radius: 4px;
	transition: all .3s ease-in-out;
}
.offcanvas-menu:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.menu-content .offcanvas.offcanvas-top {
	height: max-content;
}
.menu-inner {
	max-width: 1920px;
	width: 100%;
	margin: auto;
    padding: 0 25px;
}
.menu-content .top-bar {
    margin-bottom: 38px;
}
.top-bar {
	height: 31px;
}
.top-bar span {
	max-width: 86%;
	height: 100%;
	display: inline-block;
	background-color: var(--primary);
	width: 100%;
	text-align: center;
}
.logo-text {
    font-size: 16px;
    color: var(--primary);
}
.menu-logo {
    max-width: 152px;
}
.menu-widget-item {
	border-right: 2px solid var(--tertiary);
	padding: 0 25px 35px;
	flex: max-content;
}
.menu-widget-item:nth-last-child(2), .menu-widget-item:last-child {
    border-right: none;
}
.menu-widget-item h5 {
	font-size: 22px;
	font-weight: 700;
	color: var(--tertiary);
	margin-bottom: 24px;
	text-transform: uppercase;
}
.menu-widget-item ul li a {
	font-size: 20px;
	line-height: 1.1;
	font-weight: 300;
	color: var(--secondary);
	margin-bottom: 22px;
	display: inline-flex;
	letter-spacing: .1px;
}
.menu-widget-item:nth-last-child(2) ul li a {
    font-size: 22px;
    line-height: 1;
}
.menu-widget-item ul li:last-child a {
    margin-bottom: 0;
}
.menu-widget-item ul li a:hover {
    color: var(--tertiary);
}
.menu-close img {
    max-width: 50px;
}
.header-para {
	padding-top: 25px;
}
.header-logo-thumb {
	padding: 45px 0 70px;
}
.header-logo-thumb img {
    max-width: 250px;
}
.logo {
    max-width: 275px;
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 14;
}
.sticky-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* ======================================= */
/* :: 5.0 Hero + Welcome Section CSS Start */
/* ======================================= */
.bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--primary);
}
.header-hero-bg {
    min-height: 1280px;
}


.welcome-wrapper {
	background-color: rgba(226, 214, 192, 0.95);
	padding: 120px 95px 180px;
	margin-top: -225px;
}
.welcome-gallery-row.white-bg::before {
	height: calc(100% - 135px);
	top: auto;
	bottom: 0;
}
.welcome-wrapper h1 {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    white-space: normal;
}
.hero-para-content {
	margin-top: -480px;
	padding-bottom: 100px;
	max-width: 685px;
	margin-left: auto;
}
.hero-para {
    margin-bottom: 15px;
}
.hero-para:last-child {
    margin-bottom: 0;
}



.welcome-gallery {
	margin-top: -140px;
	position: relative;
	z-index: 15;
}
.welcome-gallery-row {
    gap: 45px;
}
.single-img {
    width: 25%;
    height: 300px;
    overflow: hidden;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.single-img:hover {
    background-color: var(--tertiary);
}
.single-img img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}
.single-img:hover img {
    transform: scale(1.03);
}
.lg-toolbar {
	background-color: transparent;
	display: flex;
    flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
}
.lg-toolbar .lg-icon {
	height: 50px;
	line-height: 1;
	padding: 0;
	width: 50px;
    margin: 50px;
}
.lg-toolbar .lg-close::after {
	content: "";
	background-image: url("../imgs/icons-objs/close.svg");
	width: 100%;
	height: 100%;
	display: block;
	background-size: 50px;
	background-repeat: no-repeat;
    filter: brightness(200);
}
.lg-download {
	display: none;
}
#lg-counter {
	font-size: 20px;
	padding: 0;
	margin: 50px;
	color: #fff;
}
.lg-sub-html {
	background-color: #E2D6C0;
	bottom: auto;
	color: #EEE;
	font-size: 20px;
	padding: 60px 40px 10px;
	top: 0;
	height: 145px;
    z-index: -1;
}
.lg-sub-html p {
	font-size: 20px !important;
	letter-spacing: .3px;
	font-weight: 400;
	color: #fff;
	width: 55vw;
	margin: auto;
}
.lg-backdrop {
    background-color: rgba(255, 255, 255, 0.9);
}
.lg-actions .lg-next, .lg-actions .lg-prev {
	color: var(--primary);
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
	color: var(--tertiary);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
	width: auto !important;
	height: 73vh !important;
}
/* ===================================== */
/* :: 5.0 Hero + Welcome Section CSS End */
/* ===================================== */

/* =============================== */
/* :: 6.0 VideoPopup Section CSS Start */
/* =============================== */
.video-popup-section {
    padding: 140px 0;
}
.video-popup-bg {
	min-height: 915px;
	position: relative;
	z-index: 15;
}
.video-popup-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: -1;
    transition: all .3s ease-in-out;
}
.video-popup-bg:hover::after {
    opacity: .25;
}
.popup-active img {
    max-width: 220px;
}
/* =============================== */
/* :: 6.0 VideoPopup Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Contact Section CSS Start */
/* =============================== */
.contact-wrapper {
    padding: 75px 95px;
    background-color: rgba(113, 113, 113, 0.1);
}
.contact-widget {
    padding: 40px 0 30px;
    border-bottom: 2px solid var(--white);
}
.contact-widget:first-child {
    padding-top: 0;
}
.contact-widget:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.contact-widget h5, .contact-widget p, .contact-widget p a, .contact-alert, .contact-widget h5 a, .job-descriptions-info h5, .job-descriptions-info ul li {
    font-size: 26px;
    color: var(--secondary);
    letter-spacing: .3px;
    line-height: 35px;
}
.contact-alert {
    font-size: 20px;
}
.contact-widget p a:hover, .contact-widget h5 a:hover {
    color: var(--tertiary);
}



.contact-form-heading, .jobs-forms-wrapper .job-title {
	font-size: 36px;
	color: var(--tertiary);
	text-transform: uppercase;
}
.single-input {
    margin-bottom: 30px;
}
.input, .label {
    width: 100%;
    height: 40px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--secondary);
    background-color: transparent;
    border-bottom: 2px solid var(--white);
    resize: none;
    transition: all .3s ease-in-out;
}
.label {
    color: var(--tertiary);
    border-bottom: none;
}
.input::placeholder {
    color: var(--tertiary);
    font-size: 26px;
    opacity: 1;
}
.input:focus {
    border-bottom: 2px solid var(--secondary);
}
.form-submit {
    margin-top: 290px;
    border-top: 2px solid var(--white);
}
.submit-btn {
	width: 130px;
	height: 46px;
	padding: 8px 16px 9px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--tertiary);
	color: var(--white);
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .3px;
    transition: all .3s ease-in-out;
}
.submit-btn:hover {
    background-color: var(--secondary);
}
/* =============================== */
/* :: 7.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Footer CSS Start */
/* =============================== */
.footer-text {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: .3px;
    color: var(--tertiary);
    padding: 60px 0;
}
.footer-text span {
	font-size: 20px;
	color: var(--secondary);
	font-weight: 300;
}
.philosopher-symbol {
	position: absolute;
	bottom: 0;
	left: 250px;
	max-width: 465px;
	z-index: 100;
}
/* =============================== */
/* :: 9.0 Footer CSS End */
/* =============================== */





/* ---------- Your Stay Page CSS Start ---------- */

/* =============================================================== */
/* :: 10.0 ColorBGHero + Gallery-2 + StayContent Section CSS Start */
/* =============================================================== */
.cbh-wrapper {
	min-height: 1000px;
	padding: 100px 95px;
	background-color: var(--primary);
}



.gallery-2-section {
	margin-top: -80px;
}
.gallery-2-section.white-bg::before {
	top: auto;
	bottom: 0;
	height: calc(100% - 225px);
}
.gallery-popup-2 {
	gap: 55px;
}
.gallery-popup-2 .single-img {
	width: 33.33333%;
	height: 400px;
}



.stay-content-section {
    padding: 200px 0 135px;
}
.stay-content-wrapper {
    max-width: 1440px;
}
.single-content {
    padding: 30px 0 100px;
    border-top: 2px solid var(--primary);
}
.single-content h5 {
    color: var(--tertiary);
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .3px;
    line-height: 1;
    margin-bottom: 15px;
}
.single-content .text-decoration-underline {
    text-underline-offset: 8px;
}
.single-content a {
    color: var(--secondary);
}
.single-content a:hover {
    color: var(--tertiary);
}
.stay-thumb {
	position: absolute;
	right: 0;
	width: 50%;
	height: 625px;
	padding-left: 24px;
	margin-top: 83px;
}
.stay-thumb img {
    width: 100%;
    height: 100%;
}
/* ============================================================= */
/* :: 10.0 ColorBGHero + Gallery-2 + StayContent Section CSS End */
/* ============================================================= */

/* ---------- Your Stay Page CSS Start ---------- */








/* ---------- jobs.htmls + jobs-forms.html Page CSS Start ---------- */

/* =================================================== */
/* :: 10.0 jobs.htmls + jobs-forms.html Page CSS Start */
/* =================================================== */
.cph-wrapper {
	background-color: var(--primary);
	padding: 22px 95px;
	margin: 35px 0;
}



.jobs-section {
    padding: 100px 0 140px;
}
.jobs-wrapper {
    gap: 54px;
}
.single-job-card {
	width: calc(50% - 27px);
	padding: 50px;
	min-height: 206px;
	height: 100%;
	background-color: rgba(185, 159, 152, 0.1);
	transition: all .3s ease-in-out;
}
.single-job-card:hover {
	background-color: rgba(185, 159, 152, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.job-title {
    font-size: 36px;
    letter-spacing: .6px;
    font-weight: 300;
    color: var(--tertiary);
}
.single-job-card p {
    font-weight: 500;
    color: var(--secondary);
}





.jobs-forms-section {
	padding: 130px 0 150px;
}
.jobs-forms-wrapper {
    padding: 95px;
    background-color: rgba(185, 159, 152, 0.1);
}
.job-descriptions-info {
    line-height: 1.45;
}
.job-descriptions-info ul li {
	position: relative;
	padding-left: 14px;
}
.job-descriptions-info ul li::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--secondary);
}
.jobs-forms-wrapper .contact-form-heading {
	max-width: 650px;
}
.doc-input {
    gap: 70px;
}
.doc-input-inner {
    width: 100%;
}
.doc-input .label {
    height: auto;
}
.doc-input label .text {
    cursor: pointer;
}
.doc-box {
    width: 100%;
    height: 355px;
    padding: 45px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    background-color: var(--white);
    margin-top: 22px;
    cursor: pointer;
}
.upoload-icon {
    max-width: 52px;
    margin-bottom: 70px;
}
.doc-box-heading {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .3px;
}
.doc-box-alert {
    font-size: 20px;
}
/* ================================================= */
/* :: 10.0 jobs.htmls + jobs-forms.html Page CSS End */
/* ================================================= */

/* ---------- jobs.htmls + jobs-forms.html Page CSS End ---------- */








/* ---------- gallery page Page CSS End ---------- */

/* =============================== */
/* :: 11.0 GalleryPage CSS Start */
/* =============================== */
.gallery-page-section {
    padding: 100px 0 170px;
}
.gallery-page-wrapper {
    max-width: 1440px;
}
.gallery-type {
    margin-bottom: 50px;
}
.gallery-type-row, .gallery-img-row {
    gap: 50px;
}
.single-gallery-type, .gallery-img-row .single-img {
	width: calc(25% - 38px);
}
.gallery-img-row .single-img {
	aspect-ratio: 1 /1;
	height: 100%;
}
.gallery-type-heading {
    font-size: 22px;
    color: var(--tertiary);
    letter-spacing: .7px;
    border-top: 2px solid var(--primary);
}
.single-gallery-type.active .gallery-type-heading {
    border-color: var(--tertiary);
}
.gallery-type-heading .icon {
	max-width: 23px;
	margin-top: -5px;
    opacity: 0;
    visibility: hidden;
}
.single-gallery-type.active .gallery-type-heading .icon {
    opacity: 1;
    visibility: visible;
}

.gallery-imgs {
    border-top: 2px solid var(--primary);
}
.img-type-title {
    font-size: 36px;
    padding: 32px 0;
    color: var(--tertiary);
    letter-spacing: .6;
}
.imgs-gallery-expand .icon, .imgs-gallery-minimize .icon {
    max-width: 50px;
}
.single-img:hover .icon img {
    transform: scale(1);
}
/* =============================== */
/* :: 11.0 GalleryPage CSS End */
/* =============================== */
/* ---------- gallery page Page CSS End ---------- */
