body {
	background: #fff;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #484848;
	letter-spacing: 0.01rem;
	line-height: 1.2;
}
 .white-placeholder::placeholder {
 color: white;
 opacity: 1;
/* Ensures full visibility */

}



/* For better browser support */

.white-placeholder input::placeholder,  .white-placeholder textarea::placeholder {
 color: white;
 opacity: 1;
}
 .white-placeholder input:-ms-input-placeholder, 
/* IE 10-11 */

.white-placeholder textarea:-ms-input-placeholder {
 color: white;
}
 .white-placeholder input::-ms-input-placeholder, 
/* Edge */

.white-placeholder textarea::-ms-input-placeholder {
 color: white;
}
.white-placeholder select option {
	background-color: #fff;
	color: #000;
	border-radius: 0 !important;
}
a {
	text-decoration: none;
}
h1,  h2,  h3,  h4,  h5,  h6 {
	font-family: "Libre Baskerville", serif;
	font-weight: 600;
}
b,  strong {
	font-weight: 700;
}
ul,  li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
p {
	line-height: 1.8rem;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	color: #787878;
}
.ff-libre {
	font-family: "Libre Baskerville", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.ff-poppins {
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 0px 0;
	background-color: #1a2a4b;
}
/* NAV BAR */

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
 @media (min-width: 1400px) {
.nav {
	max-width: 1320px;
}
}
.nav-left {
	display: flex;
	gap: 20px;
	flex: 1;
	justify-content: start;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.06rem;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #fff;
}
.nav ul li a:hover,  .nav ul li a:focus {
	color: #c3a04c;
}
/* SUBMENU STYLES */

.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}
.nav ul li .submenu li {
	padding: 0;
}
.nav ul li .submenu li a {
	display: block;
	padding: 8px 20px;
	white-space: nowrap;
	color: #000;
}
.nav ul li.has-submenu:hover>.submenu {
	display: block;
}
.submenu-toggle {
	display: none;/* hidden on desktop */

}
/* LOGO & HAMBURGER */

.logo-left {
	display: none;
	align-items: center;
}
.logo-left img {
	height: 40px;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: absolute;
	right: 20px;
	top: 36px;
	cursor: pointer;
	display: none;
	z-index: 1001;
}
.hamburger span {
	background: #fff;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 9px;
}
.hamburger span:nth-child(3) {
	top: 18px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}



/* MOBILE STYLES */

@media (max-width: 991px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-left {
	display: flex;
}
.logo-center {
	display: none;
}
.hamburger {
	display: block;
}
.nav {
	display: none;
	flex-direction: column;
	background: #c3a04c;
	padding: 20px;
	gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1000;
}
.nav.show {
	display: flex;
}
.nav-left {
	flex-direction: column;
	align-items: flex-start;
}
.nav ul {
	flex-direction: column;
	gap: 0;
	width: 100%;
}
.nav ul li {
	width: 100%;
}
.nav ul li a {
	display: block;
	color: #fff;
	min-height: 42px;
	padding: 10px 0px;
}
.nav ul li.has-submenu>a {
	padding-right: 42px;
}
/* Show submenu toggle arrow */

.submenu-toggle {
	display: flex;
	cursor: pointer;
	width: 40px;
	height: 42px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	position: absolute;
	right: 0;
	z-index: 10;
	top: 0;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.submenu-toggle i {
	transition: transform 0.3s ease;
	/* smooth rotation */

	width: 24px;
	height: 20px;
	display: block;
	line-height: 100%;
}
.submenu-toggle.rotate i {
	transform: rotate(180deg);
}
.nav ul li .submenu {
	display: none;
	position: relative;
	width: 100%;
	top: 0;
	background-color: transparent;
}
.nav ul li .submenu.open {
	display: block;
}
.nav ul li .submenu li a {
	color: #fff;
}
.nav ul li>a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav ul li .submenu {
	padding: 0;
	box-shadow: none;
	background-color: rgba(255, 255, 255, 0.2);
}
.nav ul li .submenu li a {
	padding: 8px;
	white-space: nowrap;
}
}
.svg-icon {
	width: 40px;
	height: 40px;
	fill: currentColor;
}
.top-right-section {
	gap: 20px;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.slider-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: transparent !important;
	transform: rotate(0deg);
	transition: transform 1s linear;
	border: none !important;
	font-size: 50px;
	color: #26aae1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
}
.slider-arrow.nav-button-prev {
	left: -50px;
}
.slider-arrow.nav-button-next {
	right: -50px;
}
.slider-section .slider-arrow.nav-button-prev {
	left: 0;
}
.slider-section .slider-arrow.nav-button-next {
	right: 0px;
}
.slider-section .slider-arrow {
	color: #fff;
}
#slide-carousel .slider-arrow {
	top: 36%;
}
.carousal-slider-section .slider-arrow {
	background-color: transparent !important;
	height: 46px;
	width: 46px;
	border-radius: 0;
	font-size: 26px;
	border: 2px solid #cacaca !important;
	color: #cacaca;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
	left: -23px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
	right: -23px;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 30px;
	color: #020202;
	line-height: 100%;
	letter-spacing: 0.01rem;
	font-weight: 400;
	position: relative;
}
.heading h2:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #c3a04c;
	z-index: 1;
}
.heading h2 span {
	position: relative;
	z-index: 2;
	background-color: #fff;
	display: inline-flex;
	padding-right: 10px;
}
.heading-alt h2:after {
	display: none !important;
}
.sub-heading {
	display: block;
	position: relative;
	color: #c3a04c;
	font-size: 19px;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	width: 100%;
	margin: 0px 0 5px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}
.padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top-100 {
	padding-top: 100px;
}
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-16 {
	font-size: 16px;
}
.font-size-18 {
	font-size: 18px;
}
.font-size-20 {
	font-size: 20px;
}
.custom-btn {
	border-radius: 0px;
	color: #fff;
	background-color: #c3a04c;
	font-size: 20px;
	letter-spacing: 0.06rem;
	padding: 15px 30px;
	border-color: transparent;
	line-height: 100%;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.custom-btn-arrow {
	position: relative;
	width: auto;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
	color: #000;
	font-size: 24px;
}
.custom-btn:hover {
	background-color: #000;
	color: #fff;
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
.white-border {
	border-color: #fff;
	color: #fff;
}
.gold-border {
	border-color: #c3a04c;
	color: #c3a04c;
}
.black-border {
	border-color: #000;
	color: #000;
}
.big-btn {
	padding: 15px 45px;
}
.btn-with-arrow {
	padding: 15px 45px;
}
.white-border:hover {
	border-color: #fff;
	color: #0c3c7a;
	background-color: #fff !important;
}
.gold-border:hover {
	border-color: #c3a04c;
	color: #fff;
	background-color: #c3a04c !important;
}
.black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}
.black-border:hover .custom-btn-arrow {
	color: #fff;
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #cccccc;
	border-radius: 50%;
	display: block;
}
.social-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover {
	border-color: #000;
}
.icon-btn {
	font-size: 21px;
	color: #c3a04c;
	border: none;
	padding: 0;
	letter-spacing: 0.02rem;
	font-weight: 700;
}
.icon-btn i {
	margin-right: 10px;
}
.icon-btn i svg {
	width: 42px;
	height: 42px;
	color: #c3a04c;
}
.btn-svg-icon {
}
.icon-btn span {
	font-size: 17px;
	font-weight: 500;
	color: #c3a04c;
	display: block;
	letter-spacing: 0.01rem;
}
.icon-btn:hover {
	color: #c3a04c
}
.sub-title-btn-inner.ph-number {
	font-size: 23px;
	font-weight: 600;
}
.footer-social {
	display: block;
	margin: 0;
}
.footer .social-icon a {
	width: 42px;
	height: 42px;
}
.footer-social .social-icon {
}
.footer-social .social-icon svg {
	width: 20px;
	height: 20px;
}
.footer-social .social-icon a.facebook svg {
	width: 22px;
	height: 22px;
}
.footer-social {
}
.footer-social .social-icon a {
	color: #fff;
	border-color: #fff;
}
.footer-social .social-icon a:hover {
	background-color: #c3a04c;
	border-color: #c3a04c;
}
.content-icon-btn .icon-btn {
	color: #000000;
	font-size: 17px;
	font-weight: 500;
}
.content-icon-btn .icon-btn span {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.0rem;
}
.content-icon-btn .icon-btn i svg {
	width: 34px;
	height: 34px;
}
.content-icon-btn .icon-btn i {
	margin-right: 8px;
}
.grey-bg {
	background-color: #f2f2f2 !important;
}
.scrollup {
	width: 50px;
	height: 50px;
	opacity: 1;
	position: fixed;
	bottom: 8px;
	left: 15px;
	display: none;
	text-indent: -9999px;
	background: url(../images/icons/circle-arrow.svg) no-repeat;
	z-index: 5;
	background-size: 100% auto;
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: #000000;
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.banner-caption h1 {
	font-size: 85px;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 100%;
	letter-spacing: 0rem;
	font-weight: 400;
}
.banner-caption h2 {
	font-size: 49px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0.06rem;
	font-weight: 600;
}
.banner-caption h6 {
	font-size: 25px;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 2rem;
	letter-spacing: 0.01rem;
	font-family: "Poppins", sans-serif;
}
.contact-form {
	background-color: rgba(255, 255, 255, 1);
	padding: 30px;
	border-radius: 0px;
}
.contact-form .form-control,  .contact-form .form-select {
	height: 44px;
	border: 2px solid #f1f2f1;
	background-color: transparent;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	border-radius: 0;
}
.contact-form textarea {
	height: auto !important;
}
.form-title {
	font-size: 30px;
	font-weight: 400;
	color: #1a2a4b;
	margin: 0 0 0px;
	text-align: center;
	text-transform: capitalize;
}
.contact-form p {
	font-size: 16px !important;
	color: #151515 !important;
	font-weight: 400 !important;
	margin-bottom: 0;
}
.blue-text {
	color: #1a2a4b;
}
.gold-text {
	color: #c3a04c;
}
.image-box-wrapper {
	display: block;
	position: relative;
}
.image-box-wrapper img {
	width: 100%;
	height: auto;
	width: 100%;
	filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
	border-style: none;
	box-shadow: -28px -28px 0px 0px #c3a04c;
}
.image-box-wrapper-alt img {
	box-shadow: -28px -28px 0px 0px #1a2a4b;
}
.max-width-770 {
	max-width: 770px;
}
.service-box-wrapper {
	display: block;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 22px;
}
.service-box-content {
	width: 100%;
	position: relative;
	display: block;
	z-index: 1;
	text-align: center;
	margin-top: 20px;
}
.service-box-content h4 {
	font-size: 20px;
	color: #1a2a4b;
	font-weight: 400;
	letter-spacing: 0.01rem;
	line-height: 120%;
	margin-bottom: 0px;
}
.service-box-image img {
	border-bottom: 6px solid #c3a04c;
}
#slide-carousel.carousal-slider-section .slider-arrow {
	left: inherit;
	right: 0;
	top: -80px;
}
#testimonial-carousel.carousal-slider-section .slider-arrow {
	left: inherit;
	right: 0;
	top: -50px;
}
#slide-carousel.slider-section.carousal-slider-section .slider-arrow.nav-button-prev,  #testimonial-carousel.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
	margin-right: 53px !important;
}
#slide-carousel.carousal-slider-section .slider-arrow:hover,  #slide-carousel.carousal-slider-section .slider-arrow:focus,  #testimonial-carousel.carousal-slider-section .slider-arrow:hover,  #testimonial-carousel.carousal-slider-section .slider-arrow:focus {
	border-color: #1a2a4b !important;
	color: #1a2a4b;
}
.bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.price-card {
	background-color: rgba(255, 255, 255, 0.75);
	padding: 2rem;
	border-radius: 0px;
	margin-top: 0;
}
.price-line {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.label {
	white-space: nowrap;
}
.dotted {
	flex-grow: 1;
	border-bottom: 1px dotted #333;
	margin: 0 0.5rem;
}
.price {
	white-space: nowrap;
	color: goldenrod;
	font-weight: 400;
	font-family: "Libre Baskerville", serif;
	font-size: 1.2rem;
}
.section-title {
	margin-top: 2rem;
	font-weight: 400;
	font-family: "Libre Baskerville", serif;
	color: #000000;
	font-size: 20px;
	margin-bottom: 15px;
}
.price-main-title {
	font-weight: 400;
	font-family: "Libre Baskerville", serif;
	color: #000000;
	font-size: 20px;
}
hr.vertical {
	width: 1px;
	background-color: #c3a04c;
	height: 100%;
	margin: 0 1.5rem;
}
.gold-bg {
	background-color: #c3a04c;
}
.icon-box-section {
	background-color: #fff;
	text-align: center;
	padding: 30px;
	border: 1px solid #c3a04c;
}
.icon-box-icon {
	width: 72px;
	height: 72px;
	border: 1px solid #c3a04c;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #c3a04c;
}
.icon-box-icon .svg-icon {
	width: 40px;
	height: 40px;
}
.box-small-heading {
	font-size: 20px;
	color: #c3a04c;
	font-weight: 500;
	letter-spacing: 0.02rem;
	margin: 25px 0 20px;
	font-family: "Poppins", sans-serif;
}
.overlay-bg {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.7);
}
.work-with-us-section {
	max-height: 428px;
	overflow: hidden;
}
.testimonial-box {
	display: block;
	background-color: #fff;
	padding: 20px 15px;
	position: relative;
	min-height: 200px;
	border-radius: 0;
	margin: 10px 12px 20px 12px;
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 20px;
	color: #c3a04c;
}
.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.accordion__wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.accordion__title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #c3a04c;
	text-align: center;
	margin-bottom: 2rem;
}
.faq-accordion {
	border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.accordion__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
}
.accordion__icon {
	background-color: transparent;
	width: 2rem;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #c3a04c;
	flex-shrink: 0;
	font-size: 1.6rem;
	line-height: 1rem;
}
.accordion__question {
	font-size: 1.1rem;
	font-weight: 500;
	color: #c3a04c;
}
.accordion__answer {
	padding: 1rem 0;
	margin-bottom: 0;
}
.accordion__content {
	overflow: hidden;
	height: 0;
	transition: 0.4s ease-in-out;
}
 @media screen and (max-width: 580px) {
.accordion__wrapper {
	padding: 0rem 0rem;
}
.accordion__icon {
	width: 1.5rem;
	height: 1.5rem;
	font-size: 1.2rem;
}
}
.faq-image-box {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.map-section iframe {
	width: 100%;
	display: block;
	max-height: 504px !important;
}
.footer-social-icon-section {
	background-color: #1a2a4b;
	padding: 10px 0;
}
.footer-bottom-section {
	display: block;
	position: relative;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #242424;
	padding: 0 20px;
	font-size: 16px;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
}
ul.list-inline li:last-child {
	border-right: none !important;
}
ul.list-inline li a {
	color: #242424;
	text-decoration: none !important;
}
ul.list-inline li a:hover {
	color: #c3a04c;
}
.custom-logo {
	max-width: 100%;
	height: 112px;
	width: 151px;
}
