* , *::before, *::after {
    margin: 0px;
    border: 0px;
    box-sizing: border-box;
    transition: .4s;
    }

:root
{
    --menuItemsBorder: 1px solid hsl(1, 0%, 25%);
    --accentColor: gold;
    --restcolor: hsl(260,45%,75%);
    --sideSpacing: 3rem;
    --fontColor: #3333FF;
    --bgc:#f5f6fa;
}

body{
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
    font-size: 1.5em;  
    background-color: var(--bgc);
    max-width:95%;
    margin:0 auto;
   }
 html {
    font-family: Dosis, sans-serif;
    font-size: 10px;
    } 
    
    /*==== NAVIGATION ====*/
    
    /* Nav bar */
    
    .nav {
    position: relative;
    font-family: Dosis, sans-serif;
    font-size: 10px;
    left: 0;
    top: 0;
    right: 0;
    padding: 0 0 0 var(--sideSpacing);
    display: flex;
    justify-content: space-around;
    align-items: center;
    }

.logo{
    margin-left: 1vw ;
    margin-top: 0.5vw ;
    height: 100px;   
    }
    
  /* Items container */
    
    .nav__menu {
    display: inherit;
    list-style: none;
    margin: 0;
    padding: 0;
    }
    
    .nav__menu__item {
    margin: 0;
    }
    
    /* Items */
    .nav__menu__item__a {
    display: block;
    font-size: 2rem;
    color: var(--fontColor);
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    padding: 3rem 1rem;
    position: relative ;
    z-index: 1;
    }
    
   .nav__menu__item:last-child .nav__menu__item__a {
    padding-right: var(--sideSpacing);
    
    }  
    
    .nav__menu__item__a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: var(--accentColor);
    z-index: -1;
    }
    
    .nav__menu__item__a:hover {
    color: black;
    }
    
    .nav__menu__item__a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accentColor);
    }
    
    .nav__menu__item__a:active  {
    color: var(--accentColor);
    }
    
    .nav__burger {
    display: none;
    }
    
    /* ==== MOBILE DEVICES ==== */
    
    @media screen and (max-width: 870px) {
    
    /* Nav bar */
    
    .nav {
    padding: 2rem 3rem;
    }
    
    /* Logo 
    .nav__logo {
    font-size: 3.8rem; 
    }  */
      
    .logo{
    margin-left: 1vw ;
    margin-top: 0.5vw ;
    height: 100px;   
    }
    
    /*Burger */
    
    .nav__burger {
    outline: none;
    font-size: 1rem;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 4rem;
    height: 2.7rem;
    background: none;
    border: none;
    z-index: 1;
    margin: 0;
    padding: 0;
    cursor: pointer;
    }
    
    .nav__burger__line {
    height: 3px;
    background: lightblue;
    }
    
    .nav__burger:focus .nav__burger__line--one {
    transform: rotate(90deg) translateX(.6em) translateY(.12em);
    background-color: var(--accentColor);
    height: 4px;
    }
    
    .nav__burger:focus .nav__burger__line--two {
    transform: rotate(45deg) translateY(1.2em) translateX(-.27em) scale(.7);
    height: 5px;
    background-color: var(--accentColor);
    }
    
    .nav__burger:focus .nav__burger__line--three {
    transform: rotate(-45deg) translateY(.2em) translateX(1em) scale(.7);
    height: 5px;
    background-color: var(--accentColor);
    }
    
    .nav__burger:hover .nav__burger__line {
    background-color: var(--accentColor);
    }
    
    .nav__burger:focus {
    transform: translateY(.5rem);
    }
    
    .nav__burger:focus ~ .nav__menu {
    height: 60vh;
    transition: .5s;
    }
    
    /* Menu items */
    
    .nav__menu {
    position: absolute;
    display: block;
    top: 15rem;
    right: 0;
    left: 0;
    height: 0px;
    transition: .5s;
    overflow: hidden;
    }
    
    .nav__menu__item:first-child {
    border-top: var(--menuItemsBorder);
    }
    
    .nav__menu__item {
    border-bottom: var(--menuItemsBorder);
    text-align: right;
    background: hsl(240, 30%, 98%);
    }
    
    .nav__menu__item__a {
    display: block;
    font-size: 3vh;
    padding: 2vh 3rem 2vh 0;
    width: 95vw;
    }
    
    .nav__menu__item__a::after {
    padding: 0;
    content: none;
    }
    }
    
    /* === SMALL MOBILE DEVICES === */
    
    @media screen and (max-width: 385px) {
    
    /* Nav bar */
    .nav {
    min-width: 260px;
    }
    
    /* Logo 
    .nav__logo {
    font-size: 3rem;
    padding: 0;
    margin: -2px 0 0 0;
    }*/
    
    /* Burger Icon */
    
    .nav__burger {
    transform: scale(.9);
    }
    
    .nav__burger:focus {
    transform: scale(.9) translateY(.5rem);
    }
    
    .nav__burger__line {
    height: .26rem;
    }
    
    .nav__burger:focus .nav__burger__line--one,
    .nav__burger:focus .nav__burger__line--two,
    .nav__burger:focus .nav__burger__line--three {
    height: .3em;
    }
    
    /* Menu items */
    
    .nav__menu {
    top: 14.1rem;
    }
    .nav__menu__item__a {
    font-size: 2vh;
    padding: 1.5vh 3rem 1.5vh 0;
    }
    
    }

/* -----Fin de Navegador ----- */
/*---------footer-----------------------*/

.footer{
    height: 100px;
    background-color: #606060;
    color: var(--fontColor);
    padding-top: 5px;
    font-size: 1vw;
}

.containerf{
    display:grid;
}
.grillaf
{
    grid-template-columns: repeat(auto-fit, minmax(15em,1fr));
    grid-gap: 15px;
    /*padding: 25px 25px 15px;*/
}

.legend
{
    text-align: left;
    margin-top: 0.8em;
    padding-left:10px;
    font-size: 1em;
    color: #fafafa;
    width: 90%;
}
.st{
    font-weight:bold;
}

/*---------fin de footer-----------------------*/


.botonbox{
    display: flex;
    justify-content: center;
    text-decoration:none;
}

.boton
{
    width: 200px;
    height: 55px;
    border-radius: 30px;
    text-align: center;
    background-color: coral;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 3.5rem;
    padding-top: .65rem;
    padding-bottom: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #0000ff;
}
.boton:hover {
    background-color: peru;
    
}
.boton:active {
    background-color: #A0A0A0;
    color: #808080;    
}

.grilla{
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5em,1fr));
  grid-gap: 25px;  
    padding: 5px 0px 10px;
}  
.titulo{
    margin-top: 10px;
    width:100%;
}
.titulo h1 {
    text-align: center;
    padding: 10px 0px 5px 0px;
    font-size: 3rem;
    color: #38515c;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: auto;
    line-height: 4rem;
}

/**********************    <p>Facil. Flexible. Eficiente</p> **********/

 .container2{
    display: inline-block;
    color: #38515c;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;     
    }

.typed-out
{
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    /*  animation: typing 3.5s steps(40, end) forwards; */
    animation: typing 5.5s steps(60, end) , blink-caret 0.75s step-end infinite;
    animation-iteration-count: infinite;
    font-size: 2.3rem;
    line-height: 2.7rem;
    /*width: 100%;*/
}
    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50%
    {
        border-color: orange;
    }
}
/**********************    <p>Facil. Flexible. Eficiente</p> **********/

.titulo h3 {
    text-align: left;
    padding: 30px 0px 10px 15px;
    font-size: 2rem;
    color: #a0a0a0;
    font-weight: 700;
    margin: 0;
    line-height: 20px;
}

.titulo h2
{
    text-align: center;
    padding: 10px 0px 10px 15px;
    font-size: 2rem;
    color: #38515c;
    font-weight: 700;
    margin: 0;
    line-height: 120%;
}

.titulo p{
    text-align: left;
    margin: 5px 5px 5px 0px;
    padding: 5px 25px 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color:var(--fontColor);
    }

.titulo tecnica{
    text-align: left;
    margin: 5px 5px 5px 5px;
    padding: 5px 10px 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color:var(--fontColor);
}
.titulo ul{
    text-align: left;
    list-style-type: disc  ;
    padding-left: 80px;
    color: var(--fontColor);    
}

.titulo li{
  width: 95%; 
	font-size: 1.25em;
    line-height: 140%;
   	text-decoration:none;
    color: var(--fontColor);
    }

.img{
    width: 100%;
    text-align: center;
    }

/* importante */
.img-pantalla{
    width: 70%; 
}

.img-pantalla2{
    width: 45%;   
}

.img-pantalla3{
    width: 56%;
    margin-top: 15px;
}

.img-pantallaC{
    width: 98%;
}

.remark{
    text-align: left;
    color:var(--fontColor);
}

.remark .neoinfo {
    font-size: 3rem;
    color: var(--fontColor);
    font-weight:400;
    text-align: center;
    padding: 20px 10px 10px;
}

.remark p{
    font-size: 2rem;
    line-height: 120%;
    text-decoration:none;
    color: var(--fontColor);
    padding-left: 70px;
    padding-top: 20px;
}

.miUL{
  /*  display: inline-block;  */
    text-align: left;
    list-style-type: square;
    padding-left: 75px;
    color: var(--fontColor);
}
.miUL li{
  width: 95%; 
	font-size: 1.2rem;
    line-height: 120%;
    font-weight: 300;
	text-decoration:none;
    color: var(--fontColor);
    list-style-position: inside;
}

.subul {
    text-align: left;
    list-style-type: disc;
    padding-left: 55px;
}

.subul li{
  	font-size: 1.2rem;
    line-height: 120%;
    font-weight: 300;
	text-decoration:none;
    color: var(--fontColor);
}
.upn{width: 80%;
        margin-left: 100px;
margin-bottom: 5em;}
.upn h2{
    text-align: center;
    padding: 30px 0px 0px 15px;
    font-size: 2rem;
    color: #a0a0a0;
    font-weight: 700;
    margin: 0;
    line-height: 20px;
 }

.upn ul{
    text-align: left;
    list-style-type: none  ;
    padding-left: 80px;
    color: #111111;   
}

.upn li{
      width: 95%; 
	font-size: 1em;
    line-height: 140%;
   	text-decoration:none;
    color: #111111;
    }


/*  -------------------------Segunda seccion de texto ------------------------------*/
.subseccion0 {
    background-color: white;
    width: 100%;
   -webkit-border-radius: 20px;
    border-radius: 20px;
   /*  margin-bottom: 15px;   */
}

.container{
  display: grid;
  background-color: #D0D0D0;
}

.grid{
  grid-template-columns: repeat(auto-fit, minmax(14em,1fr));
 /* grid-template-rows: 200px 200px;*/
  grid-gap: 15px;  
    padding: 25px 25px 15px;
   -webkit-border-radius: 20px;
    border-radius: 20px;
    
}

.tic{
    margin: 0;
	font-size: 1.2em;
	font-weight: 400;
    color: #626fAf;    
}

.tic1{
    margin-top: 55px;
	font-size: 1.2em;
	font-weight: 400;
    color: #626fAf;    
}

.numtic{
    text-align: center;
	font-size: 3em;
	font-weight: 700;
    color: #626fAf; 
    margin: 0px 10px 0px;
}

.item {
    padding-top: 2em;
     background-color: #f0f0ff; 
    text-align: center;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding-bottom: 15px;
    margin-bottom: 5px; 
    box-shadow: 3px 3px 2px 1px rgba(0,0,0,0.2);
}

.item-1 { 
    background-image: url(Imagenes/gauge-simple-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: center 0.1em;
    background-size: 6em 6em;
    }

.item-2 {
    background-image: url(Imagenes/phone-cable-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: center 0.1em;
    background-size: 6em 6em;
    }

.item-3 { 
    background-image: url(Imagenes/dollar-symbol-money-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: center 0.4em;
    background-size: 5em 5em;
    }


/* --------------------**** Fin SEGUNDA SECCION DE TEXTO -------------*************/
/* --------------------**** EMPIEZA TERCERA SECCION DE TEXTO -------------*************/

.contenedor2{
  display: grid;
    background-color: var(--bgc);
}

.grilla2{
  grid-template-columns: repeat(auto-fit, minmax(15em,1fr)); 
  grid-gap: 15px;  
  padding: 25px 25px 15px;
}


.informacion {
    margin-left: 4px;
    margin-top: 5px;
   }

h2 {
    color: #8F8F8F;
    font-size: 5vw;
    margin-bottom:  5px;
   }

.infor2{
    font-size: 2rem;
    color: blue;
    line-height: 150%;
}

.infor3{
    font-size: 1.6rem;
    color: blue;
    line-height: 140%;
}

.informacion ul{
    padding-left: 30px;
}

.infor3 li{
	text-decoration: none;
    color: #0000ff;
}


.img2{
    text-align: center;
    padding-top: 0px;
    color:#0F0F0F;
}

.img-pantalla2{
    text-align: center;
}

.pitch
{
    background-color: var(--bgc);
    text-align: center;
    margin-top: 1.25em;
    font-size: 1.5em;
    color: #0000ff;
}
.pitchf
{
    background-color: var(--bgc);
    text-align: center;
    margin-top: 1.25em;
    font-size: 1.2em;
    color: #0000ff;
    width: 90%;
}
/* --------------------**** Fin TERCERA SECCION DE TEXTO -------------*************/

.mailer{
    display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background: black;
      }
 form {
      position: relative;
      width: 80%;
      border-radius: 30px;
      background: #fff;
      }
      .form-left-decoration,
      .form-right-decoration {
      content: "";
      position: absolute;
      width: 50px;
      height: 20px;
      border-radius: 20px;
      background: #5a7233;
      }
      .form-left-decoration {
      bottom: 60px;
      left: -30px;
      }
      .form-right-decoration {
      top: 60px;
      right: -30px;
      }
      .form-left-decoration:before,
      .form-left-decoration:after,
      .form-right-decoration:before,
      .form-right-decoration:after {
      content: "";
      position: absolute;
      width: 50px;
      height: 20px;
      border-radius: 30px;
      background: #fff;
      }
      .form-left-decoration:before {
      top: -20px;
      }
      .form-left-decoration:after {
      top: 20px;
      left: 10px;
      }
      .form-right-decoration:before {
      top: -20px;
      right: 0;
      }
      .form-right-decoration:after {
      top: 20px;
      right: 10px;
      }
      .circle {
      position: absolute;
      bottom: 80px;
      left: -55px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      }
      .form-inner {
      padding: 40px;
      }
      .form-inner input,
      .form-inner textarea {
      display: block;
      width: 100%;
      padding: 15px;
      margin-bottom: 10px;
      border: none;
      border-radius: 20px;
      background: #d0dfe8;
      }
      .form-inner textarea {
      resize: none;
      }
      button {
      width: 100%;
      padding: 10px;
      margin-top: 20px;
      border-radius: 20px;
      border: none;
      border-bottom: 4px solid #3e4f24;
      background: #5a7233; 
      font-size: 16px;
      font-weight: 400;
      color: #fff;
      }
      button:hover {
      background: #3e4f24;
      } 
      @media (min-width: 568px) {
      form {
      width: 60%;
      }
      }