﻿html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  width: auto;
  height: auto;
  font-family: "Arial";
}

p{
    font-size: 2vw;
}

#red-text {
    color: #0171A8;
}

.title-text-separator {
  width: 5%;
  margin-top: 1%;
  border: solid 1px #0171A8;
}

.responsive-menu-link {
  color: black;
}


/* ----- General Header CSS ------ */

#header {
  position: fixed;
  /*display: flex;*/
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  font-size: 19px;
  min-height: 100px;
  z-index: 1;
}

#menuAcceso {
  position: fixed;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  font-size: 19px;
  z-index: 1;
}


/* Normal Header */

.active-header {
  background-color: white;
  color: black;
}

.menu-link {
  color: white;
}

.active-menu-links {
  color: black;
}

#normal-header {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  font-size: 19px;
  height: 120px;
}

#header-img {
  width: 250px;
  margin-left: 15%;
}

#nav-bar {
}

#nav-bar ul {
  list-style: none;
  display: flex;
  flex-flow: row;
}

#nav-bar li {
  padding: 10px;
  margin: 12px;
}

#nav-bar ul, a {
  text-decoration: none;
}


/* Responsive Header */

#responsive-header {
  display: none;
}

#image-button-black {
  display: none;
  border: none;
}

#image-button-black:hover {
  cursor: pointer;
}

#image-button-black:focus {
  outline: 0;
}



/* ----- LTCloud Header CSS ----- */

#LTCloud-header {
  /* width: 100vw; */
  height: 100vh;
  box-shadow: 3px 3px 2px #bebebe;

  /* LTCloud-header flexbox */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Texy style */
  text-align: center;
  color: white;

  /* Background image */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Portada/LexTools_Usando.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#LTCloud-title {
  font-size: 3.5em;
}

#LTCloud-text {
  font-size: 2em;
  font-weight:bold;
  margin-top: 2%;
}

#LTCloud-button {
  border: solid 2px white;
  background-color: transparent;
  color: white;
  margin-top: 6%;
  width: 25%;
  height: 55px;
  font-size: 2.5vw;
  border-radius: 2px;
}

#LTCloud-button:hover {
  cursor: pointer;
}


/* ----- Main CSS ----- */

#caracteristicas-contenedor {
  box-shadow: 1px 1px 5px #bebebe;
  margin-top: 5%;
  padding: 2%;
}

#servicios-caracteristicas {
  display: flex;
  flex-direction: row;
  /* Change flow-direction to "column" in the responsive design for the caracteristicas to stack
  one on top of another. */
  justify-content: space-around;
  margin-top: 2%;
  padding-bottom: 3%;
}

#caracteristicas-descripcion {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  margin-top: 2%;
  padding: 1%;
  display: flex;
  width: 80%;
}

#caracteristicas-descripcion h1 {
  font-size: 45px;
  width: 100%;
}

#caracteristicas-descripcion p {
  padding: 1%;
  margin-top: 1%;
  width: 100%;
}

.caracteristica {
  width: 20%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 1px #bebebe;
  box-shadow: 1px 2px 15px #bebebe;
}

.caracteristica img {
  max-width: 30%;
  max-height: 30%;
  padding-top: 5%;
  width: 10vw;
}

.caracteristica-title {
  margin-top: 5%;
}

.caracteristica p {
  width: 70%;
  margin-top: 5%;
  font-size: 1.5vw;
}

.btnCaracteristicas {
  border: none;
  margin-top: 30%;
  padding: 5px;
  height: 5vh;
  border-radius: 2px;
  background-color: #0171A8;
  color: white;
  font-size: 16px;
  margin-bottom: 20%;
}

.btnCaracteristicas:hover {
  background-color: #333;
  cursor: pointer;
}


/* ----- Product acercade CSS ----- */

#acercade-contenedor {
  display: flex;
  flex-flow: column;
}

.acercade-title-descripcion {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: auto;
  text-align: center;
  margin-top: 5%;
  width: 60%;
}

.acercade-title-descripcion h1 {
  font-size: 45px;
}

.acercade-title-descripcion p {
  margin-top: 1%;
}

#section-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.product-button {
  border: none;
  border-radius: 2px;
  background-color: inherit;
  box-shadow: 1px 2px 15px #bebebe;
  padding: 15px;
  margin: 2%;
  font-size: 1.5em;
}

.product-button:hover {
  cursor: pointer;
}

.product-button:focus {
  outline: 0;
}

.product-button-active {
  background-color: #0171A8;
  color: white;
}

/* -- subseccion CSS: Seccion Content CSS -- */

#section-content-contenedor {
  margin: auto;
  width: 75%;
}

.product-content {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding: 2%;
}

#content-image {
  width: 100%;
  height: 100%;
  width: 70%;
  height: auto;
}

#frame-video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.content-title-text {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: 50%;
  padding: 1%;
}

.content-title-text p {
  margin-top: 2%;
}

.product-caracteristicas-list {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  margin-top: 5%;
}

.product-caracteristica-image {
  justify-content: flex-start;
  align-items: flex-start;
}

.correct-icon {
  width: 3vw;
}

.inside-caracteristicas-title-text {
  flex-flow: column;
  margin-left: 2%;
}

.divContent-contactar{
    text-align: center;
    padding: 50px;
}

.content-button {
  border: none;
  border-radius: 2px;
  background-color: #0171A8;
  box-shadow: 1px 2px 15px #bebebe;
  padding: 15px;
  width: 75px;
  margin-top: 6%;
  font-size: 16px;
  color: white;
}

.content-button:hover {
  cursor: pointer;
  background-color: #333;
}


/* Seccion Media - Video CSS */

#main-media-contenedor {
  box-shadow: 2px 2px 15px #bebebe;
  display: flex;
  flex-flow: column;
  align-items: center;
}

#media-title-descripcion {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4%;
  width: 90%;
}

#media-title-descripcion h1 {
  font-size: 45px;
}

#media-title-descripcion p {
  margin-top: 1%;
}

#media-video-text-contenedor {
  display: flex;
  flex-wrap: wrap;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 75%;
  padding: 3% 2% 3% 2%;
  /* background-color: #f5f5f5; */
  border-radius: 10px;
}

#media-text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 40%;
  height: auto;
}

#media-text h2 {
  font-size: 30px;
}

#media-text p {
  font-size: 17px;
  margin-top: 3%;
}

#text-video-sperator {
  height: 20vh;
  border: solid 0.5px #e1e1e1;
}

#media-button {
  border: solid 1px #c1c1c1;
  border-radius: 10px;
  background-color: inherit;
  box-shadow: 1px 2px 2px #bebebe;
  padding: 15px;
  width: 25%;
  margin-top: 5%;
  font-size: 15px;
  color: black;
}

#media-button:hover {
  cursor: pointer;
  background-color: white;
  background-color: #0171A8;
  color: white;
}

#media-video {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

#video {
  width: 100%;
  height: 100%;
}




/* Seccion Precios CSS */

#prices-section-contenedor {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  margin-top: 3%;
}

#prices-title-descripcion {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 60%;
}

#prices-title-descripcion h1 {
  font-size: 45px;
}

#prices-separator {
  width: 5%;
  margin-top: 2%;
  border: solid 1px #ff5a63;
}

#prices-title-descripcion p {
  margin-top: 1%;
}

#all-prices-contenedor {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}

.price-contenedor {
  box-shadow: 2px 2px 15px #bebebe;
  text-align: center;
  margin-top: 7%;
  width: 27%;
}

.price-contenedor h1 {
  color: #ff5a63;
  font-size: 45px;
  margin-top: 6%;
}

.price-contenedor h2 {
  color: #323a45;
  font-size: 40px;
  margin-top: 4%;
}

.price-contenedor p {
  margin-top: 4%;
  font-size: 17px;
}

.price-contenedor hr{
  margin: auto;
  margin-top: 4%;
  margin-bottom: 4%;
  width: 70%;
  border: solid 0.5px #c1c1c1;
}

.price-contenedor ul {
  list-style: none;
}

.price-contenedor li {
  padding: 3%;
}

.price-contenedor button {
  border: none;
  border-radius: 10px;
  background-color: #0171A8;
  box-shadow: 1px 2px 15px #bebebe;
  padding: 15px;
  width: 30%;
  margin-top: 6%;
  font-size: 16px;
  color: white;
  margin-bottom: 6%;
}

.price-contenedor button:hover {
  cursor: pointer;
  background-color: #333;
}

#price-contenedor-two {
  margin-top: 4%;
}




/* Seccion Contactar CSS */

.menu-contactar {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
}

.contactar-title-descripcion {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 60%;
}

.contactar-title-descripcion h1 {
  font-size: 45px;
}

#email-input-contenedor {
  margin-top: 1%
}

#otros-contactos-contenedor {
  margin-top: 1%
}

#formularioContacto {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

#formularioContacto label {
  font-size: 20px;
}

#email {
  font-size: 18px;
  margin-top: 4%;
  padding: 3%;
  width: 100%;
}

#submit {
    font-size: 1.2em;
}


.inputContacto{
  font-size: 18px;
  margin-top: 4%;
  padding: 3%;
  width: 100%;
}

#submit {
  border: none;
  border-radius: 2px;
  background-color: #0171A8;
  box-shadow: 1px 2px 15px #bebebe;
  font-size: 16px;
  color: white;
  margin-top: 5%;
  padding: 15px;
  width: 40%;
}

#submit:hover {
  cursor: pointer;
  background-color: #333;
}

/* Footer */

footer {
  box-shadow: 1px 2px 15px #bebebe;
  margin-top: 4%;
  color: #858585;
  text-align: center;
}

footer span {
  padding: 0.5%;
}

/* @Media min-width: 480px */
@media (min-device-width : 200px) and (max-device-width : 860px) {

  /* General */

  .title-text-separator {
    width: 15%;
    margin-top: 3%;
    margin-bottom: 3%;
    border: solid 1px #0171A8;
  }

  p{
      font-size: 3.5vw;
  }

  /* Navigation CSS */
  #header {
    background: white;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80px;
    margin: auto;
    z-index:1;
  }

  #menuAcceso{
    display:none;
  }

  .menuAccesoResponsive{
    background-color: #0070a7;
    padding: 5px;
    color: white;
  }

  #normal-header {
    display: none;
  }

  #responsive-header {
    display: flex;
    width: 100%;
    margin: auto;
    box-shadow: 1px 2px 15px #bebebe;
  }

  #responsive-logo-button {
    display: flex;
    justify-content: space-between;
    padding: 1% 0 1% 0;
  }

  #responsive-nav-bar {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0 0 40px 0;
  }

  #responsive-nav-bar ul {
    list-style: none;
  }

  #responsive-nav-bar li {
    text-align: center;
    font-size: 4.5vw;
    margin-top: 20%;
  }

  #responsive-first-item {
    margin-top: 0;
    padding: 0;
  }

  #header-img-black {
    margin-left: 5%;
    margin-top: 3%;
    width: 100%;
    height: auto;
  }

  #dropdown-button-black {
    display: block;
    width: 55%;
    height: auto;
    margin: 0;
    padding: 0;
  }


  #image-button-black {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 2%;
    width: 20%;
    height: 100px;
  }
  
  /* LTCloud CSS */

  #LTCloud-header {
    width: auto;
    height: 80vh;

    /* LTCloud-header flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    /* Estilo Text */
    text-align: center;
    color: white;

    /* Background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Portada/LexTools_Usando.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #LTCloud-title {
    font-size: 4.5em;
  }

  #LTCloud-text {
    font-size: 2.3em;
    margin-top: 2%;
  }

  #LTCloud-button {
    border: solid 2px white;
    background-color: inherit;
    color: white;
    margin-top: 6%;
    width: 25%;
    height: 55px;
    font-size: 3.5vw;
    border-radius: 2px;
  }

  #LTCloud-button:hover {
    cursor: pointer;
  }


  /* servicios caracteristicas CSS */

  #servicios-caracteristicas {
    display: flex;
    flex-direction: column;
    /* Se puede cambiar la dirección del flujo a "columna" en el diseño responsive para que las características se apilen uno encima del otro. */
    justify-content: space-around;
    align-items: center;
    margin-top: 2%;
  }

  #caracteristicas-descripcion {
    width: 90%;
  }

  .caracteristica {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #bebebe;
    box-shadow: 1px 2px 15px #bebebe;
    margin-top: 10%;
    font-size: 3vw;
  }

  .caracteristica img{
      width: 10em;
  }

    .caracteristica p {
      font-size: 1.5em;
  }

    .caracteristica-title {
      font-size: 2.4em;
    }

  .btnCaracteristicas {
    border: none;
    margin-top: 30%;
    width: 15vh;
    height: 5vh;
    border-radius: 2px;
    background-color: #0171A8;
    color: white;
    font-size: 1.2em;
    margin-bottom: 20%;
  }
 

  /* acercade Section CSS */

  #acercade-contenedor {
    margin-top: 5%;
  }

  .acercade-title-descripcion {
    width: 90%;
  }

  #section-buttons {
    margin-top: 5%;
  }

  #section-content-contenedor {
    margin: auto;
    width: 90%;
  }

  #section-content-contenedor {
    margin-top: 1%;
  }

  .product-button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 40%;
    padding: 15px;
    font-size: 2.5em;
  }

  .product-content {
    display: flex;
    flex-flow: column;
    padding: 2%;
  }

  #content-image {
    width: 100%;
    height: 100%;
  }

  #frame-video {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .content-title-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    margin-top: 2%;
  }

  .content-title-text h1 {
    margin: auto;
  }

  #centered-product-descripcion {
    text-align: center;
  }

  .content-title-text p {
    margin-top: 2%;
  }

  .product-caracteristica-image {
    justify-content: center;
    align-items: center;
    width: 8%;
  }

  .product-caracteristicas-list {
    margin-top: 5%;
  }

  .content-button {
    margin: auto;
    margin-top: 10%;
    width: auto;
    font-size: 2em;
  }

  
  /* -- Media Section CSS -- */

  #main-media-contenedor {
    margin-top: 5%;
  }

  #media-title-descripcion {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin-top: 8%;
  }

  #media-video-text-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 2% 1% 2% 1%;
    margin-top: 10%;
    text-align: center;
  }

  #media-text {
    width: 100%;
  }

  #media-text h2 {
    margin: auto;
  }

  #media-text p {
    margin-top: 6%;
  }

  #text-video-sperator {
    height: 1%;
    width: 80%;
    margin-top: 10%;
    margin-bottom: 9%;
  }

  #media-button {
    width: 30%;
    margin: auto;
    margin-top: 7%;
  }

  #media-video {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
  }

  #iframe-video {
    width: 50vh;
    height: 30vh;
    margin-bottom: 8%;
  }


  /* -- Seccion Precios CSS -- */

  #prices-section-contenedor {
    margin-top: 15%;
  }

  #prices-title-descripcion {
    width: 90%;
  }

  #all-prices-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .price-contenedor {
    width: 90%;
    margin-top: 15%;
  }

  #price-contenedor-two {
    margin-top: 15%;
  }

  .price-contenedor button {
    width: 35%;
  }



  /* Email Section CSS */

  .menu-contactar {
    margin-top: 10%;
    font-size: 2em;
  }

  .contactar-title-descripcion {
    width: 90%;
  }

  #formularioContacto label {
    width: 90%;
    text-align: center;
    font-size: 1em;
  }

  #email {
    width: 80%;
    font-size: 1em;
  }

  #submit {
     font-size: 1.2em;
  }

  .inputContacto{
      width: 80%;
      font-size: 1em;
  }
  
  /* Footer Section */

  footer {
    margin-top: 10%;
  }

}


@media (min-device-width : 860px) and (max-device-width : 900px) {

    p {
      font-size: 3.5vw;
    }

    /* Navigation CSS */
    #header {
      background: white;
      position: fixed;
      display: flex;
      flex-wrap: wrap;
      flex-flow: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      min-height: 80px;
      margin: auto;
    }

    #menuAcceso{
      display:none;
    }

    .menuAccesoResponsive{
        background-color: #0070a7;
        padding: 5px;
        color: white;
    }

    #normal-header {
      display: none;
    }

    #responsive-header {
      display: flex;
      width: 100%;
      margin: auto;
      box-shadow: 1px 2px 15px #bebebe;
    }

    #responsive-logo-button {
      display: flex;
      justify-content: space-between;
      padding: 1% 0 1% 0;
    }

    #responsive-nav-bar {
      display: flex;
      flex-flow: column;
      align-items: center;
      padding: 0 0 40px 0;
      width: 100%;
    }

    #responsive-nav-bar ul {
      list-style: none;
    }

    #responsive-nav-bar li {
      text-align: center;
      font-size: 23px;
      margin-top: 30%;
    }

    #responsive-first-item {
      margin-top: 0;
      padding: 0;
    }

    #header-img-black {
      margin-left: 5%;
      margin-top: 3%;
      width: 100%;
      height: auto;
    }

    #dropdown-button-black {
      display: block;
      width: 50%;
      height: auto;
      margin: 0;
      padding: 0;
    }


    #image-button-black {
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      padding: 2%;
      height:100px;
      width: 20%;
    }


  /* LTCloud CSS */

  #LTCloud-header {
    width: auto;
    height: 80vh;

    /* LTCloud-header flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    /* Texy style */
    text-align: center;
    color: white;

    /* Background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Portada/LexTools_Usando.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #LTCloud-title {
    font-size: 3.5em;
  }

  #LTCloud-text {
    font-size: 1.3em;
    margin-top: 2%;
  }

  #LTCloud-button {
    border: solid 2px white;
    background-color: inherit;
    color: white;
    margin-top: 6%;
    width: 25%;
    height: 55px;
    font-size: 3.5vw;
    border-radius: 2px;
  }

  #LTCloud-button:hover {
    cursor: pointer;
  }



  /* servicios caracteristicas CSS */

  #servicios-caracteristicas {
    display: flex;
    flex-flow: row;
    /* Change flow-direction to "column" in the responsive design for the caracteristicas to stack
    one on top of another. */
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2%;
  }

  #caracteristicas-descripcion {
    width: 90%;
  }

  .caracteristica {
    width: 30%;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #bebebe;
    box-shadow: 1px 2px 15px #bebebe;
    margin-top: 10%;
    font-size: 3vw;
  }

  .caracteristica img {
      width: 10em;
  }

  .caracteristica p {
      font-size: 1.5em;
  }

  .caracteristica-title {
      font-size: 2.4em;
  }

  .btnCaracteristicas {
    border: none;
    margin-top: 30%;
    width: 15vh;
    height: 5vh;
    border-radius: 2px;
    background-color: #0171A8;
    color: white;
    font-size: 1.2em;
    margin-bottom: 20%;
  }


  
  /* acercade Section CSS */

  #acercade-contenedor {
    margin-top: 5%;
    width: 80%;
    margin: auto;
  }

  .acercade-title-descripcion {
    width: 90%;
  }

  #section-buttons {
    margin-top: 5%;
  }

  #section-content-contenedor {
    margin: auto;
    width: 90%;
  }

  #section-content-contenedor {
    margin-top: 1%;
  }

  .product-button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 40%;
    padding: 15px;
    font-size: 2.5em;
  }

  .product-content {
    display: flex;
    flex-flow: column;
    padding: 2%;
  }

  #content-image {
    width: 100%;
    height: 100%;
  }

  #frame-video {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .content-title-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    margin-top: 1%;
  }

  .content-title-text h1 {
    margin: auto;
  }

  #centered-product-descripcion {
    text-align: center;
  }

  .content-title-text p {
    margin-top: 2%;
  }

  .product-caracteristica-image {
    justify-content: center;
    align-items: center;
    width: 8%;
  }

  .product-caracteristicas-list {
    margin-top: 5%;
  }

  .content-button {
    margin: auto;
    margin-top: 10%;
    width: auto;
    font-size: 2em;
  }




  /* -- Media Section CSS -- */

  #main-media-contenedor {
    margin-top: 5%;
  }

  #media-title-descripcion {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin-top: 8%;
  }

  #media-video-text-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 2% 1% 2% 1%;
    margin-top: 10%;
    text-align: center;
  }

  #media-text {
    width: 100%;
  }

  #media-text h2 {
    margin: auto;
  }

  #media-text p {
    margin-top: 6%;
  }

  #text-video-sperator {
    height: 1%;
    width: 80%;
    margin-top: 10%;
    margin-bottom: 9%;
  }

  #media-button {
    width: 35%;
    margin: auto;
    margin-top: 7%;
  }

  #media-video {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
  }

  #iframe-video {
    width: 80vh;
    height: 50vh;
    margin-bottom: 9%;
  }


  /* -- Prices Section CSS -- */

  #prices-section-contenedor {
    margin-top: 15%;
  }

  #prices-title-descripcion {
    width: 90%;
  }

  #all-prices-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .price-contenedor {
    width: 50%;
    margin-top: 15%;
  }

  #price-contenedor-two {
    margin-top: 15%;
  }

  .price-contenedor button {
    width: 35%;
  }



  /* Email Section CSS */

  .menu-contactar {
    margin-top: 10%;
    font-size: 2em;
  }

  .contactar-title-descripcion {
    width: 90%;
  }

  #formularioContacto label {
    width: 90%;
    text-align: center;
    font-size: 1em;
  }

  #email {
    width: 80%;
    font-size: 1em;
  }

  .inputContacto{
      width: 80%;
      font-size: 1em;
  }

}


@media (min-width : 200px) and (max-width : 860px) {

  /* General */

  .title-text-separator {
    width: 15%;
    margin-top: 3%;
    margin-bottom: 3%;
    border: solid 1px #0171A8;
  }
  p {
      font-size: 2.6vw;
  }
  
  /* Navigation CSS */
  #header {
    background: white;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80px;
    margin: auto;
    z-index:1;
  }

  #menuAcceso{
    display:none;
  }

  .menuAccesoResponsive{
    background-color: #0070a7;
    padding: 5px;
    color: white;
  }

  #normal-header {
    display: none;
  }

  #responsive-header {
    display: flex;
    width: 100%;
    margin: auto;
    box-shadow: 1px 2px 15px #bebebe;
  }

  #responsive-logo-button {
    display: flex;
    justify-content: space-between;
    padding: 1% 0 1% 0;
  }

  #responsive-nav-bar {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0 0 40px 0;
  }

  #responsive-nav-bar ul {
    list-style: none;
  }

  #responsive-nav-bar li {
    text-align: center;
    font-size: 23px;
    margin-top: 40%;
  }

  #responsive-first-item {
    margin-top: 0;
    padding: 0;
  }

  #header-img-black {
    margin-left: 5%;
    margin-top: 3%;
    width: 100%;
    height: auto;
  }

  #dropdown-button-black {
    display: block;
    width: 55%;
    height: auto;
    margin: 0;
    padding: 0;
  }


  #image-button-black {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 2%;
    width: 20%;
    height: 100px;
  }
  
  /* LTCloud CSS */

  #LTCloud-header {
    width: auto;
    height: 100vh;

    /* LTCloud-header flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    /* Estilo Text */
    text-align: center;
    color: white;

    /* Background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Portada/LexTools_Usando.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #LTCloud-title {
    font-size: 3.5em;
  }

  #LTCloud-text {
    font-size: 1.3em;
    margin-top: 2%;
  }

  #LTCloud-button {
    border: solid 2px white;
    background-color: inherit;
    color: white;
    margin-top: 6%;
    width: 25%;
    height: 55px;
    font-size: 2.5vw;
    border-radius: 2px;
  }

  #LTCloud-button:hover {
    cursor: pointer;
  }


  /* servicios caracteristicas CSS */

  #servicios-caracteristicas {
    display: flex;
    flex-direction: column;
    /* Se puede cambiar la dirección del flujo a "columna" en el diseño responsive para que las características se apilen uno encima del otro. */
    justify-content: space-around;
    align-items: center;
    margin-top: 2%;
  }

  #caracteristicas-descripcion {
    width: 90%;
  }

  .caracteristica {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #bebebe;
    box-shadow: 1px 2px 15px #bebebe;
    margin-top: 10%;
    font-size: 3vw;
  }

  .btnCaracteristicas {
    border: none;
    margin-top: 30%;
    width: 15vh;
    height: 5vh;
    border-radius: 2px;
    background-color: #0171A8;
    color: white;
    font-size: 16px;
    margin-bottom: 20%;
  }

  .caracteristica p {
      font-size: 2.5vw;
  }
  
  /* acercade Section CSS */

  #acercade-contenedor {
    margin-top: 5%;
  }

  .acercade-title-descripcion {
    width: 90%;
  }

  #section-buttons {
    margin-top: 5%;
  }

  #section-content-contenedor {
    margin: auto;
    width: 90%;
  }

  #section-content-contenedor {
    margin-top: 1%;
  }

  .product-button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 40%;
    padding: 15px;
  }

  .product-content {
    display: flex;
    flex-flow: column;
    padding: 2%;
  }

  #content-image {
    width: 100%;
    height: 100%;
  }

  #frame-video {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .content-title-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    margin-top: 2%;
  }

  .content-title-text h1 {
    margin: auto;
  }

  #centered-product-descripcion {
    text-align: center;
  }

  .content-title-text p {
    margin-top: 2%;
  }

  .product-caracteristica-image {
    justify-content: center;
    align-items: center;
    width: 8%;
  }

  .product-caracteristicas-list {
    margin-top: 5%;
  }

  .content-button {
    margin: auto;
    margin-top: 10%;
    width: auto;
  }

  
  /* -- Media Section CSS -- */

  #main-media-contenedor {
    margin-top: 5%;
  }

  #media-title-descripcion {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin-top: 8%;
  }

  #media-video-text-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 2% 1% 2% 1%;
    margin-top: 10%;
    text-align: center;
  }

  #media-text {
    width: 100%;
  }

  #media-text h2 {
    margin: auto;
  }

  #media-text p {
    margin-top: 6%;
  }

  #text-video-sperator {
    height: 1%;
    width: 80%;
    margin-top: 10%;
    margin-bottom: 9%;
  }

  #media-button {
    width: 30%;
    margin: auto;
    margin-top: 7%;
  }

  #media-video {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
  }

  #iframe-video {
    width: 50vh;
    height: 30vh;
    margin-bottom: 8%;
  }


  /* -- Seccion Precios CSS -- */

  #prices-section-contenedor {
    margin-top: 15%;
  }

  #prices-title-descripcion {
    width: 90%;
  }

  #all-prices-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .price-contenedor {
    width: 90%;
    margin-top: 15%;
  }

  #price-contenedor-two {
    margin-top: 15%;
  }

  .price-contenedor button {
    width: 35%;
  }



  /* Email Section CSS */

  .menu-contactar {
    margin-top: 10%;
  }

  .contactar-title-descripcion {
    width: 90%;
  }

  #formularioContacto label {
    width: 90%;
    text-align: center;
  }

  #email {
    width: 80%;
  }

  .inputContacto{
      width: 80%;
  }
  
  /* Footer Section */

  footer {
    margin-top: 10%;
  }

}


@media (min-width : 860px) and (max-width : 900px) {

    p {
      font-size: 2.6vw;
    }
    /* Navigation CSS */
    #header {
      background: white;
      position: fixed;
      display: flex;
      flex-wrap: wrap;
      flex-flow: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      min-height: 80px;
      margin: auto;
    }

    #menuAcceso{
      display:none;
    }

    .menuAccesoResponsive{
        background-color: #0070a7;
        padding: 5px;
        color: white;
    }

    #normal-header {
      display: none;
    }

    #responsive-header {
      display: flex;
      width: 100%;
      margin: auto;
      box-shadow: 1px 2px 15px #bebebe;
    }

    #responsive-logo-button {
      display: flex;
      justify-content: space-between;
      padding: 1% 0 1% 0;
    }

    #responsive-nav-bar {
      display: flex;
      flex-flow: column;
      align-items: center;
      padding: 0 0 40px 0;
      width: 100%;
    }

    #responsive-nav-bar ul {
      list-style: none;
    }

    #responsive-nav-bar li {
      text-align: center;
      font-size: 23px;
      margin-top: 30%;
    }

    #responsive-first-item {
      margin-top: 0;
      padding: 0;
    }

    #header-img-black {
      margin-left: 5%;
      margin-top: 3%;
      width: 100%;
      height: auto;
    }

    #dropdown-button-black {
      display: block;
      width: 50%;
      height: auto;
      margin: 0;
      padding: 0;
    }


    #image-button-black {
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      padding: 2%;
      height:100px;
      width: 20%;
    }


  /* LTCloud CSS */

  #LTCloud-header {
    width: auto;
    height: 100vh;

    /* LTCloud-header flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    /* Texy style */
    text-align: center;
    color: white;

    /* Background image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Portada/LexTools_Usando.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  #LTCloud-title {
    font-size: 3.5em;
  }

  #LTCloud-text {
    font-size: 1.3em;
    margin-top: 2%;
  }

  #LTCloud-button {
    border: solid 2px white;
    background-color: inherit;
    color: white;
    margin-top: 6%;
    width: 25%;
    height: 55px;
    font-size: 2.5vw;
    border-radius: 2px;
  }

  #LTCloud-button:hover {
    cursor: pointer;
  }



  /* servicios caracteristicas CSS */

  #servicios-caracteristicas {
    display: flex;
    flex-flow: row;
    /* Change flow-direction to "column" in the responsive design for the caracteristicas to stack
    one on top of another. */
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2%;
  }

  #caracteristicas-descripcion {
    width: 90%;
  }

  .caracteristica {
    width: 30%;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #bebebe;
    box-shadow: 1px 2px 15px #bebebe;
    margin-top: 10%;
    font-size: 3vw;
  }

  .btnCaracteristicas {
    border: none;
    margin-top: 30%;
    width: 15vh;
    height: 5vh;
    border-radius: 2px;
    background-color: #0171A8;
    color: white;
    font-size: 16px;
    margin-bottom: 20%;
  }

  .caracteristica p {
      font-size: 2vw;
  }


  /* acercade Section CSS */

  #acercade-contenedor {
    margin-top: 5%;
    width: 80%;
    margin: auto;
  }

  .acercade-title-descripcion {
    width: 90%;
  }

  #section-buttons {
    margin-top: 5%;
  }

  #section-content-contenedor {
    margin: auto;
    width: 90%;
  }

  #section-content-contenedor {
    margin-top: 1%;
  }

  .product-button {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 40%;
    padding: 15px;
  }

  .product-content {
    display: flex;
    flex-flow: column;
    padding: 2%;
  }

  #content-image {
    width: 100%;
    height: 100%;
  }

  #frame-video {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .content-title-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    margin-top: 1%;
  }

  .content-title-text h1 {
    margin: auto;
  }

  #centered-product-descripcion {
    text-align: center;
  }

  .content-title-text p {
    margin-top: 2%;
  }

  .product-caracteristica-image {
    justify-content: center;
    align-items: center;
    width: 8%;
  }

  .product-caracteristicas-list {
    margin-top: 5%;
  }

  .content-button {
    margin: auto;
    margin-top: 10%;
    width: auto;
  }




  /* -- Media Section CSS -- */

  #main-media-contenedor {
    margin-top: 5%;
  }

  #media-title-descripcion {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin-top: 8%;
  }

  #media-video-text-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 2% 1% 2% 1%;
    margin-top: 10%;
    text-align: center;
  }

  #media-text {
    width: 100%;
  }

  #media-text h2 {
    margin: auto;
  }

  #media-text p {
    margin-top: 6%;
  }

  #text-video-sperator {
    height: 1%;
    width: 80%;
    margin-top: 10%;
    margin-bottom: 9%;
  }

  #media-button {
    width: 35%;
    margin: auto;
    margin-top: 7%;
  }

  #media-video {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
  }

  #iframe-video {
    width: 80vh;
    height: 50vh;
    margin-bottom: 9%;
  }


  /* -- Prices Section CSS -- */

  #prices-section-contenedor {
    margin-top: 15%;
  }

  #prices-title-descripcion {
    width: 90%;
  }

  #all-prices-contenedor {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .price-contenedor {
    width: 50%;
    margin-top: 15%;
  }

  #price-contenedor-two {
    margin-top: 15%;
  }

  .price-contenedor button {
    width: 35%;
  }



  /* Email Section CSS */

  .menu-contactar {
    margin-top: 10%;
  }

  .contactar-title-descripcion {
    width: 90%;
  }

  #formularioContacto label {
    width: 90%;
    text-align: center;
  }

  #email {
    width: 80%;
  }

  .inputContacto{
      width: 80%;
  }

}
/* MENU ACCESO */

#divLogin { 
    position:fixed; 
    text-align:center; 
    padding: 10px 5px 10px 5px;    /* margen con valores: arriba - derecha - abajo - izquierda */  
    top: 0px;                    /* Distancia hasta el borde superior */ 
    left: 0px;            /* Distancia hasta el borde izquierdo */
    width:100%; 
    background-color:transparent;
    z-index: 1;               /* hace que la capa sea opaca  */ 
} 
.menuLogin li {
    background: #ffec01;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.menuLogin li:hover {
    background: #333;
    color: white;
}
.menuLogin li a {
    font-size: 14px;
    display: inline-block;
    /*width: 100%;*/
    height: 100%;
    padding: 10px;
    text-decoration: none;
    color: #333; 
}
.menuLogin li a:hover {
    color: white;
    background-color: #0070a7;
}


/* VIDEO */

.w3-container:after,.w3-container:before{content:"";display:table;clear:both}
.w3-container{padding:0.01em 16px}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-tooltip,.w3-display-container{position:relative}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}

.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}

.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}

.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-btn,.w3-button{border:none;display:inline-block;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-bar .w3-button{white-space:normal}

.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}
.w3-red,.w3-hover-red:hover{color:#fff!important;background-color:#f44336!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}
.w3-display-topright{position:absolute;right:0;top:0}

@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}

