/* General Adjustments for White Space */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
}

h1 {
	font-size: 2em;
	color: #003366;
}

h2 {
	font-size: 1.5em;
	color: #003366;
	text-align: center;
}

.white-text {
	color: white;
}

p {
	font-size: 1.2em;
	line-height: 1.6;
	margin: 10px 0;
	/* Keep small spacing */
}

.intro-text {
	background-image: url('../images/tamarac.webp');
	/* Background image */
	background-size: cover;
	/* Ensure the image covers the entire section */
	background-position: center;
	/* Center the image */
	padding: 100px 20px;
	/* Spacing within the section */
	color: white;
	/* White text for better readability */
	text-align: center;
	/* Centered text */
}

.alternate-image {
	flex: 1;
	max-width: 45%;
	/* Adjust the ratio */
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Estilo del contenedor del logo y el menú hamburguesa */
.header-left {
	display: flex;
	align-items: center;
}

/* Estilo del ícono del menú hamburguesa */
.menu-icon {
	display: none;
	/* Hidden on large screens */
	font-size: 2em;
	color: white;
	cursor: pointer;
	margin-right: 20px;
}

/* Estilo del logo */
.logo {
	margin-left: 10px;
	display: flex;
	align-items: center;
}

.logo img {
	height: 55px;
}

/* Estilos generales */
.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	padding: 40px;
}

/* Ajustes para el formulario */
.contact-form {
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 40px;
	max-width: 600px;
	width: 100%;
}

.button-primary.small {
	font-size: 0.85rem;
	padding: 8px 16px;
	display: inline-block;
	text-align: center;
	margin-top: auto;
	align-self: flex-start;
}

form {
	display: flex;
	flex-direction: column;
}

form label {
	margin-bottom: 5px;
}

.required-asterisk {
	color: #d00;
	margin-left: 4px;
	font-weight: 700;
}

.captcha-error {
	color: #d00;
	font-size: 0.9em;
	margin-top: 6px;
	display: none;
}

form input,
form textarea {
	margin-bottom: 15px;
	padding: 10px;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
	box-sizing: border-box;
}

/* Estilo del botón del formulario para coincidir con otros botones */
form button {
	padding: 10px 20px;
	background: linear-gradient(to right, #66ccff, #003366);
	/* Blue gradient */
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.3s ease-in-out;
}

form button:hover {
	background: linear-gradient(to right, #003366, #66ccff);
	/* Invert the gradient on hover */
}

.hero {
	text-align: center;
	color: #fff;
	padding: 100px 20px;
	background-size: cover;
	background-position: center;
}

.hero h1 {
	margin: 0;
	font-size: 1.5em;
}

.hero p {
	font-size: 1.2em;
	margin-bottom: 20px;
}

.hero-buttons a {
	display: inline-block;
	margin: 5px;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	background: #e8491d;
	border-radius: 5px;
}

.hero-buttons a.button-secondary {
	background: #555;
}

.services {
	padding: 40px 20px;
	text-align: center;
}

.service-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}

.service-card h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.service-card p {
	font-size: 1em;
	color: #555;
}

.services-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin: 0 auto;
}

.button-primary {
	background: linear-gradient(to right, #003366, #66ccff);
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: bold;
	border: none;
	transition: background 0.3s ease;
}

.button-primary:hover {
	background: linear-gradient(to right, #66ccff, #003366);
	color: #fff;
}


.projects-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.project-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	text-align: left;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 16px;
	margin: 16px;
	width: calc(33.333% - 32px);
	/* Three columns */
	box-sizing: border-box;
}


.load-more {
	text-align: center;
	margin: 30px auto;
	/* Adjust the top and bottom margin */

}

.load-more button {
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	background-color: #007BFF;
	color: white;
	border-radius: 5px;
	cursor: pointer;

}

.load-more button:hover {
	background-color: #0056b3;
}


.projects {
	padding: 40px 20px;
}

.project-title {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 8px;
	color: #0056b3;
}


.carousel img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;

}

.carousel {
	margin-bottom: 40px
}

/* General image styling for project and blog sections */
.index-projects img,
.index-blog img {
	max-width: 100%;
	/* Ensure the image doesn't exceed the container's width */
	height: auto;
	/* Maintain the aspect ratio */
	object-fit: cover;
	/* Crop the image if necessary to fit the container */
	display: block;
	margin: 0 auto;
}

/* Specific maximum heights to prevent oversized images */
.index-projects img {
	max-height: 300px;
	/* Adjust the maximum height as needed */
}

.index-blog img {
	max-height: 300px;
	/* Adjust the maximum height as needed */
}

.testimonials {
	padding: 40px 20px;
	background: #f4f4f4;
}

.testimonials h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #003366;
}

.testimonial-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.testimonial-card {
	background: #fff;
	padding: 20px;
	margin: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	flex: 1;
	min-width: 280px;
	max-width: 300px;
}

.blog {
	padding: 40px 20px;
}

.blog h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #003366;
}

.blog-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.blog-card {
	background: #fff;
	padding: 20px;
	margin: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	flex: 1;
	min-width: 280px;
	max-width: 300px;
}


/* General: Apply padding to main sections */
section {
	max-width: 1200px;
	/* Limit the width of sections */
	margin: 0 auto;
	/* Center the sections */
	padding: 20px;
	/* Internal spacing */
}


/* Estilo específico para los encabezados y párrafos en cada página */
h2 {
	margin-bottom: 20px;
	font-size: 2.5em;
	text-align: center;
	color: #333;
}

p {
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6;
	color: #555;
}

/* Adjust margins of text containers */
.project-text-content {
	max-width: 90%;
	/* On small screens, occupy 90% of the available width */
	display: flex;
	/* Flexbox to center */
	flex-direction: column;
	/* Align elements vertically */
	justify-content: center;
	/* Center vertically */
	align-items: center;
	/* Center horizontally */
	text-align: center;
	/* Center the text within the container */
	margin: 0 auto;
	/* Center the container in its space */

}

.project-text-content p {
	text-align: justify;
	/* Justify the text of the <p> */
	margin: 10px 0;
	/* Top and bottom spacing */
	width: 80%;
	/* Optional width to limit text */
}

.project-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
}

.project-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}

.project-card h2 {
	font-size: 1.4em;
	/* Reduce the title size */
	font-weight: bold;
	/* Keep bold */
	text-align: center;
	/* Center the title */
	margin-bottom: 10px;
	/* Reduce the bottom margin */
	color: #003366
}

.project-card p {
	color: #003366;
}

/* Styles for the load more button */
.load-more button {
	background: linear-gradient(to right, #003366, #66ccff);
	/* Dark blue to light gradient */
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	/* Bold for the font */
	transition: background 0.3s ease;
}

.load-more button:hover {
	background: linear-gradient(to right, #66ccff, #003366);
	/* Invert the gradient on hover */
}

.certifications {
	padding: 40px 20px;
	text-align: center;
}

.certifications h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #003366;
}

.certifications p {
	text-align: justify;
	/* Justify the text of the <p> */
	font-size: 1.2em;
	color: #555;
	margin-bottom: 40px;
}

/* Styles for the certification gallery */
.certification-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.certification-card {
	width: 30%;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 15px;
	transition: box-shadow 0.3s ease;
	text-align: center;
}

.certification-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.certification-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}

.certification-card h3 {
	margin: 10px 0;
	color: #333;
}

.why-choose-us h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #003366;
}

.why-choose-us p {
	font-size: 1.2em;
	margin-bottom: 30px;
	color: #555;
	text-align: justify;
	/* Justified alignment */
}

.why-choose-us .buttons {
	display: flex;
	/* Flexible alignment to center */
	justify-content: center;
	/* Align the buttons horizontally in the center */
	gap: 20px;
	/* Spacing between buttons */
	margin: 0 auto;
	/* Ensure the container is centered */
}

.why-choose-us .buttons a {
	background: linear-gradient(to right, #003366, #66ccff);
	/* Dark blue to light gradient */
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: bold;
	/* Bold for the font */
	transition: background 0.3s ease;
	border: none;
	/* No borders */
}

.why-choose-us .buttons a:hover {
	background: linear-gradient(to right, #66ccff, #003366);
	/* Invert the gradient on hover */
}


.certifications {
	padding: 40px 20px;
	text-align: center;
}

.certifications h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
}

.certifications p {
	font-size: 1.2em;
	color: #555;
	margin: auto;
	margin-bottom: 40px;
	max-width: 90%;
}

.certification-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.certification-card {
	width: 30%;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 15px;
	transition: box-shadow 0.3s ease;
	text-align: center;
}

.certification-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.certification-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}

.certification-card h3 {
	margin: 10px 0;
	color: #333;
}

.clients {
	padding: 40px 20px;
	text-align: center;
}

.clients h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: #003366;
}

.clients p {
	text-align: justify;
	/* Justify the text of the <p> */
	font-size: 1.2em;
	color: #555;
	margin: auto;
	margin-bottom: 40px;
	max-width: 90%;
}

.client-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.client-card {
	width: 30%;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 15px;
	transition: box-shadow 0.3s ease;
	text-align: center;
}

.client-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.client-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}

.client-card h3 {
	margin: 10px 0;
	color: #333;
}

.client-name {
	font-size: 1.4em;
	/* Maintain visual size */
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.team-title {
	text-align: center;
	margin-bottom: 40px;
}

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

.team-card {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.team-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-card img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 15px;
}

.team-card h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #26779f;
}

.team-card p {
	color: #555;
}

.contact-info {
	margin-top: 15px;
	font-size: 0.9em;
}

.contact-info a {
	display: block;
	color: #26779f;
	text-decoration: none;
	margin-bottom: 5px;
}

.thank-you-container {
	text-align: center;
	margin: 50px auto;
	padding: 20px;
	max-width: 800px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thank-you-container img {
	max-width: 50%;
	/* Adjust to 50% of the container width */
	height: auto;
	border-radius: 8px;
	margin-bottom: 20px;
}

.thank-you-container h1 {
	font-size: 1.5em;
	margin: 20px 0;
}

.thank-you-container p {
	color: #555;
	font-size: 16px;
	margin-bottom: 20px;
}

.thank-you-container .buttons {
	display: flex;
	justify-content: center;
	/* Center the buttons horizontally */
	align-items: center;
	/* Ensure they are aligned vertically */
	gap: 20px;
	/* Spacing between buttons */
	margin-top: 20px;
}

.thank-you-container .buttons a {
	text-decoration: none;
}

.label {
	font-weight: 600;
	/* Less aggressive than bold */
	color: #333;
	/* Dark tone for differentiation */
	margin-right: 4px;
	display: inline-block;
	/* Ensure good alignment */
}

.social-media-h {
	display: flex;
	flex-wrap: wrap;
	/* Allow elements to wrap in multiple lines */
	justify-content: center;
	/* Center elements horizontally */
	margin: 0;
	/* Remove default margins */
	padding: 0;
	/* Remove default padding */
}

.social-media-h a {
	flex: 0 0 35%;
	/* Each link occupies 50% of the container width on mobile */
	text-align: center;
	/* Center the content within each link */
	padding: 3px;
	/* Spacing around icons */
	box-sizing: border-box;
	/* Include padding in the total width */
}

.social-media-h i {
	font-size: 20px;
	/* Icon size */
	color: #fff;
	/* Icon color, you can change it according to your design */
}

.social-media i {
	font-size: 20px;
	/* Icon size */
	color: #fff;
	/* Icon color, you can change it according to your design */
}
.project-card {
	width: calc(100% - 32px);
	/* Single column for mobile */
}
.button-container {
    display: flex; /* Use flexbox to align the buttons */
    justify-content: center; /* Center the buttons horizontally */
    flex-wrap: wrap; /* Allow buttons to wrap if necessary */
}

.btn {
    margin: 10px; /* Spacing between buttons */
    padding: 10px 20px; /* Internal spacing of the buttons */
}
.office a {
		color: #003366;
		font-weight: bold;
	}

 .text-link {text-decoration:none;font-weight:600; color:#003366}
