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;
}


.content {
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .content {
        width: 100% !important;
        padding: 0 20px !important;
        padding-bottom: 100px;
    }
}


/* Menú principal superior */
#navbarHead {
    width: 100%;
    color: #fff;
    backdrop-filter:  saturate(180%) blur(10px);
    background: linear-gradient(90deg, rgba(0,0,0, .9), rgba(0,0,0, .5));
    /*background-color: rgba(0,0,0,.5);*/
    padding: 10px 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: 40px;
    position: absolute;
    left: 20px;
    margin-top: 10px;
}
@media (width <= 1024px) {
    #navbarHead {
        height: 80px;
    }
    .menuLogo img {
        height: 40px;
        margin-top: 10px;
    }
}
#menu {
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    text-align: right;
    font-size: 14px;
    font-weight: 300;
}
#menu span {
    font-size: 12px;
    font-weight: 700;
}
#menu ul {
    margin: 10px 0;
}
#menu li {
    list-style-type: none;
    display: inline;
    margin-left: 20px;
}
#menu a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
#menu a:hover {
    color: #42C800;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #42C800;
}


.headmail {
    font-size: 14px !important;
    text-decoration: none !important;
    color: #fff;
    font-weight: 300 !important;
    margin: 0;
}
.menu_botTel {
    background: linear-gradient(90deg, #42C800, #008F24);
    color: #000 !important;
    padding: 4px 15px;
    border-radius: 20px;
}
.menu_botTel:hover {
    background: #42C800;
    border-bottom: 0px !important;
}
@media (width <= 1024px) {
    .headmail {
        font-size: 20px !important;
    }
    .menu_botTel {
        font-weight: 300 !important;
        padding: 4px 15px !important;
        border-radius: 5px;
        margin: 5px 0 !important;
    }
}


/* Submenú */
.menu-item {
  position: relative;
}
.submenu {
  position: absolute;
  top: 80%;
  left: -40px;
  background-color: rgba(6, 51, 92, 0.8);
  color: white;
  list-style: none;
  padding: 8px 10px;
  display: none;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.submenu li {
  margin: 5px 10px;
  font-weight: 700;
}
.submenu li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300 !important;
  text-align: left;
  display: block;
  padding: 5px 10px;
}
.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: 300ms;
}
.menu-item:hover .submenu {
  display: block;
}


/* 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: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  display: table;
  font-size: 14px;
  font-weight: 500;
}

#resize #menu {
  display: table-cell;
  vertical-align: middle;
  background-color: rgba(0,0,0,.3);
}

#resize ul {
    padding: 25% 30px 0px 50px;
}
#resize li {
    list-style: none;
    color: #fff;
    padding-bottom: 15px;
}
#resize a {
    font-size: 18px;
    font-weight: 100;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
}
#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. Carousel Head */
#carouselHead {
  background: #ccc;
  height: 800px;
  margin-bottom: 10px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative; /* Añadido para posicionar los botones y los indicadores */
  height: 800px; /* En caso de que el slide sea código */
}
.carousel-slide {
  display: none;
}
/* Activar en caso de que el slide sea pura imagen  */
/*
.carousel-slide img {
    width: 100%;
    height: auto;
}
*/
.active {
  display: block;
}
/* Estilos para los indicadores (dots) */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: #717171;
}
.prev {
  position: absolute;
  left: 50px;
  bottom: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.next {
  position: absolute;
  left: 80px;
  bottom: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.prev img {
  height: 30px;
}
.next img {
  height: 30px;
}


/* Secc. Slide Crea */
#slide1 {
  background: transparent url("../images/bg-pylsa-01.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}
#slide2 {
  background: transparent url("../images/bg-pylsa-02a.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}
#slide3 {
  background: transparent url("../images/bg-pylsa-03a.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}
#slide4 {
  background: transparent url("../images/bg-pylsa-04.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}
#slide5 {
  background: transparent url("../images/bg-pylsa-05b.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}
#slide6 {
  background: transparent url("../images/bg-pylsa-06.png") no-repeat top center;
  background-size: cover;
  height: 800px;
}

.slideImprime-1 img {
  display: inline-block;
}
.slideImprime-logo-alt-01 {
  width: 80px;
  margin-left: 40px;
  margin-bottom: 60px;
}

.slide-bg-alt {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  background-size: 100%;
  height: 800px;
}
.slide-bg-alt-1 {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  background-size: 100%;
  height: 800px;
}
.slide-bg-alt-2 {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  background-size: 100%;
  height: 800px;
}
.slideContent {
  padding-top: 12%;
  padding-bottom: 100px;
  margin-left: 8%;
  margin-right: 20%;
}
.slideContent h1 {
  font-size: 75px;
  font-weight: 100;
  color: #fff;
  line-height: 1em;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.slideContent h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  letter-spacing: -.5px;
  margin: 0;
}
.slideContent p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1em;
  letter-spacing: -0.3px;
  margin: 0;
}
.slideContent button {
  border: 1px solid #fff;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 40px;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.slideContent button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #000;
    transition: 300ms;
}
.slideContent_img {
    height: 30px;
}
.slideContent_blk1 {
    width: 40px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.slideContent_blk2 {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
}
.img_100 {
    display: none;
}
@media only screen and (max-width: 768px) {
  .slideContent {
    padding-top: 30%;
    margin-left: 8%;
    margin-right: 8%;
  }
  .slideContent h1 {
    font-size: 46px;
    line-height: 1.1em;
  }
  .slideContent h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .slideContent p {
    padding-right: 40%;
    font-size: 16px;
    padding-top: 20px;
  }
  .slideContent button {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
  }
  .slideContent_media {
    margin-top: 60px !important;
  }
  .slide-bg-alt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  }
  .slide-bg-alt-1 {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  }
  .slide-bg-alt-2 {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  }
  #slide1 {
    background: transparent url("../images/bg-pylsa-01.png") no-repeat top left;
    background-size: cover;
  }
  #slide2 {
    background: transparent url("../images/bg-pylsa-02a.png") no-repeat top right;
    background-size: cover;
  }
  #slide3 {
    background: transparent url("../images/bg-pylsa-03a.png") no-repeat top center;
    background-size: cover;
  }
  #slide4 {
    background: transparent url("../images/bg-pylsa-04.png") no-repeat top center;
    background-size: cover;
  }
  #slide5 {
    background: transparent url("../images/bg-pylsa-05b.png") no-repeat top center;
    background-size: cover;
  }
  #slide6 {
    background: transparent url("../images/bg-pylsa-06.png") no-repeat top left;
    background-size: cover;
  }
  .img_100 {
    display: block;
    width: 260px;
    height: auto;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1800px) {
  #slide1 {
    background: transparent url("../images/bg-pylsa-01.png") no-repeat top center;
    background-size: cover;
  }
  #slide2 {
    background: transparent url("../images/bg-pylsa-02a.png") no-repeat center center;
    background-size: cover;
  }
  #slide3 {
    background: transparent url("../images/bg-pylsa-03a.png") no-repeat top center;
    background-size: cover;
  }
  #slide4 {
    background: transparent url("../images/bg-pylsa-04.png") no-repeat top center;
    background-size: cover;
  }
  #slide5 {
    background: transparent url("../images/bg-pylsa-05b.png") no-repeat top center;
    background-size: cover;
  }
  #slide6 {
    background: transparent url("../images/bg-pylsa-06.png") no-repeat center center;
    background-size: cover;
  }
  .slideContent {
    padding-top: 9%;
  }
}

.benefits {
    width: 455px;
    margin-top: 80px;
}
.benefits_blk {
    width: 24%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.benefits_blk img {
    height: 42px;
    margin-bottom: 10px;
}
.benefits_blk p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px;
    line-height: 1.1em;
    margin: 0;
}
.benefits_blk a {
    text-decoration: none;
    color: #fff;
}
.benefits_blk a:hover {
    color: #42C800 !important;
    transition: 300ms;
}
.benefits_blk_style1 {
    opacity: 30%;
}
@media (width <= 1024px) {
    .benefits {
        display: none;
    }
    .benefits {
        width: 100%;
        margin-top: 50px;
    }
    .benefits_blk img {
        height: 30px;
        margin-bottom: 0;
    }
    .benefits_blk p {
        font-size: 8x !important;
        letter-spacing: -.3px;
        line-height: 1.2em;
    }
}
@media only screen and (min-width: 1800px) {}



/* Sección Head */
#headTit {
    background: #fff;
}
.headTit {
    padding-top: 80px;
    padding-bottom: 10px;
}
.headTit h2 {
    font-size: 60px;
    font-weight: 100;
    color: #202020;
    text-align: center;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.headTit h3 {
    font-size: 18px;
    font-weight: 700;
    color: #202020;
    text-align: center;
    line-height: 1em;
    letter-spacing: -.3px;
    margin: 0;
}
.headTit_promo {
    width: 576px;
    display: inline-block;
    vertical-align: top;
    margin-top: 80px;
    margin-bottom: 40px;
}
.headTit_promo_ {
    width: 40px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.headTit_promo h2 {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    text-align: left;
    letter-spacing: -.5px;
    line-height: 1em;
    margin-bottom: 10px;
}
.headTit_promo h3 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    text-align: left;
    letter-spacing: -.3px;
    line-height: 1.1em;
    margin: 0;
}
.headTit_promo p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    letter-spacing: -.3px;
    line-height: 1.1em;
    padding: 20px;
    margin: 0;
}
.headTit_promo a {
    text-decoration: none;
    color: #008F24;
}
.headTit_promo a:hover {
    color: #42C800;
}
.headTit_promo button {
  border: 1px solid #fff;
  border-radius: 0;
  background: rgba(255,255,255, 0.3);
  padding: 8px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.headTit_promo button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #000;
    transition: 300ms;
}
.headTit_promo1 {
    background: #000 url('../images/bg-banner-pylsa-03.png') no-repeat top center;
    background-size: 100%;
    border-radius: 20px;
    height: 267px;
}
.headTit_promo2 {
    background: #000 url('../images/bg-banner-pylsa-04.png') no-repeat top center;
    background-size: 100%;
    border-radius: 20px;
    height: 267px;
}
.headTit_promo1_bgAlt_1 {
    background: linear-gradient(-45deg, rgba(0,0,0,.01), rgba(0,0,0,.01));
    padding: 20px;
    border-radius: 20px;
    height: 267px;
}
.headTit_promo1_bgAlt_2 {
    background: linear-gradient(-90deg, rgba(0,0,0,.1), rgba(0,0,0,.7));
    padding: 20px;
    border-radius: 20px;
    height: 267px;
}
@media (width <= 1024px) {
    .headTit h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }
    .headTit h3 {
        margin-bottom: 80px;
    }
    .headTit_promo {
        width: 100%;
        margin-top: 0;
    }
    .headTit_promo_ {
        display: none;
    }
    .headTit_promo h2 {
        font-size: 35px;
    }
    .headTit_promo h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    .headTit_promo1 {
        background: #000 url('../images/bg-banner-pylsa-03a.png') no-repeat top right;
        background-size: 120%;
    }
    .headTit_promo2 {
        background: #000 url('../images/bg-banner-pylsa-04a.png') no-repeat top center;
        background-size: 120%;
    }
}


#menuBody {
    background: #fff;
    margin-bottom: 50px;
}
.menuBody {
    text-align: center;
}
.menuBody p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.menuBody a {
    text-decoration: none;
    color: #fff;
}
.menuBody a:hover {
    color: #42C800;
    transition: 300ms;
}
.menuBody_blk {
    width: 236px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.menuBody_blk_style {
    padding-right: 5px;
}
.menuBodyHead_1 { background: #000 url('../images/bg-menu-pylsa-01.png') no-repeat center center; }
.menuBodyHead_2 { background: #000 url('../images/bg-menu-pylsa-02.png') no-repeat center center; }
.menuBodyHead_3 { background: #000 url('../images/bg-menu-pylsa-03.png') no-repeat center center; }
.menuBodyHead_4 { background: #000 url('../images/bg-menu-pylsa-04.png') no-repeat center center; }
.menuBodyHead_5 { background: #000 url('../images/bg-menu-pylsa-05.png') no-repeat center center; }
.menuBodyHead_ {
    background-size: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 120px;
    margin-bottom: 1px;
}
.menuBodyHead_:hover {
    background-size: 103%;
    transition: 300ms;
}
.menuBodyHead_0 {
    background: #000;
    padding: 20px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}
.menuBodyHead_0 p:hover {
    color: #42C800;
}
@media (width <= 1024px) {
    .menuBody_blk {
        width: 100%;
        margin-bottom: 20px;
    }
}


#seccPromo {
    background: transparent;
    margin: 40px 0;
}
.seccPromo_img_2 {
    display: none;
}
@media (width <= 1024px) {
    .seccPromo_img_1 {
        display: none;
    }
    .seccPromo_img_2 {
        display: block;
    }
    .seccPromo img {
        width: 100%;
    }
}



#catalogoProd {
    background: #F5F5F7;
    margin-bottom: 10px;
}
.catalogoProd {
    padding: 60px 0;
}
.catalogoProd h2 {
    font-size: 60px;
    font-weight: 100;
    color: #202020;
    text-align: center;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.catalogoProd h3 {
    font-size: 18px;
    font-weight: 700;
    color: #202020;
    text-align: center;
    line-height: 1em;
    letter-spacing: -.3px;
    margin-bottom: 50px;
}
.catalogoProd p {
    font-size: 14px;
    font-weight: 300;
    color: #202020;
    text-align: center;
    line-height: 1em;
    letter-spacing: -.3px;
    margin: 0;
}
.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 30px;
  gap: 20px;
}
.tab {
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  cursor: pointer;
  font-weight: 300;
  color: #333;
  position: relative;
}
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
/* Centrado del grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrar horizontalmente */
  gap: 20px;
}
.product-card {
  background: #fff;
  width: 224px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.product-card img:hover {
    opacity: 90%;
}
.product-card p {
  margin: 10px;
  font-weight: 500;
  text-align: left;
}
.buttons {
  display: flex;
  justify-content: space-between;
  padding: 0 10px 10px;
}
.buttons a {
  text-decoration: none;
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #666;
  background: #fafafa;
  transition: 0.3s;
}
.buttons a:hover {
  background: #f4f4f4;
  color: #202020;
}
/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease;
}
@media (width <= 1024px) {
    .catalogoProd h2 {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .catalogoProd h3 {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .catalogoProd p {
        font-size: 16px;
    }
    .tab {
        font-size: 16px;
    }
    .product-card {
        width: 100%;
        margin-bottom: 20px;
    }
}



#casos {
    background: #fff;
    margin-bottom: 10px;
}
.casos {
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: center;
}
.casos h2 {
    font-size: 60px;
    font-weight: 100;
    color: #202020;
    text-align: center;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.casos h3 {
    font-size: 18px;
    font-weight: 700;
    color: #202020;
    text-align: center;
    line-height: 1em;
    letter-spacing: -.3px;
    margin-bottom: 50px;
}
.casos h4 {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
    text-align: left;
    letter-spacing: -.3px;
    margin: 0;
}
.casos p {
    font-size: 14px;
    font-weight: 300;
    color: #202020;
    text-align: left;
    letter-spacing: -.3px;
    margin: 0;
}
.casos_blk {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    margin: 40px 20px;
}
.casos_blk img {
    width: 90px;
}
.casos_blak_1 {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.casos_blak_2 {
    width: 72%;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    margin: 0;
}
@media (width <= 1024px) {
    .casos h2 {
        font-size: 45px;
        letter-spacing: -.9px;
        margin-bottom: 20px;
    }
    .casos_blk {
        width: 100%;
        margin: 40px 0px;
    }
}



#mosaico {
    background: #000;
    margin: 0;
}
.mosaico {
    padding-bottom: 10px;
    text-align: center;
}
.mosaico img {
    display: inline-block;
    height: 150px;
}
.mosaico-container {
  overflow: hidden;
  width: 100%;
}
.mosaico-track {
  display: flex;
  gap: 1px;
  animation: scroll 60s linear infinite;
}
.mosaico-track:hover {
  animation-play-state: paused;
}
.mosaico-track img {
  height: 150px;
  width: auto;
  flex-shrink: 0;
  user-select: none;
  pointer-events: auto;
}
/* Animación de desplazamiento infinito */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


#cobertura {
    background: #000;
    margin-bottom: 10px;
}
.cobertura {
    padding: 60px 0;
}
.cobertura_blk1 {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    padding-top: 20px;
    padding-right: 40px;
    margin: 0;
}
.cobertura_blk1 h2 {
    font-size: 60px;
    font-weight: 100;
    color: #42C800;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 20px;
}
.cobertura_blk1 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2em;
    letter-spacing: -.3px;
    margin-bottom: 20px;
}
.cobertura_blk2 {
    width: 66%;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    padding: 0 0 20px 50px;
    margin: 0;
}
.cobertura_blk2_style {
    border-left: 1px solid #3E3E3E;
}
.dataSuc {
    width: 90%;
}
.dataSuc h2 {
    font-size: 18px;
    font-weight: 700;
    color: #42C800;
    letter-spacing: -.3px;
    margin: 10px 0;
}
.dataSuc p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    margin: 0;
}
.dataSuc a {
    text-decoration: none;
    color: #fff;
}
.dataSuc a:hover {
    color: #42C800;
    transition: 300ms;
}
.dataSuc ul {
    padding-left: 18px;
}
.dataSuc li {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    margin: 0;
}
.dataSuc hr {
    border: none;
    border-top: 1px solid #666;
    margin: 10px 0;
}
.dataSuc img {
    display: inline-block;
    margin: 0 5px;
}
.dataSuc_blk1 {
    width: 69%;
    display: inline-block;
    vertical-align: top;
    padding-right: 40px;
    margin: 0;
}
.dataSuc_blk2 {
    width: 29%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.sucEstados_blk {
    width: 22%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 30px 8px;
}
.sucEstados_blk h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -.9;
    line-height: 1em;
    margin-bottom: 10px;
}
.sucEstados_blk h3 {
    font-size: 16px;
    font-weight: 700;
    color: #999;
    letter-spacing: -.3;
    line-height: 1em;
    margin: 0;
}
.sucEstados_blk button {
  border: 1px solid #999;
  border-radius: 3;
  background: transparent;
  width: 140px;
  padding: 8px 5px;
  margin-top: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #999;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.sucEstados_blk button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #000;
    transition: 300ms;
}
@media (width <= 1024px) {
    .cobertura_blk1 {
        width: 100%;
        padding-right: 0;
    }
    .cobertura_blk1 h2 {
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
    }
    .cobertura_blk1 h3 {
        text-align: center;
    }
    .cobertura_blk2 {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .cobertura_blk2_style {
        border-left: none;
    }
    .dataSuc {
        width: 100%;
        margin-bottom: 40px;
    }
    .dataSuc h2 {
        font-size: 18px;
        text-align: inherit;
    }
    .sucEstados_blk {
        width: 43%;
    }
}


#certificates {
    background: #F5F5F7;
    margin-bottom: 10px;
}
.certificates {
    padding: 50px 0;
    color: #202020;
}
.certificates h2 {
    font-size: 60px;
    font-weight: 100;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin: 0;
}
.certificates p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -.3px;
    margin: 0;
}
.certificates hr {
    border: none;
    border-top: 1px solid #666;
    margin: 30px 0;
}
.certificates_blk1 {
    width: 35%;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    padding-right: 40px;
    margin: 0;
}
.certificates_blk2 {
    width: 64%;
    display: inline-block;
    vertical-align: middle;
    min-width: 300px;
    padding-left: 60px;
    margin: 0;
}
.certificates_blk2 img {
    display: inline-block;
    margin: 20px 30px;
}
@media (width <= 1024px) {
    .certificates_blk1 {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .certificates_blk2 {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin-top: 40px;
    }
    .certificates h2 {
        font-size: 50px;
    }
    .certificates_blk2 img {
        height: 120px;
    }
}


#cta1 {
    background: #fff;
    margin-bottom: 10px;
}
.cta1 {
    background: transparent url('../images/bg-cta-01.png') no-repeat center center fixed;
    background-size: cover;
    border-radius: 20px;
    height: 600px;
    width: 100%;
    text-align: center;
    margin: 40px 0;
}
.cta1_bgAlt {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    height: 600px;
    width: 100%;
    padding-top: 15%;
}
.cta1 h2 {
    font-size: 60px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.cta1 h3 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    margin: 0;
}
.cta1 button {
  border: 1px solid #fff;
  border-radius: 3px;
  backdrop-filter:  saturate(180%) blur(10px);
  background: rgba(255,255,255, 0.3);
  width: auto;
  padding: 12px 24px;
  margin-bottom: 50px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.cta1 button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #000;
    transition: 300ms;
}
@media (width <= 1024px) {
    .cta1 {
        background: transparent url('../images/bg-cta-01.png') no-repeat center center;
    }
    .cta1_bgAlt {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        padding-top: 20%;
    }
    .cta1 h2 {
        font-size: 52px;
        letter-spacing: -.9px;
        margin-bottom: 60px;
    }
    .cta1 h3 {
        font-size: 25px;
    }
}


#suc {
    height: 100vh;
}
.suc_bg_1 { background: #000 url('../images/bg-material-pylsa-01.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_2 { background: #000 url('../images/bg-material-pylsa-02.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_3 { background: #000 url('../images/bg-material-pylsa-03.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_4 { background: #000 url('../images/bg-material-pylsa-04.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_5 { background: #000 url('../images/bg-material-pylsa-05.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_6 { background: #000 url('../images/bg-material-pylsa-06.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_7 { background: #000 url('../images/bg-material-pylsa-07.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bg_8 { background: #000 url('../images/bg-material-pylsa-08.jpg') no-repeat center center fixed; background-size: cover; }
.suc_bgAlt {
    backdrop-filter:  saturate(180%) blur(10px);
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
}
.suc_body {
    background: #000 url('../images/bg-pylsa-05a.png') no-repeat bottom center fixed;
    background-size: cover;
}
.suc {
    padding-top: 10%;
}
.suc h2 {
    font-size: 60px;
    font-weight: 100;
    color: #fff;
    text-align: center;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.suc h3 {
    font-size: 20px;
    font-weight: 700;
    color: #42C800;
    text-align: center;
    letter-spacing: -.3px;
    margin: 0;
}
.suc hr {
    border: none;
    border-top: 1px solid #666;
    margin: 40px 0;
}
.suc a {
    color: #fff;
    text-decoration: none;
}
.suc a:hover {
    color: #42C800;
    transition: 300ms;
}
.suc_blk1 {
    width: 39.5%;
    display: inline-block;
    vertical-align: top;
    padding-right: 40px;
    margin: 0;
}
.suc_blk1 h2 {
    font-size: 40px;
    font-weight: 100;
    color: #fff;
    text-align: left;
    margin: 0;
}
.suc_blk1 p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
.suc_blk1 ul {
    padding-left: 20px;
}
.suc_blk1 li {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
.suc_blk1 button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #42C800;
  max-width: 250px;
  padding: 8px 30px;
  margin-top: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.suc_blk1 button:hover {
    border: 1px solid #008F24;
    background: #008F24;
    color: #fff;
    transition: 300ms;
}
.suc_cotiza button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.5) !important;
  max-width: 250px;
  padding: 8px 30px;
  margin-top: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #42C800 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.suc_cotiza button:hover {
    border: 1px solid #008F24;
    background: #008F24;
    color: #fff;
    transition: 300ms;
}
.suc_blk1 hr {
    border: none;
    border-top: 1px solid #666;
    margin: 20px 0;
}
.suc_blk1a {
    width: 59.5%;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
    margin: 0;
}
.suc_blk1b {
    width: 39.5%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    margin: 0;
}
.sucMap {
    border: 1px solid #fff;
    border-radius: 3px;
    margin-bottom: 40px;
}
.suc_close {
    font-size: 20px;
    font-weight: 700;
    color: #666 !important;
    float: right;
    display: scroll;
    position: fixed;
    top: 140px;
    right: 80px;
}
.suc_close:hover {
    color: #fff !important;
}
.suc_blk2 {
    width: 59.5%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    margin: 0;
}
.sucData {
    width: 300px;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 50px 20px;
}
.sucData h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin: 0;
}
.sucData p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.sucData ul {
    padding-left: 20px;
}
.sucData li {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.sucData hr {
    width: 150%;
    border: none;
    border-top: 1px solid #666;
    margin: 10px 0;
}
.sucData_ico img {
    display: inline-block;
    margin: 0 5px;
}
@media (width <= 1024px) {
    .suc_bg_1 { background: #000 url('../images/bg-material-pylsa-01.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_2 { background: #000 url('../images/bg-material-pylsa-02.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_3 { background: #000 url('../images/bg-material-pylsa-03.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_4 { background: #000 url('../images/bg-material-pylsa-04.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_5 { background: #000 url('../images/bg-material-pylsa-05.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_6 { background: #000 url('../images/bg-material-pylsa-06.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_7 { background: #000 url('../images/bg-material-pylsa-07.jpg') no-repeat center center; background-size: cover; }
    .suc_bg_8 { background: #000 url('../images/bg-material-pylsa-08.jpg') no-repeat center center; background-size: cover; }
    .suc_body {
        background: #000 url('../images/bg-pylsa-05a.png') no-repeat bottom right;
        background-size: 400%;
    }
    .suc {
        padding-top: 35%;
    }
    .suc h2 {
        font-size: 50px;
    }
    .suc_blk1 {
        width: 100%;
        padding-right: 0;
    }
    .suc_blk1 h2 {
        font-size: 40px;
    }
    .suc_close {
        top: 100px;
        right: 20px;
    }
    .suc_blk1a {
        width: 59%;
    }
    .suc_blk2 {
        width: 100%;
        padding-left: 0;
        padding-top: 50px;
    }
    .sucData {
        width: 100%;
        margin: 0;
        margin: 20px 0;
    }
    .sucData h2 {
        font-size: 18px;
    }
}


#somos {
    background: #fff url('../images/bg-somos-pylsa-01.png') no-repeat top left fixed;
    background-size: cover;
    height: 100vh;
    margin-bottom: 10px;
}
.somos {
    padding-top: 18%;
    padding-right: 60%;
}
.somos h2 {
    font-size: 65px;
    font-weight: 100;
    background: linear-gradient(to right, #000, #42C800, #42C800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.9px;
    line-height: 1em;
    margin-bottom: 20px;
}
.somos h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0;
}
.somos p {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.somos button {
  border: 1px solid #000;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.somos button:hover {
    border: 1px solid #fff;
    background: #42C800;
    color: #000 !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    #somos {
        background: #fff url('../images/bg-somos-pylsa-01.png') no-repeat top center;
    }
    .somos_bgAlt {
        background: linear-gradient(-90deg, rgba(255,255,255,.01), rgba(255,255,255,.7), rgba(255,255,255,.7));
        height: 100vh;
    }
    .somos {
        padding-top: 30%;
        padding-right: 25%;
    }
    .somos h2 {
        font-size: 50px;
    }
}


#ofrece {
    /*
    backdrop-filter:  saturate(180%) blur(10px);
    background: rgba(0, 0, 0, 0.3);
    */
    background: #f9f9f9;
    margin-bottom: 40px;
}
.ofrece {
    padding: 50px 0;
}
.ofrece h2 {
    font-size: 58px;
    font-weight: 100;
    color: #000;
    letter-spacing: -0.9px;
    line-height: 1em;
    padding-top: 40px;
    margin: 0;
}
.ofrece h3 {
    font-size: 30px;
    font-weight: 100;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.1em;
    padding-top: 40px;
    margin-bottom: 30px;
}
.ofrece p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.ofrece_blk1 {
    width: 39.5%;
    display: inline-block;
    vertical-align: top;
    min-height: 300px;
    padding: 0 30px 40px 0;
    margin: 0;
}
.ofrece_blk2 {
    width: 59.5%;
    display: inline-block;
    vertical-align: top;
    min-height: 300px;
    padding: 0 20px 40px 40px;
    border-left: 1px solid #ccc;
    margin: 0;
}
.ofrece_blk2_ {
    width: 21.5%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 10px;
    margin-bottom: 20px;
}
.ofrece button {
  border: 1px solid #000;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 50px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.ofrece button:hover {
    border: 1px solid #fff;
    background: #42C800;
    color: #000 !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    .ofrece {
        text-align: center;
    }
    .ofrece h2 {
        font-size: 45px;
        padding-top: 40px;
    }
    .ofrece h3 {
        font-size: 25px;
    }
    .ofrece_blk1 {
        width: 100%;
        padding: 0;
    }
    .ofrece_blk2 {
        width: 100%;
        padding: 0;
        border-left: none;
    }
    .ofrece_blk2_ {
        width: 43%;
    }
}


#bgProd-1 { background: #000 url('../images/products/perfil-planos-pylsa-alambre-recocido-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-2 { background: #000 url('../images/products/perfil-planos-pylsa-alambron-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-3 { background: #000 url('../images/products/perfil-planos-pylsa-angulos-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-4 { background: #000 url('../images/products/perfil-planos-pylsa-canales-cps-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-5 { background: #000 url('../images/products/perfil-planos-pylsa-galvateja-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-6 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-antiderrapante-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-7 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-galvanizada-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-8 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-galvarro-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-9 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-negra-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-10 { background: #000 url('../images/products/perfil-planos-pylsa-losacero-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-11 { background: #000 url('../images/products/perfil-planos-pylsa-malla-electrosoldada-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-12 { background: #000 url('../images/products/perfil-planos-pylsa-placa-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-13 { background: #000 url('../images/products/perfil-planos-pylsa-polin-monten-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-14 { background: #000 url('../images/products/perfil-planos-pylsa-regilla-irving-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-15 { background: #000 url('../images/products/perfil-planos-pylsa-solera-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-16 { background: #000 url('../images/products/perfil-planos-pylsa-tablero-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-17 { background: #000 url('../images/products/perfil-planos-pylsa-tuberia-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-18 { background: #000 url('../images/products/perfil-planos-pylsa-tuberia-estructural-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-19 { background: #000 url('../images/products/perfil-planos-pylsa-varilla-corrugada-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-20 { background: #000 url('../images/products/ptr-pylsa-galvanizado-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-21 { background: #000 url('../images/products/ptr-pylsa-perfil-tubular-galvanizado-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-22 { background: #000 url('../images/products/perfil-estructural-pylsa-canal-cps-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-23 { background: #000 url('../images/products/perfil-estructural-pylsa-cuadrado-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-24 { background: #000 url('../images/products/perfil-estructural-pylsa-hss-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-25 { background: #000 url('../images/products/perfil-estructural-pylsa-perfil-galvanizado-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-26 { background: #000 url('../images/products/perfil-estructural-pylsa-polin-monten-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-27 { background: #000 url('../images/products/perfil-estructural-pylsa-redondos-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-28 { background: #000 url('../images/products/perfil-estructural-pylsa-tuberia-estructural-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-29 { background: #000 url('../images/products/perfil-estructural-pylsa-viga-ipr-02.png') no-repeat center center fixed; background-size: cover; }
#bgProd-30 { background: #000 url('../images/products/perfil-estructural-pylsa-viga-ips-02.png') no-repeat center center fixed; background-size: cover; }

.bgProd_ {
    height: 300px;
}
.bgProd_bgAlt {
    background: rgba(0, 0, 0, 0.4);
    height: 300px;
}


#detProd {
    background: #F8F8F8;
    margin-bottom: 10px;
}
.detProd {
    padding: 0;
    position: relative;
    top: -60px;
}
.detProd_Alt {
    padding: 50px 0;
}
.detProd_blk_1 {
    width: 40.6%;
    display: inline-block;
    vertical-align: top;
    padding-right: 5px;
    margin: 0;
}
.detProd_blk_2 {
    width: 59%;
    display: inline-block;
    vertical-align: top;
    padding-left: 5px;
    margin: 0;
}

.detProd_img-1 { background: transparent url('../images/products/perfil-planos-pylsa-alambre-recocido-02.png') no-repeat center center; }
.detProd_img-2 { background: transparent url('../images/products/perfil-planos-pylsa-alambron-02.png') no-repeat center center; }
.detProd_img-3 { background: transparent url('../images/products/perfil-planos-pylsa-angulos-02.png') no-repeat center center; }
.detProd_img-4 { background: transparent url('../images/products/perfil-planos-pylsa-canales-cps-02.png') no-repeat center center; }
.detProd_img-5 { background: transparent url('../images/products/perfil-planos-pylsa-galvateja-02.png') no-repeat center center; }
.detProd_img-6 { background: transparent url('../images/products/perfil-planos-pylsa-lamina-antiderrapante-02.png') no-repeat center center; }
.detProd_img-7 { background: transparent url('../images/products/perfil-planos-pylsa-lamina-galvanizada-02.png') no-repeat center center; }
.detProd_img-8 { background: transparent url('../images/products/perfil-planos-pylsa-lamina-galvarro-02.png') no-repeat center center; }
.detProd_img-9 { background: transparent url('../images/products/perfil-planos-pylsa-lamina-negra-02.png') no-repeat center center; }
.detProd_img-10 { background: transparent url('../images/products/perfil-planos-pylsa-losacero-02.png') no-repeat center center; }
.detProd_img-11 { background: transparent url('../images/products/perfil-planos-pylsa-malla-electrosoldada-02.png') no-repeat center center; }
.detProd_img-12 { background: transparent url('../images/products/perfil-planos-pylsa-placa-02.png') no-repeat center center; }
.detProd_img-13 { background: transparent url('../images/products/perfil-planos-pylsa-polin-monten-02.png') no-repeat center center; }
.detProd_img-14 { background: transparent url('../images/products/perfil-planos-pylsa-regilla-irving-02.png') no-repeat center center; }
.detProd_img-15 { background: transparent url('../images/products/perfil-planos-pylsa-solera-02.png') no-repeat center center; }
.detProd_img-16 { background: transparent url('../images/products/perfil-planos-pylsa-tablero-02.png') no-repeat center center; }
.detProd_img-17 { background: transparent url('../images/products/perfil-planos-pylsa-tuberia-02.png') no-repeat center center; }
.detProd_img-18 { background: transparent url('../images/products/perfil-planos-pylsa-tuberia-estructural-02.png') no-repeat center center; }
.detProd_img-19 { background: transparent url('../images/products/perfil-planos-pylsa-varilla-corrugada-02.png') no-repeat center center; }
.detProd_img-20 { background: transparent url('../images/products/ptr-pylsa-galvanizado-02.png') no-repeat center center; }
.detProd_img-21 { background: transparent url('../images/products/ptr-pylsa-perfil-tubular-galvanizado-02.png') no-repeat center center; }
.detProd_img-22 { background: transparent url('../images/products/perfil-estructural-pylsa-canal-cps-02.png') no-repeat center center; }
.detProd_img-23 { background: transparent url('../images/products/perfil-estructural-pylsa-cuadrado-02.png') no-repeat center center; }
.detProd_img-24 { background: transparent url('../images/products/perfil-estructural-pylsa-hss-02.png') no-repeat center center; }
.detProd_img-25 { background: transparent url('../images/products/perfil-estructural-pylsa-perfil-galvanizado-02.png') no-repeat center center; }
.detProd_img-26 { background: transparent url('../images/products/perfil-estructural-pylsa-polin-monten-02.png') no-repeat center center; }
.detProd_img-27 { background: transparent url('../images/products/perfil-estructural-pylsa-redondos-02.png') no-repeat center center; }
.detProd_img-28 { background: transparent url('../images/products/perfil-estructural-pylsa-tuberia-estructural-02.png') no-repeat center center; }
.detProd_img-29 { background: transparent url('../images/products/perfil-estructural-pylsa-viga-ipr-02.png') no-repeat center center; }
.detProd_img-30 { background: transparent url('../images/products/perfil-estructural-pylsa-viga-ips-02.png') no-repeat center center; }

.detProd_img_ {
    background-size: 100%;
    height: 250px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}
.detProd_descrip {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 8px #ccc;
    padding: 50px 20px;
    margin-bottom: 10px;
    min-height: 366px;
}
.detProd_descrip h2 {
    font-size: 50px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 30px;
}
.detProd_descrip p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.detProd_descrip button {
  border: 1px solid #666;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.detProd_descrip button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    #bgProd-1 { background: #000 url('../images/products/perfil-planos-pylsa-alambre-recocido-02.png') no-repeat center center; background-size: cover; }
    #bgProd-2 { background: #000 url('../images/products/perfil-planos-pylsa-alambron-02.png') no-repeat center center; background-size: cover; }
    #bgProd-3 { background: #000 url('../images/products/perfil-planos-pylsa-angulos-02.png') no-repeat center center; background-size: cover; }
    #bgProd-4 { background: #000 url('../images/products/perfil-planos-pylsa-canales-cps-02.png') no-repeat center center; background-size: cover; }
    #bgProd-5 { background: #000 url('../images/products/perfil-planos-pylsa-galvateja-02.png') no-repeat center center; background-size: cover; }
    #bgProd-6 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-antiderrapante-02.png') no-repeat center center; background-size: cover; }
    #bgProd-7 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-galvanizada-02.png') no-repeat center center; background-size: cover; }
    #bgProd-8 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-galvarro-02.png') no-repeat center center; background-size: cover; }
    #bgProd-9 { background: #000 url('../images/products/perfil-planos-pylsa-lamina-negra-02.png') no-repeat center center; background-size: cover; }
    #bgProd-10 { background: #000 url('../images/products/perfil-planos-pylsa-losacero-02.png') no-repeat center center; background-size: cover; }
    #bgProd-11 { background: #000 url('../images/products/perfil-planos-pylsa-malla-electrosoldada-02.png') no-repeat center center; background-size: cover; }
    #bgProd-12 { background: #000 url('../images/products/perfil-planos-pylsa-placa-02.png') no-repeat center center; background-size: cover; }
    #bgProd-13 { background: #000 url('../images/products/perfil-planos-pylsa-polin-monten-02.png') no-repeat center center; background-size: cover; }
    #bgProd-14 { background: #000 url('../images/products/perfil-planos-pylsa-regilla-irving-02.png') no-repeat center center; background-size: cover; }
    #bgProd-15 { background: #000 url('../images/products/perfil-planos-pylsa-solera-02.png') no-repeat center center; background-size: cover; }
    #bgProd-16 { background: #000 url('../images/products/perfil-planos-pylsa-tablero-02.png') no-repeat center center; background-size: cover; }
    #bgProd-17 { background: #000 url('../images/products/perfil-planos-pylsa-tuberia-02.png') no-repeat center center; background-size: cover; }
    #bgProd-18 { background: #000 url('../images/products/perfil-planos-pylsa-tuberia-estructural-02.png') no-repeat center center; background-size: cover; }
    #bgProd-19 { background: #000 url('../images/products/perfil-planos-pylsa-varilla-corrugada-02.png') no-repeat center center; background-size: cover; }
    #bgProd-20 { background: #000 url('../images/products/ptr-pylsa-galvanizado-02.png') no-repeat center center; background-size: cover; }
    #bgProd-21 { background: #000 url('../images/products/ptr-pylsa-perfil-tubular-galvanizado-02.png') no-repeat center center; background-size: cover; }
    #bgProd-22 { background: #000 url('../images/products/perfil-estructural-pylsa-canal-cps-02.png') no-repeat center center; background-size: cover; }
    #bgProd-23 { background: #000 url('../images/products/perfil-estructural-pylsa-cuadrado-02.png') no-repeat center center; background-size: cover; }
    #bgProd-24 { background: #000 url('../images/products/perfil-estructural-pylsa-hss-02.png') no-repeat center center; background-size: cover; }
    #bgProd-25 { background: #000 url('../images/products/perfil-estructural-pylsa-perfil-galvanizado-02.png') no-repeat center center; background-size: cover; }
    #bgProd-26 { background: #000 url('../images/products/perfil-estructural-pylsa-polin-monten-02.png') no-repeat center center; background-size: cover; }
    #bgProd-27 { background: #000 url('../images/products/perfil-estructural-pylsa-redondos-02.png') no-repeat center center; background-size: cover; }
    #bgProd-28 { background: #000 url('../images/products/perfil-estructural-pylsa-tuberia-estructural-02.png') no-repeat center center; background-size: cover; }
    #bgProd-29 { background: #000 url('../images/products/perfil-estructural-pylsa-viga-ipr-02.png') no-repeat center center; background-size: cover; }
    #bgProd-30 { background: #000 url('../images/products/perfil-estructural-pylsa-viga-ips-02.png') no-repeat center center; background-size: cover; }
    .bgProd_ {
        height: 200px;
    }
    .bgProd_bgAlt {
        background: rgba(0, 0, 0, 0.6);
        height: 200px;
    }
    .detProd_blk_1 {
        width: 100%;
        padding-right: 0;
    }
    .detProd_blk_2 {
        width: 100%;
        padding-left: 0;
    }
    .detProd_descrip h2 {
        font-size: 40px;
    }
}


.cotiza {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 8px #ccc;
    padding: 0 0;
}
.cotizaHead {
    width: 100%;
    background: linear-gradient(0deg, #008F24, #42C800);
    padding: 20px 40px;
}
.cotizaHead h2 {
    font-size: 35px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0 !important;
}
.cotizaHead p {
    font-size: 20px !important;
    font-weight: 300;
    color: #fff !important;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0;
}

.cotizaForm {
    width: 100%;
    padding: 20px 40px 5px 40px;
}
.cotizaForm h4 {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-top: 20px;
}
.cotizaForm p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.cotizaForm hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}
.cotizaForm_blk1 {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
}
.cotizaForm_blk1_style1 {
    padding-right: 10px;
}
.cotizaForm_blk1_style2 {
    padding-left: 10px;
}
.cotizaForm_blk2 {
    width: 32.5%;
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
    margin-bottom: 20px;
}
.cotizaForm_blk2a_ {
    width: 18.5%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.cotizaForm_blk2b_ {
    width: 79.5%;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.cotizaForm_blk2 ul {
    padding-left: 18px;
}
.cotizaForm_blk2 li {
    list-style: none;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.cotiza_required_ {
    border-left: 5px solid #42C800;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}
.cotiza_legal a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}
.cotiza_legal a:hover {
    border-bottom: 1px solid #42C800;
    transition: 300ms;
}
.cotizaForm input, textarea, select {
    border: 1px solid #666;
    border-radius: 5px;
    padding: 10px 20px;
    background: rgba(255,255,255, .8);
    margin: 2px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666 !important;
}
.cotizaForm input::placeholder { color: #202020; opacity: .8; }
.cotizaForm textarea { border: 1px solid #666 !important; }
.cotizaForm textarea::placeholder { color: #202020; opacity: .8; }
.cotizaForm input:focus { border: 1px solid #202020; }
.cotizaForm input[type=submit] {
    width: 100%;
    border: 1px solid #42C800 !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #42C800;
    /*background: rgba(255,255,255, .2);*/
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    margin-bottom: 20px;
    cursor:pointer;
}
.cotizaForm input[type=submit]:hover {
    border: 1px solid #008F24;
    background-color: #008F24;
    color: #fff;
    transition: 300ms;
}
.coriza_required {
    border-left: 3px solid #42C800 !important;
}
@media (width <= 1024px) {
    .cotizaForm_blk1 {
        width: 100%;
        margin-bottom: 20px;
    }
    .cotizaForm_blk1_style1 {
        padding-right: 0;
    }
    .cotizaForm_blk1_style2 {
        padding-left: 0;
    }
    .cotizaForm_blk2 {
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }
}


.tablaPeso {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 8px #ccc;
    padding: 20px;
}
.tablaPeso h2 {
    font-size: 35px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 10px;
}
.tablaPeso h3 {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.tablaPeso hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}
.tablaPeso_blk_1 {
    width: 72%;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    padding-right: 40px;
    margin: 0;
}
.tablaPeso_blk_2 {
    width: 27.5%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    margin: 0;
}
.TablePeso {
  display: table;
  width: 100%;
}
.TitlePeso {
  display: table-caption;
  font-size: 14px;
  font-weight: 700;
  color: #2BB673;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.HeadingPeso {
  display: table-row;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  background-color: #f4f4f4;
}
.RowPeso {
  display: table-row;
  padding: 6px 0;
}
.Row_1Peso {
  background-color: #f8f9fa;
}
.RowPeso:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.CellPeso {
  display: table-cell;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: #666;
  padding: 6px 10px;
}
@media (width <= 1024px) {
    .TablePeso {
        background: #fff;
    }
    .tablaPeso_blk_1 {
        width: 100%;
        min-width: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .CellPeso {
        font-size: 12px;
        padding: 4px 8px;
    }
}


#morDet {
    background: #fff;
}
.morDet {
    padding: 40px 0;
}
.morDet h2 {
    font-size: 35px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.morDet p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.morDet ul {
    padding-left: 20px;
}
.morDet li {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.morDet_blk {
    width: 26%;
    display: inline-block;
    vertical-align: top;
    margin: 40px;
}
@media (width <= 1024px) {
    .morDet_blk {
        width: 100%;
        margin: 40px 0;
    }
}


#ctaProd {
    background: #fff;
}
.ctaProd {
    padding: 40px 0;
    text-align: center;
}
.ctaProd h2 {
    font-size: 40px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.ctaProd h3 {
    font-size: 20px;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}
.ctaProd p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.ctaProd_blk {
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
    padding: 40px;
    margin: 0;
}
.ctaProd_blk img {
    margin-bottom: 20px;
}
.ctaProd button {
  border: 1px solid #666;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.ctaProd button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    .ctaProd_blk {
        width: 100%;
    }
}



#ctaProd-1 {
    background: #000 url('../images/bg-prod-varilla-01.png') no-repeat center center fixed;
    background-size: cover;
    height: 500px;
    text-align: center;
    padding-top: 12%;
}
#ctaProd-1 img {
    height: 120px;
}
@media (width <= 1024px) {
    #ctaProd-1 {
        background: #000 url('../images/bg-prod-varilla-01.png') no-repeat center center;
        background-size: cover;
        padding-top: 32%;
    }
    #ctaProd-1 img {
        width: 90%;
        height: auto;
    }
}


#herrero {
    background: #000 url('../images/bg-pylsa-07.png') no-repeat top center fixed;
    background-size: cover;
    height: 100vh;
}
.herrero_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 100vh;
}
.herrero {
    padding-top: 25%;
}
.herrero h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 10px;
}
.herrero h3 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0;
}
.herrero p {
    width: 40%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.herrero button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #42C800;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.herrero button:hover {
    border: 1px solid #42C800;
    background: #008F24;
    color: #fff !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    #herrero {
        background: #000 url('../images/bg-pylsa-07a.png') no-repeat top right;
        background-size: cover;
    }
    .herrero {
        padding-top: 40%;
    }
    .herrero h2 {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .herrero h3 {
        font-size: 25px;
    }
    .herrero p {
        width: 55%;
        margin-bottom: 20px;
    }
}


#inHerrero {
    background: #f8f8f8;
    margin: 10px 0;
}
.inHerrero {
    padding: 80px 0;
}
.inHerrero h2 {
    font-size: 48px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin: 0;
}
.inHerrero h3 {
    font-size: 45px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0;
}
.inHerrero p {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.inHerrero button {
  border: 1px solid #666;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.inHerrero button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}
.inHerrero_blk_1 {
    width: 35%;
    display: inline-block;
    vertical-align: top;
    padding-top: 20px;
    margin: 0;
}
.inHerrero_blk_2 {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    padding-top: 20px;
    margin: 0;
}
.inHerrero_blk_L {
    padding-right: 20px;
}
.inHerrero_blk_R {
    padding-left: 20px;
}
.inHerrero_blk_C {
    padding: 20px 40px;
    border-left: 2px dotted #ccc;
    border-right: 2px dotted #ccc;
}
@media (width <= 1024px) {
    .inHerrero h2 {
        font-size: 40px;
    }
    .inHerrero h3 {
        font-size: 40px;
    }
    .inHerrero_blk_1 {
        width: 100%;
        margin-bottom: 40px;
    }
    .inHerrero_blk_2 {
        width: 100%;
    }
    .inHerrero_blk_L {
        padding-right: 0;
    }
    .inHerrero_blk_R {
        padding-left: 0;
    }
    .inHerrero_blk_C {
        padding: 40px 0;
        border-left: none;
        border-right: none;
        border-top: 2px dotted #ccc;
        border-bottom: 2px dotted #ccc;
    }
}


#seguridad {
    background: #fff;
}
.seguridad {
    padding: 50px 0;
    text-align: center;
}
.seguridad h2 {
    font-size: 48px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin: 0;
}
.seguridad h3 {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 20px 0;
}
.seguridad p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.seguridad_blk {
    width: 24%;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    margin: 0;
}
.seguridad_blk img {
    margin-bottom: 20px;
}
@media (width <= 1024px) {
    .seguridad_blk {
        width: 49%;
        margin-bottom: 20px;
    }
}


#promos1 {
    background: transparent;
    margin-bottom: 10px;
}
.promos1 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.promos1 img {
    display: inline-block;
    padding: 20px 0;
}
.promos1 img:hover {
    text-shadow: 0 0 4px #666 !important;
    transition: 300ms;
}
.promos1 a {
    text-decoration: none;
}
.promos1 a:hover {
    text-shadow: 0 0 4px #666;
}
.promos1_style1 {
    padding-right: 10px !important;
}
.promos1_style2 {
    padding-left: 10px !important;
}
@media (width <= 1024px) {
    .promos1 img {
        width: 100%;
    }
    .promos1_style1 {
        padding-right: 0 !important;
    }
    .promos1_style2 {
        padding-left: 0 !important;
    }
}


#headPromo {
    background: linear-gradient(-90deg, #42C800, #206200);
    height: 500px;
}
.headPromo_bgAlt {
    background: transparent url('../images/bgAlt-pylsa-01.png') no-repeat bottom right;
    height: 500px;
}
.headPromo {
    padding-top: 10%;
}
.headPromo h2 {
    font-size: 50px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin: 0;
}
.headPromo p {
    width: 40%;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
@media (width <= 1024px) {
    .headPromo_bgAlt {
        background: transparent url('../images/bgAlt-pylsa-01.png') no-repeat bottom left;
    }
    .headPromo_bgAlt_ {
        background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, .8));
        height: 500px;
    }
    .headPromo {
        padding-top: 38%;
    }
    .headPromo h2 {
        font-size: 40px;
        font-weight: 100;
        color: #fff;
        letter-spacing: -0.5px;
        line-height: 1em;
        margin: 0;
    }
    .headPromo img {
        height: 55px;
    }
}


#headPromo01 {
    background: #000 url('../images/bg-promo-sabadazo-01.png') no-repeat top center fixed;
    background-size: cover;
    height: 100vh;
}
.headPromo01_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 100vh;
}
.headPromo01 {
    padding-top: 18%;
}
.headPromo01 h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin: 0;
}
.headPromo01 h3 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.headPromo01 p {
    width: 40%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.headPromo01 button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #42C800;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.headPromo01 button:hover {
    border: 1px solid #42C800;
    background: #008F24;
    color: #fff !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    #headPromo01 {
        background: #000 url('../images/bg-promo-sabadazo-01a.png') no-repeat top right;
        background-size: cover;
    }
    .headPromo01 {
        padding-top: 40%;
    }
    .headPromo01 h2 {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .headPromo01 h3 {
        font-size: 25px;
    }
    .headPromo01 p {
        width: 55%;
        margin-bottom: 20px;
    }
}


#protege {
    background: #000 url('../images/bg-pylsa-01.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
}
.protege_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    height: 100vh;
}
.protege {
    padding-top: 6%;
    text-align: center;
}
.protege p {
    font-size: 16px;
    font-weight: 700;
    color: #ccc;
    margin-top: 20px;
}
.protege a {
    border: 1px solid #42C800;
    border-radius: 3px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, .8);
    text-decoration: none;
    color: #ccc;
}
.protege a:hover {
    color: #fff;
    transition: 300ms;
}
.modal1_close {
    position: absolute;
    top: 13%;
    right: 32%;
}
.modal1_close a {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    opacity: .8;
    text-decoration: none;
}
.modal1_close a:hover {
    text-decoration: none;
    opacity: .8;
}
@media (width <= 1024px) {
    .protege {
        padding-top: 25%;
    }
    .protege img {
        width: 95%;
    }
    .modal1_close {
        top: 6%;
        right: 5%;
    }
}


#headCotiza {
    background: #000 url('../images/bg-pylsa-08.png') no-repeat top left;
    background-size: cover;
    height: 640px;
    margin-bottom: 10px;
}
.headCotiza_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    height: 640px;
}
.headCotiza {
    padding-top: 12%;
    padding-bottom: 50px;
}
.headCotiza h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 50px;
}
.headCotiza h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    max-width: 450px;
    margin: 0;
}
.headCotiza p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.headCotiza_ {
    max-width: 450px;
    margin-top: 30px;
}
.headCotiza_blk {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
}
.headCotiza_blk img {
    margin: 20px;
}
@media (width <= 1024px) {
    #headCotiza {
        background: #000 url('../images/bg-pylsa-08a.png') no-repeat top right;
        background-size: cover;
    }
    .headCotiza {
        padding-top: 40%;
        padding-bottom: 0;
    }
    .headCotiza h2 {
        font-size: 50px;
        margin-bottom: 40px;
    }
    .headCotiza_ {
        max-width: 100%;
    }
    .headCotiza_blk img {
        height: 40px;
        margin: 10px;
    }
}


#cotizaBody {
    background: #f8f8f8;
}
.cotizaBody {
    padding: 50px 0;
}
.cotizaBody h2 {
    font-size: 50px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 40px;
}
.cotizaBody h3 {
    font-size: 35px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.cotizaBody p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.cotizaBody ul {
    padding-left: 20px;
}
.cotizaBody li {
    display: list-item;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.cotizaBody_blk1 {
    width: 59%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.cotizaBody_blk2 {
    width: 40.6%;
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
    margin: 0;
}
@media (width <= 1024px) {
    .cotizaBody ul {
        margin-bottom: 40px;
    }
    .cotizaBody_blk1 {
        width: 100%;
        margin-bottom: 40px;
    }
    .cotizaBody_blk2 {
        width: 100%;
        padding-left: 0;
    }
    .cotizaBody_blk1 {
        width: 100%;
    }
    .cotizaBody_blk2 {
        width: 100%;
        padding-left: 0;
    }
}


.contactCotiza h2 {
    font-size: 50px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin: 0;
}
.contactCotiza h3 {
    font-size: 35px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.contactCotiza p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.contactCotiza li {
    list-style: none;
    display: inline;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.contactCotiza a {
    text-decoration: none;
    color: #666;
}
.contactCotiza a:hover {
    color: #42C800;
    transition: 300ms;
}
.contactCotiza hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}
.contactCotiza_btnAlt {
    border: 1px solid #666;
    border-radius: 25px;
    background: transparent;
    color: #666;
    padding: 4px 10px;
    margin: 5px;
}
.contactCotiza_btnAlt:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}
.contactCotiza button {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #d9d9d9;
  width: auto;
  padding: 10px 40px;
  margin-top: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.contactCotiza button:hover {
    border: 1px solid #000;
    background: #000;
    color: #42C800 !important;
    transition: 300ms;
}
.contactCotizaW {
  border: 1px solid #42C800;
  border-radius: 25px;
  background: #42C800;
  width: 250px;
  text-align: center;
  padding: 10px 40px;
  margin-top: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.contactCotizaW:hover {
    border: 1px solid #000;
    background: #000;
    color: #42C800 !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    .contactCotiza li {
        display: list-item;
        margin-bottom: 20px;
    }
}


#historia {
    background: #000 url('../images/bg-pylsa-09.png') no-repeat bottom center fixed;
    background-size: cover;
    height: 100vh;
}
.historia_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    height: 100vh;
}
.historia {
    padding-top: 20%;
}
.historia h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 30px;
}
.historia h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.historia p {
    width: 45%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.historia a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    padding-top: 40px;
}
.historia a:hover {
    color: #42C800;
    transition: 300ms;
}
.historia button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #42C800;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.historia button:hover {
    border: 1px solid #42C800;
    background: #008F24;
    color: #fff !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    #historia {
        background: #000 url('../images/bg-pylsa-09.png') no-repeat bottom center;
        background-size: cover;
    }
    .historia {
        padding-top: 35%;
    }
    .historia h2 {
        font-size: 50px;
        margin-bottom: 0;
    }
    .historia h3 {
        font-size: 20px;
    }
    .historia p {
        width: 70%;
    }
}


#inHistoria {
    background: #fff;
}
.inHistoria {
    padding: 80px 0;
}
.inHistoria p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-bottom: 30px;
}
.inHistoria_blk {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    padding: 0 5%;
    min-width: 300px;
    margin: 0;
}
@media (width <= 1024px) {
    .inHistoria_blk {
        width: 100%;
    }
}


#ctaHistoria {
    background: #f8f8f8;
    margin-bottom: 10px;
}
.ctaHistoria {
    padding: 80px;
    text-align: center;
}
.ctaHistoria h2 {
    font-size: 65px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.8px;
    line-height: 1em;
    margin-bottom: 40px;
}
.ctaHistoria p {
    font-size: 35px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    margin: 0;
}
.ctaHistoria button {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #d9d9d9;
  width: auto;
  padding: 10px 40px;
  margin-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.ctaHistoria button:hover {
    border: 1px solid #000;
    background: #000;
    color: #42C800 !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    .ctaHistoria {
        padding: 80px 20px;
    }
    .ctaHistoria h2 {
        font-size: 50px;
    }
    .ctaHistoria p {
        font-size: 25px;
        margin-bottom: 20px;
    }
}


.headMat_1 { background: #000 url('../images/bg-pylsa-10.png') no-repeat center center; background-size: cover; }
.headMat_2 { background: #000 url('../images/bg-pylsa-11.png') no-repeat center center; background-size: cover; }
.headMat_3 { background: #000 url('../images/bg-pylsa-12.png') no-repeat center center; background-size: cover; }
.headMat_4 { background: #000 url('../images/bg-pylsa-14.png') no-repeat center center; background-size: cover; }
.headMat_5 { background: #000 url('../images/bg-pylsa-15.png') no-repeat center center; background-size: cover; }
.headMat_6 { background: #000 url('../images/bg-prod-varilla-01.png') no-repeat center bottom; background-size: cover; }

#headMat {
    min-height: 500px;
}
.headMat_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    min-height: 500px;
}
.headMat {
    padding-top: 12%;
    padding-bottom: 50px;
    width: 40%;
}
.headMat h1 {
    font-size: 55px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 40px;
}
.headMat h2 {
    font-size: 55px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 40px;
}
.headMat h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.headMat p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.headMat span {
    font-weight: 700;
}
@media (width <= 1024px) {
    .headMat {
        padding-top: 35%;
        width: 70%;
    }
    .headMat h2 {
        font-size: 50px;
    }
}


#bodyMat {
    background: #fff;
}
.bodyMat {
    padding: 80px 0;
}
.bodyMat h2 {
    font-size: 35px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-top: 40px;
    margin-bottom: 20px;
}
.bodyMat h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.bodyMat p {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-bottom: 20px;
}
.bodyMat span {
    font-weight: 700;
}
.bodyMat ul {
    padding-left: 20px;
}
.bodyMat li {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-bottom: 15px;
}
.bodyMat button {
  border: 1px solid #666;
  border-radius: 3px;
  background: transparent;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.bodyMat button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}
.bodyMat_blk {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    margin: 0;
}
.bodyMat_blk_1 {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    padding: 0 30px;
    margin: 0;
}
@media (width <= 1024px) {
    .bodyMat_blk {
        width: 100%;
        padding: 0;
        padding: 0;
    }
    .bodyMat_blk_1 {
        width: 100%;
        padding: 0;
    }
}


#tnk {
    background: #000 url('../images/bg-pylsa-08.png') no-repeat top center fixed;
    background-size: 100%;
    height: 600px;
}
.tnk_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    height: 600px;
}
.tnk {
    padding-top: 20%;
}
.tnk h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 10px;
}
.tnk h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin-bottom: 20px;
}
.tnk p {
    width: 45%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.tnk a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    padding-top: 40px;
}
.tnk a:hover {
    color: #42C800;
    transition: 300ms;
}
.tnk button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #42C800;
  width: auto;
  padding: 10px 40px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.tnk button:hover {
    border: 1px solid #42C800;
    background: #008F24;
    color: #fff !important;
    transition: 300ms;
}


#cta2 {
    background: #000 url('../images/bg-pylsa-05b.png') no-repeat bottom center;
    background-size: cover;
    height: 100vh;
}
#cta2_ {
    background: #000 url('../images/bg-pylsa-15.png') no-repeat bottom center;
    background-size: cover;
    height: 100vh;
}
.cta2_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    height: 100vh;
}
.cta2 {
    padding: 10%;
    padding-top: 20%;
    text-align: center;
}
.cta2 h2 {
    font-size: 52px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}
.cta2 p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
.cta2 button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #000;
  width: auto;
  padding: 10px 40px;
  margin-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #42C800 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.cta2 button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}


#cta3 {
    background: #000 url('../images/bg-pylsa-13.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
}
.cta3_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3));
    height: 100vh;
}
.cta3 {
    padding: 10%;
    padding-top: 20%;
    text-align: center;
}
.cta3 h2 {
    font-size: 52px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}
.cta3 p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}
.cta3_blk {
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
    padding: 20px;
    margin: 0;
}
.cta3 button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #000;
  width: auto;
  padding: 10px 40px;
  margin-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #42C800 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.cta3 button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #fff !important;
    transition: 300ms;
}


#headCredito {
    background: #000 url('../images/bg-pylsa-16.png') no-repeat top left;
    background-size: cover;
    height: 640px;
    margin-bottom: 10px;
}
.headCredito_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 640px;
}
.headCredito {
    padding-top: 16%;
    padding-bottom: 50px;
}
.headCredito h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 50px;
}
.headCredito h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    max-width: 450px;
    margin-bottom: 10px;
}
.headCredito p {
    width: 40%;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.headCredito_ {
    max-width: 450px;
    margin-top: 30px;
}
.headCredito_blk {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
}
.headCredito_blk img {
    margin: 20px;
}
.headCredito_style {
    padding-left: 0 !important;
    padding-right: 40px;
}
@media (width <= 1024px) {
    #headCredito {
        background: #000 url('../images/bg-pylsa-16a.png') no-repeat top right;
        background-size: cover;
    }
    .headCredito_bgAlt {
        background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.6));
    }
    .headCredito {
        padding-top: 66%;
        padding-right: 20%;
        padding-bottom: 0;
    }
    .headCredito h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }
    .headCredito h3 {
        font-size: 16px;
        max-width: 100%;
    }
    .headCredito p {
        width: 100%;
    }
}

.creditoHead {
    width: 100%;
    background: linear-gradient(0deg, #008F24, #42C800);
    padding: 20px 40px;
}
.creditoHead h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0;
}
.creditoHead p {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1em;
    margin: 0;
}
@media (width <= 1024px) {
    .creditoHead h2 {
        font-size: 30px;
    }
    .creditoHead p {
        font-size: 18px;
    }
}


#headBolsaT {
    background: #000 url('../images/bg-pylsa-17.png') no-repeat center right;
    background-size: cover;
    height: 500px;
    margin-bottom: 10px;
}
.headBolsaT_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 500px;
}
.headBolsaT {
    padding-top: 14%;
    padding-bottom: 50px;
}
.headBolsaT h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 50px;
}
.headBolsaT h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    max-width: 450px;
    margin-bottom: 10px;
}
.headBolsaT p {
    width: 40%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.headBolsaT_ {
    max-width: 450px;
    margin-top: 30px;
}
.headBolsaT_blk {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
}
.headBolsaT_blk img {
    margin: 20px;
}
.headBolsaT_style {
    padding-left: 0 !important;
    padding-right: 40px;
}
@media (width <= 1024px) {
    #headBolsaT {
        background: #000 url('../images/bg-pylsa-17.png') no-repeat top center;
        background-size: cover;
    }
    .headBolsaT_bgAlt {
        background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.9));
    }
    .headBolsaT {
        padding-top: 40%;
        padding-right: 20%;
        padding-bottom: 0;
    }
    .headBolsaT h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }
    .headBolsaT h3 {
        font-size: 16px;
        max-width: 100%;
    }
    .headBolsaT p {
        width: 100%;
    }
}


#headQuejas {
    background: #000 url('../images/bg-pylsa-06a.png') no-repeat bottom right;
    background-size: cover;
    height: 500px;
    margin-bottom: 10px;
}
.headQuejas_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 500px;
}
.headQuejas {
    padding-top: 14%;
    padding-bottom: 50px;
}
.headQuejas h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 50px;
}
.headQuejas h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    max-width: 450px;
    margin-bottom: 10px;
}
.headQuejas p {
    width: 40%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.headQuejas_ {
    max-width: 450px;
    margin-top: 30px;
}
.headQuejas_blk {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
}
.headQuejas_blk img {
    margin: 20px;
}
.headQuejas_style {
    padding-left: 0 !important;
    padding-right: 40px;
}
@media (width <= 1024px) {
    #headQuejas {
        background: #000 url('../images/bg-pylsa-06a.png') no-repeat top left;
        background-size: cover;
    }
    .headQuejas_bgAlt {
        background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.9));
    }
    .headQuejas {
        padding-top: 40%;
        padding-right: 20%;
        padding-bottom: 0;
    }
    .headQuejas h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }
    .headQuejas h3 {
        font-size: 16px;
        max-width: 100%;
    }
    .headQuejas p {
        width: 100%;
    }
}


#headAviso {
    background: #000 url('../images/bg-pylsa-06a.png') no-repeat bottom right;
    background-size: cover;
    height: 300px;
    margin-bottom: 10px;
}
.headAviso_bgAlt {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.7));
    height: 300px;
}
.headAviso {
    padding-top: 10%;
    padding-bottom: 50px;
}
.headAviso h2 {
    font-size: 65px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1em;
    margin-bottom: 50px;
}
.headAviso h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    max-width: 450px;
    margin-bottom: 10px;
}
.headAviso p {
    width: 40%;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin: 0;
}
.headAviso_ {
    max-width: 450px;
    margin-top: 30px;
}
.headAviso_blk {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
}
.headAviso_blk img {
    margin: 20px;
}
.headAviso_style {
    padding-left: 0 !important;
    padding-right: 40px;
}
@media (width <= 1024px) {
    #headAviso {
        background: #000 url('../images/bg-pylsa-06a.png') no-repeat top left;
        background-size: cover;
    }
    .headAviso_bgAlt {
        background: linear-gradient(-90deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, 0.9));
    }
    .headAviso {
        padding-top: 30%;
        padding-right: 20%;
        padding-bottom: 0;
    }
    .headAviso h2 {
        font-size: 50px;
        margin-bottom: 50px;
    }
    .headAviso h3 {
        font-size: 16px;
        max-width: 100%;
    }
    .headAviso p {
        width: 100%;
    }
}


#avisoBody {
    background: #fff;
    margin-bottom: 10px;
}
.avisoBody {
    padding: 40px 0;
}
.avisoBody h2 {
    font-size: 24px;
    font-weight: 100;
    color: #666;
    letter-spacing: -0.3px;
    margin-top: 40px;
    margin-bottom: 10px;
}
.avisoBody h3 {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}
.avisoBody p {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.avisoBody ul {
    padding-left: 20px;
}
.avisoBody li {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    letter-spacing: -0.3px;
    line-height: 1.2em;
    margin-bottom: 5px;
}
.avisoBody a {
    text-decoration: none;
    color: #202020;
}
.avisoBody a:hover {
    color: #42C800;
    text-decoration: underline;
    transition: 300ms;
}
.avisoBody hr {
    border: none;
    border: 1px solid #ccc;
    margin: 20px 0;
}
.avisoBody_blk {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    padding: 0 40px;
    margin: 0;
}
@media (width <= 1024px) {
    .avisoBody_blk {
        width: 100%;
        padding: 0;
    }
}



















#contact {
    background: #fff;
    margin: 40px 0;
}
.contact {
    background: #f5f5f7;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    padding: 30px 50px;
}
.contact h2 {
    font-size: 60px;
    font-weight: 100;
    color: #202020;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin: 0;
}
.contact p {
    font-size: 22px;
    font-weight: 300;
    color: #202020;
    letter-spacing: -.3px;
    margin: 0;
}
.contact a {
    color: #202020;
    text-decoration: none;
}
.contact a:hover {
    color: #42C800;
    transition: 300ms;
}
.contact h3 {
    font-size: 22px;
    font-weight: 700;
    color: #202020;
    letter-spacing: -.3px;
    margin: 0;
}
.contact hr {
    border: none;
    border: .5px solid #d9d9d9;
    margin: 30px 0;
}
.contact_blk1 {
    width: 39%;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
    margin: 0;
}
.contact_blk2 {
    width: 34%;
    display: inline-block;
    vertical-align: top;
    border-right: 1px solid #fff;
    margin: 0;
}
.contact_blk3 {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    margin: 0;
}
.contact_blk3 img {
    margin: 15px;
}
@media (width <= 1024px) {
    .contact h2 {
        font-size: 50px;
    }
    .contact_blk1 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .contact_blk2 {
        width: 100%;
        border-right: none;
    }
    .contact_blk3 {
        width: 100%;
        padding-left: 0;
    }
}


/* Secc. Form */
form {
    margin-bottom: 20px;
}
.formLP {
    background: transparent;
    padding: 0 40px;
}
.formLP input, textarea {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px 20px;
    background: rgba(255,255,255, .8);
    margin: 2px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666 !important;
}
input::placeholder { color: #202020; opacity: .8; }
textarea::placeholder { color: #202020; opacity: .8; }
.formLP_req_ {
    border-left: 3px solid #42C800 !important;
}
input:focus { border: 1px solid #202020; }
input[type=submit] {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #d9d9d9;
    /*background: rgba(255,255,255, .2);*/
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 2px;
    cursor:pointer;
}
input[type=submit]:hover {
    border: 1px solid #42C800;
    background-color: #42C800;
    color: #000;
    transition: 300ms;
}
.formLP_req {
    border-left: 3px solid #42C800;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 300;
    color: #202020;
    margin: 0;
}
.formLP_legal a {
    font-size: 12px;
    font-weight: 300;
    color: #202020;
    text-decoration: none;
    margin: 0;
}
.formLP_legal a:hover {
    border-bottom: 1px solid #42C800;
    padding-bottom: 4px;
}
.formLP_legal1 a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    margin: 0;
}
.formLP_legal1 a:hover {
    border-bottom: 1px solid #42C800;
    padding-bottom: 4px;
}
@media (width <= 1024px) {
    .formLP {
        margin-bottom: 20px;
        padding: 0;
    }
}


#news {
    margin-bottom: 1px;
}
.news_bg_1 { background: #000 url('../images/bg-material-pylsa-01.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_2 { background: #000 url('../images/bg-material-pylsa-02.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_3 { background: #000 url('../images/bg-material-pylsa-03.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_4 { background: #000 url('../images/bg-material-pylsa-04.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_5 { background: #000 url('../images/bg-material-pylsa-05.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_6 { background: #000 url('../images/bg-material-pylsa-06.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_7 { background: #000 url('../images/bg-material-pylsa-07.jpg') no-repeat center center fixed; background-size: cover; }
.news_bg_8 { background: #000 url('../images/bg-material-pylsa-08.jpg') no-repeat center center fixed; background-size: cover; }
.news_bgAlt {
    background: rgba(0, 0, 0, 0.7);
}
.news {
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}
.news h2 {
    font-size: 60px;
    font-weight: 100;
    color: #fff;
    letter-spacing: -.9px;
    line-height: 1.1em;
    margin-bottom: 20px;
}
.news h3 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    line-height: 1.1em;
    margin: 0;
}
.news p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.3px;
    line-height: 1.1em;
    margin: 0;
}
.news_blk1 {
    width: 340px;
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
    margin-bottom: 10px;
}
.news_blk2 {
    width: 180px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
}
.news input[type=submit] {
    width: 100%;
    border: 1px solid #42C800;
    border-radius: 3px;
    background: #000;
    /*background: rgba(255,255,255, .2);*/
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #42C800 !important;
    text-align: center;
    margin: 0;
    cursor:pointer;
}
.news input[type=submit]:hover {
    border: 1px solid #42C800;
    background-color: #42C800;
    color: #000 !important;
    transition: 300ms;
}
.news button {
  border: 1px solid #42C800;
  border-radius: 3px;
  background: #000;
  width: auto;
  padding: 10px 40px;
  margin-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #42C800 !important;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.news button:hover {
    border: 1px solid #42C800;
    background: #42C800;
    color: #000 !important;
    transition: 300ms;
}
@media (width <= 1024px) {
    .news_bg_1 { background: #000 url('../images/bg-material-pylsa-01.jpg') no-repeat center center; background-size: cover; }
    .news_bg_2 { background: #000 url('../images/bg-material-pylsa-02.jpg') no-repeat center center; background-size: cover; }
    .news_bg_3 { background: #000 url('../images/bg-material-pylsa-03.jpg') no-repeat center center; background-size: cover; }
    .news_bg_4 { background: #000 url('../images/bg-material-pylsa-04.jpg') no-repeat center center; background-size: cover; }
    .news_bg_5 { background: #000 url('../images/bg-material-pylsa-05.jpg') no-repeat center center; background-size: cover; }
    .news_bg_6 { background: #000 url('../images/bg-material-pylsa-06.jpg') no-repeat center center; background-size: cover; }
    .news_bg_7 { background: #000 url('../images/bg-material-pylsa-07.jpg') no-repeat center center; background-size: cover; }
    .news_bg_8 { background: #000 url('../images/bg-material-pylsa-08.jpg') no-repeat center center; background-size: cover; }
    .news h2 {
        font-size: 50px;
    }
    .news {
        padding-left: 25px;
        padding-right: 25px;
    }
    .news h3 {
        margin-bottom: 40px;
    }
}



footer {
    background: #000;
    border-top: 5px solid #42C800;
    padding-top: 50px;
    padding-bottom: 80px;
}
.footer_ {
    color: #ccc;
    letter-spacing: -.3px;
}
.footer_ ul {
    padding-left: 18px;
    margin-bottom: 40px;
}
.footer_ li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2em;
    margin: 0;
}
.footer_ h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2em;
    margin: 0;
}
.footer_ p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2em;
    margin: 0;
}
.footer_ hr {
    border: none;
    border-top: 1px solid #303030;
    margin: 20px 0;
}
.footer_ a {
    text-decoration: none;
    color: #ccc;
}
.footer_ a:hover {
    color: #42C800;
    transition: 300ms;
}
.footer_blk {
    width: 24.5%;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
    margin: 0;
}
.footer_blk img {
    display: inline-block;
    margin: 10px;
}
.footer_blk_style {
    text-align: right;
}
.footer_blk_style img {
    height: 100px;
}
.footer_certificate {
    height: 52px;
}
@media (width <= 1024px) {
    .footer_blk {
        width: 100%;
        padding-right: 0;
    }
    .footer_blk_style {
        text-align: left;
        margin-top: 40px;
    }
}


#footer__ {
    background: #202020;
}
.footer__ {
    padding: 10px 0;
    border-top: 1px solid #303030;
}
.footer__ p {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}
.footer__ a {
    text-decoration: none;
    color: #666;
}
.footer__ a:hover {
    color: #42C800;
    transition: 300ms;
}



/* Tabla general */
.Table {
  display: table;
  width: 100%;
}
.Title {
  display: table-caption;
  font-size: 14px;
  font-weight: 700;
  color: #2BB673;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.Heading {
  display: table-row;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  background-color: #f4f4f4;
}
.Row {
  display: table-row;
  padding: 6px 0;
}
.Row_1 {
  background-color: #f8f9fa;
}
.Row:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.Cell {
  display: table-cell;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  padding: 6px 10px;
}
.cellW60x {
    width: 60%;
}
.cellW40x {
    width: 39%;
}
.cellW60 {
    min-width: 60px;
}
.cellW50 {
    min-width: 50px;
}
.cellW80 {
    min-width: 80px;
}
.cellW100 {
    min-width: 100px;
}
.Cell a {
  color: #fff;
  text-decoration: none;
}
.cell_link {
  text-decoration: none !important;
}
.cell_link:hover {
  color: #ff9900 !important;
}
.cell_data {
  color: #000;
}


/* Elementos del Mapa */
#bloque-maplocation {
    background: #000;
    width:100%;
    height: 300px;
    margin-top: 0px;
    margin-bottom: 10px;
}
#maplocation {
    max-width: 100%;
    margin: 0 auto;
    color:#444;
}
#maplocation .col1 h2 {
    font-weight: 100;
    color:#fff;
}
#mapa .capa-anti-eventos {
    width: 100%;
    height: 300px;
    position: absolute;
    cursor: pointer;
}


/* Sucursal */
.suc_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.suc_float {
    display: scroll;
    position: fixed;
    bottom: 365px;
    right: 20px;
}


/* Facebook */
.fb_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.fb_float {
    display: scroll;
    position: fixed;
    bottom: 265px;
    right: 20px;
}


/* Instagram */
.insta_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.insta_float {
    display: scroll;
    position: fixed;
    bottom: 200px;
    right: 20px;
}


/* Whatsapp */
.whatssapp_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.whatss_float {
    display: scroll;
    position: fixed;
    bottom: 140px;
    right: 20px;
}



/* Espacios */
.spaceH300 {
    height: 300px;
}
.spaceH200 {
    height: 200px;
}
.spaceH100 {
    height: 100px;
}
.spaceH80 {
    height: 80px;
}
.spaceH60 {
    height: 60px;
}
.spaceH50 {
    height: 50px;
}
.spaceH40 {
    height: 40px;
}
.spaceH30 {
    height: 30px;
}
.spaceH20 {
    height: 20px;
}
.spaceH10 {
    height: 10px;
}


#banner-flotante {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 88px;
  z-index: 9999;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#banner-flotante img {
  width: 400px;
  /* height: 100%; */
  display: block;
  /* border-radius: 6px; */
}
#banner-flotante.oculto {
  opacity: 0;
  visibility: hidden;
}
@media (width <= 1024px) {
    #banner-flotante {
        width: 350px !important;
        height: auto;
    }
}