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

@import url('https://fonts.googleapis.com/css?family=Muli:300&display=swap');
h1, h2, h3, h4, h5{
	font-family: 'Oxygen Mono', monospace;
	text-transform: uppercase;
}
p{
	 font-family: 'Muli', sans-serif;
	
}
a{
	font-family: 'Oxygen Mono', monospace;
}
.preload{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(to right, #ffffff, #ffffff);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	opacity: 1;
	transition: .3s;
	transition-delay: .5s;
}

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

	}
}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	background: #fff;
	padding: 10px;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #f3f3f3;
	
}
.sub-menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 50px;
	width: 40%;
}
.tel-menu{
	color: #188ec3;
	text-decoration: none;
	font-size: 20px;
}
.tel-menu i{
	color: #188ec3;
}
header i{
	font-size: 25px;
	color: #fff;
}
header a{
	text-decoration: none;
	color: #565a7a;
}
.sub-menu{

}
#check{
	display: none;
}
.check-btn{
	position: fixed;
	right: 10px;
	bottom: 30px;
	overflow: hidden;
	height: 50px;
	width: 50px;
	background: #D63A26;
	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;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 150px;
	position: sticky;
	z-index: 1000;
	z-index: 10;
	background: #fff;
	top: 0;
	padding: 30px;
	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: none;
	font-size: 16px;
	padding: 0 20px;
	margin: 10px;
	background: #A1B87C  ;	
	color: #fff;
	text-decoration: none;
	transition: .5s;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
}
nav ul li a:hover{
	color: #ffffff ;
}

.current-menu-item {
	position: relative;
	
}
.current-menu-item:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #188ec3 ;
	z-index: 1;
}

/*SWIPER*/
      .swiper {
        width: 100%;
        height: 600px;
        position: relative;
        background: #699cb6;
      }
      .swiper-slide:before{
          content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgb(161,184,124);
    background: linear-gradient(6deg, rgba(161,184,124,1) 13%, rgba(255,255,255,0) 99%);
}

      .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: absolute;
      	left: 5%;
      	height: 50%;
      	width: 35%;
      	display: flex;
      	flex-direction: column;
      	align-items: flex-start;
      	justify-content: space-around;
      	padding: 30px;
      	z-index: 10;	

      }
      .content-slide h2{
      	color: #e7e8ec;
		transition-delay:.5s;
      }
      .content-slide h2 span{
      	color: #f2f2f2 ;
      	font-family: 'Anton', sans-serif;
      	font-weight: bold;
      }
      .content-slide p{
      	font-weight: 100;
      	font-size: 16px;
      	color: #e7e8ec;
      	z-index: 10;
      }
      .link-read-more-slide{
		border: 1px solid #0aa29b  ;
		text-decoration: none;
		color: #fff;
		background: #0aa29b ;
		font-size: 16px;
		display: inline-block;
		text-align: center;
		padding: 10px 10px;
		transition: .5s;
		font-weight: 100;
	}
	.link-read-more-slide:hover{
		color: #fff;
		background: transparent;
	}
/*FIN SWIPER*/
	.link-read-more, .link-conversemos{
	border: 1px solid #0aa29b ;
	text-decoration: none;
	color: #fff;
	background: #0aa29b  ;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	padding: 10px 10px;
	transition: .5s;
	font-weight: 300;
}
.link-read-more:hover{
	color: #444;
	background: transparent;
}
	.container-call-to-action{
	background: #d8e0d5;
	height: 30vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
}
.container-call-to-action h5{
	font-size: 30px;
}
.link-conversemos:hover{
	background: transparent;
	color: #fff;
}

.card{
	position: relative;
	margin-top: 20px;
	background: #000;
	width: 100%;
	height: 400px;
	transition: .7s;
	transition-timing-function: cubic-bezier(.94,.06,.83,.67);
	transform-style: preserve-3d;
	perspective: 1000px;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	border-radius: 40px;
}
 .card: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(85,124,186,1) 3%, rgba(255,255,255,0) 99%);
}
.frontal{
	position: absolute;
	backface-visibility: hidden;
	width: 100%;
	height: 100%;
   border-radius: 40px;

}
.frontal img{
	object-fit: cover;
	width: 100%;
	height: 100%;

}
.title-card{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 26px;
	font-family: sans-serif;
	text-align: center;
	color: #fff;
	z-index: 1;
}
.reverso{
	position: absolute;
	backface-visibility: hidden;
	background: #175f9b;
	width: 100%;
	height: 100%;
	transform: rotateY(180deg);
	z-index: 10;
}
.container-card:hover .card{
	transform: rotateY(180deg);
}


.texto-reverso{
	color: #fff;
	padding: 20px;
	text-align: justify;
	transform: translateY(-50%);
	transition:.7s;
	transition-delay: .5s;

}
.container-card:hover .card .texto-reverso{
	transform: translateY(0%);
}
.btn-reverso{
	position: absolute;
	background: #0aa29b ;
	color: #fff;
	padding: 10px;
	border-radius: 1px;
	text-decoration: none;
	cursor: pointer;
	left: 50%;
	transform: translateX(-50%) translateY(50%);
	transition:.7s;
	transition-delay: .5s;
	
}
.btn-reverso:hover{
	background: #fff;
	color: blue;
}
.container-card:hover .card .btn-reverso{
 	transform: translateX(-50%) translateY(0%);
}
.wsp{
	position: fixed;
	right: 10px;
	top: 50%;
	z-index: 100;
}


.title-section{

 /* background: url('https://images.unsplash.com/photo-1567459169668-95d355371bda?fit=crop&w=1349&q=80');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5em;
  text-transform: uppercase;
  font-weight: bold;*/
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  position: relative;
}
.title-section:before{
	position: absolute;
	content: "";
	left: 0;
	top: 4px;
	width: 50px;
	height: 4px;
	background: #73dae6 ;

}
.content-image-service-home:hover img{
	transform: scale(1.2);
}

.content-service-home{
	position: relative;

	height: 400px;
	box-shadow: 7px 7px 10px rgba(0,0,0,.2)
	outline: 1px solid rgba(255,255,255,.2);
	outline-offset: -8px;
	transition: .5s;
}
.content-image-service-home{
	overflow: hidden;
	width: 100%;
	height: 100%;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.content-service-home img{
	transition: .5s;
	width: 100%;
	height: 100%;
	object-fit: cover;
	
}
.content-service-home:hover img{
	transform: scale(1.2);
}
.title-service-home{
	font-size: 24px;
	text-transform: uppercase;
}
.text-service-home{
	background: #188ec3;
	color: #fff;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	bottom: 80px;
	z-index: 100;
	padding: 20px 10px;
	transition: .5s;
	transition-timing-function: ease-in-out;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 1;
}
.content-service-home:hover .text-service-home{
   
	width: 100%;
}
.text-service-home:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 8px;
	height: 100%;
	background: #bcccdc;
	transition: .5s;
	transition-timing-function:  ease-in;
	z-index: -1;
}
.content-service-home:hover .text-service-home:before{
    background: #bcccdc;
	width: 100%;
}
.text-service-home-2{
	background: #c18e46;
}
.text-service-home-3{
	background: #2EBF91;
}
.text-service-home a{
	font-size: 20px;
	color: #fff;
}
.text-service-page{
	width: 100%;
}
.container-virtudes{
	background: #E7EDEF  ;
	min-height: 70vh;
}
.text-virtudes{
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #188ec3;
	height: 400px;
}
.text-virtudes i{
	font-size: 60px;
}
.text-virtudes p{
	
	
}
.call-to-action{
	background: #0feefa;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 350px;
	background: url(http://localhost/msi-consultores/wp-content/uploads/2022/04/main-page-empresa.jpg);
	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: #175f9b;
	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;

}
footer{
	background: #042244  ;
	color: #fff;
	text-align: center;
}
.alianzas{
	background:#fff;
}
.alianzas h4{
	color: #188ec3;
}
.service-footer{
	list-style: none;
}
.text-empresa-page{
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #444;
	min-height: 350px;
}
.text-empresa-historia-page{
	background: #0feefa;
	color: #fff;
}
.container-socios{
	background: #f5f9fa;
}
.content-logo-cliente{
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-portafolio{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	
	padding: 10px;
}
.text-portafolio{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	color: #fff;
	padding: 10px;
	background: #0feefa;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.title-proyect{
	font-size: 20px !important;
}
.text-portafolio span{
	display: block;
}
.content-portafolio img{
	width: 50%;
}
/*Fin Page Áreas*/
/*Productos Page*/
.sub-header{
	width: 100%;
	height: 330px;
	position: relative;
	z-index: 1;
}
.sub-header img:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(9,9,121);
	z-index: -1;
   background: radial-gradient(circle, rgba(9,9,121,1) 10%, rgba(255,255,255,1) 96%);
}
.sub-header img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.title-page{
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 60px !important;
	
}
.title-section-page{
	font-size: 30px;
	color: #4f76b7;
	position: relative;
}
.title-section-page:before{
	content: "";
	position: absolute;
	left: 10%;
	bottom: -5px;
	width: 150px;
	height: 3px;
	background: #c18e46;
}
.content-page{
	background: #a4b4d5	;
}
.content-page h3{
	color: #4f76b7;
}
.content-page p{
	color: #fff;
}
.content-page ul li{
	color: #fff;
	list-style: afar;
}

/*Fin Productos Page*/
/*Page Equipo*/
.container-contact-section{
	background: #557cba;
}
.image-contact img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.span-contact{
	display: block;
	color: #fff;
}
.title-section-contact{
	color: #fff;
}
.text-contact-section{
	color: #fff;
}

/*Fin Page Equipo*/
@media screen and (max-width: 880px) {
	body{
		overflow-x: hidden;
		width:100%;
	}
	header{
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
	}
	.check-btn{
		visibility: visible;
	}
	.sub-menu{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 100%;

}
	nav{
		right: 100%;
		height: 100%;
		position: fixed;
		overflow: scroll;	
	}
	nav ul{
		flex-direction: column;
		align-content: flex-start;
		justify-content: flex-start;		
	}
	nav ul li{
		flex-direction: column;
		left: 0%;
		align-content: flex-start;
	}

	nav ul li ul{
		background: #4f76b7;
		position: relative;
		width: auto;
		left: 0px;
		z-index: 10;
		padding: auto;
	}
	nav ul li:hover ul{
		display: block;
	}

	.main-home{
		flex-direction: column-reverse;
	}
	.main-text{
		width: 100%
	}
	.main-image{
		width: 100%
	}
	.title-section:before{
		content: "";
		position: absolute;
		right: 50px;
		top: 50px;
		width: 150px;
		height: 3px;
		background: #c18e46;
	}
	.section-empresa-home{
		flex-direction: column;
	}
	.text-empresa-home{
		flex-direction: column;
		width: 100%;
	}
	.container-representaciones{
		width: 100%;
	}
	.container-call-to-action{
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	.swiper {
        height: 400px;
      }
      .content-slide{
      	position: absolute;
      	left: 5%;
      	height: 60%;
      	width: 75%;
      }
}