:root {
	--primary-color: #B19F75;
	/* --secoundary-color: #61A512;
	--red-color: #ca1116; */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*::first-letter,
p::first-letter {
	text-transform: capitalize;
}

p {
	margin-bottom: 0px;
}

html {
	width: 100%;
}

button {
	border: none;
	background-color: transparent;
	color: white;
}
a{
	text-decoration: none;
	color: black;
}
a:hover{
	color: var(--primary-color);
	font-weight: bold;
}
body {
	width: 100%;
	font-size: 16px;
	overflow-x: hidden !important;
}

img {
	/* pointer-events: none; */
	user-select: none;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
}
ul{
	list-style-type: none;
	padding-left: 0px;
}

section {
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
}

.common-btn {
	background: var(--primary-color);
	border-radius: 999px;
	box-shadow: var(--primary-color) 0 10px 20px -10px;
	box-sizing: border-box;
	color: #FFFFFF !important;
	cursor: pointer;
	/* font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif; */
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	opacity: 1;
	outline: 0 solid transparent;
	padding: 11px 37px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	width: fit-content;
	word-break: break-word;
	border: 0;
	text-transform: capitalize;
}

.common-btn:hover {
	background-color: var(--primary-color);
	border-radius: 10px;
	transform: all .5s ease;
	color: white;
}
.common-btn:focus{
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}
.main-heading h1{
	margin-bottom: 20px;
}

/* ********************header********************* */
header {
	background-color: #ffffff1f;
	/* height: 100vh; */
	width: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	padding: 10px 10px;
}

header .toggle-btn {
	width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    float: right;
    background: var(--primary-color);
    border-radius: 50px;
	position: relative;
	z-index: 13;
}

header .bar {
	width: 25px;
	height: 2px;
	background-color: #fff;
	margin: 3px 0;
	transition: 0.4s;
}

header #navbar {
	height: 100%;
	width: 192px;
	background-color: #fff;
	position: fixed;
	top: 0px;
	right: -200px;
	transition: 0.5s;
	box-shadow: 1px 1px 6px 0px #c1a2a28a;
}

header #navbar ul {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
	position: relative;
}

header #navbar ul li {
	padding: 5px 10px;
	position: relative;
}

header #navbar ul li a {
	color: #000;
	text-decoration: none;
	padding: 3px;
	font-size: 15px;
}
header #navbar ul li a:hover{
	color: var(--primary-color);
}

header .dropdown-menu {
	display: none;
	position: relative;
	top: 100%;
	left: 0px;
	background-color: #fff;
	min-width: 100%;
	padding: 10px 7px;
	border: 1px solid #f3f3f3;
}


header #services-link:focus-within .dropdown-menu {
	display: grid;
	top: 100%;
}

/* Styling for the cross when toggled */
.toggle-btn.active .bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.toggle-btn.active .bar:nth-child(2) {
	opacity: 0;
}

.toggle-btn.active .bar:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}


/* **********contact us page************************ */

.contactus input:not(input[type="submit"]),
.contactus textarea {
	border: 1px solid #252525;
	border-radius: 0px;
}
.contactus input:not(input[type="submit"])::placeholder{
	text-transform: capitalize;
}
.contactus {
	width: 65%;
	margin: auto;
}
input[type="submit"]:focus{
	border: 1px solid var(--primary-color);
	color: black !important;
}

.contactus input:focus,
.contactus textarea:focus,
footer .form-control:focus,
footer textarea:focus {
	box-shadow: none;
	border: 1px solid #252525;
	outline: none;
	background-color: transparent;
}

.thoughts .thoughts_background {
	background-image: url(../images/bg.webp);
	padding: 10px;
	background-size: cover;
	background-position: center;
}

.thoughts .thoughts_background p {
	text-align: center;
	margin-bottom: 0px;
	padding: 10px 0px;
}


/* **********************gallery page************************* */
.container.gallery-container {
	background-color: #fff;
	color: #35373a;
	/* min-height: 100vh; */
}

.gallery-container h1 {
	text-align: center;
	margin-top: 50px;
	font-family: "Droid Sans", sans-serif;
	font-weight: bold;
}

.gallery-container p.page-description {
	text-align: center;
	margin: 25px auto;
	font-size: 18px;
	color: #999;
}

.tz-gallery {
	padding: 10px;
}

.tz-gallery .row>div {
	padding: 2px;
}

.tz-gallery .lightbox {
	display: block;
	height: auto;
}

.tz-gallery .lightbox img {
	width: 100%;
	/* height: 78%; */
	margin: 10px 0px !important;
	object-fit: contain;
	padding: 0px 10px;


}

.tz-gallery .lightbox:before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	opacity: 0;
	color: #fff;
	font-size: 26px;
	font-family: "Glyphicons Halflings";
	content: "\e003";
	pointer-events: none;
	z-index: 9000;
	transition: 0.4s;
}

.tz-gallery .lightbox:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	content: "";
	transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
	opacity: 1;
}

.baguetteBox-button {
	background-color: transparent !important;
}

.tz-gallery .lightbox:after {

	z-index: -1 !important;
}

.tz-gallery .gallery-wrap {
	position: relative;
}

/***************footer******************/
footer .footer-top {
	background: url('../images/Footer.webp');
	padding: 35px 0px;
	background-size: cover;
}

footer .footer-bottom {
	background: #6B6556;
	padding: 10px 0px;
}

footer .footer-bottom p {
	color: white;
	/* text-align: center; */
	margin-bottom: 0px !important;
	    font-size: 13px;
}

footer .footer-bottom .links {
	float: right;
}

footer .footer-bottom .links ul {
	display: flex;
	margin-bottom: 0px;
}

footer .footer-bottom .links ul li {
	list-style-type: none;
	margin-right: 10px;
}

footer .footer-bottom .links ul li a {
	color: white !important;
}

footer .contact_details {
	margin-top: 30px;
}

 footer .details_Wrap {
	text-align: center;
}
footer .details_Wrap  ul{
	list-style: none; 
        padding-left: 0; 
        text-align: left; 
        display: inline-block;
}
footer .details_Wrap  ul li{
	margin-bottom: 10px;
    display: flex;
    gap: 10px;
}
footer .details_Wrap i {
	margin-top: 5px;
}
footer .details_Wrap p{
	text-align: left;
}

footer .form-wrap {
	box-shadow: 0px 0px 2px 0px rgb(159 206 188 / 0%) !important;
	padding: 25px;
	background-color: #f4edddab;
	border-radius: 10px;
}

footer .form-control,
footer textarea {
	margin-bottom: 12px;
	border-radius: 6px;
	border: 1px solid 80808042;
	background-color: transparent;
	border: 1px solid #252525;
	padding: 8px 10px;
	/* // text-transform: capitalize; */
}

footer .form-control::first-letter {
	text-transform: capitalize !important;
}

footer .form-control::placeholder,
.contactus input:not(input[type="submit"])::placeholder {
	color: #252525;
	/* // text-transform: capitalize; */
}

footer .form-control:focus {
	border: 1px solid black;
	box-shadow: none;
}

.contact-heading h1 {
	font-size: 30px;
	margin-bottom: 20px;
}

/* *******************privacy policy***************** */
.policy h1{
	font-size: 30px;
	margin-bottom: 20px;
}
.policy h2{
	margin: 20px 0px;
	font-size: 30px;
}
.policy h3{
	font-size: 20px;
	margin: 20px 0px;
}
.policy h4{
	font-size: 18px;
	margin: 15px 0px;
}
.policy ul{
	padding-left: 20px;
}
.policy ul li{
	list-style-type: disclosure-closed;
	margin-bottom: 10px;
}
@media only screen and (min-width: 1300px) and (max-width: 1600px){
	p{
		font-size: 18px;
	}
	header .toggle-btn {
		width: 60px;
		height: 60px;
	}
	header .bar {
		width: 30px;
		height: 2px;
	}
}
@media only screen and (min-width: 1600px){
	p{
		font-size: 18px;
	}
	header .toggle-btn {
		width: 80px;
		height: 80px;
	}
	header .bar {
		width: 50px;
		height: 2px;
	}
		header #navbar{
		width: 167px;

	}
	header #navbar ul li a{
		font-size: 21px;
	}
	.contactus {
		width: auto;
		/* margin: auto; */
	}
}

@media only screen and (max-width: 991px) {
	p {
		text-align: justify;
	}
	.contact-heading h1 {
		text-align: center;
	}

	footer .footer-bottom .links {
		float: unset;
	}

	footer .footer-bottom .links ul {
		padding-left: 0px;
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 10px;
	}
	footer .footer-bottom p {
		text-align: center;
	}
}

@media only screen and (max-width: 768px) {
	section{
		padding-top: 50px;
	}
	.contactus {
	    width:100%;
	}
	p {
		font-size: 14px;
	}
	.common-btn {
		font-size: 15px;
		padding: 8px 34px;
	}
	.tz-gallery{
		padding: 0px;
	}

	.tz-gallery .lightbox img,
	.tz-gallery .lightbox.reactangleimg img {
		height: auto;
	}

	.contact-heading h1 {
		font-size: 22px;
	}
	footer .form-wrap {
		padding: 0px;
	}

}