*{
    margin: 0;
    padding: 0;
    font-family: 'montserrat';
    box-sizing: border-box;
}
*{
  margin:0; padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  text-decoration: none;
  font-family: 'montserrat';

}

#banner-hero {
	position: relative;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 60px;
}

.contenido-hero > img {
	width: 100%;
	background-size: cover;
	background-position: bottom;
}

#banner-hero:before {
	content: '';
	background: rgba(77,77,92,0.6);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 1;
}

.contenido-hero {
	position: relative;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

	.contenido-hero h3 span {
		font-weight: 600;
		position: absolute;
		z-index: 2;
		top: 35%;
		text-transform: uppercase;
		font-size: 43px;
		padding: 10px;
		color: #fff;
	}

	.contenido-hero p {
		position: absolute;
		text-transform: uppercase;
		line-height: 1.8;
		color: #fff;
		font-size: 20px;
		text-align: justify;
		padding: 20px;
		margin-top: 15%;
		z-index: 1;
	}

@media only screen and (min-width:220px) and (max-width: 434px) {
	.contenido-hero h3 span {
		font-size: 14px;
	}

	.contenido-hero p {
		font-size: 10px;
	}
}

@media only screen and (min-width:435px) and (max-width: 680px) {
	.contenido-hero h3 span {
		font-size: 21px;
	}

	.contenido-hero p {
		font-size: 15px;
	}
}


@media only screen and (min-width:681px) and (max-width: 840px) {
	.contenido-hero h3 span {
		font-size: 35px;
	}

	.contenido-hero p {
		font-size: 20px;
	}
}
.title-cards {
	text-align: center;
	font-size: 20px;
	padding: 30px;
	text-transform: uppercase;
}
.container-service {
	align-items: center;
	overflow-x: hidden;
}

.container-service {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.carousel-container {
	position: relative;
	width: 100%;
	padding: 2rem 0;
}

.carousel-service {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease-out;
	padding: 1.5rem 0;
}

.card-service {
	flex: 0 0 350px;
	height: 500px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	transform-origin: center;
}

	.card-service:hover {
		transform: translateY(-15px) scale(1.02);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	}

.card-img {
	width: 100%;
	height: 60%;
	overflow: hidden;
}

	.card-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s ease;
		transform-origin: center;
	}

.card-service:hover .card-img img {
	transform: scale(1.1);
}

.card-content {
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	justify-content: justify;
	height: 40%;
	line-height: 2;
}

.card-tag {
	font-size: 0.85rem;
	color: #0057aa;
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-text {
	font-size: 0.95rem;
	color: #b3b3b3;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.card-button {
	align-self: flex-start;
	padding: 0.2rem 0.2rem;
	background: linear-gradient(90deg, #009ADC, #0057AA);
	color: white;
	border: none;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 10px rgba(0, 87, 170,0.5);
}

	.card-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 87, 170,0.7);
	}

.navigation {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	gap: 1rem;
}

.nav-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	font-size: 1.2rem;
	color: #009adc;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.nav-btn:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: scale(1.1);
	}

	.nav-btn:active {
		transform: scale(0.95);
	}

.dots {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.5rem;
	gap: 0.5rem;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #6a6a6a;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.dot.active {
		background: #009adc;
		transform: scale(1.3);
	}

.progress-bar {
	width: 100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	margin-top: 1rem;
	overflow: hidden;
}

.progress {
	height: 100%;
	background: linear-gradient(90deg, #0057aa, #009adc);
	width: 16.66%;
	transition: width 0.3s ease;
}

@media (max-width: 768px) {
	.card-service {
		flex: 0 0 300px;
		height: 450px;
	}
}

@media (max-width: 480px) {
	.card-service {
		flex: 0 0 250px;
		height: 400px;
	}

	.card-title {
		font-size: 1.2rem;
	}
}

	.btn-whatsapp {
		display: block;
		width: 70px;
		height: 70px;
		color: #fff;
		position: fixed;
		right: 20px;
		bottom: 20px;
		border-radius: 50%;
		line-height: 80px;
		text-align: center;
		z-index: 999;
	}

		.btn-whatsapp img:hover {
			transform: scale(1.1);
			transition: .5s;
		}



	.txt {
		padding-top: 20px;
		font-size: 28px;
		margin-bottom: 30px;
		text-align: center;
		text-transform: uppercase;
		color: #0057aa;
	}

	.container-rutas {
		display: flex;
		justify-content: space-around;
		align-items: baseline;
		margin-bottom: 80px;
		margin-top: 100px;
		box-shadow: 0 0 5px #333;
		background: aliceblue;
	}

	.container-tabla {
		width: auto;
		background: #fff;
		margin-bottom: 30px;
		margin-top: 30px;
		display: grid;
		box-sizing: border-box;
		grid-auto-rows: 55px;
	}

		.container-tabla .tabla-item img {
			width: 40px;
			margin-bottom: -10px;
			margin-right: 10px;
		}

	.tabla-titulo {
		display: flex;
		padding: 20px;
		box-sizing: border-box;
		justify-content: center;
		align-items: center;
		grid-column-start: 1;
		grid-column-end: 3;
		background: #0057aa;
	}

	.tabla-titulo {
		text-transform: uppercase;
		color: #fff;
		font-size: 18px;
	}

	.tabla-item {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 30px;
	}

		.tabla-item p {
			text-align: center;
			text-transform: uppercase;
			font-size: 12px;
			padding-bottom: 20PX;
		}

	@media(max-width: 1300px) {
		.container-rutas {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}
	}
	@media(max-width: 872px) {
		.tabla-titulo {
			display: flex;
			justify-content: center;
			align-items: center;
			grid-column-start: 1;
			grid-column-end: 2;
		}
	}


	.ir-arriba {
		position: fixed;
		bottom: 110px;
		margin-right: 30px;
		width: 40px;
		height: 40px;
		background: #009adc;
		border-radius: 20px;
		border-style: none;
		padding: 5px;
		cursor: pointer;
		transition: all 300ms ease;
		z-index: 1;
	}

		.ir-arriba img {
			width: 25px;
			height: 20px;
		}

		.ir-arriba:hover {
			transform: scale(1.2);
		}

	.container-footer {
		max-width: 1170px;
		margin: auto;
	}

	.row-footer {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	#ul-footer {
		list-style: none;
		text-decoration: none;
	}

	.footer {
		background-color: #0057aa;
		padding: 40px 0;
	}

	.footer-col {
		padding: 0 15px;
	}

		.footer-col h4 {
			font-size: 16px;
			color: #ffffff;
			text-transform: uppercase;
			margin-bottom: 25px;
			font-weight: 500;
			position: relative;
			text-align: center;
		}

			.footer-col h4::before {
				content: '';
				position: absolute;
				left: 0;
				text-decoration: none;
				bottom: -10px;
				background-color: #fff;
				height: 2px;
				box-sizing: border-box;
				width: 100%;
			}

		.footer-col ul li:not(:last-child) {
			margin-bottom: 10px;
		}

		.footer-col ul li a {
			font-size: 14px;
			color: #ffffff;
			text-decoration: none;
			font-weight: 300;
			display: block;
			transition: all 0.3s ease;
		}

			.footer-col ul li a:hover {
				color: #bbbbbb;
				padding-left: 8px;
				text-decoration: underline;
			}

		.footer-col .social-links a {
			display: inline-block;
			height: 40px;
			width: 40px;
			background-color: rgba(255,255,255,0.2);
			margin: 0 10px 10px 0;
			text-align: center;
			line-height: 40px;
			border-radius: 50%;
			color: #ffffff;
			transition: all 0.5s ease;
		}

			.footer-col .social-links a:hover {
				color: #24262b;
				background-color: #ffffff;
				transition: all 300ms;
			}
	@media(max-width: 767px) {
		.footer-col {
			width: 50%;
			margin-bottom: 30px;
		}
	}

	@media(max-width: 574px) {
		.footer-col {
			width: 100%;
		}
	}
	.container-footer2 {
		display: flex;
		align-items: center;
		justify-content: left;
		padding: 10px;
		background: #11507A;
	}

		.container-footer2 h3 {
			font-size: 14px;
			font-style: italic;
			color: #fff;
			font-weight: lighter;
		}
	@media(max-width: 500px) {
		.container-footer2 h3 {
			font-size: 8px;
			font-style: italic;
		}
	}


.contenedor-body > section {
	background: #f3f4f5;
	margin: 60px auto 120px;
	border-top: 15px solid #0057AA;
	text-align: center;
	padding: 50px 0 110px;
	width: 80%;
	max-width: 1100px;
}

	.contenedor-body > section > h1 {
		margin-bottom: 40px;
		font-size: 4em;
		text-transform: uppercase;
		font-family: 'Lato', sans-serif;
		font-weight: 100;
	}

.form-infor {
	width: 58.3333333333%;
	margin: 0 auto;
}

	.form-infor .field {
		width: 100%;
		position: relative;
		margin-bottom: 25px;
	}

		.form-infor .field > label {
			text-transform: uppercase;
			position: absolute;
			top: 0;
			left: 0;
			background: #0057AA;
			width: 100%;
			padding: 18px 0;
			font-size: 1.45em;
			letter-spacing: 0.075em;
			-webkit-transition: all 333ms ease-in-out;
			-moz-transition: all 333ms ease-in-out;
			-o-transition: all 333ms ease-in-out;
			-ms-transition: all 333ms ease-in-out;
			transition: all 333ms ease-in-out;
			-webkit-transition: 190ms width linear;
		}

			.form-infor .field > label + span {
				font-family: 'SSStandard';
				opacity: 0;
				color: white;
				display: block;
				position: absolute;
				top: 12px;
				left: 7%;
				font-size: 2.5em;
				text-shadow: 1px 2px 0 #cd6302;
				-webkit-transition: all 333ms ease-in-out;
				-moz-transition: all 333ms ease-in-out;
				-o-transition: all 333ms ease-in-out;
				-ms-transition: all 333ms ease-in-out;
				transition: all 333ms ease-in-out;
				-webkit-transition: 190ms width linear;
			}

#name, #msg, #email {
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	text-decoration: none;
	background: #E8E9EA;
	width: 100%;
	height: 53.3px;
	margin: 0;
	color: #002038;
	font-size: 1.6em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}


.form-infor .field:hover label {
	width: 18%;
	background: #002038;
	color: white;
}

@media (max-width:765px) {
	#name, #msg, #email {
		font-size: 1em;
	}

	.form-infor .field:hover label {
		width: 32%;
		background: #002038;
		color: white;
	}

	.form-infor {
		width: 90%;
	}

	.contenedor-body section {
		width: 100%;
	}
}

@media (max-width:505px) {
	#email {
		justify-content: end;
	}
}
