.logo-anepco {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}

section#conecta-explora {
   height: 1750px;
   background-color: #F1E8DC;
   --height-triangulo: 600px;
   position: relative;
   perspective: 1000px;
}

.triangula-portafolio {
   height: var(--height-triangulo);
   width: 100vw;
   background-color: #E6DDD2;
   clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.triangula-portafolio:nth-child(1) {
   position: absolute;
   top: 0;
   /* left: -100%; */
   left: 0%;
}

.triangula-portafolio:nth-child(2) {
   clip-path: polygon(0 50%, 100% 100%, 100% 0);
   position: absolute;
   top: calc(var(--height-triangulo) / 2 + 15px);
   /* right: -100%; */
   right: 0%;
}

.triangula-portafolio:nth-child(3) {
   position: absolute;
   top: calc(var(--height-triangulo) / 2 * 2 + 15px * 2);
   clip-path: polygon(0 0, 0 100%, 100% 50%);
   /* left: -100%; */
   left: 0%;
   z-index: 2;
}

.conecta-texto-conecta {
   perspective: 600px;
   position: absolute;
   top: 25%;
   left: 10%;
   transform: translateY(-50%);
   max-width: 800px;
}

.conecta-texto-conecta>div:nth-child(1) {
   transition: all .7s;
   transition-timing-function: cubic-bezier(.25, 1, .5, 1);
   transform: translateX(-3em) rotateX(90deg);
   opacity: 0;
}

.conecta-texto-conecta>div:nth-child(1).active{
   opacity: 1;
   transform: translate(0px, 0px);
}

.conecta-texto-conecta>div:nth-child(2) {
   transition: all .7s;
   /* transition-delay: .4s; */
   transition-timing-function: cubic-bezier(.25, 1, .5, 1);
   transform: translateX(3em) rotateX(90deg);
   opacity: 0;
}

.conecta-texto-conecta>div:nth-child(2).active{
   opacity: 1;
   transform: translate(0px, 0px);
}

.conecta-texto-conecta p {
   color: #1F299C;
   font-weight: 900;
   text-transform: uppercase;
   font-size: 60px;
   margin: 0;
   display: flex;
   gap: 5px;
   align-items: center;
}

.conecta-texto-conecta p span {
   display: inline-block;
   width: 60px;
   height: 10px;
   background-color: #1F299C;
}

.texto-potencia{
   transition: all .5s;
   position: absolute;
   top: 50%;
   left: 10%;
   transform: translateY(-50%);
   max-width: 900px;
   font-size: 30px;
   color: #1F299C;
   font-weight: 500;
   transform: translateY(100px) rotate(10deg) rotateX(-40deg);
   opacity: 0;
   z-index: 3;
}

.texto-potencia.animate{
   transform: translateY(0px) rotate(0deg) rotateX(0deg);
   opacity: 1;
}


.text-explora{
   position: absolute;
   bottom: 0;
   width: 100%;
}
.text-explora img{
   width: 100%;
   object-fit: cover;
   display: flex;
   transform: perspective(500px) translateZ(175px) translateX(100%);
   opacity: 0;
   /* transition: all .7s; */
}

.text-explora img.active{
   opacity: 1;
   transform: perspective(500px) translateZ(0px) translateX(0%);
}

/* .content-animacion-suprema{
   height: 100vh;
} */

/* el problema */
section.elmundo{

   height: 630px;
   background-color: #12005A;
   position: relative;
}

.elmundo-texto{
   position: absolute;
   top: 50%;
   left: 15%;
   transform: translateY(-50%);
   color: #F1E8DC;
   width: 831px;
}


.elmundo-texto span{
   color: #F1E8DC;
   font-size: 24px;
   font-weight: 600;
   letter-spacing: 10px;
}

.elmundo-texto p{
   font-size: 50px;
   font-weight: 900;
   margin: 0;
   padding: 0;
   display: flex;
   align-items: center;
   gap: 20px;
}

.elmundo-texto p span {
   display: inline-block;
   width: 60px;
   height: 10px;
   background-color: #F1E8DC;
}

.elmundo-texto >div:nth-child(1){
   transition: all .4s;
   transition-timing-function: cubic-bezier(.25, 1, .5, 1);
   transform: translateX(-3em) rotateX(90deg);
   opacity: 0;
}
.elmundo-texto >div:nth-child(2){
   transition: all .4s;
   transition-timing-function: cubic-bezier(.25, 1, .5, 1);
   transform: translateX(3em) rotateX(90deg);
   opacity: 0;
}

/* SOLUCION */
section.solucion{
   background-color: #12005A;
   height: 560px;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
}

.solucion-texto-float{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   display: flex;
   gap: 10px;
}

.solucion-texto-float div{
   color: #0E0046;
   display: block;
   font-size: 400px;
   font-weight: 900;
   z-index: 0;
   white-space: nowrap;
   animation: lefinfinite 20s infinite ease-in-out;
   animation: text1 40s linear infinite;
   animation-delay: -40s;
   /* animation: scrollLetra 15s infinite ease-in-out; */
}

.solucion-texto-float div:nth-child(2){
   animation: text2 40s linear infinite;
   animation-delay: -20s;
}

section.solucion p{
   display: block;
   max-width: 1200px;
   color: #fff;
   font-size: 27px;
   text-align: center;
   position: relative;
   z-index: 1;
   transition: all .7s;
   transform: scale(0);
   opacity: 0;

}

section.solucion p.animate{
   transform: scale(1);
   opacity: 1;
}
@keyframes text1 {
   0% {
      transform: translateX(100%);
   }

   100% {
      transform: translateX(-100%);

   }
}

@keyframes text2 {
   0% {
      transform: translateX(0%);
   }

   100% {
      transform: translateX(-200%);

   }
}


/* alcanze */

/*  ============ COMIENZO DE ALCANCE MOBIL ================ */

section.alcance-mobil {
	
	display:none;
   height: auto;
   background-color: #12005A;
   padding-bottom: 50px;
}

.alcance-mobil-items-duo{
   display: flex;
}

.alcance-mobil-items{
   padding: 0 10px;
}

.alcance-mobil-items-duo {
   display: flex;
   justify-content: center;
   text-align: center;
   gap: 16px;
}

.alcance-mobil-items-duo:not(:last-child) {
   margin-bottom: 25px;
}

.alcance-mobil-items-duo-item {
   width: 250px;
}

.dio-imagen img {
   width: 60px;
}

.dio-texto {
   color: #fff;
}

.dio-texto p {
   margin: 0;
   margin-top: 7px;
   font-size: 14px;
}

/*  ============ FIN DE ALCANCE MOBIL ================ */


	section.alcance {
    height: 100vh;
    background-color: #12005A;
    display: flex;
    align-items: center;
    justify-content: center;
}
	
.alcance-content {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 7px;
	  /* width: 100%;
  min-height: 300px;
  position: absolute;
 transform:translateY(-50%); */
}	

.alcance-contenedor-carrusel{
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
}

.alcance-texto{
   width: 320px;
   /* transform: translateX(-70px); */
   /* opacity: 0; */
   transition: all .7s;
}


.alcance-cont-carru-sw{
   /* width: 36%; */
}

.swiper-mundo-real{
   width: 100% !important;
   height: 490px !important;
   padding: 0 24px !important;

}

.swiper-mundo-real .swiper-slide{
   background-color: #12005a;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets{
   right: 0px !important;
}


.swiper-mundo-real .swiper-pagination-bullet {
   background-color: #fff;
}

.swiper-mundo-real .swiper-pagination-bullet-active {
   background-color: #ffff;
}


.alcance-content.animate .alcance-texto{
   transform: translateX(0px);
   opacity: 1;
}

.alcance-texto p{
   color: #FFFFFF;
   font-size: 25px;
}
.alcance-texto p strong{
   color: #0011D6;
}

.alcance-icono{
   transform: scale(1);
   opacity: 1;
   transition-delay: .3s;
   transition: all .7s;
   position: relative;
   cursor: pointer;
   width: 134px;
   height: 134px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.alcance-icono::before{
   content: '';
   position: absolute;
   top:50%;
   left: 50%;
   width: 130px;
   height: 130px;
   border: 2px solid #665A94;
/*    transform: translate(-50%,-50%) scale(5); */
	transform: translate(-50%,-50%) scale(1);
   border-radius: 50%;
   transition: all .7s;
   transition-delay: .5s;
   opacity: 1;
}

.alcance-content.animate .alcance-icono::before{
   opacity: 1;
   transform: translate(-50%,-50%) scale(1);
}

.alcance-content.animate .alcance-icono{
   transform: scale(1);
   opacity: 1;
}

.alcance-icono svg{
   position: absolute;
   width: 110px;
   height: 110px;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
}

.alcance-icono svg circle{
   fill: transparent;
   stroke-width: 4;
   transform: translate(-5px, -5px);
   transition: all 1s ease-in;
   transition-delay: .7s;
   stroke: #EB5829;
   stroke-dasharray: 400px;
   stroke-dashoffset: 0;
   stroke-linecap: round;
}

.alcance-content.animate .alcance-icono svg circle{
   stroke-dashoffset: 0;
}

.alcance-icono-imagen-contenedor{
   overflow: hidden;
   width: 50px;
   height: 56px;
}


.alcance-icono-imagen{
    position: absolute;
    top: 0;	
	transition: all 500ms;
	opacity:1;
	/*background: #12005a;*/
}


.alcance-icono-imagen.active{
   display: block;
}

.alcance-icono-imagen img{
   width: 100%;
}

.alcance-animacion{
    height: 200px;
    width: 420px;
    position: relative;
    overflow: hidden;
    transition-delay: .5s;
    transition: all .7s;
    padding-left: 10px;
	  background: #12005a;
}

.alcance-content.animate .alcance-animacion{
   transform: translateY(0px);
   opacity: 1;
}

.alcance-animacion .alcance-animacion-scroll{
   transition: all .7s ease-in-out;
   position: relative;
	height: 100%;

}

.alcance-animacion .alcance-animacion-scroll >div{
   color:#fff;
   width: 400px;
   transition: all .7s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;	
}

.alcance-animacion .alcance-animacion-scroll >div strong{
   font-size: 25px;
}

.alcance-animacion .alcance-animacion-scroll >div p{
   font-size: 22px;
   margin: 10px 0 0 0;

}

/* Conecta tu ma */
#conecta_tu_marca {
	height: 90vh;
	perspective: 1000px;
}

#conecta_tu_marca .imagen-portada {
	background-image: url(../assets/nosotros-fondo.png);
	background-position: center top;
	transform-origin: 50% 100%;
	height: 100%;
	top: 0px;
	transform-origin: 50% 100%;
	transform: translateY(0%) rotateX(-4deg) scale(1.1, 1.1);
}


.texto-conecta {
	perspective: 600px;
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	max-width: 900px;
}

.texto-conecta p {
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 50px;
	margin: 0;
	display: flex;
	gap: 5px;
	align-items: center;
}

.texto-conecta>div:nth-child(1) {
	transition: all .4s;
	transition-timing-function: cubic-bezier(.25, 1, .5, 1);
	transform: translateX(-3em) rotateX(90deg);
	opacity: 0;
}

.texto-conecta>div:nth-child(2) {
	transition: all .4s;
	transition-timing-function: cubic-bezier(.25, 1, .5, 1);
	transform: translateX(3em) rotateX(90deg);
	opacity: 0;
}

.texto-conecta>div.active {
	transform: translateX(0) rotateX(0deg);
	opacity: 1;
}

.texto-conecta p span {
	display: inline-block;
	width: 60px;
	height: 10px;
	background-color: #fff;
   transform: translateY(10px);
}

/* EXPLORA CHILE */
section#explora {
	height: 800px;
	background-image: url(../assets/explora.png);
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	perspective: 1000px;
}

section#explora h3.texto-1 {
	color: #12005a;
	font-size: 449px;
	margin: 0;
	line-height: 289px;
	transform-origin: left;
	opacity: 0;
	transform: translateX(-100%);
	transition-timing-function: cubic-bezier(.25, 1, .5, 1);
	/* transition: all 1s; */
	font-weight: 800;
}

section#explora h3.texto-1.active {
	transform: translateX(0) rotatey(45deg) rotateZ(0deg);
	opacity: 1;
}

section#explora h3.texto-2 {
	color: #12005a;
	font-size: 650px;
	margin: 0;
	line-height: 437px;
	transform-origin: right;
	position: absolute;
	bottom: 0;
	right: -100%;
	opacity: 0;
	/* transition: all 1s; */
	transition-timing-function: cubic-bezier(.25, 1, .5, 1);
	font-weight: 800;
}

section#explora h3.texto-2.active{
	right: -3%;
	opacity: 1;
	transform:rotatey(-45deg) ;
}

/* IMPACTO ALCANCE */
section.impacto-alcance{
   height: 1093px;
   background-color: #FFF;
   --height-triangulo: 600px;
   position: relative;
   perspective: 1000px;
}


.impacto-triangula-portafolio {
   height: var(--height-triangulo);
   width: 100vw;
   background-color: #F1E8DC;
   clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.impacto-triangula-portafolio:nth-child(1) {
  

   clip-path: polygon(0 50%, 100% 100%, 100% 0);
   position: absolute;
   top: 0;
   /* right: -100%; */
   right: 0%;
}

.impacto-triangula-portafolio:nth-child(2) {
   position: absolute;
   top: calc(var(--height-triangulo) / 2 + 15px);
   left: 0%;
}

.impacto-triangula-portafolio:nth-child(3) {
   clip-path: polygon(0 50%, 100% 100%, 100% 0);
   position: absolute;
   top: calc(var(--height-triangulo) / 2 * 2 + 15px * 2);
   right: 0%;
}

.impacto-alcance-content{
   position: absolute;
   top: 25%;
   width: 100%;
}

.impacto-alcance-text{
   transition: all .7s;
   transition-timing-function: cubic-bezier(.25, 1, .5, 1);
   transform: translateX(-3em) rotateX(90deg);
   opacity: 0;
   padding-left: 150px;
}

.impacto-alcance-content.animate .impacto-alcance-text{
   transform: translateX(0) rotateX(0deg);
   opacity: 1;
}

.impacto-alcance-text span{
   color: #12005A;
	font-size: 25px;
    font-weight: 700;
    letter-spacing: 8px;

}

.impacto-alcance-text p {
    font-size: 25px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    color: #12005A;
}

.impacto-alcance-cards{
   display: flex;
   justify-content: flex-end;
   gap: 20px;
}

.impacto-alcance-cards-item {
   width: 400px;
   height: 400px;
   padding: 80px 60px;
   transition: all .7s ease-in-out;
}

.impacto-alcance-cards-item p.numero{
   color: #fff;
   font-weight: 900;
   font-size: 55px;
   margin: 0;
   padding: 0;
}
.impacto-alcance-cards-item p.texto{
   color: #fff;
   font-size: 22px;
   margin: 0;
   padding: 0;
   text-transform: uppercase;
   font-weight: 800;
}
.impacto-alcance-cards-item p.fuente{
   color: #fff;
   margin: 0;
   padding: 0;
   font-size: 18px;
   text-transform: uppercase;
}

.impacto-alcance-cards-item:nth-child(1){
   background-color: #EB5829;
   transition-delay: .4s;
   transform: translateY(120px);
   opacity: 0;
}
.impacto-alcance-cards-item:nth-child(2){
   background-color: #12005A;
   transition-delay: .8s;
   transform: translateY(-60px);
   opacity: 0;
}
.impacto-alcance-cards-item:nth-child(3){
   transition-delay: 1.2s;
   transform: translateY(240px);
   background-color: #1F299C;
   opacity: 0;
}

.impacto-alcance-content.animate .impacto-alcance-cards-item:nth-child(1){
   opacity: 1;
   transform: translateY(60px);
}

.impacto-alcance-content.animate .impacto-alcance-cards-item:nth-child(2){
   opacity: 1;
   transform: translateY(0px);
}

.impacto-alcance-content.animate .impacto-alcance-cards-item:nth-child(3){
   opacity: 1;
   transform: translateY(120px);
}

/* 
   top: calc(calc(300px - 147px) /2); 
   top: calc(-147px - 200px + 76px);
   top: calc(-294px - 400px + 76px);
   top: calc(-441px - 600px + 76px);
   top: calc(-588px - 800px + 76px);

*/

.alcance_textos {
    opacity: 1; 
    position: absolute;
}


.scrollmagic-pin-spacer {
    background: #12005a;
}

.alcance-icon-scroll {
	transition:all .7s ease-in-out;
   /*top: 200px;*/
    position: relative;
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.swipermovil{
	display:none;
}
.impacto-alcance-text p {
	font-size: 40px;
}





@media(max-width:991px){
	html{
		margin:0!important
	}
	
	.conecta-texto-conecta {
    perspective: 600px;
    position: absolute;
    top: 33%;
    left: 12%;
    transform: translateY(-50%);
    max-width: 80%;
}
	.conecta-texto-conecta p {
    color: #1F299C;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 25px;
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}
	
.texto-potencia {
    transition: all .5s;
    position: absolute;
    top: 55%;
    left: 10%;
    /* transform: translateY(19%); */
    max-width: 70%;
    font-size: 16px;
    color: #1F299C;
    font-weight: 500;
    /* transform: translateY(100px) rotate(10deg) rotateX(-40deg); */
    opacity: 0;
    z-index: 3;
}	
	
.text-explora {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 99;
}	
	
section.elmundo {
    height: 245px;
    background-color: #12005A;
    position: relative;
}
.elmundo-texto {
    position: absolute;
    top: 125px;
    left: 7%;
    transform: translateY(-50%);
    color: #F1E8DC;
    width: 831px;
}	
	.elmundo-texto span {
    color: #F1E8DC;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 10px;
}
	.elmundo-texto p {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
	.elmundo-texto p {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
	section.solucion {
    background-color: #12005A;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
	.solucion-texto-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    gap: 10px;
}
	section.solucion p {
    display: block;
    max-width: 1200px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all .7s;
    transform: scale(0);
    opacity: 0;
    padding: 0 17px;
}
	
	section.alcance {
    height: 100vh;
    background-color: #12005A;
    display: flex;
    align-items: center;
    justify-content: center;
}
	
.alcance-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}	
.alcance-texto p {
    color: #FFFFFF;
    font-size: 15px;
    white-space: normal;
}
	.alcance-animacion .alcance-animacion-scroll >div strong {
    font-size: 20px;
    text-align: center;
}
	.alcance-animacion .alcance-animacion-scroll >div p {
    font-size: 14px;
    margin: 10px 0 0 0;
    text-align: center;
}
	#conecta_tu_marca {
    height: 60vh;
    perspective: 1000px;
}
	.texto-conecta {
    perspective: 600px;
    position: absolute;
    top: 51%;
    left: 3%;
    transform: translateY(-50%);
    max-width: 290px;
}
	.texto-conecta p {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 25px;
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}
	
section#explora {
    height: 487px;
    background-size: cover;
    position: relative;
    perspective: 1000px;
}
	section#explora h3.texto-1 {
    color: #12005a;
    font-size: 106px;
    margin: 0;
    line-height: 289px;
    transform-origin: left;
    opacity: 0;
    transform: translateX(-100%);
    transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    /* transition: all 1s; */
    font-weight: 800;
}
	section#explora h3.texto-2 {
    color: #12005a;
    font-size: 177px;
    margin: 0;
    line-height: 437px;
    transform-origin: right;
    position: absolute;
    bottom: 0;
    right: -100%;
    opacity: 0;
    /* transition: all 1s; */
    transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    font-weight: 800;
}

section.impacto-alcance {
    height: 520px;
    background-color: #FFF;
    --height-triangulo: 242px;
    position: relative;
    perspective: 1000px;
}
	
.impacto-alcance-text {
    transition: all .7s;
    transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    transform: translateX(-3em) rotateX(90deg);
    opacity: 0;
    padding-left: 48px;
}
.impacto-alcance-cards {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
    height: 100%;
    /* margin-top: 29px; */
}	

.impacto-alcance-cards-item p.numero {
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    margin: 0;
    padding: 0;
}
.impacto-alcance-cards-item p.texto {
    color: #fff;
    font-size: 13px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 800;
}
.impacto-alcance-cards-item p.fuente {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 13px;
    text-transform: uppercase;
}
.impacto-alcance-content {
    position: absolute;
    top: 5%;
    width: 100%;
}
.impacto-alcance-cards-item {
    width: 100%;
    height: 100%;
    padding: 35px 35px;
    transition: all .7s ease-in-out;
}

section#conecta-explora {
    height: 700px;
    background-color: #F1E8DC;
    --height-triangulo: 600px;
    position: relative;
    perspective: 1000px;
}	
	
.alcance-animacion .alcance-animacion-scroll >div{
	justify-content:start;
}	
.alcance-animacion {
    margin-top: 18px;
}
	
#conecta_tu_marca .imagen-portada{
	height: 100%;
	top: 0px;
	background-repeat: no-repeat;
	background-size: cover;		
}
.impacto-alcance-cards-item {
    width: 400px;
    height: 100%;
    padding: 40px 7px;
    transition: all .7s ease-in-out;
}	

	.impacto-alcance-cards-item.slide1{
		    transform: translateY(60px);
	}	
	.impacto-alcance-cards-item.slide2{
		   background-color: #12005A;
		   transform: translateY(0)!important;
	}	
	.impacto-alcance-cards-item.slide3{
		   background-color:#1F299C;
		   transform: translateY(120px)!important;
	}	
	
	.impacto-alcance-cards {
    display: none;
}
	.swiper-slide{
		background:transparent!important;
	}
	
	.swiper{
		overflow:initial!important;
	}
	
	.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -130px!important;
    left: 0;
    width: 100%;
}
	
span.swiper-pagination-bullet {
    width: 25px;
    border-radius: 5px;
    height: 4px;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #eb5829!important;
}
span.swiper-pagination-bullet {
    background: #11005b!important;
}
.swiper {
    margin-top: 25px;
}	
	.swipermovil{
		display:block;
	}
	
	.impacto-alcance-text p {
		font-size: 25px;
	}
.triangula-portafolio:nth-child(1),
	.triangula-portafolio:nth-child(2){
		display:none;
	}	
	.alcance-animacion, .alcance-animacion .alcance-animacion-scroll >div{
	    width: 100%;	
	}	
	.alcance-animacion{
		padding: 0;
	}
.alcance-texto {
    width: 100%;
    padding: 0 13px;
    text-align: center;
}	
	
}

@media(max-width:900px) {

   section.alcance-mobil{
      display: block;
   }
	
	.scrollmagic-pin-spacer{
		display: none !important;
	}

   div#trigger{
      display: none;
   }
	
	section.solucion{
		height: 320px;
	}
	
	.solucion-texto-float div{
		font-size: 261px;
	}
}

@media(max-width:991px){
	.alcance {
    	display: none!important;
	}
}


      .swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }



.alcance-content.alcanceAnm[style="opacity: 1; top: 50%; visibility: inherit;"] .alcance-icono .alcance-icono-imagen {
    background: #11005b;
}