body {
	background: #fff;
	font-size: 1rem;
	font-family: "Work Sans", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #6a6a6a;
	letter-spacing: 0rem;
	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: "Work Sans", sans-serif;
	font-weight: normal;
	color: #565656;
}
.ff-Libre {
	font-family: "Libre Baskerville", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.ff-worksans {
	font-family: "Work Sans", sans-serif !important;
	font-optical-sizing: auto;
	font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 0.725rem 0;
	background-color: transparent;
}
/* 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: 0;
	flex: 1;
	justify-content: end;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 53px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.01rem;
	text-decoration: none !important;
	text-transform: capitalize;
	color: #fff;
	position: relative;
	overflow: hidden;
	transition: all .4s ease;
	padding: 8px 5px;
	display: block;
}
.nav ul li a:after, .nav ul li a:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent 10%, #ffffff, transparent 90%);
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-101%);
	transition: all .4s ease;
}
.nav ul li a:after {
	top: unset;
	bottom: 1px;
	transform: translateX(101%);
}
.nav ul li:hover a:after, .nav ul li:hover a:before {
	transform: translateX(0);
}
.nav ul li a:hover, .nav ul li a:focus {
	color: #f8be5c;
}
.nav ul>li.selected>a:after, .nav ul>li.selected>a:before {
	transform: translateX(0);
	background: linear-gradient(to right, transparent 10%, #ffffff, transparent 90%);
}
.nav ul>li.selected>a:after {
	height: 1px;
	clip-path: none;
	transition: height .2s ease, clip-path 0s ease .4s;
}
/* 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: #ffffff;
	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: #f8be5c;
	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;
}
.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: 50%;
}
.carousal-slider-section .slider-arrow {
	background-color: rgba(0, 0, 0, 0.7) !important;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	font-size: 30px;
	border: none;
	color: #fff;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
	left: -25px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
	right: -25px;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 2.188rem;
	color: #000000;
	line-height: 120%;
	letter-spacing: 0.01rem;
	font-weight: 700;
	position: relative;
}
.sub-heading {
	display: block;
	position: relative;
	color: #f8be5c;
	font-size: 1.563rem;
	letter-spacing: 0rem;
	width: 100%;
	font-weight: 500;
	font-family: "Work Sans", sans-serif;
	margin-bottom: 10px;
	padding: 0;
}
.heading-alt h2 {
	color: #ffffff;
}
.heading-alt .sub-heading {
	color: #ffffff;
}
.padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top-100 {
	padding-top: 100px;
}
.padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-90 {
	padding-top: 90px;
	padding-bottom: 90px;
}
.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: #000000;
	font-size: 18px;
	letter-spacing: 0.01rem;
	padding: 1rem 2rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 50rem;
}
.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: #fff;
	font-size: 24px;
}
.custom-btn svg {
	width: 16px;
	height: 16px;
}
.custom-btn:hover {
	background-color: #f8be5c;
	color: #fff;
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
.white-border {
	border-color: #fff;
	color: #fff;
}
.black-border {
	border-color: #000;
	color: #000;
}
.big-btn {
	padding: 15px 45px;
}
.btn-with-arrow {
	padding: 15px 45px;
}
.black-border .custom-btn-arrow {
	color: #000;
}
.white-border:hover {
	border-color: #fff;
	color: #000;
	background-color: #fff !important;
}
.black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}
.black-border:hover .custom-btn-arrow {
	color: #fff;
}
.white-border .custom-btn-arrow {
	color: #fff;
}
.white-border:hover .custom-btn-arrow {
	color: #000;
}
.black-border:hover .custom-btn-arrow {
	color: #fff;
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #f8be5c;
	border-radius: 50%;
	display: block;
	color: #f8be5c;
}
.social-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover {
	border-color: #f8be5c;
	background-color: #f8be5c;
	color: #fff;
}
.icon-btn {
	font-size: 21px;
	color: #f8be5c;
	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: #f8be5c;
}
.btn-svg-icon {
}
.icon-btn span {
	font-size: 17px;
	font-weight: 500;
	color: #f8be5c;
	display: block;
	letter-spacing: 0.01rem;
}
.icon-btn:hover {
	color: #f8be5c
}
.sub-title-btn-inner.ph-number {
}
.grey-bg {
	background-color: #f6f6f6 !important;
}
.gold-bg {
	background-color: #f8be5c;
}
.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-color: rgba(0, 0, 0, 0.75);
	padding-top: 105px;
}
.banner-caption h1 {
	font-size: 60px;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 100%;
	letter-spacing: 0.01rem;
	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: 22px;
	font-weight: 500;
	margin: 0;
	line-height: 2rem;
	letter-spacing: 0.01rem;
	font-family: "Work Sans", sans-serif;
}
.hero-content-inner {
	display: flex;
	flex-direction: column;
	position: relative;
}
.contact-form {
	background-color: rgba(255, 255, 255, 1);
	padding: 30px;
	border-radius: 1.425rem;
}
.contact-form .form-control, .contact-form .form-select {
	height: 51px;
	border: 1px solid #9a9a9a;
	background-color: transparent;
	font-size: 14px;
	font-family: "Work Sans", sans-serif;
	border-radius: 3.425rem;
	padding: 0.625rem 1rem;
	color: #000;
}
.contact-form textarea {
	height: auto !important;
}
.form-title {
	font-size: 27px;
	font-weight: 700;
	color: #2d2d2d;
	margin: 0 0 0px;
	text-align: center;
	text-transform: capitalize;
	font-family: "Work Sans", sans-serif;
}
.contact-form p {
	font-size: 16px !important;
	color: #606060 !important;
	font-weight: 400 !important;
	margin-bottom: 0;
}
.bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.overlay-bg {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.75);
}
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #fff;
	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: #fff;
	text-decoration: none !important;
}
ul.list-inline li a:hover {
	color: #f8be5c;
}
.medium-heading {
	font-size: 27px;
	color: #000000;
	font-weight: 700;
	letter-spacing: 0.02rem;
}
.call-to-action-inner {
	width: 100%;
	max-width: 630px;
}
.call-to-action {
	font-size: 30px;
	color: #f8f2e9;
	font-weight: 600;
	gap: 10px;
}
.call-to-action:hover {
	color: #fff;
}
.images-box-warrper-cover {
	overflow: hidden;
	width: 100%;
}
.section-inner-box {
	padding: 2rem 0 2rem 3rem;
}
.section-inner-box-alt {
	padding: 2rem 3rem 2rem 0rem;
}
.gold-text {
	color: #f8be5c !important;
}
.service-box-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
}
.service-box-content {
	width: 100%;
	background-color: #000;
	padding: 0 2rem 2rem;
	position: absolute;
	display: flex;
	text-align: center;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.65);
	justify-content: center;
	align-items: end;
	top: 0;
}
.service-box-content h4 {
	font-size: 30px;
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.1rem;
	line-height: 120%;
	margin-bottom: 0px;
	font-family: "Work Sans", sans-serif;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.zoom-image img {
	transition: all 0.2s ease-in-out;
}
.service-box-wrapper:hover .zoom-image img {
	transform: scale(1.1);
}
.testimonial-box {
	display: block;
	background-color: #fff;
	padding: 2rem 2rem;
	position: relative;
	min-height: 250px;
	border-radius: 1rem;
	margin: 30px 12px 20px 12px;
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 17px;
	color: #ff8e00;
}
.gallery-box-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.2s ease-in-out;
}
.gallery-box-wrapper {
	display: block;
	overflow: hidden;
}
.gallery-box-wrapper:hover img {
	transform: scale(1.1);
}
.gallery-box-wrapper a {
	cursor: pointer;
}
.map-section iframe {
	width: 100%;
	display: block;
}
.footer-bottom-wrapper {
	background-color: #f8be5c;
	padding: 20px 40px;
	border-radius: 0px;
	margin-top: -53px;
}
.content-icon-btn .icon-btn {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	max-width: 340px;
}
.content-icon-btn .icon-btn span {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.0rem;
	font-family: "Work Sans", sans-serif;
	margin-bottom: 0px;
}
.content-icon-btn .icon-btn i svg {
	width: 44px;
	height: 44px;
	color: #000;
}
.content-icon-btn .icon-btn i {
	margin-right: 12px;
}
.header-contact-details .icon-btn i svg {
	width: 24px;
	height: 24px;
	color: #f8be5c;
}
.header-contact-details .icon-btn {
	font-size: 18px;
}
.header-contact-details {
	margin-bottom: 15px;
}
.gold-text {
	color: #f8be5c;
}
.round-image img {
	border-radius: 50%;
}
.featured-box-wrapper {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	position: relative;
}
.featured-box-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.featured-box-icon svg {
	width: 50px;
	height: 50px;
	display: block;
	color: #f8be5c;
}
.featured-box-wrapper h4 {
	font-size: 18px;
	color: #000000;
	font-family: "Work Sans", sans-serif;
	margin: 20px 0 0;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0;
}
.featured-box-title {
	font-size: 40px;
	color: #f8be5c;
	font-weight: 600;
}
.service-box-main-wrapper {
	display: flex;
	width: 100%;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	border-radius: 1.875rem;
	border: 1px solid #c1c1c1;
	padding: 1.25rem;
	position: relative;
	background-color: #ffffff;
}
.service-box-main-wrapper-image {
	display: block;
	position: relative;
	border-radius: 0;
	height: 365px;
}
.service-box-main-wrapper-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: center;
	border-radius: 0;
}
.service-box-main-wrapper-content {
	display: block;
	text-align: center;
	color: #464646;
	font-size: 16px;
	padding-top: 25px;
}
.service-box-main-wrapper-content h4 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	font-family: "Work Sans", sans-serif;
	margin: 0 0 15px;
}
.service-box-main-wrapper-content p {
	line-height: 1.4rem;
}
.service-count {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	display: flex;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #c1c1c1;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	width: 52px;
	height: 52px;
	z-index: 5;
	margin-top: -25px;
}
#slide-carousel .glide__slide {
	padding-top: 25px;
}
.service-box-main-wrapper:hover .service-count {
	background-color: #f8be5c;
	border-color: #f8be5c;
	color: #fff;
}
.service-box-main-wrapper:hover {
	border-color: #000000;
}
.slide-txt {
	font-size: 8rem;
	line-height: 100%;
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	-webkit-text-fill-color: #fff;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #c7c7c7;
	position: relative;
	font-family: arial;
	margin: 0;
	letter-spacing: 0.1rem;
	line-height: 100%;
}
.fade-image {
	position: relative;
	overflow: hidden;
}
/* Gradient overlay for right fade */



.fade-image:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	/* adjust fade width */



	background: linear-gradient(to right, transparent, white);
	pointer-events: none;
}
.bg-fade {
	position: relative;
	overflow: hidden;
}
.bg-fade:after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.9);/* white overlay with 50% opacity *//* Or for darker overlay: rgba(0, 0, 0, 0.4) */



}
.bg-fade:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	/* adjust fade width */



	background: linear-gradient(to left, transparent, white);
	pointer-events: none;
}
.about-right-box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4rem;
	flex-direction: column;
}
.big-title h2 {
	font-size: 45px;
	color: #f8be5c;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.1rem;
	line-height: 120%;
}
.anchor-image {
	position: absolute;
	right: 0;
	top: -130px;
	z-index: 5;
	width: 114px;
	display: block;
}
.anchor-image img {
	width: 100%;
	height: auto;
	display: block;
}
.gallery-section:before, .gallery-section:after {
	content: "";
	position: absolute;
	right: 0;
	z-index: 1;
	height: 90px;
	background-color: #f4f4f4;
	width: 100%;
	max-width: 80%;
}
.gallery-section:before {
	top: 0;
}
.gallery-section:after {
	bottom: 0;
}
.contruction-field-section {
	display: block;
	position: relative;
	width: 100%;
}
.d-grid-section {
	display: flex;
	flex-direction: row;
	grid-gap: 0px;
}
.grid-item {
	transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-item {
}
.service-inner {
	position: relative;
}
.service-post-thumbnail {
	position: relative;
	width: 100%;
	height: 680px;
}
.service-post-thumbnail:before {
	content: "";
	position: absolute;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.6);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-post-thumbnail img {
	filter: grayscale(100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
	transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 2;
	padding: 50px 30px;
	align-items: center;
}
.service-title {
	margin-bottom: auto;
	margin-top: auto;
	color: #fff;
	transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
	text-align: center;
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1rem;
}
.overlay-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.d-grid-section .grid-item:hover {
	width: 37.5vw;
	flex-shrink: 0;
}
.service-inner:hover .service-post-thumbnail img {
	filter: grayscale(0);
}
.service-inner:hover .service-post-thumbnail:before {
	background-color: rgba(0, 0, 0, 0.2);
}
.service-inner:hover .service-title {
	font-size: 45px;
	line-height: 1.1666666667;
}
.contact-left-section {
	padding: 4rem;
}
.footer-top-section {
	display: block;
	text-align: center;
	position: relative;
	border-bottom: 1px solid rgba(248, 190, 92, 0.45);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.footer-top-section .footer-logo img {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: auto;
	max-width: 320px;
}
.custom-logo {
	width: 138px;
	height:  auto;
}
.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 #000000;
}
.image-box-wrapper-alt img {
	box-shadow: 60px -60px 0px 0px #000000;
}
.text {
	display: inline;
	position: relative;
}
.show-toggle {
	color: #e42032;
	cursor: pointer;
	font-weight: 500;
}
.show-toggle:hover {
	text-decoration: underline;
}
