/*
Theme Name: Devex Solutions Theme
Author: Devex Solutions
Author URI: https://devexsolutions.com
Description: Devex Solutions Theme
Version: 1.0
*/

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

.doc {
	background: yellow;
}

.display-none {
	display: none;
}

a {
	text-decoration: none;
}

html {
	overflow-x: hidden;
}

.text-justify {
	text-align: justify;
}

.relative {
	position: relative;
}

body {
	background-color: #f9f9f9;
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

.hidden, .hidden>* {
	display: none;
	visibility: none;
}

.wrapper {
	padding-top: 10em;
}

.nav .current-menu-item,
.nav .current_page_parent {
	background: #99CC68;
}

.nav .current-menu-item a,
.nav .current_page_parent a {
	color: #fff;
	font-weight: bold;
}

.sub-menu {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	/*     top: 100%; */
	left: 0;
	background: #fff;
	/*     padding: 10px 0; */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 999;
	/* 	width: 100%; */
}

.hero-texts {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-content-parent p,
.hero-content-parent h3 {
	width: 100%;
}

.hero-badge {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-content-parent {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-badge>p {
	width: max-content;
	font-size: 18px;
}

.detailed-plan-parent {
	width: 100%;
	position: relative;
}

.hero {
	width: 45%;
	bottom: 0;
	z-index: 10;
	left: 2%;
	height: auto;
	position: absolute;
	display: none;
}

.hero-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: end;
	color: white;
}

.hero-construction {
	width: 100%;
	height: auto;
	position: absolute;
	top: -30px;
	/* 	left: -10px; */
}

.footer-head-first {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.working-hours-content {
	display: flex;
	gap: 0.4em;
	font-size: 14px;
	align-items: center;
}

.horizontal-line {
	width: 140px;
	height: 1px;
	background: white;
	position: absolute;
	left: 85px;
	top: 10px;
	z-index: 100;
}

.tag-line {
	width: 100%;
	height: auto;
}

.engineers-contractors {
	font-size: 13px;
	width: max-width;
	color: white;
	text-align: center;
}

.footer-head-first>p {
	text-align: justify;
	font-size: 14px;
	color: white;
}

.footer-head-first>p span {
	padding-left: 1rem;
}

.footer-head-second {
	color: white;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.footer-head-second>h2 {
	font-size: 30px;
	text-align: center;
}

.office-info-two-one {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
}

.office-info-two {
	/* 	width: 590px; */
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1em;
	justify-content: center;
}

.footer-head-second>.office-info-one {
	display: flex;
	align-items: center;
	gap: 1em;
	flex-direction: column;
	width: 100%;
}

.cta-container {
	position: absolute;
	bottom: 50px;
	display: flex;
	gap: 15px;
	width: 55%;
}

.btn-primary {
	background: #99CC68;
	color: white;
}

.btn-primary:hover {
	background: #96C866;
}

.btn-secondary {
	background: white;
	color: #99CC68;
}

.btn {
	outline: none;
	cursor: pointer;
	border: 0;
	width: 150px;
	height: 50px;
	border-radius: 5px;
	text-align: center;
}

.san-juan-content-one,
.san-juan-content-two {
	display: flex;
	font-size: 14px;
	gap: 0.2em;
	text-align: center;
	justify-content: center;
}

.office-info-sub-title {
	font-size: 12px;
	text-align: center;
}

.footer-parent__ {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #bbbcbb;
	padding: 35px 0;
}

header ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	/* 	gap: 1em; */
	width: 100%;
	background: #F0F0F1;
}

.nav {
	width: 100%;

	display: none;
	flex-direction: column;
	/* make it vertical when shown */
	background-color: #fff;
	/* adjust as needed */
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
}

.nav.active {
	display: flex;
	height: 100%;
	max-height: 100vh;
	opacity: 1;
}

.nav.active ul {
	flex-direction: column;
}

.nav.active a {
	font-size: 12px;
	word-wrap: break-word;
}

header ul>li {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	flex-direction: column;
	/* 	padding: 1.3em 0; */
}

header ul>li a {
	color: black;
	text-transform: uppercase;
	font-size: 0.90rem;
	font-weight: 400;
	padding: 1.3em 0;
	text-align: center;
	/* 	min-width: max-content; */
	display: block;
	width: 100%;
	text-decoration: none;
}

header ul>li:hover {
	background: #99CC68;
	cursor: pointer;
}

.current-page-ancestor {
	background: #99CC68;
}

.current-page-ancestor a {
	color: white;
	font-weight: 700;
}

header ul>li:hover>a {
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
}

.logo-img {
	width: 68px;
	height: auto;
}

.content-area {
	padding-top: 6em;
	height: 85vh;
	position: relative;
	width: 100%;
	background: #2D8BD8;
}

.my-logo {
	position: fixed;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	/* 	width: 100%; */
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}

.top-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: white;
	padding: 15px 10px 10px;
}

.top-header-parent {
	width: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.location-header {
	align-items: center;
	gap: 0.50em;
	display: none;
}

.license-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.license-texts {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 1.8em;
	font-size: 8px;
}

.menu-btn {
	padding: 0.80em;
	background: transparent;
	border: 0;
	outline: none;
	display: block;
}

.license-img {
	width: 35px;
	height: auto;
	position: absolute;
	top: -15px;
}

.location-content {
	font-size: 0.75rem;
	display: flex;
	flex-direction: column;
	height: fit-content;
}

.location-content-title {
	font-weight: bolder;
	color: #0B64B9;
}

.location-content-texts {
	display: flex;
	flex-direction: column;
}

.footer-head {
	background: #bbbcbb;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 20px;
}

.footer-low {
	padding: 10px;
	margin: 0;
	color: white;
	font-size: 14px;
}

footer.footer {
	margin: 0;
	background: #636668;
	padding: 0;
}

footer.footer>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

.devex {
	font-weight: 900;
	color: white;
	font-size: 24px;
}

.footer-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-texts>.devex-lg {
	text-align: center;
}

.hero-texts>.hero-paragraph {
	text-align: center;
	font-size: 16px;
	line-height: 18px;
	width: 100%;
	padding: 10px;
}

.devex-lg {
	font-weight: 900;
	color: white;
	font-size: 60px;
}

.devex-lg span {
	font-size: 45px;
}

.devex span {
	font-size: 18px;
}

.footer-icons {
	display: flex;
	align-items: center;
	gap: 3px;
	flex-direction: row;
}

/* PORTFOLIO */
.portfolio {
	background: #f4f4f4;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;
	justify-content: center;
	padding: 65px 10px;
}

.portfolio-title {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
}

.portfolio-title>h3 {
	font-size: 28px;
	font-weight: 800;
}

.title-blue {
	color: #0B64B9;
	height: max-height;
}

.blue-parag {
	color: #0B64B9;
	font-weight: 600;
}

.portfolio-sub-text {
	font-size: 16px;
	color: var(--wp--preset--color--accent-2);
}

.title-green {
	color: #99CC68;
}

.portfolio-card-parent {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	/* 	align-items: center;
	justify-content: center; */
	place-items: center;
	gap: 25px;
}

.portfolio-card {
	position: relative;
	width: 95%;
	background: white;
	height: 200px;
	border-radius: 10px;
	display: flex;
	justify-content: end;
	align-items: start;
	padding: 15px;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
	transition: ease-in 0.3s;
}

.portfolio-card:hover {
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}

.portfolio-card-title {
	display: flex;
	justify-content: end;
	flex-direction: column;
	text-align: end;
	font-weight: 800;
	font-size: 22px;
	max-width: 60%;

	word-wrap: break-word;
	/* Older, but widely supported */
	overflow-wrap: break-word;
	/* Modern, standard-compliant */
	hyphens: auto;
	/* Optional: hyphenates the word */

	z-index: 201;
}

.portfolio-card-img {
	width: 160px;
	height: auto;
	position: absolute;
	left: -20px;
	bottom: 0;
	z-index: 200;
}

.img-chona {
	width: 130px;
}

.img-sarah {
	width: 210px;
	left: -45px;
}

.img-ryan {
	width: 150px;
}

.img-mico {
	width: 220px;
}

/* WHY CHOOSE US */
.why-us {
	position: relative;
	background-image: url('https://devexinc.com/wp-content/uploads/C-BG.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding: 60px 20px;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;
}

.why-us-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.why-us-container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 1200px;
	margin: 0;
	gap: 20px;
}

.why-us-content>a {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	background: #0B64B9;
	width: max-content;
	padding: 15px 12px;
	font-size: 14px;
	border-radius: 8px;
}

.why-us-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.why-us-content>h4 {
	font-size: 40px;
	font-weight: 800;
	text-align: start;
}

.why-us-content-paragraph {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	text-align: start;
	width: 70%;
}

.why-us-cards {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.why-us-cards-card {
	background: white;
	color: #000;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	width: 30%;
	height: 170px;
	font-weight: bold;
}

.why-us-cards-card .title-blue {
	font-size: 32px;
	font-weight: 900;
}

.why-us-cards-card-blue {
	color: #0B64B9;
	font-weight: 700;
	margin-top: 0.35rem;
}

.why-us-cards-card-blue,
.why-us-cards-card-dark {
	font-size: 15px;
}

.why-us-cards-card-dark {
	color: darken;
}

.why-us-cards-card-gray {
	color: gray;
	font-size: 28px;
	margin-top: 0.35rem;
}

/* CONTACT US */
.contact-us {
	padding: 10em 0;
	width: 100%;
	background: #E7F0FF;
	height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-us-parent {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
}

.contact-us-content {
	padding: 2em;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 65px;
}

.contact-us-content-header {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-us-content-header h3 {
	font-weight: 800;
	font-size: 45px;
}

.contact-us-content-locs {
	display: flex;
	width: 70%;
	justify-content: space-between;
	display: none;
}

.contact-us-content-locs-item {
	display: flex;
	flex-direction: column;
	width: 30%;
	gap: 8px;
	color: grey;
}

.contact-us-content-locs-item h5 {
	font-weight: 700;
	font-size: 14px;
}

.contact-us-content-locs-item>div {
	display: flex;
	gap: 5px;
}

.contact-us-content-locs-item>div>p {
	font-size: 14px;
}

.contact-us-form {
	background: white;
	width: 90%;
/* 	padding: 35px; */
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 35px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-form-header {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-us-form-header>h5 {
	font-weight: 700;
	font-size: 30px;
}

.contact-us-form-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-us-form-content>div {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}

input,
textarea {
/* 	border: 0;
	border-bottom: 1px solid #9AA0AA; */
	width: 100%;
	border: solid 1px #ddd;
	border-radius: 5px;
	outline: none;
	padding: 12px;
	font-size: 14px;
}

input:focus,
textarea:focus {
	border: 2px solid #0b64b9;
}

input::placeholder,
textarea::placeholder {
	font-size: 14px;
}

.contact-us-form .btn-form-primary {
	border-radius: 999px;
	background: #0B64B9;
	padding: 15px 0;
	border: 0;
	color: white;
	outline: none;
	transition: background 0.3s ease-in-out;
	cursor: pointer;
}

.contact-us-form .btn-form-primary:hover {
	background: #135E96;
}

.form-success {
	color: green;
	margin-bottom: 10px;
}

.form-error {
	color: red;
	margin-bottom: 10px;
}

.densio {
	width: 120px;
	height: max-content;
}

.f0f-h2 {
	text-align: center;
	font-weight: bold;
	color: gray;
}

.f0f-img-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.f0f-sub-title {
	text-align: center;
}

.btn-home {
	width: 100%;
	text-align: center;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 600;
	color: #0B64B9;
}

.f0f-btn-container {
	text-align: center;
	width: 100%;
}

/* Gen Con */
.gc {
	margin: 3.5em 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3em;
}

.foundation {
	margin: 3.5em 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3em;
}

.gc-header {
	width: 100%;
	display: flex;
	flex-direction: column;	
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	background: #EDEDED;
}

.gc-header-content {
	width: 100%;
	color: #b4b4b4;
	padding: 1.5em 1em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.gc-header-content h2 {
	font-weight: bold;
	color: #7B7B7B;
/* 	font-size: 2.4rem; */
}

.gc-container-header-sub {
	display: flex;
	flex-direction: column;
	gap: 0.65em;
	text-align: justify;
}
.gc-container-wwo {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr; /* default: 1 column */
	gap: 1rem; /* optional, for spacing */
	padding: 0 1em;
	
}

.fdas-container-wwo {
	width: 100%;
	padding: 2em 1em;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	background: #ededed;
	align-items: center;
}

.fdas-parent-cards {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	width: 50%;
}

.fdas-parent-cards .gc-container-wwo-card {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.fdas-parent-cards .gc-container-wwo-card p {
	text-align: center;
	font-size: 1.2rem;
	color: var(--wp--preset--color--accent-2);
}

.gc-container-wwo-header h3, .fdas-container-wwo-header h3 {
	font-size: 38px;
}

.gc-container-wwo-header h3 span, .fdas-container-wwo-header h3 span {
	font-weight: bold;
}

.gc-container-wwo-header p, .fdas-container-wwo-header p {
	font-size: 1.2rem;
	text-align: justify;
	color: var(--wp--preset--color--accent-2);
}

.gc-container-wwo p {
	font-size: 1.2rem;
	text-align: justify;
	color: #7B7B7B;
}

.gc-container-wwo-card {
	padding: 1em;
	border-radius: 5px;
	border: 1px solid #b4b4b4;
/* 	box-shadow: 1px 2px 4px #ccc; */
}

.gc-container-wwo-card img {
	width: 40px;
	height: auto;
}

.gc-container-wwo-card h4 {
	font-weight: bold;
	font-size: 1.25rem;
	color: #0b64b9;
}

.gc-container-wwo-card p {
	font-size: 1rem;
	color: #b4b4b4;
	text-align: justify;
}

.gc-container-wwo-footer {
	font-size: 1rem;
	color: #b4b4b4;
	text-align: justify;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fdas-container-wwo-footer {
	width: 50%;
}

.fdas-container-wwo-footer, .gc-container-wwo-footer {
	color: var(--wp--preset--color--accent-2);
}

.fdas-container-wwo-footer p {
	text-align: justify;
	font-size: 18px;
}

.gc-container-wcd {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0b64b9;
	position: relative;
}

.gc-container-wcd-content > * {
	z-index: 10;
}

.gc-container-wcd-content {
	width: 100%;
	padding: 1.5em 1em;
	display: flex;
	background: #0b64b9;
	flex-direction: column;
	gap: 0.25rem;
}

.buildings, .buildings-2 {
	height: 100px;
	width: auto;
	position: absolute;
}

.buildings {
	left: 0;
}

.buildings-2 {
	right: 0;
	display: none;
}

.gc-container-wcd-content h4 {
	font-size: 1.5rem;
	color: #fff;
}

.gc-container-wcd-content-img {
	width: 100px;
	height: auto;
}


/* Why DEVEX */
.gc-container-cards {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1.45em;
	position: relative;
	padding: 0 1em;
}

.foundation-container-cards {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1.45em;
	position: relative;
	padding: 0 1em;
}

.gc-container-cards img {
	position: absolute;
	top: 5em;
	width: 1000px;
	height: auto;
	left: 18vw;
	z-index: 0;
	display: hidden;
}

/* .gc-container-cards-content {
	width: 100%;
	display: grid;
	gap: 1em;
	place-items: center;
	grid-template-columns: 1fr;
	z-index: 10;
	background: #ccc;
} */

.foundation-container-cards-content {
	width: 100%;
	display: grid;
	gap: 1em;
	place-items: center;
	grid-template-columns: 1fr;
	z-index: 10;
}

.fdas-container-cards-content {
	width: 100%;
	display: grid;
	gap: 1em;
	place-items: center;
	grid-template-columns: 1fr;
	z-index: 10;
}

.gc-container-cards-content-card h4.fdas-card {
	font-size: 2.75rem;
	font-weight: 900;
}

.gc-container-cards-content-card h4.fdas-card-one .fdas-license {
	font-size: 3.25rem;
}

.gc-container-cards-content-card h4.fdas-card-two .fdas-technical {
	font-size: 1.95rem;
}

.gc-container-cards-content-card h4.fdas-card .fdas-system {
	font-size: 3.25rem;
}

.gc-container-cards-content-card h4.fdas-card .fdas-e2e {
	font-size: 3.75rem;
}

.gc-container-cards-content-card h4.fdas-card .fdas-cc {
	font-size: 1.95rem;
}

.fdas-card-three {
	display: flex;
	flex-direction: column;
	gap: 0.14em;
}

.fdas-last-child {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 250px;
}

.fdas-container-cards-content .gc-container-cards-content-card {
	height: 250px;
}

.gc-container-cards-content-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75em;
	height: 200px;
	border-radius: 5px;
	background: #ededed;
	color: #0b64b9;
	flex-direction: column;
	width: 100%;
	padding: 0 1.5em;
}

.gc-container-cards-content-card h4 {
	font-size: 2.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	line-height: 2.65rem;
}

.gc-container-cards-content-card h4.lh-3 {
	line-height: 3rem;
}

.gc-container-cards-content-card h4.lh-2 {
	line-height: 2rem;
}

.foundation-se {
	font-size: 2.12rem;
}

.foundation-container-cards-content-card h4 {
	font-size: 2.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	line-height: 2.95rem;
}

.gc-container-wwo-cards {
	display: flex;
	gap: 0.75em;
	align-items: center;
	flex-direction: column;
}

.gc-container-cards-content-card h4.iso-parent {
	line-height: 2rem;
}

.gc-container-cards-content-card h4.iso-parent span.iso {
	font-size: 1.95rem;
}

.gc-container-cards-content-card h4 span.cost-ef {
	font-size: 1.60rem;
}

.gc-container-cards-content-card h4.cost-ef-parent, .gc-container-cards-content-card h4.lg-scale-parent {
	line-height: 0.65em;
}

.gc-container-cards-content-card p {
	font-size: 1rem;
	text-align: justify;
}

.gc-container-cards-content-card span.span {
	font-size: 1.75rem;
}

.gc-container-cards-content-card span.span-sm {
	font-size: 3.75rem;
}

/* Gen Con - Form */
.gc-container-cards-form {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1em;
	z-index: 10;
}

.gc-container-cards-form-header h3 {
	font-size: 38px;
}

.gc-container-cards-form-header span {
	font-weight: bold;
}

.gc-container-cards-form-header p {
	text-align: justify;
}

.gc-container-cards-form-header p {
	font-size: 1rem;
	text-align: justify;
	color: #0664b9;
} 

.gc-container-cards-form-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 2em 1.5em;
	background: #ededed;
	border-radius: 5px;
	z-index: 10;
}

.gc-container-cards-form-content-header {
	font-size: 0.95rem;
	text-align: center;
	color: #b4b4b4;
	display: flex;
	flex-direction: column;
	gap: 0.15em;
}

.gc-container-cards-form-content-header h4 {
	font-weight: 800;
	font-size: 1.25rem;
}

.gc-container-cards-form-content-header p {
	color: var(--wp--preset--color--accent-2);
}

.careers-form {
	width: 100%;
	margin: 1.75rem 0;
/* 	display: flex;
	flex-direction: column;
	align-items: center; */
}

.gc-container-cards-form-content .careers-form {
	margin: 0;
}

.careers-form-header h5.title-blue {
	font-weight: bolder;
	font-size: 3rem;
}

.careers-form-content {
	padding-top: 1em;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1em;
}

.careers-form>.btn-form-primary {
	width: 100%;
	min-width: max-content;
	background-color: #0B64B9;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 5px;
	height: 45px;
	font-size: 16px;
	transition: background 0.3s ease-in-out;
	cursor: pointer;
	margin-top: 1.75rem;
	
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3em;
}

.gc-container-cards-form .careers-form>.btn-form-primary {
	width: 100%;
}

.gc-container-cards-form .careers-form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.careers-form>.btn-form-primary:hover {
	background-color: #0052AA;
}

.gen-con-form-content, .fdas-form-content {
	display: flex;
	gap: 0.85em;
	flex-direction: column;
	width: 100%;
}

.gen-con-form-content div, .fdas-form-content div {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.45em;
}

.gen-con-form-content div label, .fdas-form-content div label {
	white-space: nowrap;
	text-align: start;
	font-size: 0.95rem;
	color: #0b64b9;
	align-self: center;
	font-weight: 400;
}

.gen-con-form-content input, .fdas-form-content input {
	background: white;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.fdas-parent-cards {
		width: 100%;
	}
}

/* Medium devices (e.g., tablets ≥ 768px) */
@media (min-width: 768px) {
	.img-sarah {
/* 		background: red;
		left: -3em; */
	}
	.gc-container-wwo {
		width: 50%;
		grid-template-columns: repeat(2, 1fr);
		padding: 0;
	}
	
	.fdas-container-wwo {
		padding: 2.5em 0;
		width: 100%;
	}
	
	.fdas-container-wwo p.title-blue {
		font-weight: 600;
	}
	
	/* Gen Con */
	.gc {
		margin: 6.4em 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.foundation {
		margin: 6.4em 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.gc-header {
		width: 100%;
		display: flex;
		flex-direction: column;	
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		background: #F2F2F2;
	}

	.gc-header-content {
		width: 50%;
		color: #7B7B7B;
		padding: 2.5em 0;
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.gc-header-content h2 {
		font-weight: bold;
		color: #7B7B7B;
		font-size: 2.4rem;
	}

	.gc-container-header-sub {
		font-size: 1.2rem;
		display: flex;
		flex-direction: column;
		gap: 0.65em;
		text-align: justify;
	}
	
	.gc-container-wwo-cards {
		flex-direction: row;
	}

	.gc-container-wwo-header h3 {
		font-size: 38px;
	}

	.gc-container-wwo-header h3 span {
		font-weight: bold;
	}

	.gc-container-wwo p {
		font-size: 1rem;
		text-align: justify;
		color: #7B7B7B;
	}

	.gc-container-wwo-card {
		padding: 0.65em;
		border-radius: 5px;
		border: 1px solid #b4b4b4;
/* 		width: 350px; */
/* 	box-shadow: 1px 2px 4px #ccc; */
	}

	.gc-container-wwo-card img {
		width: 40px;
		height: auto;
	}

	.gc-container-wwo-card h4 {
		font-weight: bold;
		font-size: 1.25rem;
		color: #0b64b9;
	}

.gc-container-wwo-card p {
	font-size: 1rem;
	color: #7B7B7B;
	text-align: justify;
}

.gc-container-wwo-footer {
	font-size: 1rem;
	color: #b4b4b4;
	text-align: justify;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
}

.gc-container-wcd {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gc-container-wcd-content {
	width: 55%;
	padding: 1.5em 2.2em;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.gc-container-wcd-content h4 {
	font-size: 2rem;
	color: #fff;
}

.gc-container-wcd-content-img {
	width: 200px;
	height: auto;
}


/* Why DEVEX */
.gc-container-cards {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 3em;
	position: relative;
	padding: 0;
}
	
.foundation-container-cards {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 3em;
	position: relative;
	padding: 0;
}

.gc-container-cards img {
	display: block;
	position: absolute;
	top: 5em;
	width: 1000px;
	height: auto;
	left: 18vw;
	z-index: 0;
}
	
	.gc-container-cards img.fdas-img {
		top: 25em;
	}

.gc-container-cards-content, .foundation-container-cards-content {
	width: 50%;
	display: grid;
	gap: 1em;
	place-items: center;
	grid-template-columns: 1fr;
	z-index: 10;
}

	
	.fdas-container-cards-content {
		width: 50%;
	}
	
	.fdas-container-cards-content .fdas-last-child {
		width: 48.5%;
	}

.gc-container-cards-content-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75em;
	height: 200px;
	border-radius: 5px;
	background: #ededed;
	color: #0b64b9;
	flex-direction: column;
	width: 100%;
}

.gc-container-cards-content-card h4 {
	font-size: 2.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	line-height: 2.65rem;
}

.gc-container-cards-content-card h4.iso-parent {
	line-height: 2rem;
}

.gc-container-cards-content-card h4.iso-parent span.iso {
	font-size: 1.95rem;
}

.gc-container-cards-content-card h4 span.cost-ef {
	font-size: 1.60rem;
}

.gc-container-cards-content-card h4.cost-ef-parent, .gc-container-cards-content-card h4.lg-scale-parent {
	line-height: 0.65em;
}

.gc-container-cards-content-card span.span {
	font-size: 1.75rem;
}

.gc-container-cards-content-card span.span-sm {
	font-size: 3.75rem;
}

/* Gen Con - Form */
.gc-container-cards-form {
	width: 50%;
	display: grid;
	grid-template-columns: 1fr 70%;
	gap: 1em;
	z-index: 10;
}

.gc-container-cards-form-header h3 {
	font-size: 38px;
}

.gc-container-cards-form-header span {
	font-weight: bold;
}

.gc-container-cards-form-header p {
	text-align: justify;
}

.gc-container-cards-form-header p {
	font-size: 1rem;
	text-align: justify;
	color: #0664b9;
} 

.gc-container-cards-form-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 2em 1.5em;
	background: #ededed;
	border-radius: 5px;
	z-index: 10;
}

.gc-container-cards-form-content-header {
	font-size: 0.95rem;
	text-align: center;
	color: #b4b4b4;
	display: flex;
	flex-direction: column;
	gap: 0.15em;
}

.gc-container-cards-form-content-header h4 {
	font-weight: 800;
	font-size: 1.25rem;
}

.careers-form {
	width: 100%;
	margin: 1.75rem 0;
/* 	display: flex;
	flex-direction: column;
	align-items: center; */
}

.gc-container-cards-form-content .careers-form {
	margin: 0;
}

.careers-form-header h5.title-blue {
	font-weight: bolder;
	font-size: 3rem;
}

.careers-form-content {
	margin-top: 0.25em;
}

.careers-form>.btn-form-primary {
	width: 100%;
	min-width: max-content;
	background-color: #0B64B9;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 5px;
	height: 45px;
	font-size: 16px;
	transition: background 0.3s ease-in-out;
	cursor: pointer;
	margin-top: 1.75rem;
}

.gc-container-cards-form .careers-form>.btn-form-primary {
	width: 40%;
}

.gc-container-cards-form .careers-form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.careers-form>.btn-form-primary:hover {
	background-color: #0052AA;
}

.gen-con-form-content, .fdas-form-content {
	display: flex;
	gap: 0.85em;
	flex-direction: column;
	width: 100%;
}

.gen-con-form-content div, .fdas-form-content div {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 80%;
	gap: 0.45em;
}

.gen-con-form-content div label, .fdas-form-content div label {
	white-space: nowrap;
	text-align: end;
	font-size: 0.95rem;
	color: #0b64b9;
	align-self: center;
	font-weight: 400;
}

.gen-con-form-content input, .fdas-form-content input {
	background: white;
	border-radius: 5px;
}
	
	.buildings-2 {
		display: block;
	}
	
	.buildings, .buildings-2 {
		height: 150px;
	}
	
	.gc-container-wwo-header {
		padding: 0;
/* 		width: 50%; */
	}
	
	.fdas-container-wwo-header {
		width: 50%;
	}
}

.why-us-content a {
	text-decoration: none;
}

/* Large devices (e.g., desktops ≥ 1024px) */
@media (min-width: 1024px) {
	.gc-container-wwo {
		grid-template-columns: repeat(3, 1fr);
	}
	.gc-container-cards-content, .foundation-container-cards-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.foundation-container-cards-content > :last-child {
		grid-column: 1 / -1;
		width: 450px;
		justify-self: center;
	}
	
	.fdas-container-cards-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.fdas-container-cards-content .fdas-last-child {
		grid-column: 1/-1;
	}
	
}

@media screen and (min-width: 768px) {
	.location-header {
		display: flex;
	}

	.top-header {
		/* 		width: 70%; */
		width: 50%;
	}

	.logo-img {
		width: 88px;
	}

	.license-img {
		width: -10px;
	}

	.menu-btn {
		display: none;
	}

	.nav {
		display: flex !important;
		flex-direction: row;
		max-height: none;
		opacity: 1;
		width: 50%;
	}

/* 	.nav>div {
		width: 100%;
	}

	.nav ul {
		width: 100%;
	}

	.nav ul>li {
		width: 100%;
	}

	.nav ul li a {
		width: 100%;
	} */

/* 	.menu-item-has-children:hover>.sub-menu {
		position: absolute;
		top: 100%;
		width: max-content;
		z-index: 900;
		color: #000;
	} */

	footer.footer>div.footer-low {
		flex-direction: row;
	}

	.footer-head-first {
		width: 30%;
	}

	.hero-construction {
		width: 55%;
		height: auto;
		position: absolute;
		top: -180px;
		left: 30%;
	}

	.hero-content {
		width: 100%;
		display: flex;
		flex-direction: column;
		color: white;
	}

	.content-area {
		padding-top: 8em;
		height: 100vh;
		width: 100%;
		background: #2D8BD8;
	}

	.hero-texts>.hero-paragraph {
		/* 		background: skyblue; */
		width: 580px;
		text-align: start;
		font-size: 18px;
		line-height: 1.5em;
	}

	.devex-lg {
		font-weight: 900;
		color: white;
		font-size: 90px;
	}

	.devex-lg span {
		font-size: 65px;
	}

	.footer-head {
		background: #bbbcbb;
		display: flex;
		/* 		width: 70%; */
		width: 50%;
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-head-second>.office-info-one {
		display: flex;
		align-items: center;
		gap: 1em;
		width: max-content;
		flex-direction: row;
	}

	.footer-header .engineers-contractors {
		font-size: 18px;
	}

	.footer-head-second>h2 {
		font-size: 30px;
		width: max-content;
	}

	.office-info-two-one {
		display: flex;
		flex-direction: column;
		gap: 0.2em;
		align-items: start;
		width: 300px;
	}

	.office-info-two {
		width: 590px;
		flex-direction: row;
	}

	.san-juan-content-one,
	.san-juan-content-two {
		display: flex;
		font-size: 14px;
		gap: 0.4em;
		text-align: start;
	}

	.hero-badge {
		width: 30%;
		display: flex;
		align-items: start;
		z-index: 99;
		position: relative;
	}

	.office-info-one-one,
	.office-info-one-two {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 0.2em;
	}

	.hero-texts {
		width: 100%;
		flex-direction: column;
		align-items: start;
		padding: 0;
	}

	.detailed-plan-parent {
		position: relative;
	}

	.cta-container {
		padding: 20px 5px;
		position: absolute;
		bottom: 15px;
		display: flex;
		gap: 15px;
		width: 35%;
		justify-content: center;
	}

	.hero {
		width: 22%;
		bottom: 0;
		z-index: 10;
		left: 15%;
		height: auto;
		position: absolute;
		display: block;
	}

	.hero-texts>.devex-lg {
		width: max-content;
	}

	.office-info-sub-title {
		font-size: 12px;
		text-align: start;
	}

	/*  PORTFOLIO 	 */
	.portfolio-card-parent {
		grid-template-columns: repeat(2, 1fr);
		/* 		width: 70%; */
		width: 50%;
	}

	.portfolio-card-img {
		left: 0;
	}

	.portfolio-card {
		width: 100%;
	}

	.portfolio-title {
		align-items: start;
		gap: 7px;
		/* 		width: 70%; */
		width: 50%;
		margin-bottom: 1em;
	}

	.portfolio-title>h3 {
		text-align: start;
		font-size: 38px;
	}

	.portfolio-sub-text {
		text-align: start;
		width: 85%;
		font-size: 18px;
	}

	.portfolio-card-title {
		font-size: 28px;
	}

	/*  WHY US	 */
	.why-us {
		padding: 60px 0;
	}

	.why-us-container {
		/* 		width: 70%; */
		width: 50%;
		flex-direction: row;
	}

	.why-us-cards-card {
		width: 155px;
		height: 200px;
	}

	.why-us-content {
		width: 90%;
	}

	.why-us-cards {
		width: 100%;
		justify-content: end;
	}

	.why-us-content-paragraph {
		width: 70%;
	}

	/*  Contact Us  */
	.contact-us-content-locs {
		display: flex;
	}

	.contact-us-parent {
		flex-direction: row;
		width: 70%;
	}

	.contact-us-form {
		background: white;
		width: 50%;
		padding: 25px 20px;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		gap: 35px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}

	.contact-us-content-header {
		width: 600px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

.current-page-item a {
	border: 1px solid #464646;
}

header.head-effect {
	background-color: rgba(255, 255, 255, .8) !important;
}

footer h2 span.icofont {
	color: #99cc68;
}

footer h2:before,
footer h2 span.icofont:after,
footer h2:after {
	background: #FFFFFF;
}

.banner .title h2:before,
.banner .title h2:after,
.banner .title:after {
	background: #FFFFFF;
}

.banner h3 span:before,
.banner h3 span:after,
.banner h3:after {
	background: #FFFFFF;
}

.menu-mobile p,
.menu-mobile p:before,
.menu-mobile p:after {
	background: #464646;
}

.title span.icofont,
.services .ct .icofont span,
#services .link a {
	color: #0b64b9;
}

.filters .active {
	background: #0b64b9;
	border: 1px solid #0b64b9;
}

.filters .active:hover {
	border: 1px solid #0b64b9;
}

#about .text {
	color: #0b64b9;
}

.work .ct .item .image a:hover {
	background: #0b64b9;
	border: 1px solid #0b64b9;
}

.work .ct .item .image a,
.work .ct .item .image a:after {
	color: #0b64b9;
	border: 1px solid #0b64b9;

}

.work .ct .item figcaption span.icofont {
	display: none;
}

.work .ct .item figcaption {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 0;
}

.services figcaption p {
	font: 300 1.3em/1.7em 'Helvetica';
}

#services .contact-now {
	font: italic 1.8em 'Helvetica';
}

#bg-parallax1 p {
	font: 300 1.8em/1.5em 'Helvetica';
}

#about .text {
	font: 1.8em/1.5em 'Helvetica'
}

p.text {
	font: 1.8em/1.7em 'Helvetica' !important;
}

#contact p,
#contact--map p,
.contacting p {
	font: 1.8em 'Helvetica';
}

footer .copyright p {
	font: italic 1.2em/77px 'Helvetica';
}

.contact-form label.input input,
.contact-form textarea {
	font: 300 1.2em 'Helvetica';
}

textarea::placeholder, input::placeholder {
	font: 300 0.85rem 'Manrope';
}

.banner .title h2 {
	font: 700 1.6em 'Helvetica';
}

.banner h3 span {
	font: italic 1.6em 'Helvetica';
}

.banner h1 {
	font: 700 5.5em/91px 'Helvetica';
}

#submit-contact input.wpcf7-submit:hover {
	color: #464646;
}

.title h1 {
	font: 700 2em/65px 'Helvetica';
}

.services figcaption .tt h3 {
	font: 700 2em 'Helvetica';
}

#services .link a,
.btn-link a {
	font: 700 1.4em/46px 'Helvetica';
}

#bg-parallax1 h2 {
	font: 700 3em 'helvetica';
}

.work .ct .item figcaption h2 a {
	font: 400 1.3em 'helvetica';
	pointer-events: none;
	cursor: default;
}

#submit-contact input.wpcf7-submit {
	font: 700 14px 'helvetica';
}

footer .phone p,
footer .address p,
footer .mail a {
	font: 1.4em/18px 'helvetica';
}

.filters .filter {
	font: 1.2em/30px 'helvetica';
}

.work .ct .item .image a {
	font: 700 1em/21px 'Helvetica';
}

.contact-overlay {
	background-color: #99cc68;
}

#bg-parallax1 {
	border-top: solid 5px #99cc68;
}

p.text {
	color: #0b64b9;
}

.services figcaption .tt:after,
.services figcaption .tt h3:before,
.services figcaption .tt h3:after {
	background: #0b64b9;
}

.btn-link a,
.btn-link a:after {
	color: #0b64b9;
	border: 1px solid #0b64b9;
}

.btn-link a:hover {
	background: #0b64b9;
}

.work .ct .item:hover .image a {
	display: none;
}

div.wpcf7-mail-sent-ok {
	border: 2px solid #ffffff;
	color: #ffffff;
	font-size: 12px;
}

.theme__main {
	margin: 5em 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0 15px;
}

.theme__main__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

ul.wp-block-list {
	margin-left: 1em;
}

.row-one-form {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.row-one-form>input {
	width: 50%;
}

.article-full {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.article-full > h2.article-full-title {
	font-size: 2.5rem;
	font-weight: bold;
}

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

.back > span {
	color: #0B64B9;
	font-size: 0.85rem;
}

/* Drag and Drop UI */
/* Styling the File Dropzone */
.file-dropzone {
	width: 100%;
	background-color: #fff;
	border: 2px dashed #ccc;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	padding: 2em 0;
}

/* Text styling inside the dropzone */
#file-dropzone-text {
	color: #ccc;
	font-size: 14px;
	font-weight: 500;
}

/* Styling when files are dragged over the dropzone */
.file-dropzone.drag-over {
	background-color: #f1f8ff;
	border-color: #0056b3;
}

/* Hide file input for cleaner look */
.resume-input {
	display: none;
}

/* Add some animations for smooth interaction */
.file-dropzone p {
	transition: color 0.3s ease;
}

/* Add hover effect for file dropzone */
.file-dropzone:hover {
	background-color: #f9f9f9;
}

/* Optional: Customizing file types instructions */
.file-dropzone p {
	color: #666;
	font-size: 14px;
}

/* On file drag (make it more intuitive) */
.file-dropzone.dragging p {
	color: #007bff;
}

/* What We Do */
.wwd-header h3, .wwd-main-header h3 {
	font-size: 48px;
}

.wwd-header p, .wwd-main-header p {
	font-size: 18px;
	color: var(--wp--preset--color--accent-2);
	text-align: justify;
}

.wwd-content {
	display: flex;
	flex-direction: column;
	gap: 2em;
	margin: 2em 0;
}

/* Set up the basic layout for the box */
.wwd-content-box {
	position: relative;
	background-size: cover;
	/* Ensure the image covers the entire box */
	background-position: center;
	/* Center the background image */
	background-repeat: no-repeat;
	/* Prevent repetition of the image */
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
	overflow: hidden;
}


/* Center the title in the box */
.wwd-content-box .wwd-content-box-content {
	height: 190px;
	display: flex;
	justify-content: end;
	/* align-items: center; */
	flex-direction: column;
	opacity: 1;
	transition: all 0.5s ease-in-out;
}

.wwd-content a {
	text-decoration: none;
}

.wwd-content-box:hover .wwd-content-box-content {
	background-color: #96C866;
	padding: 1em;
}

/* Title styling */
.wwd-content-box .wwd-content-box-content-title {
	font-size: 28px;
	padding: 0.5rem 0.8rem;
	color: #96C866;
	background-color: white;
	font-weight: bold;
	margin-bottom: 10px;
	/* opacity: 0.4; */
	width: max-content;
}

.wwd-content-box:hover .wwd-content-box-content-title {
	color: white;
	padding: 0;
	background-color: #96C866;
}

/* Paragraph starts hidden below the box */
.wwd-content-box .wwd-content-box-content-parag {
	font-size: 16px;
	color: white;
	/* Hidden by default */
	position: absolute;
	transform: translateY(30px);
	/* Move it below the box */
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	/* display: none; */
	/* Animation on hover */
}

/* On hover, show the paragraph by animating it */
.wwd-content-box:hover .wwd-content-box-content-parag {
	transform: translateY(0);
	position: relative;
	opacity: 1;
	/* Move it up to its original position */
}

.wwd-content-box:hover {
	/* On hover, you can add any effect to the background or content box */
	cursor: pointer;
	/* Show a pointer cursor on hover */
}

/* News and Update */
.nau-title {
	text-align: center;
}

/* Article Grid */
.article-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Individual Post Styling */
.article-posts-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-posts-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-thumbnail a:hover img {
    transform: scale(1.1);
}

.article-posts h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 20px;
    transition: color 0.3s ease;
}

.article-posts h2 a {
    color: inherit;
    text-decoration: none;
}

.article-posts h2 a:hover {
    color: #007bff;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 20px;
}

.post-meta .post-date {
    color: #aaa;
}

.post-meta .post-author {
    color: #555;
}

.excerpt {
    padding: 0 20px 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

.archive-excerpt {
	padding: 5px 0 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

.archive-posts h3 a {
	text-decoration: none;
}

.archive-posts h3 a:hover {
	text-decoration: underline;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination .page-numbers {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.pagination .page-numbers:hover {
    background-color: #0056b3;
}

/* Empty State (No Posts) */
p.no-posts-parag {
    font-size: 1.2rem;
    color: #777;
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-blue, .title-green {
        font-size: 2rem;
    }

    .article-posts {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .post-thumbnail {
        height: 180px;
    }

    .article-posts h2 {
        font-size: 1.5rem;
    }

    .post-meta {
        font-size: 0.8rem;
    }

    .excerpt {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .article-posts {
        grid-template-columns: 1fr;
    }

    .pagination .page-numbers {
        padding: 6px 10px;
    }
}



@media screen and (min-width: 768px) {
	.theme__main {
		margin: 8em 0;
		padding: 0;
	}
	
	.theme__main__container {
		width: 50%;
	}
}

/* HVAC */
.hvac {
	margin: 3.5em 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hvac-sec-2 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3em 0;
}

.hvac-sec-2 > div {
	width: 100%;
	text-align: justify;
	font-size: 18px;
	color: var(--wp--preset--color--accent-2);
	padding: 0 1em;
}

.hvac-container-wwo {
	width: 100%;
	background: #EDEDED;
	padding: 3em 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1.25em;
}

.hvac-wwo, .hvac-container-wwo .gc-container-wwo-header {
	width: 100%;
	padding: 0 1em;
}

.hvac-wwo-header {
	color: var(--wp--preset--color--accent-2);
}

.hvac-wwo-header h4 {
	font-weight: bold;
	font-size: 1.25rem;
}

.hvac-wwo-header p {
	font-size: 18px;
}

.hvac-wwo-cards {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hvac-card {
	border: solid 1px var(--wp--preset--color--accent-2);
	border-radius: 5px;
	color: var(--wp--preset--color--accent-2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	height: 150px;
	width: 100%;
	text-align: center;
	padding: 1em;
}

.hvac-focused {
	font-size: 3.2rem;
}

.foundation-aaaa {
	font-size: 4.8rem;
}
.foundation-licensed {
	font-size: 2.7rem;
}

.hvac-license {
	font-size: 2.95rem;
}

.hvac-accountable {
	font-size: 2.35rem;
}

.foundation-ss {
	font-size: 2.2rem;
}

.hvac-reliable {
	font-size: 3.3rem;
}

.hvac-brand-specific {
	font-size: 1.85rem;
}

.foundation-consistent {
	font-size: 3rem;
}

.foundation-qc {
	font-size: 2rem;
}

.foundation-proven {
	font-size: 3.7rem;
}

.foundation-experience {
	font-size: 2.38rem;
}

.card-blue {
	color: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
}

.my-3 {
	margin: 3em 0;
}

.mt-3 {
	margin-top: 3em;
}

@media screen and (min-width: 768px) {
	.hvac-wwo-cards {
		flex-direction: row;
	}
	
	.hvac {
		margin: 6.4em 0;
	}
	
	.hvac-sec-2 > div {
		width: 50%;
		padding: 0;
	}
	
	.hvac-card {
		width: 350px;
	}
	
	.hvac-wwo, .hvac-container-wwo .gc-container-wwo-header {
		width: 50%;
		padding: 0;
	}
}

/* What We Do */
.wwd-header {
	position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
	padding: 100px 0;
	width: 100%;
	height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.rackings-img {
    background-image: url('https://devexinc.com/wp-content/uploads/heavy-duty-cantilever-rack-004.png');
}

.shopfitting-img {
    background-image: url('https://devexinc.com/wp-content/uploads/Group-13.webp');
}

.gencon-img {
	background-image: url('https://devexinc.com/wp-content/uploads/gencon.webp');
}

.hvac-img {
	background-image: url('https://devexinc.com/wp-content/uploads/Group-17_1.png');
}

.foundation-img {
	background-image: url('https://devexinc.com/wp-content/uploads/Rectangle-3-copy.png');
}

.cold-storage-img {
    background-image: url('https://devexinc.com/wp-content/uploads/cold-storage.webp');
}

.fdas-img {
	background-image: url('https://devexinc.com/wp-content/uploads/Group-16.png');
}

.wwd-header-content {
    position: relative;
    width: 65%;
    z-index: 2;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.65); /* White with opacity */
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(4px); /* Optional: gives a frosted glass effect */
}

.rackings-header-content {
	background-color: rgba(255, 255, 255, 0.40); /* White with opacity */
}


.wwd-header-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #777;
	font-weight: bold;
}

.wwd-header-parent {
	width: 50%;
	position: relative;
}

.wwd-container-header-sub p {
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
}

@media (max-width: 1024px) {
    .wwd-header-content {
        max-width: 90%;
        padding: 20px;
    }

    .wwd-header-content h2 {
        font-size: 2rem;
    }

    .gc-container-header-sub p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
	.wwd-header-content {
		width: 100%;
		padding: 25px;
	}
    .rackings-img {
        align-items: flex-start;
        padding: 60px 15px;
    }

    .wwd-header-content h2 {
        font-size: 1.6rem;
    }

    .gc-container-header-sub p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .wwd-header-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .gc-container-header-sub p {
        font-size: 0.85rem;
    }
}

/* What We Do Cards */
.gc-container-cards-content-card h4 .safety {
	font-size: 3rem;
}

.gc-container-cards-content-card h4 .longevity {
	font-size: 2.6rem;
}

.gc-container-cards p {
	text-align: center;
}

.gc-container-cards-content-card .multi-industry {
	font-size: 2.039rem;
}

.gc-container-cards-content-card .cards-3 {
	line-height: 2rem;
}

.gc-container-cards-content-card .in-house {
	font-size: 3.2rem;
}

.gc-container-cards-content-card .coordination {
	font-size: 2rem;
}

.gc-container-cards-content-card {
	height: 250px;
}

.gc-container-cards-form-content {
	text-align: start;
}

.gc-container-cards-form-header p {
	text-align: start;
}

.wwd-container-card {
	border: #ddd solid 1px;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 1em;
	font-size: 1rem;
}

.grid-col-4 {
	display: grid;
	gap: 1em;
	width: 100%;
	grid-template-columns: repeat(4, 1fr);
}

.grid-col-3 {
	display: grid;
	gap: 1em;
	width: 100%;
	grid-template-columns: repeat(3, 1fr);
}

.wwd-container-wwo {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.text-semi-white {
	color: #ddd;
}

.text-white {
	color: white;
}

.wwd-container-wwo {
	width: 50%;
	font-size: 1rem;
	line-height: 1.6;
	color: #777;
}

.wwd-container-wwo-header {
	display: flex;
	flex-direction: column;
	gap: 0.55em;
}

.wwd-container-wwo-header h3 {
	font-size: 38px;
}

.wwd-container-wwo-header span {
	font-weight: bold;
}

.wwd-container-likod {
	display: grid;
	gap: 1em;
	width: 100%;
	grid-template-columns: repeat(3, 1fr);
}

.top-businesses {
	font-size: 2rem;
}

.customized {
	font-size: 2.25rem;
}

.on-time {
	font-size: 3.25rem;
}

.wwd-parent {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.wwd-parent-card {
	border-radius: 5px;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.5em 2.2em;
	z-index: 10;
}

.wwd-parent-card h3 {
	display: flex;
	flex-direction: column;
	font-weight: 900;
	line-height: 0.8;
}

.wwd-parent-card p {
	font-size: 1rem;
	max-width: 40%;
	text-align: start;
}

.solutions {
	font-size: 2.65rem;
}

.proven {
	font-size: 2.65rem;
}

.expertise {
	font-size: 2.90rem;
}

@media screen and (max-width: 768px) {
	.wwd-container-wwo {
		width: 100%;
		padding: 1em;
	}
	.wwd-container-card {
		width: 100%;
	}
	.wwd-header-content {
		background-color: rgba(255, 255, 255, 0.65); /* White with opacity */
		backdrop-filter: blur(4px); /* Optional: gives a frosted glass effect */
	}
	.wwd-container-likod {
		grid-template-columns: 1fr;
	}
	.grid-col-4 {
		grid-template-columns: 1fr;
	}
	.wwd-parent {
		width: 100%;
	}
	.wwd-parent-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
		justify-content: center;
		gap: 1rem;
	}
	.wwd-parent-card p {
		max-width: 100%;
		text-align: center;
	}
	.wwd-header-parent {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}


/* Who We Are */
/* Ensure that the hero section takes full width and height */
.wwa-hero {
  position: relative; /* Ensures that child elements can be positioned relative to this container */
  width: 100vw; /* Full viewport width */
  height: 85vh; /* Default height as a percentage of the viewport (adjustable based on design needs) */
  overflow: hidden; /* Hide any overflow, ensuring the image stays within the container */
}

.wwa-hero-sect-1 {
  position: relative; /* Allow for absolute positioning inside */
  width: 100%;
  height: 100%; /* Fill the container fully */
  overflow: hidden; /* Prevent any overflow outside the section */
}

.wwa-hero-img {
  position: absolute; /* Absolute positioning allows the image to move */
  top: 5%; /* Center the image vertically */
  left: 51%; /* Center the image horizontally */
  transform: translate(-50%, -50%); /* Offset to make sure it's perfectly centered */
  width: 103%; /* Stretch the image to cover the container width */
  height: auto; /* Let the height be dynamic */
  object-fit: cover; /* This ensures the image covers the entire area, preserving aspect ratio */
  object-position: center center; /* Center the image content (optional, for fine-tuning) */
  z-index: -1; /* Make sure the image stays behind text or other content */
}
.wwa-hero-img-2 {
  position: absolute;
  left: -35px;
  top: 25em;
  width: 600px;
  height: auto;
  z-index: 20;

  /* Start position off-screen to the right */
  transform: translateX(100vw);
  animation: moveInExcavator 2s ease-out forwards;
}

@keyframes moveInExcavator {
  from {
    transform: translateX(100vw); /* Off-screen to the right */
  }
  to {
    transform: translateX(0); /* Final position */
  }
}

/* You can adjust the section's height at different breakpoints */
@media (max-width: 768px) {
  .wwa-hero {
    height: 40vh; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .wwa-hero {
    height: 30vh; /* Even smaller height for mobile devices */
  }
}

.hero-line {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: blue;
	z-index: 10;
	
	display: flex;
	align-items: center;
}

.left-hero-line {
	width: 100%;
	background: white;
	border-top: 10px solid #1956D3;
	height: 100px;
	bottom: -80px;
	transform: translateX(-20px) rotate(4deg);
	position: absolute;
	z-index: 20;
}

.right-hero-line {
	width: 100%;
	background: white;
	border-top: 10px solid #1956D3;
	height: 100px;
	bottom: 0;
	transform: translateX(10vw) rotate(350deg);
	position: absolute;
	z-index: 20;
}

.wwa-mv-content {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wwa-mv-content-wrapper {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 2em;
	flex-direction: row;
}

@media screen and (max-width: 768px) {
	.wwa-mv-content-wrapper {
		flex-direction: column;
		width: 100%;
	}
}

.wwa-mv {
	width: 100%;
	background: white;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	gap: 2em;
	min-height: 50vh;
	
	padding-bottom: 5em;
}

.wwa-mv-img-card {
	width: 500px;
	height: 230px;
	filter: 1px, 2px, 2px, 16px, #ccc;
	background: #F0F0F0;
	border-radius: 25px;
	position: relative;
}

.wwa-david {
	width: 320px;
	height: auto;
	position: absolute;
	z-index: 30;
	left: -15px;
	bottom: -90px;
}

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

.wwa-mv h2 {
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.40rem;
	font-size: 2.75rem;
}

.wwa-mv h4 {
	font-weight: 600;
	font-size: 1.75rem;
}

.font-bold {
	font-weight: bold;
}

.font-medium {
	font-weight: 600;
}

.text-green {
	color: #99CC68;
}

.wwa-mv p {
	font-size: 18px;
	color: #777;
	text-align: justify;
}

.wwa-mv-content-body {
	display: flex;
	flex-direction: column;
	gap: 2em;
	position: relative;
  	padding-bottom: 20px;
	cursor: pointer;
}


.wwa-mv-content-body div.wwa-mv-vision::after {
  content: "";
  position: absolute;
  bottom: 60%;
  left: 0;
  height: 5px;
  width: 0;
  background: linear-gradient(to right, #007BFF, #1858D8); /* Blueish gradient */
  transition: width 0.4s ease, left 0.4s ease;
}

.wwa-mv-content-body div.wwa-mv-vision:hover::after, .wwa-mv-content-body div.wwa-mv-mission:hover::after {
  width: 50%; /* Extend to half of the div */
  left: 0;   /* Center the line */
}

.wwa-mv-content-body div.wwa-mv-mission::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background: linear-gradient(to right, #007BFF, #1858D8); /* Blueish gradient */
  transition: width 0.4s ease, left 0.4s ease;
}

@media screen and (max-width: 768px) {
	.right-hero-line, .left-hero-line, .wwa-hero-img-2 {
		display: none;
	}
	.wwa-mv-content-wrapper {
		width: 100%;
		flex-direction: column;
	}
	.wwa-mv-img-card {
		width: 250px;
		margin-top: 2em;
	}
	.wwa-mv-content-body {
		padding: 0 2em;
	}
	.wwa-mv-content-body div.wwa-mv-vision:hover::after, .wwa-mv-content-body div.wwa-mv-mission:hover::after {
		left: 35px;
		bottom: -10px;
	}
}

.wwa-cv {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.wwa-cv-parent {
	width: 100%;
	z-index: 10;
	display: flex;
	align-items: center;
}

.wwa-cv-blue {
	position: absolute;
	width: 50%;
	background: #0B63BA;
	height: 100%;
	left: 0;
	z-index: 5;
}

.wwa-cv-transparent {
	position: absolute;
	width: 50%;
	background: transparent;
	right: 0;
}

.wwa-cv-content {
	background: #0B63BA;
	width: 60%;
	z-index: 10;
	color: white;
	position: relative;
	min-height: 100vh;
	padding: 3em 0;
	display: flex;
	flex-direction: column;
	gap: 1.75em;
	align-items: end;
}

.wwa-cv-content-title-cards {
	display: flex;
	flex-direction: column;
	gap: 3em;
	align-items: end;
}

.wwa-cv-sites {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 7em;
	gap: 1.25em;
	left: 37%;
}

.wwa-cv-sites > p {
	font-weight: 900;
	color: white;
	opacity: 20%;
	font-size: 7.5rem;
	line-height: 8rem;
}

.wwa-cv-content-card {
	display: flex;
	align-items: center;
	gap: 1em;
	padding-right: 3.5em;
	text-align: justify;
}

.wwa-cv-content-card h5 {
	font-weight: bold;
	font-size: 1.75rem;
}

.wwa-cv-content-card p {
	font-size: 18px;
}

.wwa-cv-content-title, .wwa-cv-content-card {
	width: 58.4%;
}

.wwa-cv-content-title > *, .wwa-cv-content-card > img, .wwa-cv-content-card > div > * {
	z-index: 20;
}

.wwa-cv-content-title h4 {
	font-size: 2.15rem;
	font-weight: bold;
}

.wwa-cv-content-card-icon {
	width: 80px;
	height: auto;
	z-index: 20;
}

.wwa-cv-content-title p {
	font-size: 18px;
}

.wwa-cv-img-bg {
	position: absolute;
	width: 90%;
	height: auto;
	opacity: 18%;
	z-index: 0;
	top: 0;
	left: 12em;
	right: 0;
	bottom: 0;
}

.wwa-cv-products {
	min-height: 100vh;
	width: 40%;
	
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 1em;
}

.wwa-cv-products-title {
	width: 92%;
	background: #0B63BA;
	padding: 1em 1.5em;
}

.wwa-cv-products-title h4 {
	font-size: 2.92rem;
	color: white;
	font-weight: bold;
}

.wwa-cv-products-card {
	border: 3px solid #0B63BA;
	padding: 1em 1.5em;
	width: 87%;
	border-right: none;
}


.wwa-cv-products-card > h4 {
	color: #0B63BA;
	font-weight: bold;
	font-size: 2.15rem;
}
.wwa-oh {
    background-image: url('https://devexinc.com/wp-content/uploads/11_compressed-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	height: 42vh;
	margin-top: 5em;
}

.text-center {
	text-align: center;
}

.text-end {
	text-align: end;
}

.wwa-milestone {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 200px 1fr;
	gap: 1em;
	margin-bottom: 2em;
}

.wwa-milestone-left {
	text-align: end;
	display: flex;
	flex-direction: column;
	align-items: end;
	margin-top: 2em;
}

.wwa-milestone-side-sec {
	width: 43%;
	height: 140px;
	display: flex;
	flex-direction: column;
	
}

.wwa-milestone-side {
	margin-top: 2em;
}

.wwa-milestone-center-sec {
	height: 140px;
}

.wwa-milestone-side-sec h4 {
	font-weight: 700;
	font-size: 1.55rem;
	color: #0B63BA;
}

.wwa-milestone-side-sec p {
	font-size: 1rem;
	color: #0B63BA;
	display: flex;
	flex-direction: column;
}

.mt-2 {
	margin-top: 0.55em;
}

.wwa-milestone-center {
	background: linear-gradient(#D2D2D2, #ffffff);
	height: 100%;
	padding: 0 0.45em;
	padding-top: 2em;
}

.wwa-milestone-center h4 {
	font-weight: 800;
	font-size: 2rem;
	color: #0B63BA;
}



/* Foundation */
.foundation-sec-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25em;
	position: relative;
	width: 50%;
}

/* .foundation-sec-2-title {
	position: absolute;
} */

.foundation-card-one {
	display: flex;
/* 	align-items: center; */
	justify-content: center;
	flex-direction: column;
	gap: 0.55em;
}

.foundation-card-title {
	font-weight: 700;
	font-size: 1.35rem;
}

.foundation-wwo {
	display: flex;
/* 	align-items: center; */
	gap: 0.15em;
	font-size: 2.5rem;
}

.foundation-card-one > p {
	max-width: 220px;
}
.foundation-card-one > p, .foundation-card-p {
	font-weight: 400;
	color: #777;
	text-align: justify;
	font-size: 1rem;
}

.foundation-sec-2-card {
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 150px;
	border: 1px #ddd solid;
	border-radius: 5px;
	padding: 5px 15px;
	gap: 0.15em;
}

.no-border {
	border: none;
}

.normal-link {
	color: #0B64B9;
	text-decoration: none;
}

@media screen and (min-width: 481px) {
	.foundation-sec-2 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.wwa-mv-content-wrapper-img {
	border: 1px solid #ccc;
}

.careers-form-header p {
	font-size: 18px;
	text-align: justify;
}

.careers-form-header div {
	display: flex;
	flex-direction: column;
	gap: 0.55em;
}


.row-one-form-div {
	width: 100%;
}

.row-one-form-div label {
	font-size: 16px;
	color: #777;
}



