/*!
Theme Name: Tronza
Theme URI: https://underscores.me/
Author: Automattic
Author URI: https://automattic.com/
Description: Hi. I'm a starter theme called <code>Tronza</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Tronza
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Tronza is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* font-family: "Inter", sans-serif; */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: var(--fs-sixteen);
	color: var(--white);
	font-family: var(--font-family-inter);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background-color: var(--white);
}

.container {
	max-width: 1550px;
	margin: 0px auto;
	padding: 0 50px;
	width: 100%;
}

:root {
	/**** colors ****/
	--white: #FFFFFF;
	--black: #000000;
	--gold: #A7955A;
	--gray: #6E6E6E;
	--bg-black: #1F1F1F;
	--gold-gradiant: linear-gradient(180deg, #796D47 0%, #A7955A 100%);
	--sub-gradiant: linear-gradient(180deg, rgba(167, 149, 90, 0) 38%, rgba(167, 149, 90, 1) 71%);
	--white-gradiant: linear-gradient(90deg, #F4F4F4 0%, #ffffff 100%);

	/*** font family ***/
	--font-family-inter: "Open Sans", sans-serif;

	/***** font size*******/
	--fs-sixty: 60px;
	--fs-fourty-eight: 48px;
	--fs-thirty-two: 32px;
	--fs-twenty-six: 26px;
	--fs-twenty-four: 24px;
	--fs-twenty: 20px;
	--fs-eighteen: 18px;
	--fs-sixteen: 16px;

	/********* lineheight ***********/
	--lh-sixty: 121.67%;
	--lh-thirty-two: 121.88%;
	--lh-twenty-six: 119.23%;
	--lh-twenty-four: 120.83%;
	--lh-twenty: 120%;
	--lh-eighteen: 122.22%;
	--lh-sixteen: 118.75%;

	/***** font-weights ******/
	--fw-thin: 100;
	--fw-extra-light: 200;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semi-bold: 600;
	--fw-bold: 700;
	--fw-extra-bold: 800;
	--fw-black: 900;

	/************* transtition *************/
	--transition: all 0.4s ease-in-out;

	/*********** border-radius *************/
	--br-five: 5px;

	/************** shadows*************/
	--black-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.45);
	--gold-shadow: 0px 5px 20px 0px rgba(53, 41, 5, 0.2);
	--box-shadow: 0px 10px 20px 0px rgba(78, 63, 15, 0.25);
	--white-shadow: 0px 20px 40px 0px rgba(110, 110, 110, 0.1);
}

li {
	list-style-type: none;
	color: var(--black);
}

a {
	text-decoration: none;
	display: inline-flex;
	color: var(--black);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	user-select: none;
	width: auto;
	border: none;
}

/****************** Buttons *********************/

.btn {
	color: var(--gold);
	background-color: var(--white);
	font-size: var(--fs-twenty);
	font-weight: var(--fw-medium);
	line-height: var(--lh-twenty);
	font-family: var(--font-family-inter);
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	border: 1px solid var(--white);
	border-radius: var(--br-five);
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: var(--transition);
	box-shadow: var(--black-shadow);
	width: max-content;
}

.btn:hover,
.btn:active,
.btn:focus {
	background: var(--gold);
	color: var(--black);
	border-color: var(--gold);
}

.gold_btn {
	color: var(--black);
	background-color: var(--gold);
	box-shadow: var(--black-shadow);
	border-color: var(--gold);
}

.gold_btn:hover,
.gold_btn:active,
.gold_btn:focus {
	color: var(--gold);
	background-color: var(--white);
	border-color: var(--white);
}

.gold_gradiant {
	background: transparent;
	box-shadow: var(--gold-shadow);
	color: var(--white);
	border: none;
}

.gold_gradiant::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--gold-gradiant);
	z-index: -1;
	transition: var(--transition);
	opacity: 1;
}

.gold_gradiant:hover,
.gold_gradiant:active,
.gold_gradiant:focus {
	background: var(--black);
	color: var(--gold);
}

.gold_gradiant:hover::before,
.gold_gradiant:active::before,
.gold_gradiant:focus::before {
	opacity: 0;
}

/********** colors ************/

.text_white {
	color: var(--white);
}

.text_gold {
	color: var(--gold);
}

.bg_black {
	background-color: var(--black);
}

.bg_light_black {
	background-color: var(--bg-black);
}

/******************** Main Typhography ************************/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-inter);
	font-style: normal;
	color: var(--black);
}

h1,
.title_h1 {
	font-size: var(--fs-sixty);
	font-weight: var(--fw-medium);
	line-height: var(--lh-sixty);
}

h2,
.title_h2 {
	font-size: var(--fs-thirty-two);
	font-weight: var(--fw-regular);
	line-height: var(--lh-thirty-two);
}

.title_h2_big {
	font-size: var(--fs-fourty-eight)
}


h3,
.title_h3 {
	font-size: var(--fs-twenty-six);
	line-height: var(--lh-twenty-six);
	font-weight: var(--fw-regular);
}

h4,
.title_h4 {
	font-size: var(--fs-twenty-four);
	line-height: var(--lh-twenty-four);
	font-weight: var(--fw-regular);
}

h5,
.title_h5 {
	font-size: var(--fs-twenty);
	line-height: var(--lh-twenty);
	font-weight: var(--fw-medium);
}

h6,
.title_h6 {
	font-size: var(--fs-eighteen);
	line-height: var(--lh-eighteen);
	font-weight: var(--fw-regular);
}

p {
	font-size: var(--fs-sixteen);
	font-weight: var(--fw-light);
	line-height: var(--lh-sixteen);
	font-family: var(--font-family-inter);
	color: var(--gray);
}

.eighteen_p p {
	font-size: var(--fs-eighteen);
	line-height: var(--lh-eighteen);
	font-weight: var(--fw-regular);
	color: var(--white);
}

.twenty_p p {
	font-size: var(--fs-twenty);
	line-height: normal;
	font-weight: var(--fw-regular);
}



/*************************************************************************** Header *****************************************************************/

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	z-index: 999;
	padding: 20px 0 24px;
	transition: var(--transition);
}

.header.sticky {
	box-shadow: var(--box-shadow);
}

.header .container {
	max-width: 1620px;
}

.header_main {
	display: flex;
	gap: 30px;
}

.header_logo {
	width: max-content;
	max-width: 180px;
	margin: 0px auto;
	display: flex;
}

.header_right {
	display: flex;
	align-items: center;
	gap: 40px;
	justify-content: end;
	flex-wrap: wrap;
}

.header_left {
	display: flex;
	align-items: center;
}

.header_menu {
	display: flex;
}

.header_left .menu {
	display: flex;
	align-items: center;
	gap: 40px 80px;
	flex-wrap: wrap;
}

.mobileIcon {
	display: none;
}

.header_menu li .sub-menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 8px;
	top: 100%;
	right: 0;
	padding: 15px;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
	min-width: 120px;
	max-width: 300px;
	background: var(--gold);
	margin-top: 15px;
	z-index: 1;
	width: max-content;
}

.header_left .header_gradiant_btn,
.header_number_link_mobile a,
.header_social_icon {
	display: none !important;
}

.header_menu li .sub-menu li a {
	font-size: var(--font_fourteen);
	line-height: var(--normal_lineheight);
	color: #FFF;
}

.header_menu li {
	position: relative;
	z-index: 1;
}

.header_menu li.menu-item-has-children:hover ul.sub-menu {
	opacity: 1;
	visibility: visible;
}

.header_menu li.menu-item-has-children:after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: -1;
	left: 0;
	display: none;
}

.header_menu li:hover:after {
	display: flex;
}

.header_number_link a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 18px;
}

.cmn_header_inner {
	flex: 1;
}


.header_menu li a,
.header_number_link a {
	transition: var(--transition);
}

.header_menu li:hover a,
.header_number_link a:hover {
	color: var(--gold);
}

.header_menu li .sub-menu li:hover a {
	color: var(--black);
}

.header_menu li.menu-item-has-children {
	display: flex;
	flex-direction: row-reverse;
	gap: 4px;
	align-items: center;
}

.header_menu li.menu-item-has-children p {
	background-image: url(/wp-content/uploads/2026/03/aero.svg);
	background-size: contain;
	width: 11px;
	height: 6px;
	background-repeat: no-repeat;
	transition: var(--transition);
	cursor: pointer;
}

.header_number_link a img {
	transition: var(--transition);
}

.header_menu li.menu-item-has-children:hover p,
.header_number_link a:hover img {
	filter: brightness(0) saturate(100%) invert(62%) sepia(9%) saturate(1590%) hue-rotate(8deg) brightness(93%) contrast(92%);
}


/* Contact Page */

.cmn_title_page_otr {
	margin-top: 38px;
	display: flex;
}

.cmn_title_page {
	width: max-content;
	margin: 0 16px;
	text-align: center;
	max-width: 450px;
}

.cmn_blank_div {
	position: relative;
	height: 2px;
	background: #A7955A;
	flex: 1;
	top: 15px;
}

.cmn_title_page .title_h2 {
	color: var(--gold);
}

.contact_left_top .title_h2_big {
	color: var(--gold);
	font-weight: var(--fw-regular);
	line-height: normal;
}

.contact_page_otr {
	padding: 60px 0 90px;
}

.contact_page_main {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 100px;
	max-width: 980px;
	margin: 0px auto;
}

.contact_page_right {
	flex: 1;
}

.contact_page_left {
	width: 39.8%;
}

.contact_left_top {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.contact_information_box {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact_information_otr {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.contact_icon {
	flex-shrink: 0;
}

.contact_text a,
.contact_text p {
	font-size: var(--fs-eighteen);
	color: var(--gold);
	font-weight: var(--fw-regular);
}

.contact_left_btm {
	margin-top: 45px;
	padding-top: 45px;
	border-top: 1px solid rgb(167 149 90 / 50%);
	flex-direction: row;
}

/* .contact_text a {
	transition: var(--transition)
} */

.contact_text a {
	transition: var(--transition);
	word-break: break-all;
}

.contact_text a:hover {
	color: var(--black);
}




.form_title .title_h5 {
	color: var(--gold);
	font-weight: var(--fw-regular);
}

span.wpcf7-spinner {
	display: none;
}

.form_field p {
	display: flex;
	width: 100%;
	position: relative;
}

.form_main_otr {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form_content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form_main {
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.form_field p input {
	width: 100%;
}

.form_field .wpcf7-form-control-wrap {
	display: flex;
	width: 100%;
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: 100%;
	font-size: 1em;
}

.form_field p input,
.form_field p textarea {
	width: 100%;
	padding: 16px 20px;
	font-size: var(--fs-sixteen);
	color: var(--gold);
	border: 1px solid rgb(167 149 90 / 60%);
	border-radius: 5px;
	outline: unset;
	box-shadow: unset;
	text-align:right;
}

.form_field ::placeholder {
	font-size: 16px;
	color: rgb(167 149 90 / 60%);
	text-align: right;
}

.form_field p textarea {
	max-height: 120px;
	resize: unset;
}

/* .form_submit_btn p {
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	border-radius: var(--br-five);
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: var(--transition);
	width: 100%;
	background: transparent;
	box-shadow: var(--gold-shadow);
	color: var(--white);
	border: none;
} */

.form_submit_btn p {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 24px;
}

/* .form_submit_btn p:after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--gold-gradiant);
	z-index: -1;
	transition: var(--transition);
	opacity: 1;
} */

/* .form_submit_btn input {
	color: white;
	background-color: unset;
	font-size: var(--fs-twenty);
	font-weight: var(--fw-medium);
	line-height: var(--lh-twenty);
	font-family: var(--font-family-inter);
	outline: unset;
	box-shadow: unset;
	border: unset;
	transition: var(--transition);
	width: 100%;
	cursor: pointer;
} */

.form_submit_btn input {
	background-color: var(--bg-black);
	font-size: var(--fs-twenty);
	font-weight: var(--fw-medium);
	line-height: var(--lh-twenty);
	font-family: var(--font-family-inter);
	padding: 12px 24px;
	cursor: pointer;
	outline: none;
	border-radius: var(--br-five);
	position: relative;
	z-index: 1;
	transition: var(--transition);
	width: 100%;
	box-shadow: var(--gold-shadow);
	color: var(--white);
	border: 1px solid transparent;

}

.form_submit_btn input:hover {
	background: unset;
	border: 1px solid var(--gold);
	color: var(--gold);
}


.form_submit_btn p label {
	flex: 1;
	color: var(--black)
}





/* .form_submit_btn p:hover {
	background: var(--black);
	color: var(--gold);
} */

.form_submit_btn p:hover input {
	color: var(--gold);
}

.form_submit_btn p:hover:after {
	opacity: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	background: #ff0000;
	border: 1px solid #ff0000 !important;
	color: white;
	margin: 1em 0 0 0;
	padding: 0.2em 0.7em;
	font-size: 1em;
	line-height: normal;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: #61d961;
	border: 1px solid transparent !important;
	color: white;
	font-size: 1em;
	margin: 1em 0 0 0;
	padding: 0.2em 0.7em;
	line-height: normal;
}

.google_map_main {
	position: relative;
	aspect-ratio: 16 / 5;
}

.google_map_main iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* About Page */



.about_main {
	display: flex;
	flex-direction: column;
	gap: 79px;
}

.about_banner {
	padding-bottom: 58px;
	position: relative;
	aspect-ratio: 16 / 6.25;
}

.about_banner_image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

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

.about_content {
	padding: 80px 0 60px;
}

.about_content .cmn_title_page_otr {
	margin: 0;
}


/* Blog Listing */

.blog_info .title_h4 {
	text-align: center;
	color: var(--gold);
	max-width: 90%;
}

.blog_list_section {
	padding: 82px 0px 143px;
}

.blog_list_main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 20px;
	max-width: 980px;
	margin: 0px auto;
}

.blog_list_image {
	position: relative;
	width: 100%;
	padding-bottom: 20px;
	border-radius: 5px 5px 0px 0px;
}

.blog_list_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px 5px 0px 0px;
}

.blog_list_image::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: var(--gold);
	border-radius: 0px 0px 5px 5px;
}

.blog_list_content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	align-items: center;
}

.blog_card {
	display: flex;
	flex-direction: column;
}

.blog_date {
	font-size: 14px;
	font-weight: var(--fw-light);
	line-height: normal;
	color: var(--gold);
	border-bottom: 1px solid var(--gold);
	width: 100%;
	text-align: center;
	padding: 13px 6px 10px;
}

.blog_info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

.blog_list_content h4 {
	text-align: center;
	font-weight: var(--fw-medium);
	color: var(--gold);
	flex: 1;
}

.load-more-wrap .btn {
	border: 1px solid var(--gold);
	background: transparent;
	box-shadow: unset;
}

.load-more-wrap .btn:hover {
	background: var(--gold);
	color: var(--black);
}



/* Blog Details */


.blog_content_section {
	padding-bottom: 100px;
}

.blog_img_content {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.blog_banner_img {
	width: 67.587%;
	margin: 0px auto;
	position: relative;
	padding-top: 41.38%;
}

.blog_banner_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	border-radius: 5px;
}

.blog_main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.blog_img_content .cmn_title_page {
	max-width: 420px;
}

.post_pagination_main {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.post_pagination {
	width: 16.552%;
	display: flex;
	flex-direction: column;
	gap: 29px;
	align-items: end;
	padding-top: 29px;
}

.post_pagination_details {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.post_pagination_details p {
	color: var(--gold);
	text-align: end;
}

.post_pagination_details img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.blog_content_main {
	display: flex;
	flex-direction: column;
	gap: 90px;
}

.blog_content_section {
	padding-bottom: 100px;
}

.center_btn {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.center_btn a {
	color: var(--gold);
}

.post_pagination_details h6 {
	font-weight: var(--fw-medium);
	color: var(--gold);
}

/* Common Css Wysage */


.cmn_details , .cmn_section_content .ppils-policy {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0px auto;
	padding: 50px 0px;
	position: relative;
}

.cmn_section_content .ppils-policy{
	padding:0 !important;
}

.cmn_details::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background-color: var(--gold);
}

.cmn_details span , .cmn_section_content .ppils-policy span {
	color: var(--gold);
}

.cmn_details a,
.center_btn a {
	color: var(--gold);
	transition: var(--transition);
	cursor: pointer;
}

.cmn_details a:hover,
.center_btn a:hover {
	color: var(--black);
}

.cmn_details h1,
.cmn_details h2,
.cmn_details h3,
.cmn_details h4,
.cmn_details h5,
.cmn_details h6 {
	color: var(--gold);
	font-weight: var(--fw-medium);
}

.cmn_details ol {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style-position: inside;
}

.cmn_details li {
	list-style-type: inherit;
}

.cmn_details ul li::marker {
	color: var(--gold);
}

.cmn_details ul {
	margin-left: 0px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-right:24px;
}

.cmn_details li,
.cmn_details p {
	color: var(--gray);
	font-size: var(--fs-sixteen);
	font-weight: var(--fw-light);
	line-height: normal;
}


/* Service Page  */

.service_box_description span.text-gold {
	color: var(--gold);
}



/* Privacy Page */

.cmn_section_main {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.cmn_space_both {
	padding: 100px 0;
}

.cmn_space_top {
	padding-top: 100px;
}

.cmn_space_btm {
	padding-bottom: 100px;
}

.cmn_section_otr .cmn_details {
	padding-top: unset;
}

.cmn_section_otr .cmn_details ul , .cmn_section_content .ppils-policy ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}


/***********************************************************************************Home Page***********************************************************************************/

/******************* Hero Banner ***********************/

.herobanner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	aspect-ratio: 1920/750;
	justify-content: center;
	padding: 50px 0;
	overflow: hidden;
}

@media screen and (min-width:1921px) {
	.herobanner {
		aspect-ratio: unset;
		min-height: 750px;
	}
}

.hero_main .video_section {
	margin: 0px auto;
	display: flex;
	aspect-ratio: 1920/750;
}

.video_section iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video_section p {
	width: 100%;
	height: 100%;
}

.video_section video.video-player,
.herobanner_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.video_section video.video-player {
	object-position: unset;
}

.herobanner_description {
	padding: 20px 0px 49px;
}

.herobanner_description p {
	color: var(--white);
	font-size: var(--fs-twenty-four);
	font-weight: var(--fw-regular);
	line-height: var(--lh-twenty-four);
}

.herobanner_title h1 {
	color: var(--white);
	text-transform: uppercase;
}

.herobanner_btn .btn,
.city_btn .btn {
	min-width: 350px;
}

.herobanner_content {
	position: relative;
	z-index: 1;
	width: 100%;
}

.herobanner_content .container {
	max-width: 1050px;
}

.hero_main {
	position: absolute;
	width: 100%;
	height: 100%;
}

.herobanner:after {
	content: '';
	position: absolute;
	background: rgb(51 46 33 / 60%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


/**************** Achievement Section ******************/

.achievement_section {
	border-top: 5px solid var(--gold);
	padding: 12px 0;
}

.achievement_main {
	max-width: 1050px;
	margin: 0 auto;
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(5, 1fr);
}

.achievement_box .title_h1 {
	font-weight: var(--fw-extra-light);
}

.achievement_box {
	text-align: center;
}

/**************** Person Section ********************/

.person_section {
	overflow: hidden;
}

.person_section .container {
    padding-left: 0;
    max-width: 1430px;
    margin-left: 0;
}

@media screen and (min-width:1921px) {
	.person_section .container {
		margin-left: auto;
	}
}

.person_main {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.person_content {
	width: 31.522%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	padding: 50px 0;
}

.person_main_img {
	position: relative;
	width: 49.276%;
	display: flex;
}

.person_bg_img {
	position: relative;
}

.person_img {
    position: absolute;
    z-index: 9;
    right: -33%;
    width: 54.708%;
    bottom: 0;
}

.person_bg_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 20%;
}

.person_description {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
}

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

.person_description::after {
	content: '';
	position: absolute;
	background: var(--gold);
	width: 50px;
	height: 2px;
	bottom: -36px;
	left: 50%;
	transform: translateX(-50%);
}

/********************** consultation section **************************/

.consultation_main {
	display: flex;
	flex-direction: column;
	gap: 65px;
	padding: 66px 0px 51px;
}

.consultation_row {
	display: flex;
	flex-direction: row;
	gap: 30px;
	align-items: flex-start;
	position: relative;
	margin: 0 auto;
	padding-bottom: 45px;
	max-width: 980px;
	justify-content: space-between;
}

.consultation_content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 49%;
	position: relative;
}

.consultation_img {
	width: 36.735%;
	position: relative;
}

.consultation_inner_content {
	padding-left: 25px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cmn_content_row ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-left: 0;
    margin-right: 24px;
}


.cmn_content_row ul li {
	list-style-type: inherit;
	padding: 0px;
	color: var(--gray);
	font-weight: 300;
}

.cmn_content_row ul li::marker {
	color: var(--gray);
}

.consultation_btn {
	padding: 26px 0 0 25px;
	width: max-content;
}


.normal_btn svg{
    transform: scale(-1);
}
.normal_btn:hover svg {
    transform: scale(-1) translateX(5px);
}

.normal_btn svg,
.normal_btn svg path {
	transition: var(--transition);
}
.testimonials_dot_otr svg {
    transform: scale(-1);
}


.normal_btn:hover svg path {
	fill: var(--black);
}

.post_pagination_left .normal_btn:hover svg {
    transform: scale(-1) translateX(-5px);
}


.normal_btn:hover {
	color: var(--black);
}



.normal_btn {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--gold);
	width: max-content;
	transition: all 0.4s ease-in-out;
}

.consultation_row:nth-child(even) {
	flex-direction: row-reverse;
}

.consultation_img::after {
	content: '';
	position: absolute;
	width: 100vw;
	height: 40px;
	background: var(--gold);
	right: 24%;
	top: 50%;
	border-bottom: 5px solid var(--black);
	z-index: -1;
}

.consultation_row:nth-child(odd):before {
	content: "";
	position: absolute;
	width: 50%;
	height: 1px;
	right: 10px;
	bottom: 0;
	background: var(--bg-black);
}

.consultation_row:nth-child(even):after {
	width: 50%;
	right: 50%;
	transform: translateX(0);
	content: "";
	position: absolute;
	height: 1px;
	bottom: 0;
	background: var(--bg-black);
}

.consultation_row:nth-child(even):before {
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	background: var(--gold);
	bottom: 0;
	left: 51%;
}

.consultation_row:nth-child(odd):after {
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	bottom: 0;
	right: 51.8%;
	background: var(--gold);
}

.consultation_img img {
	margin: 0 auto;
}

.consultation_row:nth-child(even) .consultation_img::after {
	right: unset;
	left: 25%;
}

.consultation_section {
	overflow: hidden;
	position: relative;
}

.consultation_section::after {
	content: '';
	position: absolute;
	background: linear-gradient(0deg, #FFFFFF, rgba(245, 243, 241, 0.5));
	top: 0;
	left: 0;
	right: 0;
	z-index: -2;
	height: 25.64%;
}

/***************************** city section *****************************/
.city_main_img {
	aspect-ratio: 1920 /560;
}

@media screen and (min-width:1921px) {
	.city_main_img {
		aspect-ratio: unset;
		max-height: 560px;
		overflow: hidden;
		display: flex;
	}
}

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

.city_big_text_img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.city_images {
	position: relative;
}

.city_section {
	border-top: 34px solid var(--gold);
}

.city_content {
	padding: 50px 0;
}

.city_description {
	max-width: 760px;
	margin: 0 auto 80px;
	position: relative;
}

.city_description p {
	color: var(--white);
	letter-spacing: 0.2px;
	opacity: 0.9;
	line-height: var(--lh-twenty-four);
}

.city_description p:not(:last-child) {
	padding-bottom: 16px;
}

.city_btn {
	width: max-content;
	margin: 0 auto;
}

.city_description::after {
	content: '';
	position: absolute;
	background: var(--gold);
	width: 96px;
	height: 3px;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
}


/**************** Testimonials *********************/


.testimonial_main {
	display: flex;
	flex-direction: column;
	gap: 54px;
	align-items: center;
	position: relative;
}

.testimonial_slide {
	opacity: 0;
	visibility: hidden;
}

.testimonial_swiper {
	max-width: 950px;
	padding: 0 50px !important;
}

.testimonial_swiper {
	width: 100%;
	position: relative;
}

.testimonial_swiper .testimonial_wrapper {
	align-items: center !important;
	padding: 50px 0;
}

.testimonial_card {
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 13px 29px 21px 57px;
	background: #ffff;
	position: relative;
	border-radius: 5px;
}

.testimonial_title .title_h5 {
	color: var(--gold);
}

.testimonial_card::after,
.testimonial_card::before {
	position: absolute;
	content: "";
	top: 43px;
	left: 7px;
	background-image: url('data:image/svg+xml,<svg width="44" height="39" viewBox="0 0 44 39" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M44 10.7018C44 4.79208 39.1699 4.22257e-07 33.2134 9.42992e-07C27.2536 1.46402e-06 22.4269 4.79208 22.4269 10.7018C22.4269 10.7018 21.7817 22.163 32.5282 38.7777L37.0842 38.7777C37.0842 38.7777 34.0023 29.5252 33.0363 21.4002C33.0931 21.4002 33.1533 21.4035 33.2134 21.4035C39.1699 21.4035 44 16.6114 44 10.7018Z" fill="%23A7955A" fill-opacity="0.2"/><path d="M0.0074091 10.9241C0.00740858 5.01439 4.83746 0.222307 10.794 0.222307C16.7505 0.222306 21.5805 5.01107 21.5806 10.9241C21.5806 16.8371 16.7505 21.6258 10.794 21.6258C10.7338 21.6258 10.6736 21.6225 10.6168 21.6225C11.5828 29.7475 14.6647 39 14.6647 39L10.1087 39C-0.637712 22.3819 0.0074091 10.9241 0.0074091 10.9241Z" fill="%23A7955A" fill-opacity="0.2"/></svg>');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: contain;
	width: 44px;
	height: 39px;
}

.testimonial_card::before {
	top: unset;
	left: unset;
	bottom: 21px;
	right: 9px;
	transform: scaleX(-1);
}

.testimonials_dot_otr {
	display: flex;
	flex-direction: row-reverse;
	top: 45%;
	position: absolute;
	left: 0;
	right: 0;
	justify-content: space-between;
}

.testimonial-next,
.testimonial-prev {
	cursor: pointer !important;
	position: relative !important;
	z-index: 1 !important;
}

.swiper-slide-prev,
.swiper-slide-next {
	background-image: none !important;
	filter: blur(8px);
	opacity: 1;
	visibility: visible;
}

.swiper-slide-active {
	backdrop-filter: unset !important;
	background: linear-gradient(90deg, #F4F4F4 0%, #ffffff 100%);
	box-shadow: 0px 20px 40px 0px rgba(110, 110, 110, 0.1);
	opacity: 1;
	visibility: visible;
}

.review-dots-viewport {
	position: relative;
	width: 130px;
	height: 25px;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%);
	margin: 0 auto;
}

.review-dots-strip {
	display: flex;
	align-items: center;
	gap: 8px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	will-change: transform;
	gap: 10px;
}

.dot {
	width: 5px;
	height: 5px;
	border-radius: 100px;
	background: #A7955A;
	cursor: pointer;
	flex-shrink: 0;
	transition: width .45s cubic-bezier(.34, 1.3, .64, 1), height .45s cubic-bezier(.34, 1.3, .64, 1), background .35s ease, opacity .35s ease;
}

.dot.is-near {
	width: 8px;
	height: 8px;
}

.dot.is-active {
	width: 10px;
	height: 10px;
}

.testimonial_description p:not(:last-child) {
	padding-bottom: 16px;
}


@media screen and (max-width: 767px) {

	.swiper-slide-prev,
	.swiper-slide-next {
		background-image: none !important;
		filter: unset;
	}
}

.testimonial_main_title.cmn_title_page_otr {
	margin: 0;
}

.testimonial_section {
	position: relative;
	padding: 50px 0;
}

.testimonial_section::after {
	content: '';
	position: absolute;
	background: linear-gradient(0deg, #FFFFFF, rgba(245, 243, 241, 0.5));
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

/********************** Cta ***************************/

.cta_section {
	position: relative;
	overflow: hidden;
	padding: 30px 0 0;
}

.cta_bg_img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.cta_bg_img img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.cta_main {
	position: relative;
	z-index: 1;
}

.cta_row form .cta_form_main .form_content {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 20px !important;
}

.cta_main .container {
	max-width: 1040px;
	overflow: hidden;
}

.cta_box input {
	outline: none !important;
	box-shadow: none !important;
	font-size: var(--fs-sixteen);
	font-weight: var(--fw-regular);
	border-radius: var(--br-five);
	border: 1px solid var(--white);
	padding: 10px 16px;
	color: var(--gold);
	min-width: unset !important;
	max-width: unset !important;
	width: 100%;
	background: var(--white);
	text-align: right;
}
.cta_box input.wpcf7-submit {
    text-align: center;
}
.cta_box .wpcf7-form-control-wrap {
	width: 100%;
}


.black_btn {
	width: 100%;
	background: var(--black) !important;
	border-color: var(--black) !important;
	color: var(--white) !important;
	box-shadow: var(--box-shadow) !important;
}

.cta_box input::placeholder {
	color: var(--gold);
}

.cta_title {
	padding-bottom: 30px;
}

.black_btn:hover,
.black_btn:focus,
.black_btn:active {
	background: var(--white) !important;
	border-color: var(--white) !important;
	color: var(--gold) !important;
}

.cta_row .wpcf7 form.invalid .wpcf7-response-output,
.cta_row .wpcf7 form.unaccepted .wpcf7-response-output,
.cta_row .wpcf7 form.payment-required .wpcf7-response-output,
.cta_row .wpcf7 form .wpcf7-response-output {
	position: unset;
	bottom: 0;
	font-size: 0.9em;
	margin: 30px 0 0 0 !important;
}

.cta_row {
	padding-bottom: 30px;
}

.cta_box .wpcf7-not-valid-tip {
	position: absolute !important;
	top: 100% !important;
	bottom: unset !important;
	margin-top: 3px !important;
	font-size: 0.9em;
}

.cta_box p {
	display: flex;
}

/********************* home blog **********************/

.our_blogs_home .blog_list_main .blog_card:first-child {
	grid-row: span 2/span 2;
}

.our_blogs_home .blog_list_image img {
	position: absolute;
	inset: 0;
}

.our_blogs_home .blog_list_image::before {
	content: none;
}

.our_blogs_home .blog_list_content {
	position: absolute;
	bottom: 0;
	z-index: 1;
	padding: 25px;
	left: 0;
	right: 0;
}

.our_blogs_home .blog_card {
	position: relative;
	overflow: hidden;
}

.our_blogs_home .blog_list_image {
	padding-top: 67.71%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.our_blogs_home .blog_list_main {
	gap: 20px;
	padding: 50px 0;
}

.our_blogs_home .blog_list_image::after {
	content: '';
	position: absolute;
	background: linear-gradient(180deg, rgba(167, 149, 90, 0) 0%, rgba(167, 149, 90, 1) 71%);
	bottom: 0;
	left: 0;
	right: 0;
	top: 35%;
}

.our_blogs_home .blog_date {
	text-align: left;
	color: var(--white);
	border-color: rgb(255 255 255 / 40%);
}

.our_blogs_home .blog_list_content .title_h4 {
	color: var(--white);
	text-align: right;
}

.our_blogs_home .normal_btn {
	color: var(--white);
}

.our_blogs_home .blog_info {
	gap: 12px;
	align-items: flex-start;
}

.our_blogs_home .normal_btn svg path {
	fill: var(--white);
}

.our_blogs_home .cmn_title_page_otr {
	margin: 0;
}

.our_blogs_home {
	padding: 75px 0;
}

/********************************************************************************* service page ***************************************************************************************/
.include_box {
	display: flex;
	position: relative;
	gap: 60px;
	max-width: 1260px;
	margin: 0 auto;
}

.include_box_title {
	height: max-content;
	position: absolute;
	width: 100%;
	left: -110%;
	top: 0;
	right: 0;
}

.include_box_description {
	max-width: 600px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.include_box_title::after {
	content: '';
	position: absolute;
	background: var(--gold);
	top: -10px;
	bottom: -10px;
	width: 50vw;
	z-index: -1;
	right: -20px;
	border-radius: 0 5px 5px 0;
}

.include_box_title .title_h4 {
	color: var(--white);
	display: flex;
	justify-content: end;
}

.include_btn_otr {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.include_box_description p,
.include_box_description ul>li {
	font-weight: var(--fw-light);
	font-size: var(--fs-sixteen);
}

.include_box_description ul>li {
	list-style-type: inherit;
	color: var(--gray);
	position: relative;
	margin-left: 24px;
}

.include_box:last-child h5 {
	font-weight: var(--fw-light);
}

.include_otr_main {
	display: flex;
	flex-direction: column;
	gap: 91px;
	padding: 27px 0px 74px;
}

.include_btn_main .header_right_btn .btn {
	min-width: 250px;
}

.include_btn_main .header_right_btn {
	display: flex;
	justify-content: center;
}

.service_title_section .cmn_details::before {
	content: unset;
}

.service_title_section {
	padding: 80px 0 0;
}


/****************************** footer ****************************/

.footer_top {
	padding: 38px 0px 45px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
}

.footer_left {
	display: flex;
	flex-direction: column;
	gap: 31px;
	width: 26.735%;
}

.footer_logo a {
	display: flex;
	width: 62.98%;
}

.footer_contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer_adderss,
.footer_number a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer_adderss p {
	color: var(--white);
}

.footer_number a span {
	color: var(--white);
	font-size: var(--fs-twenty);
	font-weight: var(--fw-light);
	line-height: var(--lh-twenty-four);
	transition: var(--transition);
}

.footer_social_icon {
	display: flex;
	gap: 15px;
}

.footer_social_icon a img {
	transition: var(--transition);
}

.footer_social_icon a:hover img {
	transform: scale(1.05);
}

.copyright p {
	font-size: 12px;
	font-weight: var(--fw-light);
	line-height: 15px;
	color: var(--gold);
}

.footer_right {
	width: 66.327%;
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.footer_main .container {
	max-width: 1080px;
}

.footer_main_menu .menu {
	color: var(--white);
	display: grid;
	gap: 20px;
	justify-content: space-between;
}

.footer_main_menu ul>li>a {
	font-weight: var(--fw-light);
	color: var(--gold);
	font-size: var(--fs-sixteen);
	line-height: normal;
}

.footer_main_menu .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer_main_menu .menu li:first-child {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: max-content;
	grid-row: 1 /4;
}

.footer_main_menu .menu>li:first-child>a {
	pointer-events: none;
}

.footer_btm_menu ul {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--gold);
}

.footer_btm_menu ul li a {
	font-size: 14px;
	font-weight: var(--fw-light);
	line-height: normal;
	color: var(--gold);
	transition: var(--transition);
}

.footer_btm_content {
	display: flex;
	justify-content: center;
	padding: 6px 0px 8px;
	gap: 8px;
	align-items: center;
}

.footer_btm_content a {
	font-size: 12px;
	font-weight: var(--fw-light);
	line-height: 15px;
	color: var(--gold);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.footer_btm_content a:hover {
	text-decoration: none;
}

.footer_main_menu .menu li:not(:first-child) {
	grid-column-start: 2;
}

.footer_main_menu .menu>li>a {
	font-size: var(--fs-twenty);
	line-height: var(--lh-twenty);
}

.footer_right a:hover {
	color: var(--white);
}

.footer_right a {
	transition: var(--transition);
}

.footer_number a img {
	transition: var(--transition);
}

.footer_number a:hover span {
	color: var(--gold);
}




/* Language Switcher */


.custom-language-switcher {
	display: flex;
	align-items: center;
	gap: 12px;
}

.custom-language-switcher a.lang-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.custom-language-switcher a.lang-item img {
	width: 20px;
	height: 20px;
}

.custom-language-switcher span.lang-separator {
	display: flex;
	font-size: 14px;
	color: var(--black);
}

.custom-language-switcher span.lang-text {
	color: var(--black);
	transition: all 0.3s ease-in-out;
}

.custom-language-switcher a.active span.lang-text,
.custom-language-switcher a span.lang-text:hover {
	color: var(--gold);
}

.custom-language-switcher span.lang-text {
	display: none;
}











.form_content .cta_box:last-child {
	grid-column: span 3;
}

.form_content .cta_box:last-child p {
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.ppils-consent-wrap {
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
	margin: 0 !important;
}

.ppils-consent-wrap .ppils-consent-error {
	position: absolute;
	top: 100%;
}

.ppils-consent-wrap input {
	width: max-content;
	height: max-content;
}

.cta_box .ppils-consent-wrap label {
	color: var(--white);
	flex: 1;
}

form .ppils-consent-wrap input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--black) !important;
	width: 25px;
	height: 25px;
	border: 1px solid transparent !important;
	display: inline-flex;
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 !important;
}

form .ppils-consent-wrap input[type="checkbox"]:checked::before {
	content: '';
	position: absolute;
	left: 30%;
	top: 43%;
	width: 5px;
	height: 10px;
	border: 1px solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-50%, -50%);
}

.cta_box .ppils-consent-wrap label a {
	text-decoration: underline;
	transition: var(--transition);
}

.cta_box .ppils-consent-wrap label a:hover {
	text-decoration: none;
}

.form_submit_btn label a {
	color: var(--gold);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.form_submit_btn label a:hover {
	text-decoration: unset;
}

.include_box_title::after {
	right: unset;
	border-radius: 5px 0 0 5px;
	width: 100vw;
	left: -2%;
}

.include_box_title {
	left: 0;
	transform: translateX(105%);
}

.include_otr {
	overflow: hidden;
}



section.error_main.cmn_space_both {
    padding: 50px 0;
}
.error_otr_div {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.error_otr_div .error_img {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 50%;
}
