/*
Theme Name: Dal
Theme URI:
Author: Mauricio Sanhueza (Plasmable)
Version: 1.0
*/

:root {
  --main-bg-color: #687880 ;
  --main-color-primary: #157cbb ;
  --main-color-secondary: #bb2f37  ;
  --main-color-primary-rgba: rgba(255,122,40,.5);
  --main-padding: 5em !important;
  --main-padding-mobile: 2em !important;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&family=Open+Sans:wght@400;600&display=swap');



h1, h2, h3, h4, h5{
	font-family: 'Montserrat', sans-serif;
	
}
p, span{
	 font-family: 'Montserrat', sans-serif;
	 text-align: justify;

	
}
a{
    font-family: 'Montserrat', sans-serif;
}
.preload{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(to right, #ffffff, #ffffff);
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	opacity: 1;
	transition: .3s;
	
}
.oculta-preload{
	opacity: 0;
	z-index: -1;
	transition-delay: 2s;
}
.text-logo {
	display: flex;
	flex-direction: column;
	padding-top: 1em;
}
.text-logo img{

	height: 24px;
}
.content-preload{
	
}
.preload  img{
	width: 300px;
	animation: animapreload 1s infinite;
	animation-duration: 1s;
}
@keyframes animapreload{
	0%{
		transform: scale(1);
	}
	50%{
        transform: scale(1.1);
	}
	100%{
		transform: scale(1);

	}
}
header{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background: #fff;
	padding: 0px;
	top: 0;
	z-index: 10;
	
}

header a{
	text-decoration: none;
	color: #565a7a;
}
.sub-header{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	color: #fff;
}
.sub-header a{
	color: #fff;
}
.sub-menu-header{
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	
	background-image: linear-gradient(to right, transparent, #fff);
	z-index: 10;
	position: relative;
}

.contact-header{
	position: relative;
}
.contact-header a i{
	background: #f7f4ee ;
	padding: 1rem;
	color: var(--main-color-primary) ;
	border-radius: 1em;
}	
.logo{
	z-index: 1;
	position: relative;
	width: 250px;
}
#check{
	display: none;
}
.check-btn{
	position: fixed;
	right: 10px;
	top: 65px;
	overflow: hidden;
	height: 50px;
	width: 50px;
	background: var(--main-color-secondary);
	cursor: pointer;
	z-index: 101;
	transition: .5s;
	visibility: hidden;
}

.check-btn .line-check{
	position: absolute;
	width: 35px;
	height: 2px;
	background: #fff;
	z-index: 102;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: .5s;
	transform-origin: left top;
	transition-timing-function: cubic-bezier(.29, 1.01, 0.5, 2);
}
.check-btn .line-check:nth-child(2){
   top: 65%;
}
.check-btn .line-check:nth-child(3){
   top: 35%;
}
#check:checked  ~ nav{
   	right: 0%; 
 }

#check:checked  ~ .check-btn .line-check:nth-child(1){
	left: -100%;

}
#check:checked  ~ .check-btn .line-check:nth-child(2){
   top: 50%;
    transform:rotate(45deg) translate(-50%,-50%);
}
#check:checked  ~ .check-btn .line-check:nth-child(3){
	top: 50%;
	transform:rotate(-45deg) translate(-50%,-50%);
}

nav{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	position: sticky;
	z-index: 100;
	top: 0;
	padding: 1em;
	transition:.5s;
	background: var(--main-bg-color);
	
}
nav ul{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	right: 0px;
	top: 0;
	position: relative;

	margin: 0;

}
nav ul li{
	list-style: none;
	
}
nav ul li a{
	list-style: square;
	font-size: 16px;
	padding: 0 20px;
	margin: 10px;	
	color: #fff;
	text-decoration: none;
	transition: .5s;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	text-transform: uppercase;
}
nav ul li a:hover{
	color: #F2F2F2 ;
}

.current-menu-item {

	border-bottom: 1px solid #fff;
	color:#fff;
	position: relative;
	}
	.menu-item-262{
	background: var(--main-color-secondary);

}
.menu-item-291{
	position: relative;

}
.menu-item-291:hover .sub-menu{
	
display: block;
}
.sub-menu{
	display: none;
	position: absolute;
	top: 25px;
	width: 330px;
	left: 0;
	padding: 10px;
	background: var(--main-color-secondary);
}
/*.current-menu-item:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #188ec3 ;
	z-index: 1;
}*/

/*SEARCH FORM*/

form input[type="file"]{
  border: none;
   border: 1px solid #17141d;
  background: transparent;
   display: inline-block;
   width: 80%;
   position: relative;
   transition: .3s;
   color:#444;
}
form input:focus{
	border: none;
	background: transparent;
	transition: 2s;
}
form input[type="submit"]{
   border: none;
   background: #e43714 ;
   outline: none;
   transition: .3s;
   color:#fff;
}
/*FIN SEARCH FORM*/

/*BLOG*/
.category-blog{
	background: #f2f2f2;
	padding: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	min-height: 380px;
}
.category-blog img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	padding-bottom: 1em;
}
.title-category-blog{
	color: var(--main-color-primary);
	font-weight: bold;
	font-size: 20px;
}
/*FIN BLOG*/
/*SWIPER*/
.main-home{
	 width: 100%;
     min-height: 500px;
     display: flex;
     flex-direction: row-reverse;

}
  .content-slide{
      	position: relative;
      	width: 40%;
        min-height: 500px;
      	display: flex;
      	flex-direction: column;
      	align-items: center;
      	justify-content: center;
      	padding: 30px;
      	z-index: 1;	
      	background: rgba(14,112,154, 1);
	  background: var(--main-color-primary);

     }
       .content-slide:before{
     	content: "";
     	position: absolute;
     	top:0;
     	left: 0;
     	width: 100%;
     	height: 100%;
     	opacity: .1;
     }
    .content-slide h1{
      	color: #fff;
      	font-weight: bold;
      	color: #fff;
    
      }
      .content-slide h1 span{
      	color: #f2f2f2 ;
      	font-weight: bold;
      }
      .content-slide p{
      	font-weight: bold;
      	font-size: 16px;
      	color: #e7e8ec;
      	z-index: 10;
      }
      .swiper {
        width: 60%;
        min-height: 500px;
        position: relative;
        display: flex !important;
      }

.swiper-wrapper{
	position: relative;
	width: 100%;
	  min-height: 100vh;
	  	

	display: flex;
}
.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: bold;
        color: #fff;
        position: relative;
        width: 100%;
        height: 100%;
	background: red;
      }
      	.swiper-slide img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		} 

   
      .link-read-more-slide{	
		text-decoration: none;
		color: #fff;
		background: var(--main-color-secondary) ; 
		font-size: 14px;
		display: inline-block;
		text-align: center;
		padding: 10px 10px;
		transition: .5s;
		font-weight: 100;
		position: relative;
		z-index: 1;
		font-weight: bold;
	}
	.link-read-more-slide:hover{
		color: #d6601f; 
	}
	.link-read-more-slide:before{
		background: #fff;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 5%;
		height: 100%;
		transition: .2s;
		transition-timing-function: ease-in-out;
		z-index: -1;
	}

	.link-read-more-slide:hover:before{
		color: #fff;
		width: 95%;
	}
/*FIN SWIPER*/

/*SECCIÓN CARD HOME*/
.container-card-home{
	padding: var(--main-padding);
	background: url("http://inka.hostingpremium.cl/wp-content/uploads/2024/04/inkacoya-transportes-scaled.jpg");
	background-size: cover;
	min-height: 100vh;
	position: relative;

}
.container-card-home:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 122,40,.7);

	
}
.content-card-home{
	border-radius: 1em;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	background: #fff;
	padding: 1.3em;
	min-height: 550px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.content-card-home img{
	width: 100%;
	min-height: 240px;
	margin: auto;
	object-fit: cover;
	border-radius: 1em;
	transition: .4s;
	transition-timing-function: ease-in-out;
}
.content-card-home:hover img{
	width: 100%;
	margin: auto;
	object-fit: cover;
	border-radius: 1em;
	transform: scale(.9);
}
.text-card-home{
	transition: .4s;
	
}

.content-card-home:hover .text-card-home{
	transform: translateY(-10%);

}
.title-card-home{
	text-transform: uppercase;
	color: var(--main-color-secondary);
	font-size: 1.05em;
	font-weight: bold;
	
}
.text-card-home span{
	text-align: justify;
}
.content-card-home:hover .link-read-more{
	opacity: 1;
	transform: translateY(-30%);
}
.title-card-hospedaje{
	color: #0d729b;	
}
/*FIN SECCIÓN CARD HOME*/

/*SECCIÓN EXPERIENCIAS*/
.container-experiencia{
	padding: 5em !important;

}
.content-card-experiencia{
	width: 100%;
	height: 300px;
	position: relative;
	padding: 1em;
}


.content-card-experiencia img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2em;
	transition: .4s;
	transition-timing-function: ease-in-out;

	
}
.content-card-experiencia:hover img{
	transform: scale(1.1);
}
.data-experiencia{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	display: flex;
	background: rgba(219,148,30,.25);
	padding: .3em;
	border-radius: 1em;
}

.plus{
	font-size: 8em;
	font-weight: bold;
	color:  var(--main-color-primary); 
	
}

.number-exp{
	font-size: 8em;
	font-weight: bold;
	color:  var(--main-color-primary)	;
	
}
.text-card-experiencia{
	width: 80%;
	padding: 2em;
	margin: auto;
	top: -30px;
	background:  var(--main-color-primary);
	color: #fff;
	position: relative;
	border-radius: 1em;
	min-height: 150px;
	transition: .6s;
	transition-timing-function: cubic-bezier(.8,.42,.08,1.07);
	
}
.content-card-experiencia:hover .text-card-experiencia{
	transform: scale(.9);

}

.text-card-experiencia span{
	font-weight: bold;
}
/*FIN SECCIÓN EXPERIENCIAS*/

/*CAROUSEL*/
.container-carousel{
	/*background: #f3f3f3;*/
}

.wpcp-carousel-wrapper {
	width: 100%;
	padding-left: 3em;
	padding-right: 3em;
}
#sp-wp-carousel-free-id-36.sp-wpcp-36 .wpcp-swiper-dots .swiper-pagination-bullet{
	display: none;
}
.wpcp-single-item{
	min-height: 300px;
}
.wpcp-single-item .wcp-light-box figure img{
	height: 300px;
	object-fit: cover;
}

/*FIN CAROUSEL*/

/*FORMULARIO HOME*/
.container-formulario{
	padding: 5em !important;
	background-position: 0% 50%;
	background-size: cover;
	position: relative;
	z-index: 1;
}

label{

}
.wpcf7-form-control-wrap{
	display: flex;
	flex-direction: column;
}
/*FORMULARIO HOME*/
/*CLASES POR DEFECTO*/
	.link-read-more, .link-conversemos{
	border: 1px solid var(--main-color-secondary);
	text-decoration: none;
	color: #fff;
	background: var(--main-color-secondary);
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	padding: 10px 10px;
	transition: .5s;
	font-weight: 300;
	position: relative;
	z-index: 1;
	opacity: 0;
	transition-delay: .1s;
	z-index: 1;
}
.link-read-more:hover{
	color:#fff;
	background: #0D5A7B;
}
.container-call-to-action{
	background: var(--main-color-primary);
	height: 50vh;
	display: flex;
	padding: 5em;
	justify-content: space-around;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
}
.container-call-to-action h5{
	font-size: 30px;
}
.link-conversemos{
	font-size: 30px;
}
.link-conversemos:hover{
	background: transparent;
	color: #fff;
}


.wsp{
	position: fixed;
	right: 5px;
	top: 50%;
	z-index: 100;
	animation: animate 2s linear infinite;
	background-image: linear-gradient(to right, #50b353  , #94cd96 );
	padding: 5px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	border-radius: 4px;
	transition: .3s;
}

.wsp a{
	color: #fff;
}
.wsp a i{
	font-size: 30px;
}
.wsp a:hover{
	color: #fff;
}
@keyframes animate {
	0%
	{
		box-shadow: 0 0 0 0 rgba(38, 178, 143,.7);
	}
	30%
	{
		box-shadow: 0 0 0 50px rgba(38, 178, 143,.0);
	}
	60%
	{
		box-shadow: 0 0 0 90px rgba(38, 178, 143,0);
	}
	100%
	{
		box-shadow: 0 0 0 0 rgba(38, 178, 143,0);
	}
}

.title-section, .title-section-2{
  font-size: 2em;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  color: var(--main-color-secondary);

}

.title-section span{
	 color: var (--main-color-primary);

}

.title-section span{
 	 	color: var(--main-bg-color);
 }
.title-section-2 span{
	 color: var(--main-color-primary);

}
.legend{
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
	z-index: 1;
}
.call-to-action{
	background: #0feefa;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 350px;
	
	background-size: cover;	
	
	position: relative;
}
.call-to-action:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	 -webkit-filter: contrast(1.9) grayscale(1);
  filter: contrast(1.9) grayscale(1);
}
.call-to-action h3{
	z-index: 1;
}
.btn-conversemos{
	background: #b9ac89;
	color: #fff;
	text-decoration: none;
	z-index: 1;
	padding: 5px 13px;
}

.arrow{
	background: #3d6cb4;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	top: 60%;
	opacity: 0;
	transition: .5s;
	cursor: pointer;
	z-index: 10000;
}
.arrow:hover{
	background: #4f76b7;
}
.anima-arrow{
	animation: anima-arrow .7s;
	animation-iteration-count: 2;
}
@keyframes anima-arrow{
	0%{
		transform: scale(1.4);
		border-radius: 40%;
	}
	30%{
		border-radius: 0%;
	}
	100%{
		transform: scale(1.0);
		
	}

}
.icon-arrow{
	font-size: 20px;
	color: #fff;
}
.aparece-arrow{
	opacity: 1;
}
.whatsapp{
	width: 60px;
	position: fixed;
	right: 10px;
	top: 50%;
	z-index: 100000;
}
.whatsapp img{
	width: 100%;
}
.phone{
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	border-radius: 50%;
	background: rgb(235,124,6);
	background: linear-gradient(325deg, rgba(235,124,6,1) 17%, rgba(228,55,20,1) 68%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 101;
	color: #fff;
}
.tel{
	color: #fff;
	text-decoration: none;
	font-size: 20px;

}
.links-footer{
	display: flex;
	flex-direction: column;
}
.link-footer{
	text-decoration: none;
	color: #fff;
}
.content-contact{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 20px;
	width: 33.3%;
	background: #f2f2f2;
	
}
.contact-footer{
	position: fixed;
	z-index: 100;
	bottom: 0;
	width: 100%;
	background: #f2f2f2;
	display: flex;
	justify-content: space-around;
	align-content: center;
	border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    visibility: hidden;
    padding: .5em;
}

.info-contact{
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	background: #f2f2f2;
	padding: .5em;
	
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.content-contact a{
	text-decoration: none;
	
}
.content-contact a i{
	color: var(--main-color-secondary);
	font-size: 1em;
}
.location-mobile{
	border-top-left-radius: 15px;
}
.email-mobile{
	border-top-right-radius: 15px;
}


.derechos{
	position: relative;
	padding-bottom: 5em;
	
}
.derechos:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

/*CLASES POR DEFECTO*/
/*HEADER PAGE*/

.sub-header-page{
	width: 100%;
	height: 250px;
	position: relative;
}
.sub-header-page:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 122,40,.3);
}
.sub-header-page img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.title-header{
	position: absolute;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-style: italic;
	background: rgba(14, 112, 154, .7);
	padding: 1em;
}

/*FIN HEADER PAGE*/

/*NOSOTROS PAGE*/
.container-empresa-page, .container-main-page-transporte{
	width: 100%;
	height: 80vh;
	display: flex;
	flex-wrap: wrap;
}
.text-empresa-page, .text-transporte-page{
	width: 50%;
	padding: 2em;
}
.img-page-nosotros, .img-page-transporte{
	width: 50%;
	height: 100%;
	object-fit: cover;
}
.container-valores{
	padding: 5em !important;
	background: #f2f2f2;
}
.valores{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	align-content: space-around;
	background: #fff;
	border-radius: 2em;
	min-height: 250px;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	transition: .2s;
	transition-timing-function: ease-out;
}
.valores:hover{
	transform: scale(.9) ;

}
.icon i{
	font-size: 34px;
	color: #eb7e06;
}
.valores h3{
	color:#0d729b;
}
.text-mv{
	background: #f2f2f2;
	padding: 2em;
	border-radius: 2em;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
/*FIN NOSOTROS PAGE*/


/*INICIO TRANSPORTE*/
		.container-ayh-main-page{
			padding: 5em !important;
			background: #444;
			display: flex;
		}
		.text-transporte-page{
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-content: center;
			align-items: center;
		}
		.text-transporte-page p{

		}
		.razon-social{
			color: #e23c6c;
			font-size: 1.8em;
			font-weight: bold;
		}
		.porcentaje-prevencion{
			color:  var(--main-color-secondary);
		}
		.number-percentage{
			color:  var(--main-color-secondary);
		}
/*FIN TRANSPORTE*/

/*INICIO ALIMENTACION Y HOSPEDAJE*/
.content-title-service{
	display: flex;
	justify-content: center;
	align-items: center;
}
.container-list-services{
	padding: 5em !important;
}
.list-services{
	background: #f2f2f2;
	padding: 2em;
	border-radius: 2em;
}
.service span{
	font-size: 1.5em;
	color: #d46020;
	text-transform: uppercase;
}
.service i{
	color: #0e709a;
	font-size: 2.5em;
}
.container-alimentacion-empresas, .container-hospedaje{
	padding: 5em !important;

}
.container-service{
	padding: 150px 0px !important;
}
.container-alimentacion-items{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	
}
.container-alimentacion-items  h4{
	color: #d46020;
	font-weight: bold;
}
.container-alimentacion-items  i{
	color: #d46020;
	font-weight: bold;
	font-size: 2em;
}
.container-alimentacion-items  p{
	color: #0e709a ;
	font-weight: bold;
}
.container-img-alimentacion-empresas{
	
width: 70%;
	top: 15%;
	left: 12%;
	transform: rotate(30deg);
	position: relative;
	background: #d46020  ;
	padding: 1em;
}

.container-img-alimentacion-empresas:before{
	position: absolute;
	content: "";
	left: 23%;
	top: 106%;
	width: 70px;
	height: 70px;
	background: #4d9a06;
    transform: rotate(44deg);

}
.container-img-alimentacion-empresas:after{
	position: absolute;
	content: "";
	left: 40%;
	top: 120%;
	width: 70px;
	height: 70px;
	background: #d46020 ;
	transform: rotate(10deg);

}
.container-img-alimentacion-empresas img{
	width: 100%;
	object-fit: cover;
}
.container-hospedaje{
	background: url(http://inka.hostingpremium.cl/wp-content/uploads/2024/04/hospedaje-6.jpeg);
	background-size: cover;
	position: relative;
	z-index: 1;
}
.container-hospedaje:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 122,40,.7);
	z-index: -1;
}
.content-caracteristicas-hospedaje{
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-caracteristicas-hospedaje ul{
	list-style: inline;
}
.content-caracteristicas-hospedaje ul li{
	font-size: 1.3em;
	color: #fff;
	font-weight: bold;
}
/*FIN ALIMENTACION Y HOSPEDAJE*/



/*INICIO CONTACTO*/
.container-contacto-page{
	padding: 5em !important;
position: relative;
z-index: 10;
background: #d0d4d8 ;
}

.content-contacto-page{
	display: flex;
	flex-direction: column;
	justify-content: center;

}
.info-contact-page{
	padding: 1em;
}
.info-contact-page i{
	font-size: 2em;
	color: var(--main-color-primary);
	background: #fff;
	padding: .5em;
	border-radius: .2em;
}
.info-contact-page span{
	font-size: 1em;
	color: #fff;

}
/*FIN CONTACTO*/
footer{
	color: #fff;
	background:var(--main-color-primary);

}


/*Post entradas*/

.content-lastest-post{
	
	padding: 1em;
	min-height: auto;
	overflow: hidden;
	position: relative;
	background: #fff;
	transition: .5s;

}
.content-lastest-post:hover{
	background: #f2f2f2;
}
.content-lastest-post:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1d1d1d  ;
	opacity: 0;
	transition: .3s;
	z-index: 1;
}
.content-lastest-post a{
	text-decoration: none;
}



.content-lastest-post img{
	
}
.title-lastest-post{
	color: var(--main-color-primary);
	z-index: 1;
	font-weight: bold;
	position: relative;
}
.title-ubicacion, .title-cliente, .title-descripcion{
	color: var(--main-color-primary);
}
/*fin post entraads*/


/*CAROUSEL*/
/*CAROUSEL*/
.container-carousel{
	position: relative;
	width: 80%;
	margin: auto;

}
.carousel-element{
    
    display:flex;
    flex-direction: row;
    justify-content:center;
    width:auto;
    height:auto !important;
   padding: 1.5em;

}
.carousel-element img{
    height:200px !important;
    object-fit: cover;
}
.glider-dot{
	background: var(--main-color-primary);	
	width: 10px;
	height: 10px;
	border-radius: 0px;
}
.carousel-before, .carousel-next{
	display: block;
	width: 30px;
	height: 30px;
	background: var(--main-color-primary);	
	border-radius: 0;
	border: none;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}
.carousel-before, .carousel-next i{
	color: #fff;
}
.carousel-before{
	

	left: -15px;
}
.carousel-next{

	right: -39px;
}
/*FIN CAROUSEL*/
/*FIN CAROUSEL*/
/*HEADER PAGE*/
.container-about-us{
	top: -100px;
	position: relative;
	z-index: 10;
}
.content-about-us{
	width: 50%;
	padding: 10px;
	left: 50%;
	transform: translateX(50%);
}
.content-about-us img{
	width: 100%;
}
.content-about-us .parrafo::first-letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: brown;
}

.container-mision{
	background: #97cdf1 ; 
}
@media screen and (max-width: 640px) {
	body{
		overflow-x: hidden;
	}
	.container-card-home, .container-experiencia, .container-formulario{
		padding: var(--main-padding-mobile) !important;
	}
	header{
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
	}
	.contact-header{
		display: none;
	}
	.check-btn{
		visibility: visible;
	}
	.sub-menu-header{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 100%;

}

.location-header{
	display: none;
}
.phone-header{
	display: none;
}
.mail-header{
	display: none;
}
	nav{
		right: 100%;
		height: 100%;
		position: fixed;
		overflow: scroll;
	
	}
	nav ul{
		flex-direction: column;
		top: -30px;
		justify-content: space-between;
		flex-wrap: wrap;
		height: 80%;
		width: 100%;		
	}
	nav ul li{
		flex-direction: column;
		left: 0%;
		align-content: flex-start;
		justify-content: space-around;	
	}

	nav ul li ul{
		background: #4f76b7;
		position: relative;
		width: auto;
		left: 0px;
		z-index: 10;
		padding: auto;
	}
	nav ul li:hover ul{
		display: block;
	}
  
	.sub-menu{
	position: relative;
	}
	.container-call-to-action{
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	.main-home{
		flex-direction: column;
		
	 width: 100%;
     min-height: auto;
     

}
	}
	  .content-slide{
      	width: 100%;
      	height: 300px !important;
      }
	.swiper {
		width: 100%;
        height: 70vh !important;
      }
    
	.contact-footer{
		visibility: visible;
	}
	
.container-empresa-page, .container-main-page-transporte{
	height: auto;
	flex-direction: column;
	
	}
	.text-empresa-page, .img-page-nosotros, .text-transporte-page{
		width: 100%;
	
	}
	.img-page-transporte{
		width: 100%;
	}
	.number-exp{
	font-size: 5em;
	}
	.plus{
	font-size: 5em;	
}
.contact-footer{
		visibility: hidden;
	}
}
@media only screen and (max-width: 1140px) and (min-width: 650px)  {
	
	.contact-footer{
		visibility: hidden;
	}
}