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

@import url('https://fonts.googleapis.com/css?family=Muli:300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap');
body{
	
}
h1, h2, h3, h4, h5{
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}
p{
	 font-family: 'Muli', 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;
	transition-delay: 1s;
	
	
}
.content-preload{
	background-size: red;
}
.preload .content-preload img{
	width: 300px;
	animation: animapreload 1s infinite;
}
@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: 1;
	border-bottom: 1px solid #f3f3f3;
	
}

.sub-menu-header i{
	font-size: 24px;
	color: #4EA980;
}
.sub-menu-header a{
	color: #444;
}
.sub-menu-header a:hover{
	color: #444;
}
.sub-menu-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	width: 100%;
}
.tel-menu{
	color: #245a81 ;
	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;
}
.phone-header{
	
	display:flex;
	flex-direction:column;
}
#check{
	display: none;
}
.check-btn{
	position: fixed;
	right: 10px;
	bottom: 45px;
	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;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	position: sticky;
	z-index: 1000;
	z-index: 10;
	background: rgb(30,172,226);
    background: linear-gradient(325deg, rgba(30,172,226,1) 17%, rgba(21,133,190,1) 68%);
	top: 0;
	padding: 10px;
	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: #fff;
	text-decoration: none;
	transition: .5s;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
}
nav ul li a:hover{
	color: #245a81 ;
}

.current-menu-item {
	font-weight: bold;
	color:#fff;
	position: relative;
	
}
.menu-item-146{
	position: relative;
}
.menu-item-146:hover .sub-menu{
	display: block;
}
.menu-item-259{
	background: #d84905;
	color:#fff;
}
.sub-menu{
	display: none;
	position: absolute;
	top: 25px;
	width: 200px;
	left: 0;
	padding: 10px;
	background: #1282c1;
}
/*.current-menu-item:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #188ec3 ;
	z-index: 1;
}*/


/*FORM COTIZADOR*/
form input[type="text"]{
  border: none;
   border-bottom: 1px solid #17141d;
  background: #f4f4f4;
   outline: none;
   display: inline-block;
   width: 50%;
   position: relative;
   transition: .3s;
   color:#444;
}

form input:focus{
	border: none;

	border-bottom: 1px solid #fff;
	transition: 2s;
}
form input[type="number"]{
  border: none;
   border-bottom: 1px solid #17141d;
  background: #fff;
   outline: none;
   display: inline-block;
   width: 50%;
   position: relative;
   transition: .3s;
   color:#444;
}
form input[type="submit"]{
   border: none;
   background: #4ea980 ;
   outline: none;
   transition: .3s;
   color:#fff;
}
.cotizador-productos{
	padding:3em;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.cotizador-productos .producto {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
	background: #f3f3f3;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding:1.5em;
}
.cotizador-productos .producto .imagen-producto {
  max-width: 100px !important;
  margin-right: 15px;
  border-radius: 6px;
 	
}
.content-img-cotizador{
	padding-top: 6em;
}
.content-img-cotizador img{
	padding: 1em;
}
/*FIN FORM COTIZADOR*/
/*SWIPER*/
      .swiper {
        width: 100%;
        height: 550px;
        position: relative;
        background: rgb(97,172,96);
background: linear-gradient(325deg, rgba(97,172,96,1) 17%, rgba(124,180,76,1) 68%);
      }
      .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(97,172,96,1) 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;
			position: absolute;
			left: 0;
			top: 0;
			opacity: 0;
			transition: 1s;

		} 
		.swiper-slide-active img{
			opacity: 1;
		}
      .content-slide{
      	position: relative;
      	left: 0%;
      	height: 100%;
      	width: 100%;
      	display: flex;
      	flex-direction: row;
		  flex-wrap:wrap;
      	align-items: center;
      	justify-content: space-around;
      	opacity: 0;
      	z-index: 10;	
    	transition-delay: .5s;

      }
      .text-slide{
      	width: 50%;
      	height: auto;
      	padding: 20px;	
      	position: relative;
      }
      .swiper-slide-active .content-slide{
      	opacity: 1;
      }
	/* .swiper-slide-active .text-slide{
      	transform: translateY(0%);
      }*/
    
      .text-slide h1{
      	color: #e7e8ec;
      	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
      	transform: translateY(50%);
      	z-index: 1;
      	transition: 1s;
      	opacity: 0;
      }

        .swiper-slide-active .content-slide .text-slide h1{
      	transform: translateY(0);
      	opacity: 1;
      	transition-delay: .5s;
      }
      .content-slide h1 span{
      	color: #4DC5EE;
      	font-weight: 900;
      }
      .content-slide p{
      	font-weight: 100;
      	font-size: 16px;
      	color: #e7e8ec;
      	z-index: 10;
      	transform: translateX(120px);
      	transition: 1s;
      	transition-delay: .5s;
      }
      .swiper-slide-active .content-slide .text-slide p{
      	transform: translateX(0px);
      }
      .content-slide img{
       transition-delay: .5s;
      	width: 30%;
      	height: 100%;
      	object-fit: cover;
      	position: relative;
    	transform:  scale(0) rotate(20deg);
    	transform-origin: bottom center;
    	transition-timing-function: cubic-bezier(.17,.67,.29,1.53)
      }
      .swiper-slide-active .content-slide img{
      	transform:  scale(1) rotate(0deg);
     
      }

   
      .link-read-more-slide{
		border: 1px solid #d84905  ;
		text-decoration: none;
		color: #fff;
		background: rgb(235,124,6);
	background: linear-gradient(325deg, rgba(235,124,6,1) 17%, rgba(228,55,20,1) 68%);
		font-size: 16px;
		display: inline-block;
		text-align: center;
		padding: 10px 10px;
		transition: .5s;
		font-weight: 100;
		transition-delay: 1s;
		opacity: 0;
	}
	.link-read-more-slide:hover{
		color: #fff;
		background: transparent;
	}
	 .swiper-slide-active .content-slide .link-read-more-slide{
	 	opacity: 1;
	 }
/*FIN SWIPER*/

.swiper-pagination-bullet{
	width: 15px;
	height: 15px;


}

.container-service-home{
	background: rgb(78,169,128);
	background: linear-gradient(45deg, rgba(78,169,128,1) 50%, rgba(5,154,204,1) 90%);
	border-radius: 10px;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	width: 100%;
	height: 100%;
	margin: auto;
	transition: .5s;
	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
	transform-origin: center;
    transform: scale(1);

}
.service-home:hover .container-service-home{
	box-shadow: rgba(4, 0, 0, 0.5) 0px 25px 20px -22px;
	background: rgb(78,169,128);
background: linear-gradient(20deg, rgba(78,169,128,1) 50%, rgba(5,154,204,1) 90%);
	transform: scale(1.1);
}
.container-service-home .img-service-home{
	width: 95%;
	height:320px;
	object-fit: cover;
	transition: .4s;
	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
	transform: scale(.95);
	position: relative;
	top: -5%;
	left: 50%;
	transform:translateX(-50%);
}
.container-service-home:hover .img-service-home{
	transform: scale(1.1);
    left: 50%;
	transform:translateX(-50%);
	width: 94%;
}
.img-service-home-2{
	width:40%;
	position:absolute;
	left:5%;
	top:20%;
	transition: .4s;
	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
}
.container-service-home:hover .img-service-home-2{
	width:60%;
	left:15%;
	
}
.img-service-home-3{
	width:39%;
	position:relative;
	left: 5%;
	
	transition: .4s;
	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
}
.text-service-home{
	padding:10px 10px;
	color: #fff;
	background:#3c444c  ;
	border-radius:10px;
	min-height:260px;
}
.text-service-home h3{
	text-transform: uppercase;
	font-size: 16px;
	position: relative;
	font-weight: 900;
}
.text-service-home h3:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 20%;
	height: 2px;
	background: rgb(5,154,204);
background: radial-gradient(circle, rgba(5,154,204,1) 0%, rgba(4,127,182,1) 98%);
transition: .6s;
transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
}
.container-service-home:hover .text-service-home h3:before{
	width: 35%;
}
.container-service-home:hover .content-service-home{
    top: -40px;

}
.container-empresa-home{
	background: rgb(5,154,204);
	background: radial-gradient(circle, rgba(5,154,204,1) 0%, rgba(4,127,182,1) 98%, rgba(5,154,204,1) 100%);
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	margin-top: 120px;
	margin-bottom: 120px;
}
.text-empresa-home{
	padding-left: 150px;
	padding-right: 50px;
	color: #fff;
	width: 50%;
}
.img-empresa-main{
	width: 50%;
	height: 100vh;
	background: red;
	
}
.img-empresa-main img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.container-process{
	width: 95%;
	height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgb(5,154,204);
	background: radial-gradient(circle, rgba(5,154,204,1) 0%, rgba(4,127,182,1) 98%);
	color: #fff;
	margin: auto;
	border-radius: 20px;
	padding: 10px;
}
.container-process i{
	font-size: 36px;
}
.container-process span{
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}
	.link-read-more, .link-conversemos{
	border: 1px solid #d84905 ;
	text-decoration: none;
	color: #fff;
	background: rgb(235,124,6);
	background: linear-gradient(325deg, rgba(235,124,6,1) 17%, rgba(228,55,20,1) 68%);
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	padding: 10px 10px;
	transition: .5s;
	font-weight: 300;
	position: relative;
	font-family:'Playfair Display', serif;
}
.container-representaciones{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container-logo{
	margin:auto;
}
.logo-representante{
	width: 150px;
	object-fit: cover;
	margin:auto;
}
.link-read-more:hover{
	color:#fff;
	background: transparent;
}
	.container-call-to-action{
	background: rgb(30,172,226);
background: linear-gradient(325deg, rgba(30,172,226,1) 17%, rgba(21,133,190,1) 68%);
	height: 50vh;
	display: flex;
	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: 40px;
}
.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{

 position: relative;
	font-size: 40px;
	font-weight: bold;
	 background-image: linear-gradient(45deg, #059acc , #4ea980 );
	 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent; 
}
.title-section:before{
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	width: 50px;
	height: 4px;
	background: #73dae6 ;

}
.content-service-gmpower{
	position: relative;
	background: #f2f2f2;
	padding: 1em;
	border-radius: 1em;
}

.img-product-gmpower{
	position: absolute;
	left: 50%;
	top: 20%;
	transform: translatex(-50%);
	width: 50%;
	height: 50%;
	transition: .3s;
}
.content-service-gmpower:hover .img-product-gmpower{
	top:10%;
}
.title-gmpower{
	font-size: 1.3em;
	font-weight: bold;
	color: #059acc;
	padding: 1em  0em .2em 0em;
}

/*SERVICES PAGE*/
.container-service-page{
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.content-service-page{
	background: #24a3db;
	padding: 15px;
	color: #fff;
	position: relative;
	z-index: 1;
}
.service-industrial{
	background: #eb7e06;
	position: relative;
}
.service-industrial:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: #e43714 ;
	transition: .3s;
	transition-timing-function: ease-in-out;
	z-index: 10;
}
.container-service-page img{
	transition: .3s;
	transition-timing-function: ease-in-out;
	width: 100%;
	height: 300px;

}
.container-service-page:hover img{
	transform: scale(1.4) rotate(10deg);
}
.content-service-page:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #1282c1;
	transition: .3s;
	transition-timing-function: ease-in-out;
	z-index: -1;
}
.container-service-page:hover .content-service-page:before{
	height: 95%;
}
/*FIN SERVICES PAGE*/

.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: 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;

}
.contact-footer{
	position: fixed;
	z-index: 100;
	bottom: 0;
	width: 100%;
	background: #f2f2f2;
	display: flex;
	justify-content: center;
	align-content: center;
	border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    visibility: hidden;

}
.content-contact{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 10px;
	width: 33.3%;
	background: #f2f2f2;
	
}
.location-mobile{
	border-top-left-radius: 15px;
}
.phone-mobile{
	background: #E6E7E5;
	

}
.email-mobile{
	border-top-right-radius: 15px;
}
.content-contact a{
	color: #d84905;
}
.content-contact a i{
	font-size: 20px;
}
footer{
	color: #fff;
	background-image: linear-gradient(to right, #87bb37 , #61ac60);
}
.container-footer div div h4{
	color: #566e65;
	font-weight: bold;
}
.derechos{
	position: relative;
	font-family:'Playfair Display', serif;
}
.derechos:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

/*HEADER PAGE*/

.sub-header{
	width: 100%;
	height: 380px;
	position: relative;
	z-index: 1;
	background: #97cdf1 ;
	background: blue;
	overflow: visible;
}
/*.sub-header:before{
	content: "";
	position: absolute;
	background: url(http://gmpower.hostingpremium.cl/wp-content/uploads/2023/09/Generador_60_kVA.png);
	background-size: cover;
	left: 50%;
	transform: translate(-50%);
	top: 3%;
	width: 27%;
	height: 120%;
	z-index: 100000;
   
}*/
.sub-header 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: 40%;
	left: 50%;
	transform: translateX(-50%);
	font-style: italic;
	background: #566e65 ;
}
.img-header-2{
	width: 200px;
	position: relative;
	top: 50%;
	left: 10%;
	z-index: 1;
}
.title-page{
	position: relative;
	font-size: 50px;
	font-weight: bold;
background: rgb(78,169,128);
background: linear-gradient(180deg, rgba(78,169,128,1) 50%, rgba(5,154,204,1) 90%);
	 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent; 
	
}
/*empresa*/
.container-empresa-page{
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 100px;
	padding-right: 30px;
	background: url(http://gmpower.hostingpremium.cl/wp-content/uploads/2023/10/background-empresa.jpg);
	background-size: cover;
	position: relative;
}
.container-empresa-page:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0%;
	top: 0%;
	background: rgba(4,4,4,.5);
}
.container-empresa-page p{
	color: #fff;
}
/*fin empresa*/
/*SERVICE HOME*/
article{
	outline: 2px solid #eb7c06 ;
	border-radius: 10px;
	outline-offset: -15px;
	position: relative;
	width: 100%;
	height: 350px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	overflow: hidden;
	color: #fff;
}
article:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(4,4,4,.5);
	z-index: 1;
}

article img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
	transition-timing-function: ease-in-out;
	opacity: .8;
}

article:hover img{
	transform: scale(1.1);
}
.content-service{
	position: absolute;
	left: 5%;
	bottom: -25%;
	padding: 15px;
	z-index: 1;
	transition-timing-function: cubic-bezier(1,.39,.42,1.41);
	transition:.3s;
}
.logo-proyect{
	width: 150px !important;
	display: block;
	padding: 10px;
}
.title-service{
	left: 5%;
	bottom: 5%;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 24px;
	z-index: 2;
	font-weight: bold;

}
.content-service .title-service::first-letter{
	background: #fff;
	padding: 3px;
	color: #444;
	border-radius: 5px;
}
.content-service p{
	opacity: 0;
	transition:.3s;
}

article:hover .content-service{
	bottom: 5%;
}
article:hover .content-service p{
	opacity: 1;
}
article .content-service img{
	width: 25px;
}
/*END SERVICE HOME*/

/*CAROUSEL*/
.container-carousel{
	position: relative;

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

}
.carousel-element img{
    height:200px !important;
    object-fit: cover;
}
.glider-dot{
	background: rgb(30,172,226);
	background: linear-gradient(325deg, rgba(30,172,226,1) 17%, rgba(21,133,190,1) 68%);
	width: 10px;
	height: 10px;
	border-radius: 0px;
}
.carousel-before, .carousel-next{
	display: block;
	width: 30px;
	height: 30px;
	background: rgb(235,124,6);
	background: linear-gradient(325deg, rgba(235,124,6,1) 17%, rgba(228,55,20,1) 68%);
	border-radius: 0;
	border: none;
	position: absolute;
}
.carousel-before, .carousel-next i{
	color: #fff;
}
.carousel-before{
	bottom: 20px;
	right: 60px;
}
.carousel-next{
	bottom: 20px;
	right: 20px;
}
/*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: 800px) {
	body{
		overflow-x: hidden;
	}
	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%;

}
 .img-service-home-2{
	width:40%;
	position:absolute;
	left:20%;
	top:20%;
	transition: .4s;
	transition-timing-function: cubic-bezier(.17,.67,.29,1.53);
}
.container-service-home:hover .img-service-home-2{
	width:20%;
	left:20%;
	
}
.phone{
	display: none;
}
.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;
	}
	.swiper {
        height: 450px;
      }
      .content-slide{
      	position: absolute;
      	left: 5%;
      	height: auto;
      	width: 95%;
      }
	.text-slide{
      	width: 100%;
      	height: auto;
      	padding: 10px;	
      	position: relative;
      }
	.content-slide img{
       transition-delay: .5s;
      	width: 45%;
      	height: auto;
		z-index:100;
      	object-fit: cover;
      	position: relative;
    	transform:  scale(0) rotate(20deg);
    	transform-origin: bottom center;
    	transition-timing-function: cubic-bezier(.17,.67,.29,1.53)
      }
	.container-service-home img{
	
	transform: scale(.75);
	
	top: -5%;
	left: -12%;	
}
.container-service-home:hover img{
	transform: scale(.9);
	left: 5%;
}
	.container-empresa-home{
		flex-wrap:wrap;
	}
	.text-empresa-home{
		width:100%;
		
		padding:20px 10px;
	}
	.img-empresa-main{
		width:100%;
	}
	.sub-header:before{
	content: "";
	position: absolute;
	background: url(http://gmpower.hostingpremium.cl/wp-content/uploads/2023/09/Generador_60_kVA.png);
	background-size: cover;
	left: 50%;
	transform: translate(-50%);
	top: 73%;
	width: 50%;
	height: 50%;
	z-index: 100000;
   
}
	.title-page{
	
		font-size: 35px;
	}
	.title-section{
	
		font-size: 30px;
	}
	.contact-footer{
		visibility: visible;
	}

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