/*-----------------------------------------------------
Table of Contents

1. General Styles
2. Navigation
3. Footer
4. Pages
	# About Us
	# Case Study
	# Contact 
	# Homepage
		= About Us
		= Contact Us
		= Featured Works
		= Hero
		= Services
	# Journal
	# Projects
	# Project Category
	# Single Journal Entry

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

/*-----------------------------------------------------
1. General Styles
------------------------------------------------------*/

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

html {
	overflow-x: hidden;
	overflow-y: scroll;
}

body {
	font-family: Muli, sans-serif;
	font-size: 100%;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
	transition: all .2s ease-in-out;
}

.btn,
.btn-inverse {
	align-items: center;
	display: flex;
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	height: 60px;
	letter-spacing: 2.5px;
	justify-content: center;
	text-transform: uppercase;
	width: 250px;
}

.container {
	max-width: 1410px;
	margin: auto;
}

.container-large {
	max-width: 1720px;
	margin: auto;
}

.clearfix {
	clear: both;
}

.img-cover  {
	background: lightslategray;
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/*-----------------------------------------------------
2. Navigation
------------------------------------------------------*/

.header {
	height: 110px;
	line-height: 110px;
	width: 100%;
}

.logo {
	/* height: 90px;
	margin-top: 36px; */
	height: 70px;
	margin-top: 21px;
}

.navigation {
	float: right;
}
.navigation li {
	float: left;
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: 2px;
	list-style: none;
	margin-left: 50px;
	text-transform: uppercase;
}
.navigation li a{ color: #FFF !important;}

.open-nav {
	display: none;
	float: right;
	height: 22px;
	margin: 38px 0;
	position: relative;
	width: 28px;
}

.open-nav:hover {
	cursor: pointer;
}

.open-nav i {
	position: absolute;
	top: 50%;
	right: 0;
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav i:before {
	position: absolute;
	top: -9px;
	content: " ";
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav i:after {
	position: absolute;
	top: 9px;
	content: " ";
	height: 2px;
	width: 100%;
	transition: all .3s ease-in-out;
}

.open-nav:hover i:before,
.open-nav:hover i:after {
	width: 80%;
}

.responsive-nav-container {
	position: fixed;
	top: 0;
	left: -100%;
	bottom: 0;
	right: 0;
	height: 100vh;
	width: 100vw;
	opacity: 0;
	transition: opacity .4s, left 0s .4s;
	z-index: 2;
}

.responsive-nav-container.active {
	left: 0;
	opacity: 1;
	transition: opacity .4s, left 0s;
}

.close-nav {
	font-size: 1.5rem;
	position: absolute;
	right: 70px;
	top: 35px;
}

.responsive-nav {
	left: 70px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.responsive-nav li {
	font-family: 'DM Serif Display', serif;
	font-size: 2.7rem;
	letter-spacing: 1px;
	list-style: none;
	margin-bottom: 8px;
	position: relative;
	text-transform: capitalize;
}

.social-links {
	bottom: 35px;
	left: 70px;
	position: absolute;
}

.social-links li {
	float: left;
	font-family: Montserrat, sans-serif;
	font-size: .6875rem;
	font-weight: 500;
	letter-spacing: 3px;
	list-style: none;
	margin-right: 50px;
	text-transform: uppercase;
}

/*-----------------------------------------------------
3. Footer
------------------------------------------------------*/

footer {
	padding-top: 40px;
}

.footer-details {
	float: left;
	width: 25%;
	text-align: center;
}

.footer-details li {
	letter-spacing: .2px;
	list-style: none;
	margin-bottom: 5px;
	text-transform: capitalize;
	    text-align: center;
    display: flex;
    justify-content: center;
}

.footer-details li:first-child {
	font-family: 'DM Serif Text', sans-serif;
	font-size: 1.625rem;
	margin-bottom: 9px;
}

.footer-details .footer-email {
	text-transform: lowercase;
}

.footer-social-icons {
	display: flex;
	gap: 15px;
}

.footer-social-icons a {
	font-size: 1.25rem;
	transition: opacity .2s ease;
}

.footer-social-icons a:hover {
	opacity: 0.7;
}

.footer-contact-details {
	float: right;
}

.footer-details:nth-of-type(4) li:first-child {
	margin-bottom: 20px;
}

.footer-details form input {
	border: none;
	float: left;
	font-family: Montserrat, sans-serif;
	height: 50px;
	outline: none;
	padding-left: 25px;
	width: 80%;
}

.footer-details form input::placeholder {
	font-family: Montserrat, sans-serif;
}

.footer-details form button {
	border: none;
	cursor: pointer;
	float: left;
	height: 50px;
	transition: all .2s ease-in-out;
	width: 20%;
}

.footer-details form button img {
	width: 27%;
}

.copyright {
	font-size: 1.125rem;
	padding: 40px 0 43px 0;
	text-transform: capitalize;
}

/*-----------------------------------------------------
4. Pages
------------------------------------------------------*/

/* =============== # About Us =============== */

.about-page .info {
	margin: 145px 0 140px 0;
}

.about-page .info h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about-page .info h1 {
	font-family: 'DM Serif Text', serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.about-page .info header,
.about-page .info .content {
	float: left;
	width: 48%;
}

.about-page .info .content {
	margin-top: 50px;
	margin-left: 4%;
}

.about-page .info p {
	font-size: 1.1rem;
	line-height: 1.7;
}

.about-page .info p:nth-of-type(1) {
	margin-bottom: 18px;
}

.about-page-img {
	height: 600px;
	width: 100%;
}

/* =============== # Case Study =============== */

.case-study .hero {
	height: 700px;
	width: 100%;
}

.case-study .hero .img-placeholder {
	background: url('../img/case-study-1.jpg');
	-webkit-background-size: cover;
	background-size: cover;
	background-position: right;
	height: 700px;
	left: 0;
	position: absolute;
	top: 100px;
	width: 63%;
	z-index: -999;
}

.case-study .hero .content {
	float: right;
	padding-top: 200px;
	width: 44%;
}

.case-study .hero .content h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-left: 12%;
	padding-left: 100px;
	position: relative;
	text-transform: uppercase;
}

.case-study .hero .content h2:before {
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 70px;
}

.case-study .hero .content h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 5.5rem;
	font-weight: 400;
	line-height: .9;
	margin: 33px 0 38px 0;
	text-transform: capitalize;
}

.case-study .hero .content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-left: 30%;
}

.case-study .info {
	float: left;
	margin: 137px 0 140px 8.5%;
	width: 50%;
}

.case-study .info p:first-child {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.case-study .info p {
	font-size: 1.2rem;
	line-height: 1.7;
}

.case-study .info-2 {
	font-size: 1.375rem;
	line-height: 1.7;
	letter-spacing: .2px;
	margin: 106px auto;
	text-align: center;
	width: 65%;
}

.case-study .details {
	float: right;
	margin-top: 150px;
	padding: 32px 0 40px 0;
	width: 26%;
}

.case-study .details li {
	float: left;
	font-family: 'DM Serif Text', serif;
	font-size: 1.375rem;
	font-weight: 400;
	list-style: none;
	padding: 0 0 0 45px;
	text-transform: capitalize;
	width: 50%;
}

.case-study .details li:nth-of-type(even) {
	padding: 0 0 0 30px;
}

.case-study .details li:nth-of-type(1),
.case-study .details li:nth-of-type(2) {
	margin-bottom: 18px;
}

.case-study .details li span {
	display: block;
	font-family: Montserrat, sans-serif;
	font-size: .6875rem;
	letter-spacing: 1.5px;
	margin-top: 6px;
	margin-top: 3px;
	text-transform: uppercase;
}

.case-study .details li:nth-of-type(2) span {
	margin-top: 0.5px;
}

.case-study .details .small-letter {
	display: inline-block;
	text-transform: lowercase;
}

.case-study-image_1 {
	height: 700px;
	margin-bottom: 60px;
	width: 100%;
}

.case-study-image_2,
.case-study-image_3,
.case-study-image_4,
.case-study-image_5 {
	float: left;
	height: 700px;
	width: 48%;
}

.case-study-image_2,
.case-study-image_4 {
	margin-right: 4%;
}

.next-project {
	margin-top: 150px;
}

.next-project header {
	align-items: center;
	display: flex;
	float: left;
	height: 450px;
	justify-content: center;
	width: 33%;
}

.next-project header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.2rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.next-project .thumbnail {
	float: left;
	height: 450px;
	width: 67%;
}


/* =============== # Contact  =============== */

.contact-image {
	background: url('../img/contact-image.jpg');
	background-position: right;
	-webkit-background-size: cover;
	background-size: cover;
	height: 767px;
	float: right;
	width: 55%;
}

.contact .container {
	position: relative;
}

.contact-form-container {
	height: 647px;
	padding: 60px 100px 0 0;
	position: absolute;
	top: 120px;
	width: 62%;
}

.contact-form-container h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.5rem;
	font-weight: 400;
	padding-bottom: 30px;
	text-transform: capitalize;
}

.contact-form input,
.contact-form textarea {
	border: none;
	outline: none;
}

.contact-form input {
	margin-bottom: 30px;
}

.contact-form input::placeholder,
.contact-form input,
.contact-form textarea::placeholder {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	letter-spacing: .3px;
}

.contact-form input[name=name],
.contact-form input[name=email],
.contact-form input[name=project-type], 
.contact-form input[name=phone-number] {
	float: left;
	height: 50px;
	line-height: 50px;
	padding-left: 20px;
	width: 48%;
}

.contact-form input[name=name],
.contact-form input[name=project-type] {
	margin-right: 4%;
}

.contact-form textarea {
	height: 200px;
	padding: 25px;
	width: 100%;
}

.contact-form textarea {
	font-family: Montserrat, sans-serif;
	font-size: .875rem;
	line-height: 1.6;
}

.contact-form textarea::-webkit-scrollbar {
    width: 8px; 
}

.contact-form input[type=submit] {
	cursor: pointer;
	float: right;
	letter-spacing: 2.5px;
	margin-top: 23px;
	transition: all .2s linear;
}

/* =============== # Homepage =============== */

/* =============== = About us =============== */

.about-us {
	margin: 70px 0;
}

.about-us.who-we-are .block-1 {
	float: none;
	width: 100%;
	text-align: center;
}

.about-us.who-we-are .content p {
	width: 100%;
	max-width:520px;
	margin-left: auto;
	margin-right: auto;
	font-size: 18px;
	margin-top: 20px;
}

.about-us .block-1 {
	float: left;
	width: 57%;
}

.about-us .block-2 {
	float: left;
	width: 43%;
}

/* .about-us .block-1 {
	margin-top: 100px; 
}*/

.about-us .block-2 .about-image {
	height: 670px;
}

/* =============== = Why Choose Us (reversed layout) =============== */

.why-choose-us {
	margin: 0 0 150px 0 !important;
}

.why-choose-us .block-2 {
	float: left;
	width: 43%;
}

.why-choose-us .block-1 {
	float: left;
	width: 57%;
	display: flex;
	align-items: center;
}

.why-choose-us .block-1 .content {
	padding-left: 80px;
}

.why-choose-us .content h2 {
	margin-top: 0;
}

.why-choose-us .block-2 .about-image {
	height: 670px;
}

.about-us .content h3 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

/* Tagline color highlights & animation */
.tagline .tagline-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(15px);
	animation: taglineFadeUp 0.6s ease forwards;
}
/* 
.tagline .tagline-word-1 {
	color: #e85d3a;
	animation-delay: 0s;
}

.tagline .tagline-word-2 {
	color: #2eb086;
	animation-delay: 0.25s;
}

.tagline .tagline-word-3 {
	color: #4a6cf7;
	animation-delay: 0.5s;
} */

@keyframes taglineFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.about-us .content h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.1;
	margin: 28px 0 30px 0;
	text-transform: capitalize;
}

.about-us .content p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 22px;
	width: 73%;
}
.about-highlights p{ margin-bottom: 10px !important; font-size: 14px !important;}

/* =============== = Highlights Section =============== */

.highlights-section {
	padding: 0;
	overflow: hidden;
}

.highlights-grid {
	display: flex;
	width: 100%;
	min-height: 500px;
}

.highlights-panel {
	position: relative;
	flex: 1 1 50%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.highlights-grid:hover .highlights-panel {
	flex: 0.6 1 0%;
}

.highlights-grid:hover .highlights-panel:hover {
	flex: 2 1 0%;
}

.highlights-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: background 0.5s ease;
}

.highlights-panel:hover .highlights-overlay {
	background: rgba(0, 0, 0, 0.7);
}

.highlights-content .displayContent {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, opacity 0.4s ease;
}

.highlights-panel:hover .highlights-content .displayContent {
	max-height: 600px;
	opacity: 1;
}

.highlights-content {
	position: relative;
	z-index: 2;
	padding: 50px 60px;
	color: #fff;
	max-width: 600px;
}

.highlights-content h4 {
	font-family: 'DM Serif Display', serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 18px;
	text-transform: capitalize;
	letter-spacing: 0.5px; text-align: center;
	color: #fff;
}

.highlights-content > p {
	font-family: Muli, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
}

.highlights-content .about-highlights {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	counter-reset: highlights-counter;
}

.highlights-content .about-highlights li {
	/* counter-increment: highlights-counter;
	padding-left: 35px;
	position: relative; */
	margin-bottom: 18px;
}
/* 
.highlights-content .about-highlights li::before {
	content: counter(highlights-counter, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-family: Montserrat, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 1px;
} */

.highlights-content .about-highlights h5 {
	font-family: Montserrat, sans-serif;
	font-size: 0.95rem; text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	margin-bottom: 4px;
}

.highlights-content .about-highlights p {
	font-family: Muli, sans-serif;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0;
}


/* =============== = Contact Us =============== */

.contact-us .block-1 {
	align-items: center;
	display: flex;
	float: left;
	height: 680px;
	justify-content: center;
	width: 50%;
}

.contact-us .block-1 .content {
	width: 60%;
}

.contact-us .block-1 .content h2 {
	font-family: 'DM Serif Text', serif;
	font-size: 4rem;
	font-weight: 400;
	letter-spacing: .5px;
	line-height: 1.1;
}

.contact-us .block-1 .content p {
	font-size: 1.25rem;
	line-height: 1.8;
	letter-spacing: .5px;
	margin: 32px 0 48px 0;
}

.contact-us .block-2 {
	background: url('../images/contact.jpg');
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	float: right;
	height: 680px;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	box-sizing: border-box;
	position: relative;
}

.contact-us .block-2 .block-2-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.contact-us .block-2 .contact-form {
	width: 100%;
	max-width: 500px;
	position: relative;
	z-index: 1;
}

.contact-us .block-2 .contact-form input,
.contact-us .block-2 .contact-form textarea {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	outline: none;
	font-family: Montserrat, sans-serif;
	font-size: .8rem;
	letter-spacing: .3px;
	width: 100%;
	padding: 12px 0;
	margin-bottom: 20px;
	background: transparent;
	color: #fff;
}

.contact-us .block-2 .contact-form input::placeholder,
.contact-us .block-2 .contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.contact-us .block-2 .contact-form input[name=name],
.contact-us .block-2 .contact-form input[name=email],
.contact-us .block-2 .contact-form input[name=project-type],
.contact-us .block-2 .contact-form input[name=phone-number] {
	float: left;
	width: 48%;
}

.contact-us .block-2 .contact-form input[name=name],
.contact-us .block-2 .contact-form input[name=project-type] {
	margin-right: 4%;
}

.contact-us .block-2 .contact-form textarea {
	height: 120px;
	resize: vertical;
}

.contact-us .block-2 .contact-form input[type=submit] {
	cursor: pointer;
	float: right;
	width: auto;
	letter-spacing: 2.5px;
	margin-top: 10px;
	border-bottom: none;
	transition: all .2s linear;
	color: #fff;
}

/* =============== = Featured Works =============== */

.section-heading {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
	grid-column: 1 / -1;
}

.featured-works {
	margin: 70px 0;
}

.featured-works .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.featured-works-item {
	height: 300px;
	position: relative;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

.featured-works-item .overlay {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	transition: all .3s linear;
}

.featured-works-item .overlay:hover {
	opacity: 1;
}

.featured-works-item .overlay .content {
	bottom: 20px;
	left: 20px;
	position: absolute;
}

.featured-works-item .overlay .content h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.7rem;
	font-weight: 400;
	letter-spacing: .3px;
	margin-top: 6px;
	text-transform: capitalize;
}

.featured-works-item .overlay .content span {
	font-family: Montserrat, sans-serif;
	font-size: 1.4rem;
	/* letter-spacing: 1.5px; */
	position: relative;
	text-transform: uppercase;
}

.featured-works-item .overlay .content span:nth-of-type(2) {
	margin-left: 100px;
}

.featured-works-item .overlay .content span:nth-of-type(2):after {
	content: '';
	height: 1px;
	left: -70px;
	position: absolute;
	top: 7px;
	width: 40px;
}

.featured-works .clearfix {
	display: none;
}

/* =============== = Hero =============== */

.main-hero {
	height: 100%;
}

.main-hero header {
	position: relative;
	z-index: 999;
	background-color: #000;
}

.main-hero .block-1 {
	align-items: center;
	display: flex;
	float: left;
	height: 520px;
	width: 55%;	
}

.main-hero .block-1 h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 4rem; text-align: center;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.main-hero .block-1 p {
	font-size: 1.4rem;
	letter-spacing: .2px;
	line-height: 1.8;
	margin: 35px 0 48px 0;
	width: 100%; text-align: center;
}

.main-hero-image {
	background: url('../images/switch-2.jpg');
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	float: left;
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-hero-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}
.header-container{ z-index: 2; display: flex; justify-content: center;} 
.footer-container{ display: flex;
    width: 100%;
    justify-content: space-between;}

.hero-form-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 01;
}

.hero-form-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 480px;
	padding: 40px 35px;
}

.hero-form-header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 8px;
}

.hero-form-header p {
	font-family: Muli, sans-serif;
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
}

.hero-contact-form .form-row {
	display: flex;
	gap: 14px;
}

.hero-contact-form .form-row input {
	flex: 1;
}

.hero-contact-form input,
.hero-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 12px;
	border: none;
	outline: none;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
	color: #fff;
	font-family: Muli, sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.3px;
}

.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.hero-contact-form textarea {
	height: 80px;
	resize: vertical;
}

.hero-form-submit {
	display: block;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 4px;
	background: linear-gradient(135deg, #b8953e, #d4af5a);
	color: #fff;
	font-family: Montserrat, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	cursor: pointer;
	margin-top: 4px;
	transition: background 0.3s ease;
}

.hero-form-submit:hover {
	background: linear-gradient(135deg, #a07e30, #c49d48);
}

/* =============== = Popup Contact Form =============== */

.popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.popup-form {
	background: #1a1a1a;
	border-radius: 10px;
	padding: 40px 36px;
	max-width: 500px;
	width: 100%;
	position: relative;
	transform: translateY(30px);
	transition: transform 0.4s ease;
}

.popup-overlay.active .popup-form {
	transform: translateY(0);
}

.popup-close {
	position: absolute;
	top: 14px;
	right: 18px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.8rem;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s;
}

.popup-close:hover {
	color: #fff;
}

.popup-form h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.8rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 8px;
}

.popup-form > p {
	font-family: Muli, sans-serif;
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
}

.popup-form-row {
	display: flex;
	gap: 12px;
}

.popup-form-row input {
	flex: 1;
}

.popup-contact-form input,
.popup-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 12px;
	border: none;
	outline: none;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: Muli, sans-serif;
	font-size: 0.85rem;
}

.popup-contact-form input::placeholder,
.popup-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.popup-contact-form textarea {
	height: 80px;
	resize: vertical;
}

.popup-submit {
	display: block;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 4px;
	background: linear-gradient(135deg, #b8953e, #d4af5a);
	color: #fff;
	font-family: Montserrat, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	cursor: pointer;
	margin-top: 4px;
	transition: background 0.3s ease;
}

.popup-submit:hover {
	background: linear-gradient(135deg, #a07e30, #c49d48);
}

/* =============== = Services =============== */

.services .item {
	align-items: center;
	border-right: 1px solid #333;
	display: flex;
	float: left;
	height: 265px;
	width: 25%;
}

.services .item:nth-of-type(4) {
	border-right: none;
}

.services .item .content {
	text-align: center;
	width: 100%;
}

.services .item .icon {
	border: 1px solid #666;
	border-radius: 50%;
	display: flex;
	height: 135px;
	justify-content: center;
	margin: auto;
	width: 135px;
}

.services .item .icon img {
	height: 50px;
	margin-top: 42.5px;
	filter: invert(1);
}

.services .item .content h2 {
	font-size: .75rem;
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-top: 35px;
	text-transform: uppercase;
}

/* =============== # Journal =============== */

.journal header {
	position: relative;
	z-index: 2;
}

.journal footer {
	position: relative;
}

.entries-list {
	width: 50%;
}

.entry {
	border-bottom: 1px solid #333;
	padding-bottom: 125px;
	padding-top: 125px;
}

.entry:nth-of-type(1) {
	border-top: 1px solid #333;
}

.entry-thumbs  {
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 50%;
}

.entry-thumbs > div {
	transition: opacity .6s;
}

.entry-thumb {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

.active {
	opacity: 1;
}

.journal .entry-title {
	font-family: 'DM Serif Display', serif;
	font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.2;
	margin-right: 35px;
	text-transform: capitalize;
}

.entry-category {
	display: inline-block;
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

/* =============== # Projects =============== */


.projects-page main {
	padding-bottom: 80px;
}

.projects .item {
	float: left;
	margin-right: 3%;
	width: 22.75%;
}

.projects .item img {
	height: 370px;
}

.projects a:nth-of-type(4) .item {
	margin-right: 0;
}

.projects .item h2 {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	margin-top: 30px;
	position: relative;
	text-transform: uppercase;
}

.projects .item span {
	padding-right: 45px;
}

.projects .item span:after {
	content: "";
	display: inline-block;
	height: 1px;
	left: 34px;
	top: 8px;
	position: absolute;
	width: 15px;
}

/*-----------------------------------------------------
Scroll Reveal Animations
------------------------------------------------------*/

[data-animate] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate="fade-left"] {
	transform: translateX(-40px);
}

[data-animate="fade-right"] {
	transform: translateX(40px);
}

[data-animate="zoom-in"] {
	transform: scale(0.92);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children */
[data-animate-stagger] > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-animate-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-animate-stagger].is-visible > *:nth-child(3) { transition-delay: 0.24s; }
[data-animate-stagger].is-visible > *:nth-child(4) { transition-delay: 0.36s; }
[data-animate-stagger].is-visible > *:nth-child(5) { transition-delay: 0.48s; }
[data-animate-stagger].is-visible > *:nth-child(6) { transition-delay: 0.6s; }

[data-animate-stagger].is-visible > * {
	opacity: 1;
	transform: translateY(0);
}


/* =============== Client Logo Carousel =============== */

.client-carousel {
	padding: 60px 0;
	background: #f9f9f9;
	overflow: hidden;
}

.carousel-track-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.carousel-track {
	display: flex;
	align-items: center;
	gap: 50px;
	width: max-content;
	animation: scrollLogos 25s linear infinite;
}

.carousel-track:hover {
	animation-play-state: paused;
}

.carousel-slide {
	flex-shrink: 0;
	width: 140px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/* filter: grayscale(100%); */
	/* opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease; */
}

.carousel-slide img:hover {
	/* filter: grayscale(0%);
	opacity: 1; */
}

@keyframes scrollLogos {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* =============== # Project Category =============== */

.project-category {
	margin-bottom: 137px;
}

.project-category .item {
	float: left;
}

.project-category a:nth-of-type(odd) .item {
	margin: 0 11% 88px 0;
}

.project-category a:nth-of-type(1) .item, 
.project-category a:nth-of-type(5) .item, 
.project-category a:nth-of-type(8) .item {
	width: 40%;
}

.project-category a:nth-of-type(2) .item,
.project-category a:nth-of-type(3) .item,
.project-category a:nth-of-type(6) .item,
.project-category a:nth-of-type(7) .item {
	width: 49%;
}

.project-category a:nth-of-type(4) .item {
	margin-top: -280px;
	width: 32%;
}

.project-category a:nth-of-type(7) .item {
	margin-bottom: 0;
}

.project-category a:nth-of-type(8) .item {
	margin-top: -280px;
}

.project-category a:nth-of-type(1) .item-img,
.project-category a:nth-of-type(5) .item-img,
.project-category a:nth-of-type(8) .item-img {
	height: 770px;
}

.project-category a:nth-of-type(2) .item-img,
.project-category a:nth-of-type(6) .item-img,
.project-category a:nth-of-type(7) .item-img {
	height: 490px;
}

.project-category a:nth-of-type(3) .item-img {
	height: 390px;
}

.project-category a:nth-of-type(4) .item-img {
	height: 670px;
}

.project-category .item h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 1.875rem;
	font-weight: 400;
	margin-top: 22px;
	text-transform: capitalize;
}


/* =============== # Single Journal Entry =============== */

.single-journal-entry .entry-thumbnail .container {
	position: relative;
}

.single-journal-entry .entry-category {
	font-weight: 600;
	letter-spacing: 2.5px;
	margin: 45px 0 14px 0;
}

.single-journal-entry .entry-title {
	font-family: 'DM Serif Display', serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.entry-meta {
	margin-top: 15px;
}

.entry-author {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 3px;
	text-transform: capitalize;
}

.entry-author span {
	text-transform: lowercase;
}

.entry-date {
	display: block;
	font-size: .87rem;
	letter-spacing: .4px;
}

.entry-content {
	margin-top: 60px;
}

.entry-content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 22px;
	width: 55%;
}

.entry-content .intro {
	font-size: 1.3rem;
	font-weight: 700;
}

.entry-image_1 {
	margin: 70px 0 67px 0;
	position: relative;
	width: 100%;
}

.entry-image_1 img {
	width: 66%;
}

.entry-image_1 figcaption {
	font-size: .8rem;
	left: 69%;
	letter-spacing: .2px;
	line-height: 1.7;
	padding-top: 30px;
	position: absolute;
	top: 0;
}

.quote {
	margin: 70px 0;
	padding: 94px 0 74px 0;
	width: 100%;
}

.quote p {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	line-height: 1.4;
	width: 100%;
}

.entry-image_2 {
	float: left;
	margin: 50px 0 67px 0;
	width: 50%;
}

.entry-image_3 {
	float: right;
	margin-top: 50px;
	width: 37%;
}

.entry-image_3 figcaption {
	font-size: .8rem;
	letter-spacing: .2px;
	line-height: 1.7;
	margin-top: 20px;
}

.similar-posts {
	margin-top: 140px;
}

.similar-posts header,
.similar-posts .item {
	float: left;
	height: 450px;
	width: 33.33333%;
}

.similar-posts header {
	align-items: center;
	display: flex;
	justify-content: center;
}

.similar-posts header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 4.2rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.similar-posts .item {
	position: relative;
	cursor: pointer;
}

.similar-posts .item .overlay {
	bottom: 0;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all .3s linear;
	width: 100%;
}

.similar-posts .item:hover .overlay {
	opacity: 1;
}

.similar-posts .item .overlay .content {
	bottom: 50px;
	padding: 0 35px;
	position: absolute;
	width: 100%;
}

.similar-posts .item .overlay .category {
	font-family: Montserrat, sans-serif;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.similar-posts .item .overlay .title {
	font-family: 'DM Serif Display', serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: .7px;
	line-height: 1.3;
	margin-top: 7px;
	text-transform: capitalize;
}

.displayContent{ display: none;}
.displayContent p{ text-align: center;}
.highlights-grid:hover .displayContent{ display: block; }
.hero-contact-form{ position: relative; z-index: 999;}
.footer-details p, .footer-details ul li, .footer-details ul li a{ color:#000}
.copyright{ display: flex; justify-content: space-between; color: #000;}
.footer-social-icons a{ color: #000; margin-left: 15px;}