@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body{
    font-family: 'Montserrat', sans-serif;
  
  
  }

  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
  }
       /* ALERTS */
/* inspired by Twitter Bootstrap */

.alert {
padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #eed3d7;
  border-radius: 4px;
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
  margin-right:20px;
}

.alert-red {
  color: white;
  background-color: #DA4453;
}
.alert-green {
  color: white;
  background-color: #37BC9B;
}
.alert-blue {
  color: white;
  background-color: #4A89DC;
}
.alert-yellow {
  color: white;
  background-color: #F6BB42;
}
.alert-orange {
  color:white;
  background-color: #E9573F;
}
  

  

  /* TEXTOS */
.titulos{
    color:#353535;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-kerning: normal;
}



.parrafos{
    color:#6E6E6E;
    font-weight: 500;
    font-size: 1em; 
    line-height: 1.8;
    font-kerning: normal;
}

.titulosb{
    color:#fff;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-kerning: normal;
}
.titulosbWeb{
    color:#fff;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 8px;
    font-kerning: normal;
}

.parrafosb{
    color:#fff;
    font-weight: 500;
    font-size: 1em; 
    line-height: 1.8;
    font-kerning: normal;
}

/* SPINNER */
.spinner-wrapper{
  width: 100%;
  height: 100%;
  background-color: #151515;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}

.spinner::before,
.spinner:after{
  content: "";
  position: absolute;
  border-radius: 50%;
}

.spinner:before {
  width: 100%;
  height: 100%;
  background-image:linear-gradient(90deg, #ff00cc 0%,#333399 100% );
  animation: spin .5s infinite linear;
}
.spinner:after {
  width: 90%;
  height: 90%;
  background-color: #151515;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }

}
/* CABECERA */

header{
    width: 100%;
    height: 70px;
    background: transparent;
    font-size: 14px;
    padding-left: 125px;
    padding-right: 125px;
    /* -webkit-box-shadow: 1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         1px 1px 10px 0px rgba(50, 50, 50, 0.75); */

  }
  
  
  
  .space2{
    width: 100%;
    height: 50px;
  
  }
  
  
  
  
  #btn-menu{
    display: none;
  }
  header label {
    display: none;
    width: 30px;
    height: 30px;
    padding-left: 15px;
  
  
  
  
  }
  
  
  
  .menu ul {
    margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  
  
  }
  
  .menu li a {
    display: block;
    padding-top: 25px;
    padding-left: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 1s;
  }

  .menu li a:hover {
    display: block;
    padding-top: 25px;
    padding-left: 40px;
    color: #ADFA40;
    text-decoration: none;
    font-weight: 600;
    transition: 1s;
  }

  .logochico{
    width: 40px;
    position: absolute;
    margin-top: 10px;
 }

.space{
    height: 70px;

}

.giantbg{
  /* position: sticky;
    top: 0; */
    background-image: url("imagenes/bg1.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 
    background-attachment: contain;
}

.wrapper{
    /* position: sticky;
    top: 0; */
    padding-left: 125px;
    padding-right: 125px;
    /* padding-top: 25px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
.logotitulo{
  width: 500px;
  margin-bottom: 20px;
}

.logofantasma{
    display: none;
}

.titulogrande{
    color:#fff;
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;
    /* margin-top: 60px; */
}
.titulograndeRainbow{
  user-select: none;
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;
    background: repeating-linear-gradient(-45deg, red 0%, yellow 7.14%, rgb(0,255,0) 14.28%,
              rgb(0,255,255) 21.4%, cyan 28.56%, blue 35.7%, magenta 42.84%, red 50%);
  background-size: 600vw 600vw;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: slide 8s linear infinite forwards;
}
@keyframes slide {
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position-x: 600vw;
  }
}
.subtituloprincipal{
  color:#616161;
  font-size:1em;
  font-weight: 300;
  margin-top: 15px;
  text-align: center;
}
.subtitulogrande{
    color:#019BFF;
    font-size: 2.5em;
    font-weight: 400;
}
.btnircontacto{
    border: none;
    background: #019BFF;
    padding: 15px 20px 15px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    border-radius: 7px;
    margin-top: 30px;
}
.ctnstores{
    margin-top: 25px;
    width:400px;
    height: auto;
    display: flex;
    justify-content: center;
}
.logostores{
    width: calc(100% / 2);
    
}
.logogrande{
    height: 250px;
    margin-right: 100px;
}

.ctniniciodiv{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    /* background: green; */
}
.izqinicio{ 
    /* background: red; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.wrapperquienesomos{
    /* position: sticky;
    top: 0; */
    background: #fff;
    padding-left: 125px;
    padding-right: 0px;
    /* padding-top: 25px; */
}
.ctndivisorquienes{
    width: 100%;
    height: 100%;
    /* background: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.izqquienes{
width: 50%;
}
.derquienes{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.astro1{
  height: 100%;
}
.astro1respo{
  display: none;
}

.wrapperquehacemos{
    /* position: sticky;
    top: 0; */
    padding-left: 125px;
    padding-right: 35px;
    background: #000;
    /* padding-top: 25px; */
}
.ctndivisorquehacemos{
    width: 100%;
    /* background: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.izquehacemos{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.derquehacemos{
    width: 50%;
    /* display: flex;
    justify-content: flex-end;
    align-items: flex-end; */
}
/* .astro2{
  display: none;
} */

.astro2respo{
display: none;
}

.wrapperapps{
  /* position: sticky;
  top: 0; */
  /* padding-left: 125px;
  padding-right: 125px; */
  /* padding-top: 25px; */
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
 
}



.ctntrabajos{
  width: 100%;
  height: 100%;
  background: red;
}


.bgp1{
  width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgp1.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgp2{
  width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgp2.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgp3{
  width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgp3.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgp4{
  width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgp4.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgpNoPrint{
      width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgpNoPrint.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgpFluvi{
         width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/bgpFluvi.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.bgpTopTrack{
         width: 100%;
  height: 100vh;
  padding-left: 125px;
    padding-right: 125px;
  background-image: url("imagenes/toptrackbg.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
  background-attachment: contain;
  clear: both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.owl-theme .owl-dots {
  position: absolute;
  bottom:0;
  width: 100%;
  margin: 0 auto;
}

.btnProducts{
  width: 90px;
  background: #2BB7FF;
  border: none;
  border-radius: 5px;
  height: 40px;
  margin-top: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}



/* .ctndivisorapps{
  width: 100%;
  background: blue;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 15px;
}

.boxapp{
  width: 230px;
  height: auto;
  border-radius: 10px;
  border: none;
  background: #000;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 10px;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.57);
  
}
.planeta{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}
.tituloappname{
  color: #fff;
  margin-bottom: 10px;
}

.parrafoappname{
  color: #fff;
  margin-bottom: 15px;
  
}
.btnmasapp{
  width: 100%;
  padding: 14px;
  background: #019BFF;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: bold;
} */


.wrapperlenguajes{
  /* position: sticky;
  top: 0; */
  padding-left: 125px;
  padding-right: 125px;
  padding-top: 25px;
  padding-top: 45px;
  background: #fff;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; */
 
}

.ctndivisorlenguajes{
  width: 100%;
  /* background: blue;  */
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 15px;
  margin-bottom: 45px;
}
.boxlenguajes{
  width: 200px;
  height: auto;
  padding: 10px;
  /* background: purple; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.lenguajeslogos{
  width: 70%;
}

.wrappercontacto{
  /* position: sticky;
  top: 0; */
  position: relative;
  padding-left: 125px;
  padding-right: 125px;
  background-image: url("imagenes/bg2.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 
    background-attachment: contain;
  padding-top: 25px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
 
}

.ctndivisorcontacto{
  width: 100%;
  height: 100%;
  /* background: #000; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 75px;
}

.izqcontacto{
  width: 70%;
  height: auto;
  /* background: gray; */
}
.dercontacto{
  width: 30%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: honeydew; */
}
.ctnformuno{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: red; */
}
.izqctnform{
  width: 100%;
  /* background: purple; */
  display: flex;
  justify-content: flex-start;
}
.derctnform{
  width: 100%;
  /* background: green; */
  display: flex;
  justify-content: flex-end;
}
.inputs{
  width: 95%;
  height: 40px;
  border: solid 1px #fff;
  background: rgba(216,216,216,0.30);
  color: #fff;
  border-radius: 8px;
  padding-left: 15px;
  font-size: 15px;
}
.inputsmsn{
  width: 100%;
  height: 180px;
  border: solid 1px #fff;
  background: rgba(216,216,216,0.30);
  color: #fff;
  border-radius: 8px;
  margin-top: 15px;
  padding-left: 15px;
  padding-top: 15px;
  font-size: 15px;
}
.btnmsn{
     width: 100%;
    height: 50px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
    font-size: 25px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    background: #019BFF;
}
.logofinal{
  width: 200px;
}

.footer{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px;
  z-index:1;
  /* background: red; */
  border-top: solid 1px #cacaca;
  display: flex;
  justify-content: center;
  align-items: center;

}
.textfooter{
  font-size: 15px;
  font-weight: normal;
  color: #fff;
}


















.wrapperConsejos{
    width: 100%;
    height: 100vh;
    padding-left: 125px;
    padding-right: 125px;
    background-image: url("imagenes/bjdot.png");
    background-position: center; /* Center the image */
    background-repeat: repeat; /* Do not repeat the image */
    /* background-size: cover; 
    background-attachment: contain; */
    clear: both;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}
.wrapperWeb{
    width: 100%;
    height: 100vh;
    padding-left: 125px;
    padding-right: 125px;
    background-image: url("imagenes/bjdotDos.png");
    background-position: center; /* Center the image */
    background-repeat: repeat; /* Do not repeat the image */
    /* background-size: cover; 
    background-attachment: contain; */
    clear: both;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}
.ctnconsejos{
    width: 100%;
    margin-top: 40px;
    height: auto;
    /* background: plum; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ctnconsejosWeb{
     width: 100%;
    margin-top: 40px;
    height: auto;
    /* background: plum; */
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.consejo1{
    width: 33%;
    height: auto;
    padding-right: 85px;
    margin-right: 25px;
    /* background: chartreuse; */

}
.consejo1r{
    width: 33%;
    height: auto;
    padding-right: 85px;
    margin-right: 25px;
    border-right: solid 1px #690664;
    /* background: chartreuse; */

}
.consejo1Web{
    width: 33%;
    height: auto;
    padding-right: 85px;
    margin-right: 25px;
    /*border-right: solid 1px #690664;*/
    

}
.consejorWeb{
     width: 33%;
    height: auto;
    padding-right: 85px;
    margin-right: 25px;
    /*border-right: solid 1px #690664;*/
    /*background: chartreuse;*/
}
.imgtituloconsejo{
    height: 25px;
    margin-right: 15px;
}
.ctnconsejosTitulo{
    /* background: chocolate; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.txtconsejosTitulo{
    color:#353535;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-kerning: normal;
}
.txtconsejosParrafo{
    color:#363636;
    font-weight: 500;
    font-size: 1em; 
    line-height: 1.8;
    font-kerning: normal;
}

.txtconsejosTitulob{
    color:#fff;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-kerning: normal;
}
.txtconsejosParrafob{
    color:#fff;
    font-weight: 500;
    font-size: 1em; 
    line-height: 1.8;
    font-kerning: normal;
}



@media(max-width: 768px) {

    header{
        width: 100%;
        height: 70px;
        font-size: 15px;
        padding: 0px;
        background: transparent;
      
      
      
      }
      
        header label {
              display: block;
              padding: 15px;
              height: 50px;
      
      
        }
      
        .logochico{
          display: none;
      
        }
      
        .menu{
          position: absolute;
          width: 100%;
          margin-left: -700%;
          transition: all 0.3s;
          background: #1F4AA2;
          padding-left: 30px;
          padding-bottom: 30px;
        }
      
        .menu ul{
          flex-direction: column;
          position: initial;
        z-index: initial;
        bottom: initial;
        right: initial;
      
        }
      

        .menu li a{
            color:#fff;
            
        
          }
      
        #btn-menu:checked ~ .menu{
          margin: 0;
        }
        
        .space{
          width: 100%;
          height: 50px;
        }
        .logogrande{
            display: none;
        }

        .logotitulo{
          width: 50%;
          margin-bottom: 20px;
        }

        .logofantasma{
          display: block;
          margin: 0 auto;
          width: 40%;
          margin-bottom: 50px;
        }

        .wrapper{
            width: 100%;
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 0px;
            /* background: green; */
            display: flex;
            justify-content: center;
        }
        .ctniniciodiv{
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
          padding-bottom: 15px;
          /* background: green; */
      }

        .wrapperquienesomos{
            width: 100%;
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 35px;
            padding-bottom: 35px;
            /* height: auto; */
        }
        .izqquienes{
          width: 100%;
        }
        .derquienes{
          width: 100%;
          justify-content: center;
          align-items: center;
        }
        .astro1{
          height: 255px;
          display: none;
        }

        .astro1respo{
          /* //height: 255px; */
          height: 190px;
          margin-top: 35px;
          display: block;
        }



        .wrapperquehacemos{
          width: 100%;
          padding-left: 15px;
          padding-right: 15px;
          padding-top: 35px;
          padding-bottom: 35px;
          /* height: auto; */
        }

        .izquehacemos{
          width: 100%;
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
      }
      .derquehacemos{
          width: 100%;
          /* display: flex;
          justify-content: flex-end;
          align-items: flex-end; */
      }

      .astro2{
        display: none;
      } 

      .astro2respo{
        display: block;
        margin-top: 45px;
        width: 100%;
      }

      .wrapperapps{
        width: 100%;
        /* padding-left: 15px;
        padding-right: 15px;
        padding-top: 35px;
        padding-bottom: 35px; */
        /* height: auto; */
      }
      .bgp1{
        padding-left: 15px;
        padding-right: 15px;

      }
      .bgp2{
        padding-left: 15px;
        padding-right: 15px;

      }
      .bgp3{
        padding-left: 15px;
        padding-right: 15px;

      }
      .bgp4{
        padding-left: 15px;
        padding-right: 15px;

      }
    .bgpNoPrint{
        padding-left: 15px;
        padding-right: 15px;

      }
    .bgpFluvi{
        padding-left: 15px;
        padding-right: 15px;

      }
      
      .bgpTopTrack{
        padding-left: 15px;
        padding-right: 15px;

      }

      .boxapp{
        width: 100%;
        /* height: auto; */
      }
      .planeta{
        width: 100%;
      }

      .wrapperlenguajes{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 35px;
        padding-bottom: 35px;
       
      }
      .ctndivisorlenguajes{
        width: 100%;
        /* background: blue;  */
        display: flex;
        justify-content: center;
        align-items: center;
        /* flex-direction: column; */
      }

      .boxlenguajes{
        /* width: 100%; */
        height: 250px;
        padding: 10px;
        /* background: purple; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      /* .lenguajeslogos{
        width: 10px;
        background: red;
      } */

      .wrappercontacto{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 35px;
        padding-bottom: 35px;
        /* height: auto; */
      }

      .ctndivisorcontacto{
        width: 100%;
        height: auto;
        /* background: #000; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 45px;
        margin-top: 15px;
      }
      .izqcontacto{
        width: 100%;
        height: auto;
        /* background: gray; */
      }
      .dercontacto{
        width: 1000%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;;
        /* background: honeydew; */
      }
      .ctnformuno{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* background: red; */
      }

      .izqctnform{
        width: 100%;
        /* background: purple; */
        display: flex;
        justify-content: flex-start;
        margin-bottom: 15px;
      }

      .derctnform{
        width: 100%;
        /* background: green; */
        display: flex;
        justify-content: flex-start;
      }
      .inputs{
        width: 100%;
        height: 40px;
        border: solid 1px #fff;
        background: transparent;
        color: #fff;
        border-radius: 8px;
        padding-left: 15px;
        font-size: 15px;
      }
      
      
      
      
      
      
      
      
      
      
      
      
      
    .wrapperConsejos{
        width: 100%;
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    .wrapperWeb{
        width: 100%;
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-top:55px;
        padding-bottom:55px;
    }
    .ctnconsejos{
        width: 100%;
        margin-top: 40px;
        height: auto;
        flex-direction: column;
    }
    .ctnconsejosWeb{
         width: 100%;
        margin-top: 40px;
        height: auto;
        flex-direction: column;
    }
    .consejo1{
        width: 100%;
        height: auto;
        padding-right: 0px;
        margin-right: 0px;
        /* background: chartreuse; */
    
    }
    .consejo1r{
        width: 100%;
        height: auto;
        padding-right: 0px;
        margin-right: 0px;
        border-right:none;
        margin-bottom: 25px;
        /* background: chartreuse; */
    
    }
    
    
    .consejo1Web{
        width: 100%;
        height: auto;
        padding-right: 0px;
        margin-right: 0px;
        /* background: chartreuse; */
    
    }
    .consejorWeb{
        width: 100%;
        height: auto;
        padding-right: 0px;
        margin-right: 0px;
        border-right:none;
        margin-bottom: 45px;
        /* background: chartreuse; */
    
    }


}