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

:root {
  --main-bg-color: #c60c04  ;
  --main-color-primary: #747474  ;
  --main-color-secondary: #9e0904 ;
  --main-padding: 5em !important;
  --main-padding-mobile: 2em !important;
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&family=Oswald:wght@200..700&family=Roboto:wght@300;400;500;700&display=swap');

.icon-ds{
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-icon{
	background: blue;
	width: 512px;
	height: 512px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-radius: 2em;
}
.title-icon{
	color: #fff;
	font-weight: bold;
}
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;
}

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

	}
}


header{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background: #fff;
	padding: 0px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	position: relative;
	padding: 0em 6em;
}


.logo{
	
	position: relative;
	width: 18%;
}
.logo img{
	width: 100%;

	object-fit: cover;
}
#check{
	display: none;
}
.check-btn{
	position: fixed;
	right: 10px;
	top: 47px;
	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: 80%;
	height: auto;
	position: relative;
	z-index: 100;
	top: 0;
	padding: 1em;
	transition:.5s;

	
}
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: var(--main-bg-color);;
	text-decoration: none;
	transition: .5s;
	position: relative;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	text-transform: uppercase;
}
nav ul li a:hover{
	color: #444 ;
}

.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;
}*/


/*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*/
.main-home{
		padding: 0em 5em;
		display:flex;
		width: 100%;
		min-height:100vh;
	    flex-direction: row;
		justify-content: center;
		align-items: center;
	}
	.content-main{
		padding: 1em 1em;
		width: 50%;
		position:relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		
	}
	.title-main {
		color: var(--main-bg-color);
		
		font-size: 3em;
		text-transform: uppercase;
		font-weight:100;
		letter-spacing: 5px;
		 

		  background-size: cover;
		  background-position: 180% 120%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent; 
		text-shadow: 
      1px -1px 0 #7a7a7a, 
      -1px 2px 1px #808080, 
      -2px 3px 1px #929191, 
      -3px 4px 1px #9f9e9e, 
      -4px 5px 1px #a8a7a7, 
      -5px 6px 1px #b2b1b1, 
      -6px 7px 1px #bbbaba, 
      -7px 8px 1px #c6c4c4, 
      -8px 9px 1px #d3d1d1;
		
    animation: anima-shadow  1.5s alternate infinite ;
 
	}
@keyframes anima-shadow{
	0%{	
		text-shadow: 
      1px 9px 0 #7a7a7a, 
      -1px 8px 1px #808080, 
      -2px 6px 1px #929191, 
      -3px 5px 1px #9f9e9e, 
      -4px 4px 1px #a8a7a7, 
      -5px 3px 1px #b2b1b1, 
      -6px 2px 1px #bbbaba, 
      -7px 1px 1px #c6c4c4, 
      -8px -1px 1px #a8a7a7;
	}
	
	100%{
	text-shadow: 
       1px -1px 0 #7a7a7a, 
      -1px 1px 1px #808080, 
      -2px 2px 1px #929191, 
      -3px 3px 1px #9f9e9e, 
      -4px 4px 1px #a8a7a7, 
      -5px 5px 1px #b2b1b1, 
      -6px 6px 1px #bbbaba, 
      -7px 7px 1px #c6c4c4, 
      -8px 8px 1px #a8a7a7;
		
	}
}
	.title-main span{
		color: var(--main-color-primary);
		color:#444;
		font-weight: bold;
		letter-spacing: .1em;
		font-family: 'Montserrat', sans-serif;

	}
	.subtitle{
		color: var(--main-color-secondary);
		font-size: 1.2em;
		color:#444;
		font-weight: bold;
	}
/*CAROUSEL*/
/*CAROUSEL*/
.container-carousel{
	position: relative;
	width: 50%;
	margin: auto;

}
.carousel-element{
    
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100% !important;	
   border-radius: 2em;
   overflow: hidden;
   position: relative;
   margin: 1em;
  
}

.content-img-carousel{

	width: 100%;
	height: 450px;
	overflow: hidden;
	border-bottom-left-radius: 2em;
	border-bottom-right-radius: 2em;
}
.content-img-carousel:before{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
	position: absolute;
	background-image: linear-gradient(to right, var(--main-color-primary), transparent);
	z-index: 1;
}
.carousel-element img{
    transition: .3s;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.carousel-element:hover img{
	transform: scale(1.2);
}
.carousel-element h3{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .1em;
	z-index: 2;
	
	width: 70%;
}
.carousel-element span{
	text-transform: uppercase;
	position: absolute !important;
	left: 50% !important;
	top: 20% !important;
	transform: translateX(-50%);
	color: #fff;
	font-weight: bold;
	z-index:10;
}
.glider-dot{
	background: var(--main-color-primary);	
	width: 10px;
	height: 10px;
	border-radius: 0px;
	display: none;
}
.carousel-before, .carousel-next{
	display: block;
	width: 30px;
	height: 30px;
	background: var(--main-color-secondary);	
	border-radius: 0;
	border: none;
	position: absolute;
	transform: translateY(-50%);
	top: 20px;
}
.carousel-before, .carousel-next i{
	color: #fff;
}
.carousel-before{

	left: 88%;
}
.carousel-next{

	right: 3%;
}
/*FIN CAROUSEL*/
.filial{
	color: var(--main-color-secondary);
	font-weight: bold;
}
.filial a{
	color: var(--main-color-secondary);
	text-decoration:none;
}
.content-circle{
	width: 100%;
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;

	flex-wrap: wrap;
	position: relative;
}
.circle-1{
	width: 50%;
	height: 60%;
	aspect-ratio: 16 / 9;
	
	overflow: hidden;
	top: 0%;
	position: relative;
	width: 60%;
	height: 80%;
	 border-top-right-radius: 40%;
	 border-bottom-right-radius: 40%;
	 border-top-left-radius: 50%;
	  border-bottom-left-radius: 50%;
	  border-radius: 50%;
	  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	  transition: .3s;
}
.content-circle:hover .circle-1{
	transform: rotate(20deg) scale(1.1);
}
.shape-circle {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 77%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
  opacity: .95;

}
.content-circle:hover .shape-circle{
	
	top: 40%;
}
.circle-2{
	width: 20%;
	height: 25%;
	aspect-ratio: 16 / 9;
	background: #f2f2f2;
	overflow: hidden;
	top: 0%;
	left: 40%;
	position: absolute;
	border-radius: 50%;
    opacity: .6;
    background: url(http://incomsolution.com/wp-content/uploads/2024/11/patrones.jpg);
    background-size: cover;
    transition: .3s;
}
.content-circle:hover .circle-2{
	top: 0%;
	left: 30%;
}
.content-title{
	display: flex;
	justify-content: center;
	align-items: center;
}
.container-valores{
	width: 100%;
	height: 60vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-valores{
	width: 100%;
	height: 50%;
	position: relative;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.content-valores:before{
	width: 1px;
	height: 50%;
	background: var(--main-color-primary);
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.content-valores:after{
	width: 30%;
	height: 1px;
	background: var(--main-color-primary);
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.valores{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 50%;
	padding: 1em;
}
.valores i{
	font-size: 3em;
	color: var(--main-color-secondary);
}

.valores h3{
	color: var(--main-color-primary);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.text-we{
	font-size:: 12px;
}
.img-nosotros-page{
	width:100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2em;
}
.content-img-somos{
	width: 80%;
	height: 50%;
	position: relative;
	left: 50%;
	top: 10%;
	transform: translateX(-50%);
	
}
.content-img-somos img{
	width: 50%;
	height: 500px;
	object-fit: cover;
	border-radius: 2em;
	position: relative;
	transition: 3s;
	display: flex;
	flex-direction: row;
}

.content-vision{
	background: #f2f2f2;
	padding: 2em;
	border-radius: 1em;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	min-height: 230px;
	
}
.title-vision{
	color: var(--main-color-primary);
	text-transform: uppercase;
	font-weight: bold;
}
.content-vision p{
	text-align: left !important;
	font-size: 17px;
	line-height: 1.4;
}
.content-service{
	background: #f2f2f2;
	padding: 1em;
	border-radius: 1em;
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;

}
.content-service:before{
	content: "";
	position: absolute;
	left: 0;
	top: 35%;
	width: 100%;
	height: 100%;
	background: url(http://incomsolution.com/wp-content/uploads/2024/11/lines.png);
	background-size: cover;
	opacity: .5;
}
.content-service img{
	width: 100%;
	height: 90%;
	object-fit: cover;
	border-radius: 1em;
	transition: .3s;
	z-index: 1;
	position: relative;

}
.content-service:hover img{
	transform: scale(.9);
}
.title-service{
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--main-color-primary);
	padding: .2em;
	font-size: 1.3em;
	transition: .3s;
}
.content-service:hover .title-service{
	color: var(--main-color-secondary);
}
.content-experiencia{
	border-right: 1px var(--main-color-primary) solid; 
	border-bottom: 1px var(--main-color-primary) solid; 
	padding: 2em;
	border-width: 1px;
	background: #fafafa;
}
/*SWIPER*/
      .swiper {
        width: 100%;
        height: 450px;
        position: relative;
      

      }
      .swiper-slide:before{
          content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgb(209,103,95);
    background: linear-gradient(6deg, rgba(4,1,4,.5) 13%, rgba(255,255,255,0) 99%);
}
.swiper-wrapper{
	position: relative;
}
      .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: bold;
        color: #fff;
        position: relative;
      }
   		.swiper-slide img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		} 

      .content-slide{
      	position: relative;
      	display: flex;
      	flex-direction: column;
      	align-items: flex-start;
      	justify-content: space-around;
      	padding: 30px;
      	z-index: 10;	

      }
      .content-slide h1{
      	color: var(--main-color-secondary);
      	font-weight: bold;
      	font-size: 2.4em;

      }
      .content-slide h1 span{
      	color: #444 ;
      	font-weight: bold;
      }
      .content-slide p{
      	font-weight: 100;
      	font-size: 16px;
      	color: #444;
      	z-index: 10;
      }
      .link-read-more-slide{
		border: 1px solid #d84905  ;
		text-decoration: none;
		color: #fff;
		background: #fc2931;
		font-size: 16px;
		display: inline-block;
		text-align: center;
		padding: 10px 10px;
		transition: .5s;
		font-weight: 100;
		border-radius:4px;
		position: relative;
		
		font-weight: bold;
	}
	.link-read-more-slide:hover{
		color: #444;
		background: transparent;
	}

	
/*FIN SWIPER*/



/*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: 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;
	font-weight: bold;
}

.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{
  font-size: 2em;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  color: var(--main-color-secondary);

}

.title-section span{
	 color: #fff;
	 background: var(--main-color-secondary);
	 padding: .1em;
	 border-radius: .3em;
}


.title-section-2{
	 color: var(--main-color-primary);
	 text-transform: uppercase;
	 font-size: 1.3em;

}
.title-section-2 span{
	font-weight: bold;
}
.title-section-main-word{
	background: var(--main-bg-color);
}
.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*/





/*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: var(--main-color-primary);
	background:var(--main-color-primary);
	background: #f2f2f2;
	position: relative;
	z-index: 1;
}
footer:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(http://incomsolution.com/wp-content/uploads/2024/11/patrones.jpg);
	left: 0;
	top: 0;
	z-index: -1;
	opacity: .08;
}
.title-info-footer{
	color: var(--main-bg-color);
	font-weight: bold;
}

/*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*/


/*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: 1140px) {
	body{
		overflow-x: hidden;
	}
	.container-card-home, .container-experiencia, .container-formulario{
		padding: var(--main-padding-mobile);
	}
	header{
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
	}
	.logo{

	width: 80%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
	.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;
		width: 100%;
		height: 100%;
		z-index: 1;
		opacity: 1;
	}
	nav:before{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: url(http://incomsolution.com/wp-content/uploads/2024/11/patrones.jpg);
		background-size: cover;
		opacity: .7;

	}
		nav:after{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(4,4,4,.8);
		background-size: cover;
		opacity: 1;

	}
	nav ul{
		flex-direction: column;
		top: -30px;
		justify-content: space-between;
		flex-wrap: wrap;
		height: 80%;
		width: 100%;	
		z-index:1;
		
	}
	nav ul li{
		flex-direction: column;
		left: 0%;
		align-content: flex-start;
		justify-content: space-around;	
	}

	nav ul li ul{
		
		position: relative;
		width: auto;
		left: 0px;
		z-index: 10;
		padding: auto;
	}
	nav ul li a{
		color: #fff;
	}
	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-reverse;
		padding: 0em 1em;
	}
	.content-main{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.title-main{
		font-size: 2em;
	}
	.container-carousel{
		width: 100%;
	}
	.carousel-before{
	bottom: 5px;
	left: 78%;
}
	.content-circle{
	width: 100%;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
	.circle-1{
	width: 300px;
	height: 300px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	top: 0%;
	position: relative;
	width: 60%;
	height: 80%;
	 border-top-right-radius: 40%;
	 border-bottom-right-radius: 40%;
	 border-top-left-radius: 50%;
	  border-bottom-left-radius: 50%;
	  border-radius: 50%;
	  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	  transition: .3s;
}
.shape-circle {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 77%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
  opacity: .95;

}
	.valores h3{
	color: var(--main-color-primary);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 1em;
}
	  .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-we{
	font-size: 12px;
	text-align: left;
}
	.text-empresa-page, .img-page-nosotros, .text-transporte-page{
		width: 100%;
	
	}

}
@media only screen and (max-width: 1140px) and (min-width: 650px)  {
	
	.contact-footer{
		visibility: hidden;
	}
}