html, body {
    font-family: 'Roboto Condensed', sans-serif;
    scroll-behavior: smooth;
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Sección general de Tags */
h1 {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
}
h2 {
    margin: 0;
}
h3 {
    margin: 0;
}
h4 {
    margin: 0;
}
h5 {
    margin: 0;
}
h6 {
    margin: 0;
}

p {
    margin: 0;
}
@media (max-width: 768px) {
    h1 {  }
}

.content {
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .content {
        width: 100%;
        padding: 0 20px;
    }
}


/* Menú principal superior */
#navbarHead {
    width: 100%;
    color: #fff;
    backdrop-filter:  saturate(180%) blur(10px);
    background-color: rgba(255,255,255,.1);
    padding: 10px 20px 50px 20px;
    display: block;
    /*position: fixed;*/
    text-align: right;
    top: 0px;
    /*z-index: 100;*/
}
.navbarHead {
    display: inline-block;
    min-width: 300px;
    vertical-align: top;
}
.menuLogo {
    /* width: 30%; */
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
}
.menuLogo img {
    height: 50px;
    position: absolute;
    left: 20px;
    margin-top: 10px;
}
.menuLogo2 {
    margin-left: 210px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}
.menuLogo3 {
    margin-left: 280px;
    height: 50px;
    padding-left: 20px;
}
@media (max-width: 768px) {
    #navbarHead {
        height: 80px;
    }
    .menuLogo img {
        height: 50px;
        margin-top: 10px;
    }
    .menuLogo2 {
        height: 40px;
        margin-top: 10px;
        margin-left: 190px;
        border-left: none;
    }
    .menuLogo3 {
        height: 40px;
        margin-top: 10px;
        margin-left: 200px;
    }
}
#menu {
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    text-align: right;
    font-size: 22px;
    font-weight: 100;
    margin-top: 10px;
}
#menu span {
    font-size: 12px;
    font-weight: 700;
}
#menu ul {
    padding-top: 5px;
}
#menu li {
    list-style-type: none;
    display: inline;
    padding-left: 20px;
}
#menu a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}
#menu a:hover {
    color: #03B0FF;
    text-decoration: none;
    /*border-bottom: 1px solid #ffc100;*/
}

.menu_button a {
    font-size: 12px!important;
    font-weight: 300;
    color: #000!important;
    text-align: center;
    background: #ff9900;
    border-radius: 20px;
    padding: 4px 18px;
    margin: 0 2px;
}
.menu_button a:hover {
    background: #ffc100;
}
.menu_button1 a {
    font-size: 12px!important;
    font-weight: 300!important;
    color: #000!important;
    text-align: center;
    background: #ccc;
    border-radius: 20px;
    padding: 4px 18px;
    margin: 0 2px;
}
.menu_button1 a:hover {
    background: #ffc100;
}
.menu_principalX a {
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
}
.menu_separa {
    border-right: 1px solid #ccc;
}

#menuAlt {
    display: none;
}
.head_btn {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 18px !important;
}
@media only screen and (max-width: 768px) {
    #menuAlt {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        text-align: left;
        color: #00C9FF;
        font-weight: 300;
        padding-top: 70px;
        margin-bottom: 0;
    }
    #menuAlt h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }
    #menuAlt h3 {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }
    #menuAlt p {
        font-size: 18px;
        font-weight: 300;
        margin: 0;
    }
    #menuAlt span {
        font-size: 14px;
        font-weight: 700;
    }
    #menuAlt a {
        color: #00C9FF;
        text-decoration: none;
    }
    #menuAlt a:hover {
        color: #ffc100;
        text-decoration: none;
    }
    .menu_separa {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
}

.headmail {
    font-size: 14px !important;
    text-decoration: none !important;
    color: #fff;
    font-weight: 300;
    margin: 0;
}
.menu_bot1 {
    border: 1px solid #fff;
    background: #ff9900;
    border-radius: 30px;
    padding-right: 20px;
    padding-bottom: 4px;
    margin-left: 10px;
    cursor: pointer;
}
.menu_bot1:hover {
    background-color: #000;
    transition: 300ms;
}
.menu_bot2 {
    border: 1px solid #fff;
    background: transparent;
    border-radius: 30px;
    padding-right: 20px;
    padding-bottom: 4px;
    margin-left: 10px;
    cursor: pointer;
}
.menu_bot2:hover {
    background-color: #000;
    transition: 300ms;
}
.menuHeadBottom {
    width: 100%;
    height: 100px;
    background-size: 100%;
}
@media only screen and (max-width: 768px) {
    .menuHeadBottom {
        height: 60px;
    }
}

/* Iniciá menú móvil */
#toggle {
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 999;
  width: 40px;
  height: 40px;
  cursor: pointer;
  float: right;
  transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}

#toggle .span {
  height: 7px;
  background: #fff;
  margin: 5px auto;
  backface-visibility: hidden;
}

#toggle.on #one {
  transform: rotate(45deg) translateX(6px) translateY(6px);
}

#toggle.on #two {
  opacity: 0;
}

#toggle.on #three {
  transform: rotate(-45deg) translateX(10px) translateY(-12px);
}

#resize {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  display: table;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#resize #menu {
  display: table-cell;
  vertical-align: middle;
  background-color: rgba(0,0,0,.3);
}

#resize ul {
    padding: 30% 30px 30px 50px;
}
#resize li {
    list-style: none;
    color: #fff;
    margin-bottom: 30px;
}
#resize a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
}
#resize span {
    padding-right: 10px;
}

#resize #menu li {
  display: block;
  text-align: center;
  background-color: rgba(0,0,0,.1);
  border-bottom: 1px solid #202020;
  text-align: center;
  font-size: 16px;
  min-height: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-transform: uppercase;
}

#resize #menu li:hover {
  background: #fff;
}

#resize #menu li:hover a {
  color: #fff;
  transition: all 0.3s ease-out;
}

#resize #menu li a {
    color: #fff;
    position: relative;
    top: 10px;
}

#resize.active {
  visibility: visible;
  opacity: 0.99;
}

@media (max-width: 768px) {
  #toggle {
    visibility: visible;
    opacity: 1;
  }
  #menu {
    display: none;
  }
}

@media (min-width: 768px) {
  #resize {
    visibility: hidden !important;
  }
}
/* Termina menú móvil */

#menuP {
    position: absolute;
}
.menuP {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: rgba(0,56,116,.1);
    padding: 10px 20px;
}
.menuP img {
    height: 50px;
}
.menuP_ a {
    font-size: 12px;
    font-weight: 500;
    color: #C7E8FB;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
}
.menuP_ a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}


/* Secc. Head Menu */
#headM {
    width: 100%;
    padding: 20px 0 50px 0;
    margin: 0 auto;
}
#headM button {
    border: 1px solid #000;
    border-radius: 25px;
    background: transparent;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin: 5px 0;
    cursor: pointer;
}
#headM button:hover {
    background: #000;
    color: #00C9FF;
    transition: 300ms;
}
#headM a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}
#headM a:hover {
    color: #03B0FF;
    transition: 300ms;
}
.headM_blk {
    width: 49.5%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.headM_style {
    text-align: right;
}
.headLogo1 {
    vertical-align: top;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ccc;
}
.separa-logo {
    padding: 16px 20px;
}
.headM_logo img {
    height: 60px;
}
.headM_logo1 img {
    height: 40px;
}
@media (width <= 1024px) {
    .headM_blk {
        width: 100%;
    }
    .headM_style {
        text-align: left;
        padding-top: 40px;
    }
    .headM_logo img {
        height: 40px !important;
    }
    .headM_logo1 img {
        height: 35px;
    }
}


/* Secc. HeadTit */
#headTit {
    background: #E6E6E6;
    width: 100%;
}
#headTit h1 {
    font-size: 90px;
    font-weight: 500;
    color: #000;
    letter-spacing: -4px;
    line-height: .9em;
    margin: 0;
}
#headTit h2 {
    font-size: 25px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
.headTit_ {
    padding: 15px 0;
    border-bottom: 1px solid #000;
}
.headTit_blk1 {
    width: 70px;
    display: inline-block;
    vertical-align: top;
    padding-top: 5px;
    margin: 0;
}
.headTit_blk2 {
    width: 90%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
@media (width <= 1024px) {
    #headTit h1 {
        font-size: 33px;
        letter-spacing: -1.5px;
    }
    #headTit h2 {
        font-size: 20px;
    }
}


/* Secc. Renovamos */
#renovamos {
    background: #A4C3FF;
    padding: 20px 0;
}
#renovamos h2 {
    font-size: 25px;
    font-weight: 300;
    color: #000;
    margin: 0;
}
@media (width <= 1024px) {
    #renovamos h2 {
        font-size: 18px;
        font-weight: 700;
    }
}


/* Secc. Blue */
#cta_blue {
    background: #000;
    margin-bottom: 10px;
}
.cta_blue_bgAlt {
    background: transparent url('../images/bg-01a.jpg') no-repeat center right;
}
.cta_blue {
    padding: 50px 0;
    color: #fff;
    letter-spacing: -0.5px;
}
.cta_blue h2 {
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 50px;
}
.cta_blue h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta_blue p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
}
.cta_blue ul {
    padding-left: 18px;
    margin-bottom: 50px;
}
.cta_blue li {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}
.cta_blue_blk {
    width: 65%;
    padding-right: 80px;
}
#cta_blue button {
    border: 1px solid #FFCB32;
    background: #FFCB32;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin: 0;
    cursor: pointer;
}
#cta_blue button:hover {
    background: #EBB71E;
    color: #000;
    transition: 300ms;
}
@media (width <= 1024px) {
    .cta_blue_blk {
        width: 100%;
        padding-right: 0;
        padding-top: 350px;
    }
    .cta_blue_bgAlt {
        background: transparent url('../images/bg-01.jpg') no-repeat top center;
        background-size: 100%;
    }
    .cta_blue h2 {
        font-size: 60px;
        line-height: 1.1em;
    }
    .cta_blue h3 {
        font-size: 20px;
    }
    .cta_blue li {
        font-size: 20px;
    }
}



/* Secc. Servicios */
#servicio {
    background: #E1EBFF;
    margin-bottom: 10px;
}
.servicio {
    padding: 0;
    color: #000;
    letter-spacing: -0.5px;
}
.servicio h2 {
    font-size: 60px;
    font-weight: 100;
    line-height: 1em;
    margin-bottom: 20px;
}
.servicio h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}
.servicio p {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}
.servicio_blk1 {
    width: 35%;
    display: inline-block;
    vertical-align: top;
    padding-top: 40px;
    margin: 0;
}
.servicio_blk2 {
    width: 62%;
    display: inline-block;
    vertical-align: top;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    margin: 0;
}
.servicio_blk2_a {
    width: 100%;
    padding: 30px 30px 30px 60px;
    border-bottom: 1px solid #fff;
    margin: 0;
}
.servicio_blk2_a1 {
    width: 120px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.servicio_blk2_a2 {
    width: 80%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.servicio_blk2_b {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    min-height: 320px;
    padding: 50px 30px 50px 30px;
    margin: 0;
}
.servicio_blk2_b img {
    margin-bottom: 10px;
}
.servicio_blk_sty1 {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.servicio_blk_sty1a {
    border-bottom: 1px solid #fff;
}
@media (width <= 1024px) {
    .servicio {
        padding-bottom: 50px;
    }
    .servicio_blk1 {
        width: 100%;
        padding-bottom: 40px;
        border-bottom: 1px solid #fff;
    }
    .servicio_blk2 {
        width: 100%;
    }
    .servicio_blk2_a {
        padding: 30px 30px 30px 40px;
    }
    .servicio_blk2_b {
        width: 100%;
        padding: 40px;
        height: auto;
        border: none;
        border-bottom: 1px solid #fff;
    }
    .servicio_blk_sty1b {
        display: none;
    }
}



/* Secc. Testimoniales */
#testimonio {
    background: #E6E6E6;
    width: 100%;
    margin-bottom: 10px;
}
#testimonio h2 {
    font-size: 70px;
    font-weight: 300;
    color: #000;
    letter-spacing: -4px;
    line-height: .9em;
    margin: 0;
}
#testimonio h3 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
#testimonio h4 {
    font-size: 14px;
    font-weight: 100;
    color: #000;
    margin: 0;
}
#testimonio p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}
.testimonio_ {
    padding: 15px 0;
    border-bottom: 1px solid #000;
}
.testimonio_sty {
    width: 100%;
    padding: 40px 0;
}
.testimonio_blk {
    width: 33%;
    height: 380px;
    display: inline-block;
    vertical-align: top;
    padding: 50px;
    text-align: center;
    margin: 0;
}
.testimonio_blk_sty {
    border-right: 1px solid #000;
}
.testimonio_img {
    border-radius: 50%;
    padding: 5px;
    border: 1px solid #666;
}
.testimonio_q {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    padding: 20px 0;
    text-align: center;
}
.testimonio_star {
    margin: 5px;
}
@media (width <= 1024px) {
    #testimonio h2 {
        font-size: 60px;
        letter-spacing: -1px;
    }
    #testimonio h3 {
        font-size: 35px;
    }
    .testimonio_blk {
        width: 100%;
    }
    .testimonio_blk_sty {
        border-right: 0;
    }
}



/* Secc. CTA Transformar tu negocio */
#ctaTrans {
    background: #000 url('../images/bg-02.jpg') no-repeat top center fixed;
    background-size: cover;
    padding-top: 40%;
    margin: 0;
}
#ctaTrans h2 {
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -3px;
    line-height: .9em;
    margin: 0;
}
#ctaTrans h3 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 30px;
}
#ctaTrans p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaTrans button {
    border: 1px solid #fff;
    background: #fff;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin: 0;
    cursor: pointer;
}
#ctaTrans button:hover {
    background: #000;
    color: #fff;
    transition: 300ms;
}
.ctaTrans_ {
    background: rgba(0,0,0,.75);
    padding: 25px 0;
    border-bottom: 1px solid #fff;
}
.ctaTrans_sty {
    text-align: center;
}
.ctaTrans1_ {
    background: rgba(0,0,0,.75);
    padding: 0;
    border-bottom: 1px solid #fff;
}
.ctaTrans_blk {
    width: 33%;
    height: 300px;
    display: inline-block;
    vertical-align: top;
    padding: 50px 20px;
    margin: 0;
}
.ctaTrans_blk_sty {
    border-right: 1px solid #fff;
}
@media (width <= 1024px) {
    #ctaTrans {
        background: #000 url('../images/bg-02.jpg') no-repeat top center;
        background-size: 100%;
        padding-top: 80%;
    }
    #ctaTrans h2 {
        font-size: 60px;
        letter-spacing: -1px;
        line-height: 1em;
    }
    .ctaTrans_blk {
        width: 100%;
        height: auto;
        padding: 0;
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .ctaTrans_blk_sty {
        border-right: 0;
    }
                
}


/* Secc. CTA2 */
#cta2 {
    background: #000 url('../images/bg-03.jpg') no-repeat top center fixed;
    background-size: cover;
    padding-top: 40%;
    margin: 0;
}
#cta2 h2 {
    font-size: 70px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -3px;
    line-height: .9em;
    margin: 0;
}
#cta2 p {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
.cta2_ {
    background: rgba(0,0,0,1);
    padding: 25px 0;
    border-bottom: 1px solid #fff;
}


/* Secc. CTA3 */
#cta3 {
    background: #000 url('../images/bg-04.jpg') no-repeat top center fixed;
    background-size: cover;
    height: 600px;
    margin: 0;
}


/* Secc. Descripción de DaaS */
#descrip {
    background: #000;
    margin-bottom: 10px;
}
.descrip {
    padding: 80px 0;
}
.descrip h2 {
    font-size: 35px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.1em;
    margin-bottom: 40px;
}
.descrip p {
    font-size: 20px;
    font-weight: 300;
    color: #ccc;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.descrip_blk {
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
    padding-right: 40px;
    margin: 0;
}
@media (width <= 1024px) {
    .descrip_blk {
        width: 100%;
        margin-bottom: 80px;
    }
    .descrip p {
        font-size: 18px;
    }
}


/* Secc. FAQ */
#faq {
    background: #B7CFFF;
    margin-bottom: 10px;
}
.faq {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
}
.faq h2 {
    font-size: 70px;
    font-weight: 700;
    color: #000;
    letter-spacing: -3px;
    line-height: 1.2em;
    margin: 0;
}
.faq h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.faq p {
    font-size: 26px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
@media (width <= 1024px) {
    .faq h2 {
        font-size: 50px;
    }
    .faq h3 {
        font-size: 25px;
    }
    .faq p {
        font-size: 20px;
    }
}



/* Secc. CTA Video */
#ctaVideo {
    background: #E6E6E6;
    width: 100%;
    margin-bottom: 10px;
}
#ctaVideo h2 {
    font-size: 70px;
    font-weight: 300;
    color: #000;
    letter-spacing: -3px;
    line-height: .9em;
    margin: 0;
}
#ctaVideo h3 {
    font-size: 50px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaVideo h4 {
    font-size: 40px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaVideo h5 {
    font-size: 30px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaVideo p {
    font-size: 22px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaVideo a {
    text-decoration: none;
    color: #000;
}
#ctaVideo a:hover {
    color: #03B0FF;
}
#ctaVideo button {
    border: 1px solid #000;
    background: #000;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin: 30px 0;
    cursor: pointer;
}
#ctaVideo button:hover {
    background: #fff;
    color: #000;
    transition: 300ms;
}
.ctaVideo {
    padding-bottom: 30px;
}
.ctaVideo_ {
    padding: 25px 0;
    border-bottom: 1px solid #000;
}
.benef {
    padding: 40px 0;
}
.benef_blk {
    width: 19.5%;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    margin: 0;
}
.benef_style {
    border-right: 1px solid #ccc;
}
.benef_blk h2 {
    font-size: 70px !important;
    font-weight: 700 !important;
    color: #ccc !important;
    letter-spacing: -3px;
    line-height: .9em;
    margin-bottom: 20px !important;
}
.benef_blk p {
    font-size: 20px !important;
    font-weight: 300;
    color: #000 !important;
    letter-spacing: -0.3px;
    margin: 0;
}
.ctaVideo_blk {
    width: 100%;
    border: 1px solid #000;
    padding: 0;
    margin: 80px 0 50px 0;
}
.ctaVideo_blk_ {
    width: 33%;
    height: 220px;
    display: inline-block;
    vertical-align: top;
    padding: 50px 20px;
}
.ctaVideo_blk_ img {
    margin-right: 40px;
}
.ctaVideo_blk_sty {
    border-right: 1px solid #000;
}
#ctaVideo iframe {
    width: 1200px;
    height: 672px;
    border: 1px solid #000;
    border-radius: 5px;
    margin: 20px 0 80px 0;
}
@media (width <= 1024px) {
    #ctaVideo iframe {
        width: 100%;
        height: 210px;
    }
    #ctaVideo h2 {
        font-size: 60px;
        letter-spacing: -2px;
        line-height: 1em;
    }
    #ctaVideo h3 {
        font-size: 40px;
    }
    .ctaVideo_blk_ {
        width: 100%;
        height: auto;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .ctaVideo_blk_sty {
        border-right: 0;
    }
    .benef_blk {
        width: 100%;
    }
    .benef_style {
        border: none;
        border-bottom: 1px solid #ccc;
    }
        
}


/* Secc. Seguridad */
#security {
    background: #000;
    margin-bottom: 10px;
}
#security h2 {
    font-size: 70px;
    font-weight: 300;
    color: #DB85FF;
    letter-spacing: -3px;
    line-height: .9em;
    margin: 0;
}
#security h3 {
    font-size: 22px;
    font-weight: 700;
    color: #DB85FF;
    letter-spacing: -0.3px;
    margin: 0;
}
#security h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
#security p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
.security_ {
    padding: 25px 0;
    border-bottom: 1px solid #fff;
}
.security_blk1 {
    width: 10%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.security_blk2 {
    width: 39%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.security_blk3 {
    width: 39%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
@media (width <= 1024px) {
    #security h2 {
        font-size: 60px;
        letter-spacing: -1px;
        line-height: 1em;
    }
    #security h4 {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    #security p {
        padding-bottom: 20px;
    }
    .security_blk1 {
        width: 100%;
    }
    .security_blk2 {
        width: 100%;
    }
    .security_blk3 {
        width: 100%;
    }
    
}



/* Secc. Soluciones */
#soluciones {
    background: #E6E6E6;
    margin-bottom: 10px;
    padding: 60px 0;
}
#soluciones h2 {
    font-size: 50px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 40px;
}
#soluciones ul {
    padding-left: 18px;
}
#soluciones li {
    font-size: 22px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}
.soluciones_ {
    width: 100%;
    border: 1px solid #000;
    padding: 0;
}
.soluciones_blk {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    padding: 40px;
    margin: 0;
}
.soluciones_sty {
    text-align: center;
    border-right: 1px solid #000;
}
@media (width <= 1024px) {
    #soluciones h2 {
        line-height: 1em;
        margin-top: 0;
    }
    .soluciones_blk {
        width: 100%;
    }
    .soluciones_sty {
        border-right: 0;
    }
    .soluciones_sty img {
        width: 100%;
        padding-bottom: 0;
    }
}


/* Secc. Servicios Bg1 */
#servicesBg1 {
    background: #000 url('../images/bg-03.jpg') no-repeat top left fixed;
    background-size: cover;
    height: 450px;
}
@media (width <= 1024px) {
    #servicesBg1 {
        background: #000 url('../images/bg-03.jpg') no-repeat top left;
        background-size: 160%;
        height: 450px;
    }
}


/* Secc. CTA HP - Sistemas Contino */
#ctaSC {
    background: #000;
}
#ctaSC h2 {
    font-size: 70px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -3px;
    line-height: .9em;
    margin: 0;
}
#ctaSC p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
.ctaSC_ {
    padding: 25px 0;
}
.ctaSC_sty {
    border-bottom: 1px solid #fff;
}
@media (width <= 1024px) {
    #ctaSC h2 {
        font-size: 60px;
        line-height: 1em;
    }
    
}



/* Secc. Servicios Bg1 */
#servicesBg2 {
    background: #000 url('../images/bg-04.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 450px;
}
@media (width <= 1024px) {
    #servicesBg2 {
        background: #000 url('../images/bg-04.jpg') no-repeat center center;
        background-size: 260%;
        height: 350px;
    }
}



/* Secc. CTA Footer */
#ctaF {
    background: #000;
    padding: 50px;
    border: 1px solid #000;
}
#ctaF h2 {
    font-size: 60px;
    font-weight: 100;
    color: #A4C3FF;
    letter-spacing: -3px;
    line-height: .9em;
    margin-bottom: 20px;
}
#ctaF p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
#ctaF a {
    text-decoration: none;
    color: #fff;
}
#ctaF a:hover {
    color: #03B0FF;
    text-decoration: underline;
}
#ctaF button {
    border: 1px solid #fff;
    background: #fff;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    margin-top: 20px;
    cursor: pointer;
}
#ctaF button:hover {
    background: #000;
    color: #fff;
    transition: 300ms;
}
@media (width <= 1024px) {
    #ctaF {
        padding: 40px 20px;
    }
    #ctaF h2 {
        margin-bottom: 40px;
    }
}



/* Secc. Contacto */
#contact {
    background: url('../images/bg-02.jpg') no-repeat top center;
    background-size: cover;
    height: 100vh;
}
.contact_bgAlt {
    backdrop-filter:  saturate(180%) blur(4px);
    background: rgba(0,0,0,.6);
    height: 100vh;
}
#contact h2 {
    font-size: 28px;
    font-weight: 100;
    color: #00C9FF;
    margin: 0;
}
#contact p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
#contact button {
    border: 1px solid #fff;
    background: #000;
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-top: 60px;
    cursor: pointer;
}
#contact button:hover {
    background: #fff;
    color: #000;
    transition: 300ms;
}
.contact_ {
    padding-top: 12%;
}
.contact_form {
    width: 500px;
    background: rgba(0,0,0,.6);
    border-radius: 10px;
    padding: 50px 40px;
    margin: 0 auto;
}
@media (width <= 1024px) {
    .contact_ {
        padding-top: 20%;
    }
    .contact_form {
        width: 100%;
        padding: 50px 20px;
    }
    
}



/* Secc. Form */
.formLP {
    background: transparent;
}
form {
    padding: 20px 0;
    padding-top: 40px;
}
.formLP h2 {
    font-size: 35px;
    font-weight: 100;
    color: #00C9FF;
    line-height: 1.2em;
    letter-spacing: -.01em;
    margin: 0;
}
.formLP h3 {
    font-size: 35px;
    font-weight: 300;
    color: #202020;
    line-height: 1.2em;
    letter-spacing: -.01em;
    margin-bottom: 20px;
}
.formLP input, textarea {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 10px 20px;
    background: rgba(255,255,255, .1);
    margin: 2px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}
input::placeholder { color: #fff; opacity: .8; }
textarea::placeholder { color: #fff; opacity: .8; }
select::placeholder { color: #fff; opacity: .8; }
.formLP_req_ {
    border-left: 3px solid #ff9900 !important;
}
input:focus { border: 1px solid #ff9900; }
input[type=submit] {
    width: 100%;
    border: 1px solid #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
    /*background: rgba(255,255,255, .2);*/
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 20px;
    cursor:pointer;
}
input[type=submit]:hover {
    border: 1px solid #ffc100;
    background-color: #ffc100;
    color: #fff;
    transition: 300ms;
}
.formLP_req {
    border-left: 3px solid #ff9900;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}
.formLP_legal1 a {
    font-size: 12px;
    font-weight: 300;
    color: #ccc;
    text-decoration: none;
    margin: 0;
}
.formLP_legal1 a:hover {
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
}
@media only screen and (max-width: 768px) {
    .formLP {
        margin-bottom: 20px;
        padding: 20px 0;
        padding-right: 40px;
    }
}


.required_ {
    border-left: 2px solid #ff9900 !important;
}
.required_txt {
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
    border-left: 5px solid #ff9900 !important;
    padding-left: 10px;
    margin: 10px 0;
}



.galery_close {
    position: absolute;
    top: 15%;
    right: 5%;
    z-index: 99;
  }
  .galery_close a {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
  }
  .galery_close a:hover {
    text-decoration: none;
    opacity: 0.9;
  }
  



/* Footer */
footer {
    background-color: #000;
    border-top: 1px solid #fff;
    padding: 50px 0;
}
footer ul {
    padding-left: 18px;
}
footer li {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}
footer h2 {
    font-size: 40px;
    font-weight: 100;
    color: #fff;
    margin: 0;
}
footer p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
footer a {
    text-decoration: none;
    color: #fff;
}
footer a:hover {
    color: #00C9FF;
}
.footer_blk {
    width: 33%;
    height: 200px;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    margin: 0;
}
.footer_blk img {
    margin: 10px;
    height: 50px;
}
.footer_sty {
    border-right: 1px solid #fff;
}
@media (width <= 1024px) {
    .footer_blk {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }
    .footer_sty {
        border-right: 0;
    }
}



/* Secc. CopyRight */
#footerB {
    background: #fff;
    padding: 20px 0;
}
#footerB p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin: 0;
}
#footerB a {
    text-decoration: none;
    color: #000;
}
#footerB a:hover {
    color: #03B0FF;
}



/* Whatsapp */
.whatssapp_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.whatss_float {
    display: scroll;
    position: fixed;
    bottom: 100px;
    right: 20px;
}



/* Contacto */
.contact_img {
    width: 40px !important;
    height: 166px !important;
    float: right;
}
.contact_float {
    display: scroll;
    position: fixed;
    bottom: 300px;
    right: 0px;
}



.spaceH300 {
    height: 300px;
}
.spaceH220 {
    height: 220px;
}
.spaceH160 {
    height: 160px;
}
.spaceH150 {
    height: 150px;
}
.spaceH140 {
    height: 140px;
}
.spaceH120 {
    height: 120px;
}
.spaceH100 {
    height: 100px;
}
.spaceH80 {
    height: 80px;
}
.spaceH60 {
    height: 60px;
}
.spaceH50 {
    height: 50px;
}
.spaceH40 {
    height: 40px;
}
.spaceH20 {
    height: 20px;
}
