@Font-face {
	font-family: "Work Sans", sans-serif;
	src: 
		url("../font/WorkSans-Black.ttf") format("ttf"),
		url("../font/WorkSans-Bold.ttf") format("ttf"),
		url("../font/WorkSans-ExtraBold.ttf") format("ttf"),
		url("../font/WorkSans-Medium.ttf") format("ttf"),
		url("../font/WorkSans-Regular.ttf") format("ttf"),
		url("../font/WorkSans-SemiBold.ttf") format("ttf");
}
/* ===========================================
	BASE STYLES
=========================================== */
* {
	padding: 0;
	margin: 0;
	font-family: "Work Sans", sans-serif;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
:root {
	--blue: #0A2568;
	--white: #FFFFFF;
	--skyblue: #7DA9EB;
	--grey: #F2F2F7;
	--dark-grey: #3C3C3C;
}
body {
	padding: 0;
	margin: 0;
	color: var(--blue);
}
img {
	max-width: 100%;
	display: inline-block;
}
h1{
  font-size: clamp(2.5rem, 2.5vw, 3rem);
  line-height: 105%;
  font-weight: 900;
}
h2{
  font-size: clamp(1.7rem, 2vw, 2rem);
  line-height: 115%;
  font-weight: 600;
}
h3{
  font-size: clamp(1.663rem, 1.7vw, 1.76rem);
  line-height: 105%;
  font-weight: 600;
}
h4{
  font-size: clamp(1.248rem, 1.3vw, 1.38rem);
  line-height: 110%;
  font-weight: 600;
}
h5{
  font-size: clamp(1.248rem, 1.2vw, 1.34rem);
  line-height: 150%;
  font-weight: 500;
}
p{
  font-size: clamp(1rem, 1rem, 1rem);
  line-height: 150%;
  font-weight: 500;
}
small{
  font-size: clamp(0, 0, 0.8rem);
}
/* ===========================================
	FORMS
=========================================== */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number], textarea {
	padding: 6px 20px;
	margin: 10px 0;
	border-radius: 2px;
	border: none;
	font-size: 1rem;
}
select {
	padding: 6px 20px;
	border-radius: 2px;
	border: none;
	font-size: 1rem;
	margin: 10px 0;
	color: rgba(0, 0, 0, 0.5);
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus {
	outline: 1px solid var(--skyblue);
}
input[type="checkbox"] {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
.legal {
	font-size: .8rem;
}
label {
  text-align: left;
}
::placeholder {
	color: rgba(0, 0, 0, 0.5);
}
/* ===========================================
	BUTTONS
=========================================== */
a {
	text-decoration: none;
}
.content2{
	margin-bottom: 50px;
}
.btn-skyblue {
	color: var(--white);
	border: none;
	background: var(--skyblue);
	display: inline-block;
	padding: 15px 35px;
	font-size: 1.15rem;
	cursor: pointer;
	border-radius: 6px;

	/* HOVER ANIMATION */
	-webkit-transition: all 0.2s ease-out;
 	-moz-transition: all 0.2s ease-out;
 	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.btn-blue {
	color: var(--white);
	border: none;
	background: var(--blue);
	display: inline-block;
	padding: 15px 35px;
	font-size: 1.15rem;
	cursor: pointer;
	border-radius: 6px;

	/* HOVER ANIMATION */
	-webkit-transition: all 0.2s ease-out;
 	-moz-transition: all 0.2s ease-out;
 	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
/* ===========================================
	FLOATING BUTTONS
=========================================== */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 30px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  color: var(--white); /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  background: none;
}
#backToTop i {
	background: var(--black);
	padding: 20px;
	border-radius: 50%;
}
/* ===========================================
	MAIN GRID
=========================================== */
.content-grid {
	--padding-inline: 2rem;
	--content-max-width: 1380px;

	display: grid;
	grid-template-columns:
		[full-width-start] minmax(var(--padding-inline), 1fr)
		[content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end]
		minmax(var(--padding-inline), 1fr) [full-width-end];
}
/* SECTIONS WITH THIS CLASS ARE FULL WIDTH */
.full-width {
	grid-column: 1/-1;
}
/* SECTIONS WITH THIS CLASS HAVE 1380PX MAX*/
.wrapper {
	grid-column: 2/-2;
	max-width: 1380px;
	margin: 0 auto;
}
/* ===========================================
	HEADER
=========================================== */
.hide-mobile{
	display: none;
}
header {
	background: var(--white);
}
header .wrapper {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    padding: 10px 25px;
}
header .wrapper .call-us {
	display: none;
	background: var(--blue);
	justify-self: end;
	.font-size: 1.2rem;
}
header .wrapper .call-us-mobile {
	background: var(--skyblue);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2vw 3vw;
	justify-self: end;
	border-radius: 6px;
}
header .wrapper a {
	color: var(--white);
}
header img{
	width: 100%;
	max-width: 250px;
}

.sticky { 
	z-index: 999;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
/* ===========================================
		MENU
	=========================================== */
header .wrapper .menu-desktop {
	display: none;
}
header .wrapper .menu-mobile {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: var(--white);
	backdrop-filter: blur(10px);
	height: 100vh;
	width: 100vw;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	/* HOVER ANIMATION */
	-webkit-transition: all 2s ease-out;
 	-moz-transition: all 2s ease-out;
 	-o-transition: all 2s ease-out;
	transition: all 2s ease-out;
}
header .wrapper .menu-mobile li {
	list-style-type: none;
	padding: 2vh 0;
}
header .wrapper .menu-mobile li a {
	font-size: 1.2rem;
	color: var(--blue);
}
header .wrapper .trigger {
	cursor: pointer;
	color: var(--blue);
}

.no-menu{
	text-align: center;
    place-items: center;
    grid-template-columns: auto !important;
}

.no-menu a {
	margin: auto;
}
/* ===========================================
	HERO
=========================================== */
.hero {
	display: grid;
	grid-template-columns: 1fr;
	/* ESTO ES PARA POSICIONAR EL SVG */
	overflow:hidden;
	position: relative;
	height: 100%;
}
.image {
	
	background-image: url('../img/background-mobile.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	height: 90vh;
	min-height: 740px;
}
.image .image-inside {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
    align-items: center;
    padding: 20px;
}

.image .image-inside .content{
	margin-bottom: 60px;
}

.image .image-inside .content a{
	margin-top: 15px;
}

.image .image-inside .badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-items: center;
	padding: 340px 150px 0 150px;
	align-items: flex-end;
}
.image .image-inside .badges img {
	align-self: center;
}

.image .image-inside h1, .image .image-inside h3 {
	color: var(--blue);
	text-align: center;
	z-index: 9;
	position: relative;
	font-weight: 800;
	font-size: 2.1rem;
	max-width: 300px;
	margin-top: 25px;
}
.image .image-inside span{
	font-weight: bolder;
	font-size: 3rem;
	display: inline-block;
	margin-top: 10px;
}

.image .image-inside .span2{
	font-weight: bolder;
    line-height: 1em;
    font-size: 2rem;
    display: inline-block;
    margin-top: 10px;
}

.image .image-inside .destacado {
	font-weight: 900;
	font-size: 3rem;
}


.divider-img-793011 {
	position: absolute;
	width: 349%;
	height: 100px;
	
	transform: scale(1, 1);
	bottom:0px;
	left: 0px;
	fill: rgb(247, 246, 239)
}
.divider-img-866399 {
	position: absolute;
	width: 349%;
	height: 100px;
	
	transform: scale(1, -1);
	top:0px;
	left: 0px;
	fill: rgb(247, 246, 239)
}
.image-inside a{
	position: relative;
	z-index: 10;
}
/* ===========================================
	WHO WE ARE
=========================================== */
.who-we-are {
	background: var(--white);
	color: var(--black);
	text-align: center;
	padding: 60px 30px;
	display: grid;
	grid-template-columns: 1fr;
}
.who-we-are img {
	border-radius: 6px 6px 6px 6px;
	margin-bottom: 2em;
}
.who-we-are-in h2{
	color: var(--skyblue);
}
.who-we-are-in p{
	text-align: left;
}
.who-we-are-in a{
	margin-top: 2rem;
}
.who-we-are-in {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	padding: 30px 0px 0px 0px;
}
/* ===========================================
	INFORMATION
=========================================== */
.information {
	background: var(--skyblue);
	text-align: center;
	padding: 100px 0;
	/* ESTO ES PARA POSICIONAR EL SVG */
	overflow:hidden;
  position: relative;
  height: 100%;
}
.information .information-in {
	color: var(--white);
	display: grid;
	grid-template-columns: 1fr;
}
.information .information-in div {
	padding: 30px 0;
}
/* ===========================================
	SERVICES
=========================================== */
.services {
	.background: var(--grey);
	text-align: center;
	padding: 60px 30px;
}
#testimonial-slider{
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
}
.services .services-in {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
}
.services h3{
	text-align: center;
	font-weight: normal;
	font-size: 1rem;
}
.services .services-in .card {
	display: grid;
	grid-template-columns: 1fr;
}
.services-in .card img{
	width: 100%;
}
#testimonial-slider .card {
	display: flex;
	justify-content: center;
	align-items: center;
}
.services .services-in .card .card-text {
	background: var(--white);
	padding: 30px 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 0 0 16px 16px;
	min-height: 150px;
}
/* ===========================================
	CTA
=========================================== */
.cta {
	background: var(--skyblue);
	text-align: center;
	color: var(--white);
	/* ESTO ES PARA POSICIONAR EL SVG */
	overflow:hidden;
  position: relative;
  height: 100%;
}
.cta .cta-in{
	padding: 180px 30px;
}
.cta a{
	background-color: var(--white);
	color: var(--skyblue);
	padding: 15px;
	font-weight: bold;
	display: block;
	width: 100%;
}
/* ===========================================
	SERVICE AREAS / TESTIMONIAL
=========================================== */
.service-areas {
	padding: 60px 30px;
	text-align: center;
}

.service-areas h3{
	margin-top: 30px;
}

.service-areas ul{
	width: 100%;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 50px;
    row-gap: 10px;
    max-width: 500px;
}

.service-areas li{
	text-align: left;
	line-height: 1.2em;
}

.service-areas .service-areas-in {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 50px;
}

.service-areas-in p{
	text-align: left;
	color: var(--blue);
}

.service-areas-select{
	text-align: left;
	margin-top: 2rem;
}

.service-areas select{
	width: 100%;
	background: #EDEBEB;
}

.service-areas label{
	font-size: 0.8rem;
}

.service-areas img{
	margin-top: 1rem;
}

#testimonial-slider{
	margin-top: 2rem;
}

#testimonial-slider .card{
	background: #F4F0F0;
	border-radius: 12px;
	padding: 25px;
	margin: 10px;
	position: relative;
}

#testimonial-slider .card img{
	position: absolute;
	bottom: 30px;
	right: 30px;
}

.reputation{
	grid-template-columns: auto !important;
	place-items: center !important;
}
/* ===========================================
		CONTACT
	=========================================== */
	.contact {
		background: var(--grey);
	}
	.contact .contact-in {
		display: grid;
		grid-template-columns: 1fr;
		padding: 60px 15px;
	}
	.contact .contact-in .form {
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	#form {
		scroll-margin-top: 100px;
	}
/* ===========================================
	FOOTER
=========================================== */
footer {
	text-align: center;
	padding: 30px 0px;
}
footer a {

}
footer p {
	font-size: 1rem;
}
.privacy-policy {
	cursor: pointer;
}


.image-thx{
	height: 80vh;
	background-color: #0A2568;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-thx .content{
	padding: 25px;
}

.image-thx h1{
	font-size: 3rem;
}

.image-thx h4{
	font-size: 2.3rem;
	padding: 25px 0;
}

.image-thx p{
	font-size: 1.8rem;
	line-height: 1.1em;
}

.image-thx a{
	background-color: #6B97FB;
	color: white;
	padding: 20px 25px;
	display: inline-block;
	margin-top: 40px;
	border-radius: 5px;
}

.infosect1 .container{
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding-bottom: 50px;
}

.infosect1 .container p{
	font-weight: bold;
	margin: 25px 0;
}

.infosect1 .container ul{
	padding-left: 20px;
	padding-top: 20px;
	line-height: 1.5em;
}

.who-we-are2 .container{
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 30px;
	padding-bottom: 80px;
}

.who-we-are2 h2{
	margin-top: 80px;
	text-align: center;
}

.who-we-are2 .container .icon-box{
	box-shadow: 4px 4px 4px 0px #00000040;
	border-radius: 20px;
	width: 100%;
	height: 300px;
	max-width: 390px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.who-we-are2 .container h5{
	font-weight: bold;
	font-size: 1.8rem;
}
.who-we-are2 .container p{
	font-size: 1.1rem;
}
/* *****************************************************
 
	SMARTS / TABLETS
	Small devices (tablets, 768px - 992px) 

***************************************************** */
@media (min-width: 768px){
	.image {
		background-image: url('../img/bg-tablet.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		position: relative;
		height: 100vh;
		min-height: 830px;
	}
	.image h1{
		font-size: 2.2rem !important;
        max-width: 325px !important;
	}
	.content2{
		margin-bottom: 120px !important;
	}
	
}


/* *****************************************************
 
	TABLETS / DESKTOP
	Medium devices (desktops, 992px and up)

***************************************************** */
@media (min-width: 992px) {
	/* ===========================================
		HEADER
	=========================================== */

	.hide-desktop{
		display: none !important;
	}
	
	.hide-mobile{
		display: block;
	}

	.no-menu{
		text-align: center;
		place-items: center;
		grid-template-columns: auto !important;
	}
	
	.no-menu a {
		margin: auto;
		grid-column: 1/-1 !important;
	}
	header .wrapper {
		grid-template-columns: auto;
		align-items: center;
		padding: 20px 0px;
	}
	header .wrapper img {
		align-self: flex-start;
		justify-self: start;
		.width: 120px;
		grid-column: 1/2;
	}
	header .wrapper a {
		justify-self: end;
	}
	header .wrapper .call-us {
		padding: 10px 20px;
		border-radius: 6px;
		display: inline-block;
		grid-column: 3/4;
	}
	header .wrapper .call-us-mobile {
		display: none;
	}
	/* ===========================================
		MENU
	=========================================== */
	header .wrapper .menu-desktop {
		list-style-type: none;
		display: flex;
		align-items: center;
		justify-self: center;
		cursor: pointer;
		color: var(--blue);
		grid-column: 1/3;
	}

	header .wrapper .menu-desktop a {
		color: var(--blue);
        font-size: 1.2rem;
        padding: 0 15px;
        font-weight: bold;
	}
	header .wrapper .menu-mobile {
		display: none;
	}
	header .wrapper .trigger {
		display: none;
	}
	/* ===========================================
		POST-HEADER
	=========================================== */
	.post-header a {
		color: var(--white);
		display: none;
	}
	.post-header .h4-to-form {
		display: inline-block;
	}
	/* ===========================================
		HERO
	=========================================== */
	.hero {
		grid-template-columns: 1fr;
	}
	.image {
		background-color: #03223A;
		background-image: none;
		height: 80vh;
		min-height: 400px !important;
	}
	.image .image-inside .content{
		width: 20% !important;
	}
	
	.image .image-inside .content2{
		width: 80% !important;
	}

	.image .image-inside .content .images-container img{
		width: 50px !important;
		height: auto !important;
	}
	.image .image-inside {
		align-items: center;
        justify-content: center;
		flex-direction: row;
	}

	.image .image-inside h1{
		color: white;
		max-width: 640px !important;
		text-align: left;
		font-size: 1.9rem !important;
	}

	.image .image-inside .content{
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.images-container{
		order: 2;
        align-self: flex-end;
        margin-bottom: 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 25px;
	}

	.image .image-inside a{
		order: 1;
		max-width: 300px;
		padding: 20px 25px;
		font-size: 1rem;
	}

	.image-inside{
		width: 90%;
		margin: auto;
	}
	/* ===========================================
		WHO WE ARE
	=========================================== */
	.who-we-are-in {
		position: relative;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 50px;
		text-align: left;
		align-items: center;
	}

	.who-we-are-in div:nth-child(1) {
		width: 100%;
	}

	.who-we-are-in img{
		position: absolute;
        width: 45vw;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
		max-width: 620px;
	}
	.content2{
		background-image: url("../img/desktop-trucks.png");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
		width: 100%;
		height: 100%;
		width: 80% !important;
        display: flex;
        justify-content: center;
        align-items: flex-end;
		margin-bottom: 0 !important;
	}
	/* ===========================================
		INFORMATION
	=========================================== */
	.information .information-in {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		padding: 90px 0px;
	}
	/* ===========================================
		SERVICES
	=========================================== */
	.services .services-in .card {
		margin: 20px;
	}
	.services .services-in .card .card-text {
		padding: 40px 20px;
		height: auto;
	}
	.cta-in{
		width: 80%;
	}
	.cta-in a{
		max-width: 200px;
		margin: auto;
	}
	/* ===========================================
		SERVICE AREAS / TESTIMONIAL
	=========================================== */
	.service-areas {
		padding: 90px 0px;
	}
	.service-areas .service-areas-in {
		grid-template-columns: 1fr 1fr;
	}

	#testimonial-slider, .service-areas-select{
		max-width: 500px;
		margin: auto;
		padding-top: 50px;
	}

	.service-areas-in p {
		max-width: 500px;
		margin: auto;
		text-align: center;
	}

	#testimonial-slider .card{
		min-height: 340px;
	}
	/* ===========================================
		CONTACT
	=========================================== */
	.contact {
		padding: 90px 0px;
	}
	.contact .contact-in {
		grid-template-columns: repeat(12, 1fr);
	}
	.contact .contact-in .form {
		grid-column: 4/10;
	}

	.infosect1 .container{
		flex-direction: row;
		justify-content: space-between;
		max-width: 1380px;
		width: 80%;
		padding: 100px 0;
	}

	.infosect1 .container .block{
		max-width: 500px;
	}

	.who-we-are2 .container{
		max-width: 1380px;
		width: 80%;
		padding-bottom: 100px;
		padding-top: 50px;
		flex-direction: row;
		justify-content: space-between;
		column-gap: 50px;
	}


}
/* *****************************************************
 
	LARGE DESKTOP
	Large devices (large desktops, 1200px and up)

***************************************************** */
@media (min-width: 1200px) {
	
}