:root {
	--color-w: #fff;
	--color-b: #000;
	--color-primary: #FFF500;
	--font-main: 'Inter Regular', sans-serif;
	--font-bold: 'Fractul Alt Bold', sans-serif;
	--font-fractul: 'Fractul Alt Regular', sans-serif;
	--body-font-size: 16px;
	--max-width: 1440px;
	--max-width-pad: 7rem;

	--color-border: #dddddd;
	--color-bg-1: #FAFAFA;
}



html,
body {
	overflow-x: hidden;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

body {
	font-size: var(--body-font-size);
	font-family: var(--font-main);
	max-width: unset;
	color: var(--color-w);
}

.container {
	width: 100%;
	padding-right: 15px;
	margin: 0 auto;
	padding-left: 15px;
}

.container--small .container,
.container.Small {
	max-width: 1340px;
}

.con-m--width {
	max-width: 1550px;
}

/* Misc */
.gap--1 {
	gap: 1rem;
}

.gap--2 {
	gap: 2rem;
}

.gap--3 {
	gap: 3rem;
}

.gap--4 {
	gap: 4rem;
}

.gap--5 {
	gap: 5rem;
}

.gap--6 {
	gap: 6rem;
}

.gap--7 {
	gap: 7rem;
}

.gap--8 {
	gap: 8rem;
}

.gap--9 {
	gap: 9rem;
}

.gap--10 {
	gap: 10rem;
}

a {
	text-decoration: none;
	display: inline-block;
}


p {
	margin-bottom: 20px;
	line-height: 1.5;
}

span {
	line-height: inherit;
}

p:last-of-type {
	margin-bottom: 0;
}

h1 {
	font-size: 6rem;
	margin: 0;
}

h2 {
	font-size: 48px;
	line-height: 1.4;
}

h3 {
	font-size: 40px;
	line-height: 1.3;
}

h4 {
	font-size: 32px;
	line-height: 1.3;
}

h5 {
	font-size: 28px;
	line-height: 1.3
}

h6 {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	h1 {
		font-size: 3.8rem;
		margin: 0;
	}

	h2 {
		font-size: 34px;
		line-height: 1.4;
	}

	h3 {
		font-size: 30px;
		line-height: 1.3;
	}

	h4 {
		font-size: 25px;
		line-height: 1.3;
	}

	h5 {
		font-size: 22px;
		line-height: 1.3
	}

	h6 {
		font-size: 20px;
	}
}

section {
	padding: 8rem 0;
	position: relative;
}

.section-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
}

.container {
	position: relative;
}

.no-pad--section {
	padding: 0;
}

.dp--flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
}

.margin--auto {
	margin: auto;
}

.pt--0 {
	padding-top: 0 !important;
}

.pb--0 {
	padding-bottom: 0 !important;
}

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

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

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

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

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

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

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

.pl--1_5 {
	padding-left: 1.5rem;
}

.col-md-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%
}

.col--1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%
}

.col--2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%
}

.col--3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%
}

.col--4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%
}

.col--5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%
}

.col--6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.col--7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%
}

.col--8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%
}

.col--9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%
}

.col--10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%
}

.col--11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%
}

.col--12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

img {
	width: auto;
}

.width--full img {
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
}

.has--height img {
	height: 100%;
}

.height--full {
	height: 100%;
}

.l-style--none ul li {
	list-style-type: none;
}

.content--button input,
.content--button a {
	padding: 10px 24px;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	border: 1px solid;
	font-size: 16px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	text-transform: capitalize;
	font-weight: 500;

}

.primary--btn a {
	background-color: var(--color-b);
	border-color: var(--color-b);
	color: var(--color-w);
}

.primary--btn a:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-b);
}

.primary--btn-yellow a {
	background-color: var(--color-b);
	border-color: var(--color-b);
	color: var(--color-primary);
}

.primary--btn-yellow a:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-b);
}

.black--btn a {
	background-color: #06152199;
	border-color: var(--color-w);
	color: var(--color-w);
}

.black--btn a:hover {
	background-color: var(--color-w);
	border-color: var(--color-w);
	color: var(--color-b);
}

.p--absolute img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	height: 100%;
}

.p--relative {
	position: relative;
}

.p-relative__image {
	position: relative;
	padding-top: 56%;
	height: 100%;
	width: 100%;
}

.p-relative--image__square {
	position: relative;
	padding-top: 80%;
}

.h--100vh {
	height: 100vh;
}

.color--w a,
.color--w ul li {
	color: var(--color-w);
}

.color--y a,
.color--y ul li {
	color: var(--color-primary);
}

.section-bg--white {
	background: var(--color-w);
	color: var(--color-b);
}

.section-bg--brown {
	background: #F1F0EB;
	color: var(--color-b);
}

.section-bg--black {
	background: var(--color-b);
	color: var(--color-w);
}

@media screen and (max-width: 560px) {
	.content--button {
		width: 100%;
	}

	.content--button a {
		width: 100%;
		justify-content: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
	}
}



/* Header */
.header--section .header-menu .menu-menu-1-container ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}

.header--section .header-menu .menu-menu-1-container ul li {
	padding-right: 2rem;
}

.header--section .header-menu .menu-menu-1-container ul li:last-child {
	padding-right: 0;
}

header.header--section {
	padding: 1rem 0;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	pointer-events: none;
}

.page-id-486 header.header--section {
	background: #000000d9;
}

.header--section .header-content {
	padding: 20px 0;
}

.header--section .header-logo {
	width: 100%;
	max-width: 175px;
}

.header--section .header-menu ul li,
.header--section .header-logo a,
.header--section .header-button a {
	pointer-events: all;
}

header.header--section.sticky {
	background: #00000091;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;

}

.logo{
	width:350px;
	display:block;
	margin:0 auto 5px;
}

.header .mobile--btn__inner {
	position: relative;
	width: 6rem;
	height: 6rem;
	z-index: 11111;
}

.header .mobile--btn {
	height: 100%;
	width: 100%;
	position: absolute;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
}

.header .mobile--btn span {
	width: 24px;
	background: #fff;
	position: absolute;
	height: 3px;
	border-radius: 25px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
}

.header .mobile--btn span:nth-child(1) {
	top: 35%;
}

.header .mobile--btn span:nth-child(3) {
	top: 65%;
	width: 24px;
}

.header .mobile--btn__wrapper .contact-detail--each {
	display: none;
}

.header .mobile--btn.active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header .mobile--btn.active span:nth-child(2) {
	display: none;
}

.header .mobile--btn.active span:nth-child(3) {
	left: 50%;
	width: 24px;
	top: 50%;
}

.header .header .mobile--btn.active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header .mobile--btn.active span:nth-child(2) {
	display: none;
}

.header .mobile--btn.active span:nth-child(3) {
	left: 50%;
	width: 24px;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.header .mobile--btn {
	pointer-events: all;
}


.header .mobile--menu a {
	display: block;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
}

.header .mobile--menu a:hover {
	opacity: 0.5;
}

.header .mobile--menu.active {
	pointer-events: auto;
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	-o-transform: translateX(-20px);
	transform: translateX(-20px);
	z-index: 1;
}

.header .mobile--menu.active,
.header .mobile--menu {
	transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
}

.header .mobile--menu ul {
	list-style: none;
}

.header .header--mobile__menu {
	display: none;
}

.header .header--menu__pop-up ul.menu {
	text-align: center;
	padding-top: 10rem;
}

.header .header--menu__pop-up ul li {
	list-style: none;
}

.header .header--menu__pop-up ul li a {
	color: #fff;
	padding: 2rem 0;
}

.header .header--menu__pop-up {
	height: 100vh;
	background: var(--color-b);
	position: relative;
	z-index: 111111111111;
	display: none;
}

html.active .header--section {
	background: var(--color-b);
}

html.active {
	overflow-y: hidden;
}

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

	.header .header--menu__main,
	.header .header-menu,
	.header .header-button {
		display: none;
	}

	.header .header--mobile__menu {
		display: block;
	}

	header.header .container.con-m--width {
		background: var(--color-primary);
	}

	.header .header--inner {
		padding: 15px 0;
	}
}

@media screen and (max-width: 299px) {
	.header .header--inner {
		flex-direction: column;
	}
}





/* Footer */
footer.footer-section {
	position: relative;
	z-index: 1;
}

.footer-section .fs--inner {
	background: var(--color-b);
	padding: 6rem 0;
}

.footer-section .footer-content--wrapper {
	border-top: 5px solid var(--color-primary);
	padding-top: 5rem;
	padding-bottom: 8rem;
}

.footer-section .footer-logo {
	width: 100%;
	max-width: 200px;
}

.footer-section .footer-site--logo {
	width: 100%;
	max-width: 240px;
}

.footer-section .footer-logo--first,
.footer-section .footer-logo--second {
	width: 100%;
	max-width: 80px;
}

.footer-section .footer-menu ul li:not(:last-child),
.footer-section .content--third .content-text:not(:last-child) {
	padding-bottom: 2rem;
}

.footer-section .footer-bottom--content {
	border-top: 1px solid #9A9A9A;
	padding-top: 2rem;
}

.footer-section .footer-bottom--content span {
	color: #DDDDDD;
}

.footer-section .content-agreement .content--text:not(:last-child) {
	padding-right: 3rem;
}

.footer-section span {
	line-height: 1.4;
}

@media screen and (max-width: 991px) {
	.footer-section .footer-content--wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-section .content--third {
		padding-top: 2rem;
	}
}

@media screen and (max-width: 850px) {
	.footer-bottom .footer-bottom--content {
		flex-direction: column;
	}

	.footer-bottom .content-copyright {
		padding-bottom: 2rem;
	}
}

@media screen and (max-width: 600px) {
	.footer-section .footer-content--wrapper {
		grid-template-columns: 1fr;
	}

	.footer-section .content--second {
		padding-top: 2rem;
	}
}

/* Hero Banner */
.hero--banner .hb-content--main h2,
.regular-content h3,
.section-testimonials .content--title h4,
h1,
h2,
h3,
h4 {
	/* font-family: var(--font-fractul); */
}


section.hero--banner {
	z-index: 1;
}
.hero--banner__main.height--full{
	text-align: center;
}
.hero--banner .row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	height: 100%;
}

.enq--form{
	max-width:500px;
	border: 2px solid rgba(255,255,255,0.3);
	padding:40px;
	display:block;
	margin:auto;
	margin-top:25px;
}
.wpcf7-spinner{
	display:none;
}

/* Wrapper */
.md-form {
    position: relative;
    margin-bottom: 1.8rem;
}

/* INPUTS & TEXTAREAS */
.md-form input[type="text"],
.md-form input[type="email"],
.md-form input[type="tel"],
.md-form textarea,
.md-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding: 10px 0;
    color: #fff;
    font-size: 1.5rem;
    outline: none;
    appearance: none;
}

/* Placeholder behaviour for dropdowns */
.md-form select {
    color: rgba(255,255,255,0.6);
}

.md-form select option {
    color: #000; /* Normal dropdown menu text colour */
}

/* When user selects an option */
.md-form select:valid {
    color: #fff;
}

/* Focus underline highlight */
.md-form input:focus,
.md-form textarea:focus,
.md-form select:focus {
    border-bottom-color: #fe8f2d;
}

/* Submit Button */
.md-submit input[type="submit"] {
    background: #fe8f2d;
    color: #000;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.md-submit input[type="submit"]:hover {
    opacity: 0.85;
}
/* Textarea height */
.md-form textarea {
    min-height: 80px;
		max-height: 120px;
}


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

@media screen and (max-width: 767px) {
	section.hero--banner {
		height: unset;
	}

	.hero--banner .col--6 {
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
		-moz-flex: 0 0 100%;
		-o-flex: 0 0 100%;
		max-width: 100%;
	}
}



/* SINGLE PROJECT CSS */
.single-projects--banner {
	padding: 0;
}

/* WRAPPER */
.single-project--wrapper {
	gap: 1rem;
	position: relative;
}

/* MAIN SLIDER */
.single-project-slider {
	min-width: 0;
	/* important to prevent overflowing */
}

.sps--image {
	height: 85vh;
}

.sps--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
}

/* NAV SLIDER */
.single-project--nav-slide {
	width: 220px;
	position: absolute;
	right: 150px;
	top: 50%;
	transform: translateY(-50%);
}

/* OVERRIDE SLICK INLINE WIDTHS */
.spns--nav.slick-slider {
	width: 100% !important;
	display: block !important;
}

/* SLIDE EACH */
.spns--nav .spns--nav-each {
	margin: 10px 0;
	display: block;
}

/* IMAGE */
.spns--nav .spns--nav-each img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.spns--inner {
	height: 150px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	box-shadow: 0 0 5px 0px #000000;
	-ms-box-shadow: 0 0 5px 0px #000000;
	-webkit-box-shadow: 0 0 5px 0px #000000;
	-moz-box-shadow: 0 0 5px 0px #000000;
	-o-box-shadow: 0 0 5px 0px #000000;
	border-radius: 12px;
	-ms-border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	overflow: hidden;
}

.spns--inner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
}

.single-projects--banner .sps--dots {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
}

.single-projects--banner .sps--dots ul.slick-dots {
	position: absolute;
	bottom: 5rem;
	left: 5rem;
}

.single-projects--banner .sps--dots ul.slick-dots li {
	height: 15px;
	width: 15px;
	margin: 10px;
	list-style: none;
	border-radius: 50%;
	-ms-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	background: #9A9A9A;
}

.single-projects--banner .sps--dots ul.slick-dots li.slick-active {
	background: #FFF500;
}

.single-projects--banner .sps--dots ul.slick-dots li button {
	display: none;
}

.single-projects .related-projects a {
	display: block;
	position: relative;
}

.single-projects .related-projects .related-thumb {
	height: 21rem;
}

.single-projects .related-projects .related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-projects .related-each:hover .related-title {
	opacity: 1;
	transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;

}

.single-projects .related-title {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
	background: #0000008c;
	opacity: 0;
	transition: 0.3s all ease;
	-ms-transition: 0.3s all ease;
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
}

.single-projects .related-title h5 {
	font-size: 24px;
	color: #fff;
}

.h-100 {
	height: 100%;
}

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

/* projects ARCHIVE */

.projects-archive {
	padding-top: 6rem;
	color: #000;
}

.projects-archive h1 {
	font-size: 6.4rem;
}

.projects-archive .content--title__wrapper {
	border-bottom: 1px solid #d2d2d2;
}

.projects--wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 5rem;
	row-gap: 8rem;
}

.projects--each {
	background: #fff;
}

.projects--each .content--image {
	height: 32rem;
	border-radius: 2.4rem;
	-ms-border-radius: 2.4rem;
	-webkit-border-radius: 2.4rem;
	-moz-border-radius: 2.4rem;
	-o-border-radius: 2.4rem;
	overflow: hidden;
}

.projects--each .content--image a {
	height: 100%;
	width: 100%;
}

.projects--each img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
}

.projects--each h3 {
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom: 1rem;
	color: #000;
}

.projects--each .content--title {
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.projects--each p {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #000;
}

.projects--each .content--button__wrapper {
	max-width: max-content;
}

.projects--each .content--button a {
	color: var(--color-primary);
	background: #000;
	border: 1px solid #000;
	text-transform: unset;
}

.projects--each .content--button a:hover {
	color: #000;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);

}

.view-more--wrapper {
	text-align: center;
	margin-top: 6rem;
}


.projects--each a {
	width: 100%;
	color: #000;
}

#projectsFilter .category-filter label {
	color: #000;
}

#projectsFilter select {
	padding: 2rem;
	padding-right: 4rem;
	/* make space for the custom arrow */
	border-radius: 2rem;
	border: 1px solid #d2d2;

	appearance: none;
	/* removes default arrow */
	-webkit-appearance: none;
	/* Safari/Chrome */
	-moz-appearance: none;
	/* Firefox */
	background: #fff url("data:image/svg+xml;utf8,<svg fill='black' height='30' viewBox='0 0 24 24' width='30' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 1rem center;
	background-size: 2.5rem;
	/* control arrow size */
}

@media screen and (max-width: 1140px) {
	.projects--wrapper {
		gap: 3rem;
	}

	.projects-archive h1 {
		font-size: 5rem;
		line-height: 1;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 991px) {
	.projects--wrapper {
		column-gap: 2rem;
		row-gap: 4rem;
	}

	#projectsFilter select {
		padding: 1rem 2rem;
	}

	.projects--each h3 {
		font-size: 2rem;
	}

}

@media screen and (max-width: 767px) {
	.projects--each .content--image {
		height: 25rem;
	}

	.projects--wrapper {
		grid-template-columns: 1fr 1fr;
	}
}

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


	.projects--wrapper {
		grid-template-columns: 1fr;
	}
}






/* Regular Content */

.regular-content .reverse .col-1 {
	grid-column: 2;
	grid-row: 1;
}

.regular-content .reverse .col-2 {
	grid-column: 1;
	grid-row: 1;
}

.regular-content .content--image {
	border-radius: 20px;
	-ms-border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	overflow: hidden;
	height: 380px;

}

.regular-content .content-image--wrapper {
	width: 100%;
	max-width: 580px;
	margin: auto;
	z-index: 1;
}

.regular-content .float-img {
	position: absolute;
	top: -30px;
	left: -25px;
}

.regular-content .float-img--2 {
	position: absolute;
	bottom: -40px;
	right: -30px;
	z-index: -1;
}

.regular-content .reverse .float-img,
.regular-content .reverse .float-img--2,
.regular-content .float-img--3 {
	display: none;
}

.reverse .float-img--3 {
	display: block;
	position: absolute;
	bottom: -50px;
	left: -33px;
	z-index: -1;
}

.regular-content .content-list--items ul {
	column-count: 2;
}

.regular-content .content-list--items .content-text--wrapper {
	padding-left: 2rem;
}

.regular-content .content-list--items ul li:not(:last-child) {
	padding-bottom: 10px;
}

.regular-content .img-carousel__wrapper {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	-ms-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	overflow: hidden;
}

.regular-content .img-carousel__wrapper a {
	width: 100%;
}

.regular-content .content--text ul {
	padding-left: 2rem;
}

.regular-content .content--text ul li {
	padding-bottom: 1rem;
}

.regular-content .content--text h2 {
	font-size: 3.2rem;
	margin-top: 2rem;
}

@media screen and (max-width: 1200px) {
	.regular-content .content-main {
		display: block;
	}

	.regular-content .col-1 .content--wrapper {
		padding-bottom: 5rem;
	}

	.regular-content .content-list--items {
		grid-template-columns: 1fr;
	}

	.regular-content .col-1 .list-items--text {
		padding-bottom: 5rem;
	}

	section.regular-content {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 767px) {
	.regular-content .content-list--items ul {
		column-count: 1;
	}
}





/* INNER BANNER SECTION */
.inner-banner {
	padding-top: 25rem;
	padding-bottom: 18rem;
}

.inner-banner .section-bg:before {
	content: '';
	background-image: linear-gradient(180deg, #000, transparent);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;

}

.inner-banner .content__wrapper {
	max-width: 50rem;
}

.inner-banner .content--link a {
	color: var(--color-primary);
}









/* Testimonial */
.section-testimonials .testi-profile--wrapper .content--image {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
	-ms-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
	height: 50px;
}

.section-testimonials .tc-each--inner {
	padding: 3rem;
	background: var(--color-w);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.section-testimonials .tc--each {
	padding: 0 1rem;
}

.section-testimonials .testi-name {
	padding-bottom: 5px;
}

.section-testimonials .slick-list {
	padding: 2rem 0;
}

.section-testimonials .content-svg--prev,
.section-testimonials .content-svg--next {
	cursor: pointer;
	opacity: 20%;
}

.section-testimonials .content-svg--prev:hover,
.section-testimonials .content-svg--next:hover {
	opacity: 100%;
}

.section-testimonials .testi-position h6 {
	color: #161211;
	font-weight: 500;
}

.section-testimonials ul.slick-dots {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	padding-top: 2rem;
	margin-bottom: 3rem;
}

.section-testimonials ul.slick-dots li.slick-active {
	background: var(--color-primary);
}

.section-testimonials ul.slick-dots li {
	border-radius: 50%;
	-ms-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	width: 20px;
	list-style: none;
	height: 20px;
	background: #000;
}

.section-testimonials ul.slick-dots li button {
	display: none;
}


/* Image Slider */


.image-slider .img-carousel__wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 12rem;
	margin: 0 5rem;
}

.image-slider .img-carousel__wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	-o-object-fit: contain;
	-webkit-object-fit: contain;
	-moz-object-fit: contain;
	-ms-object-fit: contain;
}



/* Post Grid */
.section-post--grid .grid-post--each {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 40rem;
	height: 100%;
}

.section-post--grid .gp-image {
	width: 100%;
	height: 100%;
	position: relative;
}

.section-post--grid .gp-image--wrapper,
.gp-image--wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-post--grid .gp-title h6 {
	font-size: 28px;
	color: var(--color-w);
	font-weight: 500;
}

.section-post--grid .content-subtitle h6 {
	font-size: 18px;
	color: var(--color-w);
}

.section-post--grid .gp-contents,
.section-post--grid .grid-post--each.active .gp-contents,
.gp-contents,
.grid-post--each.active .gp-contents {
	opacity: 0;
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	-ms-transform: translateY(5px);
	-o-transform: translateY(5px);
	transform: translateY(5px);
}

.section-post--grid .gp-contents,
.section-post--grid .grid-post--each.active .gp-contents,
.gp-contents,
.grid-post--each.active .gp-contents {
	opacity: 0;
	transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
}

.section-post--grid .gp-contents {
	z-index: 1;
	padding: 0 2rem;
	max-width: 55rem;
	margin: auto;
}

.section-post--grid .grid-post--each.active .gp-contents,
.grid-post--each.active .gp-contents {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.section-post--grid .grid-post--each .gp-image::before,
.grid-post--each .gp-image::before {
	background: rgb(2, 0, 36);
	background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0.5438550420168067) 100%, rgba(0, 0, 0, 0.11528361344537819) 100%);
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
}

.section-post--grid .grid-post--each.active .gp-image::before,
.grid-post--each.active .gp-image::before {
	opacity: 1;
	transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
}

.section-post--grid .grid-post--each .gp-image img,
.grid-post--each .gp-image img {
	transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
}

.section-post--grid .grid-post--each.active .gp-image:hover img,
.grid-post--each.active .gp-image:hover img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
}

.section-post--grid .grid-post--each.active,
.section-post--grid .grid-post--each,
.grid-post--each.active,
.grid-post--each {
	overflow: hidden;
}


.section-post--grid .grid-post--each.active .gp-contents,
.grid-post--each.active .gp-contents {
	pointer-events: none;
}



@media screen and (max-width: 991px) {
	.section-post--grid .grid-post--each {
		min-height: 35rem;
	}

	.section-post--grid .gpc-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.section-post--grid .gpc-inner {
		grid-template-columns: 1fr;
	}
}


/* Contact Form */
.contact-form {
	padding: 0;
}

.contact-form .cf-content--inner {
	padding: 8rem 0;
}

.contact-section--form-main input {
	padding: 1rem 0;
}

.contact-section--form-main input,
.contact-section--form-main textarea {
	border: none;
	background: none;
	border-bottom: 1px solid #161211;
	width: 100%;
}

.contact-section--form-main input:focus,
.contact-section--form-main textarea:focus {
	border: none;
	outline: none;
	border-bottom: 1px solid #161211;
}

.form-button input {
	background: var(--color-b);
	padding: 1rem 3rem;
	color: var(--color-w);
	border: 1px solid var(--color-b);
	max-width: 120px;
}

.form-button input:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-b);
}

@media screen and (max-width: 991px) {
	.contact-form .cf-content {
		padding: 4rem;
	}

	.contact-form .content-main {
		grid-template-columns: 1fr;
		height: 100%;
	}

	.contact-form .background--image {
		width: 100%;
		height: 100%;
	}

	.contact-form .background--image img {
		position: relative;
	}
}

.no--found-post {
	display: block;
	margin-top: 6rem;
	text-align: center;
	font-size: 2.5rem;
}


/* Accordion */
.accordion--section .accordion--text {
	display: none;
}

.accordion--section .services-body {
	column-count: 2;
	padding: 3rem 0;
	padding-left: 5rem;
}

.accordion--section .left--content .accordion--title {
	padding-left: 5rem;
}

.accordion--section .accordion--text {
	/* break-inside: avoid;
    flex: 1 1 calc(100% - 20px); Full width for 1 item */
}

.accordion--section .content-logo {
	position: absolute;
	width: 100%;
	max-width: 32px;
}

.accordion--section .left--content {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}

.ca--each.active .acc--icon svg>path:first-child {
	opacity: 0;
}

.accordion--section .left--content .accordion--title span {
	font-size: 25px;
	font-weight: 600;
}

.accordion--section .accordion--text span {
	color: var(--color-b);
}

.single-projects .gpc-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
}

/* POST GRID SLIDER */

.grid-post--content {
	position: relative;
}

.gpc--arrow {
	max-width: 40px;
	padding: 1rem;
	background: #ffffff33;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	z-index: 9;
	cursor: pointer;
}

.gpc--arrow.prev {
	left: 5rem;
}

.gpc--arrow.next {
	right: 5rem;
}

.gpc--arrow svg {
	width: 100%;
}

.gpc--arrow svg path {
	fill: #fff;
}

.single-projects .section-post--grid {
	padding-top: 0;
}

.single-projects .content-sidebar .sb--title span {
	font-size: 25px;
	font-weight: 600;
	color: var(--color-b);
}

.single-projects .load--wrapper {
	display: none;
}

.single-projects .sp-image {
	position: relative;
	padding-top: 50%;
	width: 100%;
	height: 100%;
}

.single-projects .sp-image img {
	position: absolute;
	top: 0;
	height: 100%;
	left: 0;
}

.single-our-projects .header--section {
	background: #00000091;
}

.single-projects .sp-title--wrapper h3 {
	color: var(--color-b);
}

.single-projects .cbs-each--inner {
	border: 1px solid #E8E8E8;
	border-radius: 20px;
	padding: 1rem 1rem;
	width: 100%;
	max-width: 320px;
}

.single-projects .cbs-button a {
	color: var(--color-b);
}

.single-projects .cbs-each:not(:last-child) {
	padding-bottom: 2rem;
}

.single-projects .single-post--tags a {
	color: #9A9A9A;
}

.single-projects .content-sidebar .grid-post--each {
	min-height: 30rem;
}

.single-projects .content-sidebar .gpc-inner {
	gap: 1rem;
}

.single-projects .content-category--button .cbs-each--inner:hover {
	background: var(--color-primary);
}

.single-projects .content-category--button .cbs-each--inner:hover .cbs-button svg path {
	fill: var(--color-b);
}

@media screen and (max-width: 991px) {
	.single-projects .content-main--inner {
		flex-direction: column;
	}

	.single-projects .content-main--inner .col--8,
	.single-projects .content-main--inner .col--4 {
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
		-moz-flex: 0 0 100%;
		-o-flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}

	.single-projects .content-main--inner .col--8 {
		padding-bottom: 4rem;
	}

	.single-projects .content-sidebar .grid-post--each {
		height: 100% !important;
	}
}

@media screen and (max-width: 400px) {
	.single-projects .icon--wrapper {
		display: none;
	}

	.single-projects .slick-dots {
		margin-top: -35px;
	}
}



.single-projects .slick-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	gap: 15px;
	list-style: none;
	position: absolute;
	width: 100%;
	height: 100%;
	margin-top: -50px;
}

.single-projects .slick-dots li button {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	-ms-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: gray;
	border: none;
	transition: background-color 0.3s;
	font-size: 0;
}


.single-projects .slick-dots li.slick-active button {
	background-color: yellow !important;
}


.single-projects .slick-dots li button:hover {
	background-color: darkgray;

}

.single-projects .slick-dots li {
	list-style: none;
	margin: 0;
	padding: 0;
}






/* Service section */
.services-section {
	color: #000;
	padding-top: 18rem;
}

.services-content-item .content-item-body-wrapper {
	display: none;
}

.services-content-item.active .content-item-body-wrapper {
	display: grid;
}

.services-content .services-content-item:not(:last-child) {
	padding-bottom: 8rem;
	border-bottom: 1px solid var(--color-border);
}

.services-content .services-content-item:not(:first-child) {
	padding-top: 8rem;
}

.content-item-text-box {
	display: none;
}

.content-item-text-box.active {
	display: block;
}

.services-section .content-item-body-wrapper .grid-col--1 .img img {
	width: 100%;
	height: 100%;
	max-height: 450px;
	object-fit: cover;
}

.services-section .header {
	text-align: center;
	margin-bottom: 10rem;
}

.services-section .header .desc {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 2rem;
}

.services-section .header h1 {
	font-size: 4rem;
}

.content-item-header {
	position: relative;
	width: 100%;
}

.services-section .content-item-header h2 {
	font-size: 2rem;
}

.services-section .content-item-header-wrapper {
	column-gap: 2rem;
	margin-bottom: 3rem;
}

.services-section .content-item-header-wrapper .icon img {
	width: 32px;
	height: auto;
	margin-top: 5px;
}

.services-section .cl--image {
	align-items: center;
	height: 100px;
}

.services-section .cl--image img {
	width: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1);
}

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

	.services-section .cl--inner {
		grid-template-columns: 1fr 1fr;
	}
}

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

	.services-section .cl--inner {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

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

	.services-section .cl--inner {
		gap: 1rem;
		grid-template-columns: 1fr;

	}

}


.service-toggle-btn {
	position: absolute;
	right: 0;
	cursor: pointer;
}

.services-content-item:not(.active) .service-toggle-btn .minus {
	display: none;
}

.services-content-item.active .service-toggle-btn .plus {
	display: none;
}

.content-item-text-box .text {
	background-color: var(--color-bg-1);
	padding: 5rem;
}

.content-item-header .desc {
	margin-top: 1rem;
}

.content-item-text-box .text h3 {
	font-size: 2rem;
	margin-bottom: 3rem;
}

.content-item-nav-list {
	list-style: none;
}

.content-item-nav-item {
	padding: 2rem;
	border-bottom: 1px solid var(--color-border);
	cursor: pointer;
	transition: all 0.5s;
}

.content-item-nav-item:hover {
	background-color: var(--color-bg-1);
}

.content-item-nav-item.active {
	background-color: var(--color-bg-1);
}

.content-item-nav-number {
	font-size: 3.2rem;
}

.content-item-nav-item .flex {
	column-gap: 3rem;
}

.content-item-nav-title p {
	text-transform: uppercase;
}

.content-item-nav-item {
	color: #b0b0b0;
}

.content-item-nav-item.active {
	color: var(--color-b);
}

@media screen and (max-width: 768px) {
	.content-item-body-wrapper {
		grid-template-columns: 1fr;
	}

	.content-item-body-wrapper .grid-col--2 {
		grid-column: 1;
		grid-row: 1;
	}

	.content-item-text-box .text {
		padding: 2rem;
	}

	.content-item-header .desc {
		padding-right: 3rem;
	}
}
