/* 
__01.css-utils
__02.typography 
__03.components
__04.globle_class
__05.layout
*/
/***** 01.css-utils start *****/
:root {
	--fontfamily1: "Anderson Grotesk";	
    --fontfamily2: "Domaine Disp Nar";
    --fontfamily3: "Anderson Grotesk2";
	--white: #ffffff;
	--black: #000000;
	--green: #003429;
	--yellow: #c7a462;
	--gray: #ccc2bb;
	--lightgray: #e9ebeb;
	--lightgreen: #0b928f;
	--red: #ff5757;
}

@font-face {
	font-family: "Anderson Grotesk";
	src: url('../fonts/AndersonGrotesk/AndersonGroteskRegular.eot');
	src: url('../fonts/AndersonGrotesk/AndersonGroteskRegular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/AndersonGrotesk/AndersonGroteskRegular.woff2') format('woff2'),
		url('../fonts/AndersonGrotesk/AndersonGroteskRegular.woff') format('woff'),
		url('../fonts/AndersonGrotesk/AndersonGroteskRegular.ttf') format('truetype'),
		url('../fonts/AndersonGrotesk/AndersonGroteskRegular.svg#AndersonGroteskRegular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: "Anderson Grotesk2";
	src: url('../fonts/AndersonGrotesk/AndersonGrotesk-Bold.otf');
  }

@font-face {
	font-family: "Domaine Disp Nar";
	src: url('../fonts/DomaineDispNar/DomaineDispNar-Regular.eot');
	src: url('../fonts/DomaineDispNar/DomaineDispNar-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/DomaineDispNar/DomaineDispNar-Regular.woff2') format('woff2'),
		url('../fonts/DomaineDispNar/DomaineDispNar-Regular.woff') format('woff'),
		url('../fonts/DomaineDispNar/DomaineDispNar-Regular.ttf') format('truetype'),
		url('../fonts/DomaineDispNar/DomaineDispNar-Regular.svg#DomaineDispNar-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/***** css-utils end *****/
/***** 02.typography start *****/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

body {
	font: 500 18px/24px var(--fontfamily1);
	background-color: var(--white);
	color: var(--black);
	position: relative;
}

body.fixed {
	overflow: hidden;
}

li {
	list-style: none;
}

ul.list_icon li {
	display: inline-flex;
	justify-content: center;
	align-items: flex-start;
	gap: 7px;
}

ul.list_icon li::before {
	content: url(../images/list_img.svg);
	width: 20px;
	height: 20px;
	display: inline-block;
}

a {
	color: inherit;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

h1 {
	font: bold clamp(1.75rem, 1.7rem + 0.25vw, 2rem)/clamp(2.125rem, 2.0375rem + 0.4375vw, 2.5625rem) var(--fontfamily2);
	letter-spacing: 2px;
	color: var(--yellow);
}

h2 {
	font: 500 clamp(1.625rem, 1.575rem + 0.25vw, 1.875rem)/clamp(2rem, 1.9rem + 0.5vw, 2.5rem) var(--fontfamily2);
	letter-spacing: 0.5px;
	color: var(--white);
	padding-bottom: 15px;
}

h3 {
	font: 500 clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem)/clamp(1.75rem, 1.6625rem + 0.4375vw, 2.1875rem) var(--fontfamily2);
	letter-spacing: 1px;
	color: var(--green);
	padding-bottom: 15px;
}

h4 {
	font: 500 26px/30px var(--fontfamily2);
	letter-spacing: 1px;
	color: var(--white);
	padding-bottom: 15px;
}

h6 {
	font: bold 18px/27px var(--fontfamily1);
	letter-spacing: 1px;
	color: var(--white);
	margin: 15px 0;
}

p,
li {
	font: 500 16px/25px var(--fontfamily1);
	letter-spacing: 1px;
	color: var(--green);
	margin: 15px 0;
}

.color-white h3,
.color-white p,
.color-white li {
	color: var(--white);
}

.color_green,
.h2-green h2 {
	color: var(--green);
}

.golden-color p,
.golden-color h2 {
	color: var(--yellow);
}


input,
select {
	width: 100%;
	border-radius: 7px;
	background-color: var(--white);
	border: none;
	outline: none;
	padding: 10px 16px 8px !important;
	font: 500 14px/24px var(--fontfamily1) !important;
	height: 50px;
	letter-spacing: 1px;
	color: #233b35;
	display: inline-flex;
	align-items: center;	
}

select {
	appearance: none; 
	-webkit-appearance: none;
	background: 96.5% 50% /23px no-repeat url("../images/down_arrow.png"), var(--white);
}

input:focus,
select:focus {
	outline: 2px solid #579d8d8f;
} 

.gform_ajax_spinner {
	display: none !important;
}

/***** typography end *****/
/***** 03.components start *****/
.primary_btn,
button,
input[type="button"],
input[type="submit"]{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--yellow);
	color: var(--white);
	outline: none;
	padding: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5625rem) calc(clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) - 2px);
	transition: all 0.5s ease-in-out;
	font: bold 17px/20px var(--fontfamily3) !important;
	letter-spacing: 2px;
	clip-path: polygon(0% 15%, 0 0, 15% 0%, 94% 0%, 94% 10px, 100% 10px, 100% 85%, 100% 100%, 85% 100%, 15% 100%, 0 100%, 0% 85%);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
}

.primary_btn2 {
	background: transparent;
	padding: 0;
	width: auto;
	margin: inherit;
	clip-path: none;
}

.primary_btn2:before{
	display: none;
}

input[type="button"],
input[type="submit"]{
	min-height: 48px;
	max-width: fit-content;
	border-radius: 0;
	min-width: 182px;
	border: 2px solid transparent;
}


input[type="button"]:hover,
input[type="submit"]:hover,
.gform_wrapper.gravity-theme .gform_previous_button.button, .gform_wrapper.gravity-theme .gform_save_link.button{
	border-color: var(--yellow);
	background:var(--white);
	color: var(--yellow) !important;
}

.primary_btn::after {
	transition: all 0.5s ease-in-out;
	content: "";
	display: inline-flex;
	width: 25px;
	height: 20px;
	background: center / 28px no-repeat url(../images/btn_icon.svg);
        margin-top: -3px;
}

header .primary_btn::after {
	display: none;
}

.primary_btn:hover::after {
	transform: translateX(5px);
}

.primary_btn::before,
button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
	transition: all 0.5s ease-in-out;
}

.primary_btn:hover::before,
button:hover:before {
	left: 100%;
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--lightgray);
}

::-webkit-scrollbar-thumb {
	background: var(--yellow);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray);
}

::-moz-selection {
	color: var(--white);
	background: var(--gray);
}

::selection {
	color: var(--white);
	background: var(--yellow);
}

img::-moz-selection {
	color: transparent;
	background: transparent;
}

img::selection {
	color: transparent;
	background: transparent;
}

/***** components end *****/
/***** 04.globle_class start *****/

.container {
	max-width: calc(1035px + 15px);
	margin: 0 auto;
	padding: 0 15px;
}

.container-fluid {
	max-width: calc(1200px + 15px);
	margin: 0 auto;
	padding: 0 15px;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-col {
	flex-direction: column;
}

.align-center {
	align-items: center;
}

.align-start {
	align-items: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-space-between {
	justify-content: space-between;
}

.text-center {
	text-align: center;
}

.m-auto {
	margin: auto;
}

.ml-auto {
	margin-left: auto;
}

.relative {
	position: relative;
}

.w-full {
	width: 100%;
}

.w-50 {
	width: 48%;
}

.pt-75 {
	padding-top: 75px;
}

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

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

span.img-bg-color {
	width: 100%;
	height: calc(100% - 5px);
	position: absolute;
	top: 10px;
	left: -10px;
	background-color: var(--yellow);
	z-index: -1;

}


/***** globle class end *****/
/***** 05.layout start *****/

header {
	width: 100%;
	position: relative;
	z-index: 9;
	transition: all 0.5s ease-in-out;
}

.desktop {
	width: 100%;
	transition: all 0.5s ease-in-out;
	padding: 25px 0;
	background: var(--green);
	clip-path: polygon(0 0, 100% 0%, 100% 86%, 0% 100%);
}

header .mobile {
	display: none;
}

header .header_logo {
	width: clamp(11.25rem, 10.8125rem + 2.1875vw, 13.4375rem);
	gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem)
}

header .header_logo .logo:first-child {
	width: 56%;
}

header .header_logo .logo:last-child {
	width: 30%;
}

header .header_logo .logo img {
	object-fit: contain;
	-o-object-fit: contain;
}

header nav {
	width: fit-content;
}

header nav ul {
	width: 100%;
}

header nav li {
	font-size: 12px;
	letter-spacing: 1px;
	color: var(--yellow);
	font-family: var(--fontfamily1);
	text-transform: capitalize;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	margin: 0;
	justify-content: space-between;
	flex-wrap: wrap;
}

header .desktop nav li {
	margin-right: 35px;
}

header .desktop nav li:last-child {
	margin-right: 0;
}

header .mobile li {
	margin-top: 20px;
}

header nav li .contact_btn {
	gap: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
}

header nav li a {
	font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
	letter-spacing: 1px;
	color: var(--white);
	font-family: var(--fontfamily1);
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 0;
}

header nav li a:hover{
	text-decoration: underline;
}

header nav li a.primary_btn:hover{
	text-decoration: none;
}

header nav li a img {
	width: clamp(1.375rem, 1.275rem + 0.5vw, 1.875rem);
	height: clamp(1.375rem, 1.275rem + 0.5vw, 1.875rem);
	display: inline-block;
	object-fit: contain;
	-o-object-fit: contain;
}

header .toggle {
	display: none;
}

footer .booking_place {
	background-color: var(--green);
	padding: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
	margin-bottom: -60px;
	z-index: 2;
	position: relative;
}

footer .booking_place p {
	max-width: 800px;
	margin: 0 auto;
}

footer .footer_bottom_text {
	background-color: var(--green);
	width: 100%;
}

footer .map {
	height: 520px;
	width: 100%;
}

footer .footer_bottom_text {
	padding: 40px 15px;
}

footer .footer_bottom_text .logo {
	width: 120px;
	display: block;
	padding-bottom: 15px;
}

footer .footer_bottom_text .flex {
	align-items: end;
}

footer .footer_bottom_text .flex .w-50 {
	width: 61%;
} 

footer .footer_bottom_text .align-end {
	text-align: end;
	width: 30% !important;
}



@media only screen and (max-width: 1120px) {
	header .desktop nav {
		display: none;
	}

	header .toggle {
		display: flex;
		width: clamp(1.875rem, 1.4286rem + 2.2321vw, 2.5rem);
		height: clamp(1.875rem, 1.4286rem + 2.2321vw, 2.5rem);
		flex-direction: column;
		justify-content: center;
		gap: 7px;
	}

	header .toggle span {
		display: block;
		width: 100%;
		transition: all 0.5s ease-in-out;
		height: 3px;
		background: var(--yellow);
	}

	header .toggle span:nth-child(1) {
		width: 50%;
	}

	header .toggle span:nth-child(3) {
		width: 50%;
		margin-left: auto;
	}

	header.active .toggle span {
		transform: rotate(-45deg);
	}

	header.active .toggle span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
		width: 100%;
	}

	header.active .toggle span:nth-child(3) {
		width: 100%;
		transform: rotate(45deg) translate(-7px, -7px);
	}

	header .mobile {
		display: block;
		width: 320px;
		height: 0;
		background: var(--green);
		position: absolute;
		top: 75%;
		right: 0;
		padding: 30px 20px;
		transition: all 0.5s ease-in-out;
		opacity: 0;
		pointer-events: none;
	}

	header.active .mobile {
		height: 100vh;
		opacity: 1;
		pointer-events: all;
	}

}

@media only screen and (max-width: 768px) {
	.w-50 {
		width: 100%;
	}

	.w-50:nth-child(2) {
		margin-top: 30px;
	}

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

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

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

	footer .footer_bottom_text {
		padding: 30px 15px;
	}

	p,
	li {
		margin: 10px 0;
	}
	footer .footer_bottom_text .flex .w-50,
	footer .footer_bottom_text .align-end {
		width: 100% !important;
	}
}

@media only screen and (max-width: 420px) {
	.pt-75 {
		padding-top: 45px;
	}

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

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

/***** 05.layout End *****/