@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'QuicksandLight';
    src: url('../webfonts/quicksand/light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../webfonts/quicksand/regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QuicksandMedium';
    src: url('../webfonts/quicksand/medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QuicksandSemiBold';
    src: url('../webfonts/quicksand/semiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QuicksandBold';
    src: url('../webfonts/quicksand/bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:focus
{
	outline:none;
}
a
{
	text-decoration:none;
	cursor:pointer;
}
b, strong{
  font-family: 'QuicksandBold', sans-serif;
}
li{
    list-style: none;
}
body
{
    font-family: 'Quicksand', sans-serif;
	font-size:15px;
	color:#333;
	line-height:19px;
    overflow-x: hidden;
	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}
img{
    max-width: 100%;
    height: auto;
}
.grid-container{
    display: grid;
    max-width: 1500px;
    margin: auto;
}
.grid-item{
}
.home h2{
    font-size: 37px;
    line-height: 37px;
    position: relative;
    text-align: center;
    display: inline-block;
}
.home h2 b{
    font-size: 55px;
    line-height: 55px;
    display: block;
}
/*Tansitions*/
a,
#top,
.top-social li a i,
#top-menu,
#top-menu > ul > li,
#top-menu .menu > ul > li,
.top-phone-ico,
.top-phone-ico i,
#top-menu > ul > li::before,
#top-menu .menu > ul > li::before,
#top-menu > ul > li > ul > li::before,
#top-menu .menu > ul > li > ul > li::before,
.open-menu,
.close-menu,
#top-menu > ul,
#top-menu .menu > ul,
.slick-slide img,
.product p,
.footer-social li,
.footer-social li::before,
#b-whatsapp,
#b-whatsapp a,
.scrollup,
#logo-menu,
.logo,
#slider,
main,
.blog-item,
.blog-item figure .blur,
.blog-item figure .blur i,
.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right,
form input[type=submit]
{
    transition:all .4s ease-in-out;
    -moz-transition:all .4s ease-in-out;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
}
#top-menu > ul > li > ul,
#top-menu .menu > ul > li > ul
{
    transition: opacity .8s, top .6s;
    -moz-transition: opacity .8s, top .6s;
    -webkit-transition: opacity .8s, top .6s;
    -o-transition:opacity .8s, top .6s;
    transition-delay: .0s;
}
/*-----------Top---------------*/
header{
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
}
#top{
    background: #26367A;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    line-height: 17px;
}
#top a{
    color: #fff;
}
#top .grid-container{
    grid-template-columns: 70% 30%;
    align-items: center;
    grid-template-areas: "top-datos top-social";
}

.top-datos{
    display: flex;
    flex-wrap: wrap;
    grid-area: top-datos;
}
.top-datos li:nth-of-type(1){
    margin-right: 20px;
}
.top-datos i{
    color: #1172B3;
    margin-right: 8px;
}
.top-social{
    display: grid;
    grid-template-columns: repeat(7, 20px);
    justify-self: end;
    gap: 15px;
    font-size: 17px;
    grid-area: top-social;
}
/*-----------Logo Menu---------------*/
#logo-menu{
    padding: 10px 20px;
    background: #fff;
}
#logo-menu .grid-container{
    grid-template-areas: "site-name top-menu top-phone";
    gap: 10px;
    align-items: center;
    justify-items: center;
}
#logo-menu.scroll{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    padding: 5px 20px;
}
#logo-menu.scroll .logo {
    max-width: 50px;
}
#logo-menu.scroll #top-menu > ul > li > ul,
#logo-menu.scroll #top-menu .menu > ul > li > ul{
    background: #fff;
}
.site-name{
    grid-area: site-name;
}
.logo{
    width: 100%;
    max-width: 70px;
}
#top-menu{
    position: relative;
    grid-area: top-menu;
}
#top-menu > ul,
#top-menu .menu > ul{
    display: flex;
    flex-wrap: wrap;
    background: #EFF8FC;
    border-radius: 10px;
    justify-content: center;
}
#top-menu > ul > li,
#top-menu .menu > ul > li{
    position: relative;
}
#top-menu > ul > li::before,
#top-menu .menu > ul > li::before{
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 0px;
    background: #d4ecf7;
}
#top-menu > ul > li:first-child::before,
#top-menu .menu > ul > li:first-child::before{
    border-radius: 10px 0 0 10px;
}
#top-menu > ul > li:last-child::before,
#top-menu .menu > ul > li:last-child::before{
    border-radius: 0 10px 10px 0;
}
#top-menu > ul > li > a,
#top-menu .menu > ul > li > a{
    display: block;
    text-transform: uppercase;
    color: #686E78;
    padding: 15px 20px;
    font-family: 'QuicksandMedium', sans-serif;
    position: relative;
    z-index: 2;
}
#top-menu > ul > li.menu-item-has-children > a,
#top-menu .menu > ul > li.menu-item-has-children > a{
    padding: 15px 30px 15px 20px;
}
#top-menu > ul > li.menu-item-has-children::after,
#top-menu .menu > ul > li.menu-item-has-children::after{
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 15px;
    margin-top: -2.5px;
    z-index: 1;
    width: 5px;
    height: 5px;
    background: #26367A;
    border-radius: 10em;
}
#top-menu > ul > li > ul,
#top-menu .menu > ul > li > ul{
    position: absolute;
    top:60px;
    left: 0;
    width: 220px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 3px 2px #d4ecf7;
    overflow: hidden;
    opacity: 0;
    height: 0;
    border-radius: 0 0 10px 10px;
    z-index: 999;
}
#top-menu > ul > li > ul > li,
#top-menu .menu > ul > li > ul > li{
    position: relative;
}
#top-menu > ul > li > ul > li::before,
#top-menu .menu > ul > li > ul > li::before{
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 0px;
    z-index: 1;
    height: 100%;
    background: #d4ecf7;
}
#top-menu > ul > li > ul > li > a,
#top-menu .menu > ul > li > ul > li > a{
    display: block;
    padding: 10px 20px;
    color: #686E78;
    position: relative;
    z-index: 2;
}
#top-menu > ul > li > ul ul,
#top-menu .menu > ul > li > ul ul{
    display: none;
}
.top-phone{
    display: flex;
    align-items: center;
    grid-area: top-phone;
}
.top-phone-ico{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border:2px solid #1aa8da;
    border-radius: 100em;
    text-align: center;
    margin-right: 8px;
}
.top-phone-ico i{
    font-size: 20px;
    color: #1aa8da;
}
.top-phone p{
    font-size: 25px;
    line-height: 25px;
    color: #686E78;
    font-family: 'QuicksandBold', sans-serif;
}
.top-phone p span{
    display: block;
    color: #13243A;
    font-size: 20px;
    white-space: nowrap;
}
.menu-movil{
    position: relative;
    display: none;
    width: 49px;
    height: 49px;
    line-height: 49px;
    background: #26367A;
    border-radius: 10px;
    text-align: center;
}
#menu_checkbox{
    display: none;
}
.menu-movil label{
    position: relative;
    width: 49px;
    display: block;
    height: 49px;
    position: absolute;
    top: 0;
    left: 0;
}
.menu-movil i{
    font-size: 28px;
    color: #EFF8FC;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.close-menu{
    opacity: 0;
}

/*-----------Slider---------------*/
#slider{
   background: #eff8fd;
   position: relative;
   margin-top: 155.16px;
}
#slider.scroll{
    margin-top: 117px;
}
#slider::after{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    z-index: 99;
    height: 80px;
    left: 0;
    bottom: -40px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 100%);
}
/*-----------Icons---------------*/
#icons{
    background: url(../images/ondas-bg.jpg);
    background-attachment: fixed;
    text-align: center;
    padding: 80px 0 135px 0;
}
#icons h2{
    color: #13243a;
    margin: 0 20px;
}
#icons h2 b{
    color: #1172b3;
    background: #fff;
    position: relative;
    z-index: 2;
    margin: 0 30px;
    padding: 0 5px;
    display: block;
}
#icons h2::after{
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    width: 97%;
    height: 42px;
    border:3px dotted #1172b3;
    border-radius: 15px;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#icons .grid-container{
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 150px;
}
#icons article figure{
    width: 150px;
    height: 150px;
    line-height: 0px;
    border-radius: 200em;
    margin: auto;
    text-align: center;
    position: relative;
}
#icons article figure img{
    width: 100%;
    max-width: 100px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#icons article figure::before{
    content: "";
    position: absolute;
    display: block;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 60px;
    height: 31px;
    background: red;
}
#icons article:nth-of-type(odd) figure{
    background: #26a8db;
}
#icons article:nth-of-type(odd) figure::before{
    background: url(../images/corner-icons-blue-light.png) no-repeat;
    background-size: 100% 100%;
}
#icons article:nth-of-type(even) figure{
    background: #1172b3;
}
#icons article:nth-of-type(even) figure::before{
    background: url(../images/corner-icons-blue.png) no-repeat;
    background-size: 100% 100%;
}
#icons article p{
    font-size: 20px;
    line-height: 22px;
    color: #686e78;
    margin-top: 15px;
}
#icons article p b{
    display: block;
}
#icons article:nth-of-type(odd) p b{
    color: #26a8db;
}
#icons article:nth-of-type(even) p b{
    color: #1172b3;
}
/*-----------Products---------------*/
#products{
    background: #1172b3 url(../images/products-back.png) no-repeat;
    background-position: center 60%;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}
#products::before{
    content: "";
    position: absolute;
    display: block;
    top: -52px;
    left: 0;
    width: 100%;
    height: 53px;
    background: url(../images/waves.png) no-repeat;
    background-position: center bottom;
}
#products h2{
    color: #fff;
    margin: 0 20px;
}
#products h2 b{
    color: #76ccf0;
    background: #1172b3;
    position: relative;
    z-index: 2;
    margin: 0 30px;
    padding: 0 5px;
    display: block;
}
#products h2::after{
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    width: 97%;
    height: 42px;
    border:3px dotted #76ccf0;
    border-radius: 15px;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#products > p{
    color: #fff;
    font-size: 25px;
    line-height: 28px;
    margin-top: 50px;
    font-family: 'QuicksandLight', sans-serif;
}
.products-carousel{
    max-width: 1500px;
    margin: auto;
    margin-top: 100px;
    padding: 0 30px;
    min-height: 690px;
}
.product p{
    font-size: 17px;
    line-height: 20px;
    color: #fff;
}
.product span{
    display: block;
    font-size: 17px;
    line-height: 20px;
    color: #76ccf0;
    font-family: 'QuicksandBold', sans-serif;
}
.slick-slide {
    margin: 0px 20px;
    text-align: center;
}
.slick-slide img{
    /*height: 396px;*/
    margin: auto;
    width: 70%;
}
.slick-slide.slick-center img{
    /*height: 509px;*/
    width: 100%;
}
.slick-slide.slick-center .product p,
.slick-slide.slick-center .product span{
    font-size: 25px;
    line-height: 28px;
}
.slick-prev, .slick-next {
    width: 50px !important;
    height: 50px !important;
    z-index: 9;
}
.slick-prev:before,
.slick-next:before {
    color: black;
    font-size: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
}
.slick-prev:before{
    background: url(../slick/prev.png) no-repeat !important;
     background-size: 100% !important;
}
.slick-next:before{
    background: url(../slick/next.png) no-repeat !important;
     background-size: 100% !important;
}
.slick-prev {
    left: 20px!important;
}
.slick-next {
    right: 20px!important;
}
.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}
.slick-active {
    opacity: .5;
}
.slick-current {
    opacity: 1;
}

/*-----------Recharge---------------*/
#recharge{
    padding: 50px 50px 30px 50px;
}
#recharge .grid-container{
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "recharge-img recharge-text";
    align-items: center;
}
.recharge-img{
    justify-self: end;
    position: relative; 
    z-index: 2;
    grid-area: recharge-img;
}
.recharge-img figure{
    line-height: 0;
}
.recharge-img figure img{
    max-width: 700px;
    width: 100%;
}
.recharge-text{
    justify-self: start;
    position: relative; 
    z-index: 1;
    grid-area: recharge-text;
}
.recharge-text p.re-p1{
    font-size: 36px;
    line-height: 39px;
    color: #13243a;
    font-family: 'QuicksandLight', sans-serif;
    padding: 0 30px;
}
.recharge-text p.re-p1 b{
    color: #1172b3;
}
.recharge-text p.re-p2{
    font-size: 27px;
    line-height: 30px;
    color: #fff;
    background: #26a8db;
    padding: 30px 30px 30px 130px; 
    border-radius: 0 20px 20px 0;
    margin: 20px 0 20px -100px;
    position: relative;
    font-family: 'QuicksandLight', sans-serif;
}
.recharge-text p.re-p2::after{
    content: "";
    display: block;
    position: absolute;
    width: 141px;
    height: 156px;
    background: url(../images/sheet.png) no-repeat;
    right: 0;
    bottom: -80px;
    z-index: 1;
}
.recharge-text p.re-p3,
.recharge-text p.re-p4{
    font-size: 30px;
    line-height: 33px;
    color: #1172b3;
    font-family: 'QuicksandBold', sans-serif;
    padding: 0 30px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.recharge-text p.re-p3 a,
.recharge-text p.re-p4 a{
    color: #1172b3;
}
/*-----------Maquila---------------*/
#maquila{
    padding: 50px;
    background-color: #1172b3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
#maquila .grid-container{
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "maquila-text maquila-img";
    align-items: center;
}
.maquila-img{
    justify-self: start;
    position: relative; 
    z-index: 2;
    grid-area: maquila-img;
}
.maquila-img figure{
    line-height: 0;
}
.maquila-img figure img{
    max-width: 550px;
    width: 100%;
}
.maquila-text{
    justify-self: end;
    position: relative; 
    z-index: 1;
    max-width: 550px;
    grid-area: maquila-text;
}
.maquila-text p.ma-p1{
    font-size: 36px;
    line-height: 39px;
    color: #fff;
    font-family: 'QuicksandLight', sans-serif;
    padding: 0 30px 0 55px;
}
.maquila-text p.ma-p2{
    font-size: 36px;
    line-height: 39px;
    color: #fff;
    background: #26a8db;
    padding: 30px 150px 30px 50px; 
    border-radius: 20px 0 0 20px;
    margin: 20px -100px 20px 0;
    position: relative;
    font-family: 'QuicksandLight', sans-serif;
}
.maquila-text p.ma-p3,
.maquila-text p.ma-p4{
    font-size: 25px;
    line-height: 28px;
    color: #fff;
    font-family: 'QuicksandLight', sans-serif;
    padding: 0 50px;
    white-space: nowrap;
}
.maquila-text p.ma-p3 a,
.maquila-text p.ma-p4 a{
    color: #fff;
    font-family: 'QuicksandBold', sans-serif;
    font-size: 30px;
    line-height: 33px;
}
.maquila-text p.ma-p3 i,
.maquila-text p.ma-p4 i{
    color: #26a8db;
    width: 50px;
    height: 50px;
    line-height: 45px;
    border: 2px solid #26a8db;
    border-radius: 80em;
    text-align: center;
}
/*-----------Customers---------------*/
#customers{
    background-color: #ececec;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    text-align: right;
}
#customers > div{
    max-width: 1500px;
    margin: auto;
    padding: 80px 20px;
    background: rgba(255,255,255,0.3);
}
#customers > div article{
    width: 50%;
    display: inline-block;
    text-align: center;
}
#customers h2{
    color: #13243a;
    margin: 0 20px;
    font-family: 'QuicksandLight', sans-serif;
    margin-bottom: 50px;
}
#customers h2 b{
    color: #1172b3;
    display: block;
}
#CustomersSlider{
    display: flex;
    flex-wrap: wrap;
}
.customers-item{
    width: 50%;
    padding: 0 10px 0 10px;
    margin-bottom: 15px;
}
.customers-item figure{
    line-height: 0;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    background: #fff;
}
.customers-item img{
    width: 100%;
    max-width: 200px;
    display: inline-block;
}
#customers .holder > a{
    display: inline-block;
    width: 12px;
    height: 12px;
    font-size: 0;
    margin: 0 5px;
    border-radius: 50px;
    border: 2px solid #1172b3;
}
#customers .jp-previous,
#customers .jp-next{
    display: none !important;
}
#customers .jp-current{
    background: #1172b3;
    width: 20px !important;
}
/*-----------Footer---------------*/

footer{
    background: #26367A;
    padding-top: 50px;
    color: #fff;
    font-family: 'QuicksandLight', sans-serif;
}
footer .grid-container{
    grid-template-columns: 40% 40% 20%;
    grid-template-areas: "footer1 footer2 footer3";
    justify-content: center;
    max-width: 1200px;
    padding: 0 20px;
}
footer h4{
    font-size: 20px;
    line-height: 23px;
    color: #26a8db;
    font-family: 'QuicksandBold', sans-serif;
    margin-bottom: 20px;

}
.footer1{
    grid-area: footer1;
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-areas: "footer-logo footer-info"
                         "footer-social footer-social";
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    padding-right: 50px;
}
.footer-logo{
    grid-area: footer-logo;
}
.footer-logo img{
    width: 100%;
}
.footer-info{
    grid-area: footer-info;
}
.footer-info hr{
    height: 0;
    width: 80%;
    border:none;
    border-top: 1px dotted #26a8db;
    background: transparent;
    margin: 15px 0;
}
.footer-social{
    grid-area: footer-social;
    display: flex;
    flex-wrap: wrap;
    font-size: 17px;
}
.footer-social li{
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    background: #26a8db;
    border-radius: 80em;
}
.footer-social li:last-child{
    margin-right: 0;
}
.footer-social li::before{
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    background: #26367A;
    border-radius: 80em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
}
.footer-social li a{
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 80em;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 2;
}
.footer2{
    grid-area: footer2;
    background: rgba(19, 36, 58, .4);
    border-radius: 20px;
    padding: 30px;
}
.footer-contact > span{
    display: block;
    margin-bottom: 20px;
}
.footer-contact > span:last-child{
    margin-bottom: 0;
}
.footer-contact > span > div{
   padding-left: 30px;
   position: relative;
   margin-bottom: 8px;
}
.footer-contact > span > div:last-child{
   margin-bottom: 0;
}
.footer-contact i{
   position: absolute;
   left: 0;
   top: 0;
   color: #26a8db;
}
.footer-contact a{
    color: #fff;
}
.footer3{
    grid-area: footer3;
    padding-top: 30px;
    padding-left: 50px;
}
.footer3 .widget_nav_menu ul.menu > li > a {
    color: #fff;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}
.footer3 .widget_nav_menu ul.menu > li:last-child > a{
    margin-bottom: 0;
}
.footer3 .widget_nav_menu ul.menu > li > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 20em;
    background: #26a8db;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.footer3 .widget_nav_menu ul.menu > li > ul{
    display: none;
}
.copyrigth{
    margin-top: 50px;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    background: rgba(19, 36, 58, .4);
}
/*-----------Whatsapp---------------*/
#b-whatsapp{
    position: fixed;
    z-index: 999;
    right: -150px;
    bottom: 20%;
    min-width: 191px;
}
#b-whatsapp a{
    display: block;
    background: transparent;
    color: transparent;
    font-family: 'QuicksandBold', sans-serif;
    padding: 10px 20px 10px 35px;
    position: relative;
}
#b-whatsapp  a i{
    position: absolute;
    left: -25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #0ca538;
    color: #fff;
    font-size: 30px;
    border-radius: 80em;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
/*-----------ScrollUp---------------*/
.scrollup {
    position: fixed;
    bottom: 30px;
    right: -120px;
    width: 39px;
    height: 38px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.80);
    color: #185f90;
    cursor: pointer;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/*-----------Main---------------*/

main{
    background-position: right top;
    background-repeat: no-repeat;
    padding: 100px 80px 60px 80px;
    margin-top: 155.16px;

}
main.scroll{
    margin-top: 117px;
}
main .main-content{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .80);
    border-radius: 50px;
    box-shadow: 0 -3px 3px rgba(0, 0, 0, .1);
    padding: 80px;
}
main h2{
    color: #1172b3;
    margin-bottom: 50px;
    font-size: 40px;
    line-height: 43px;
    position: relative;
}
main h2::after{
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: rgb(38,168,219);
    background: linear-gradient(90deg, rgba(38,168,219,1) 0%, rgba(17,114,179,1) 100%);
    border-radius: 10px;
    margin-top: 15px;
}
main h3{
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
    font-family: 'QuicksandBold', sans-serif;
    color: #606060;
}
main p{
    font-size: 17px;
    line-height: 23px;
    color: #3c3c3b;
    margin-bottom: 15px;
}
main p:last-child{
    margin-bottom: 0;
}
.main-blog{
    max-width: 1500px;
    margin: auto;
}
.main-blog h2{
    padding-left: 50px;
}
.main-blog h2::after{
    display: none;
}
.blog-items{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.blog-item{
    background: rgba(255, 255, 255, .80);
    border-radius: 15px;
    box-shadow: 0 -3px 3px rgba(0, 0, 0, .1);
    padding: 3px 3px 15px 3px;
}
.blog-item figure{
    overflow: hidden;
    border-radius: 15px 15px 0 0 ;
    position: relative;
    line-height: 0;
}
.blog-item figure img{
    width: 100%;
}
.info-item{
    font-size: 12px;
    color: #575756;
    padding: 0 15px;
    display: block;
    margin-top: 10px;
}
.info-item b{
    font-family: 'QuicksandMedium', sans-serif;
}
.info-item b i{
    color: #1aa8da;
}
.info-item b:nth-of-type(1){
    margin-right: 20px;
}
.info-item b:nth-of-type(2) i{
    margin-right: 3px;
}
.blog-item figure .blur{
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    z-index: 2;
    background: rgba(0, 0, 0, .3);
    text-align: center;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: 200em;
}
.blog-item figure .blur i{
    font-size: 0;
    width: 0px;
    height: 0px;
    background: rgba(0, 0, 0, .3);
    border-radius: 90em;
    text-align: center;
    line-height: 60px;
    color: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    overflow: hidden;
    opacity: 0;
}
.blog-item h3{
    font-size: 20px;
    line-height: 23px;
    color: #13243a;
    font-family: 'QuicksandBlog', sans-serif;
    padding: 0 15px;
    margin: 20px 0;
}
.blog-item p{
    font-size: 15px;
    line-height: 20px;
    padding: 0 15px;
}
.main-blog .holder{
    margin-top: 50px;
    text-align: center;
}
.main-blog .holder a{
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #1aa8da;
    margin-right: 8px;
    line-height: 40px;
    color: #1aa8da;
    border-radius: 10px;
    margin-bottom: 5px;
}
.main-blog .holder a:last-child{
    margin-right: 0;
}
.main-blog .holder .jp-current{
    background: #1aa8da;
    color: #fff;
}
.main-blog .holder .jp-disabled{
    opacity: .4;
}
.main-blog .holder .jp-hidden{
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    margin-right: 8px;
    line-height: 40px;
    color: #ccc;
}
/*-----------widgets---------------*/
#h2o-widgets{
    padding: 50px 20px;
    background: #1e3060;
    color: #fff;
    font-family: 'QuicksandLight', sans-serif;
}
#h2o-widgets > div{
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-around;
}
#h2o-widgets > div > article{
    padding: 30px;
    flex-grow: 1;
}
#h2o-widgets > div > article > div{
}
#h2o-widgets a{
    color: #26a8db;
}

#h2o-widgets h4{
    font-size: 20px;
    line-height: 23px;
    color: #26a8db;
    font-family: 'QuicksandBold', sans-serif;
    margin-bottom: 20px;
}
#h2o-widgets p{
    margin-bottom: 15px;
}
#h2o-widgets .widget_nav_menu ul.menu > li > a {
    color: #fff;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}
#h2o-widgets .widget_nav_menu ul.menu > li:last-child > a{
    margin-bottom: 0;
}
#h2o-widgets .widget_nav_menu ul.menu > li > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 20em;
    background: #26a8db;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#h2o-widgets .widget_nav_menu ul.menu > li > ul{
    display: none;
}
/*-----------breadcrumbs---------------*/
.h2o-breadcrumbs{
    max-width: 1500px;
    margin: 0 auto 10px auto;
}
.h2o-breadcrumbs > li{
    padding: 10px 80px 10px 80px;
    display: inline-block;
    font-size: 13px;
    line-height: 15px;
    color: grey;
     background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 100%);
}
.h2o-breadcrumbs p{
    margin-bottom: 0 !important;
}
.h2o-breadcrumbs a{
    color: #1aa8da;
}
.h2o-breadcrumbs .aioseo-breadcrumbs span:last-child{
    font-family: 'QuicksandBold', sans-serif;
}
/*-----------thumb img pages---------------*/
.thumb-page{
    width: 100%;
    overflow: hidden;
    border-radius: 50px 50px 25px 25px;
    line-height: 0;
    margin-bottom: 20px;
}
.thumb-page img{
    width: 100%;
    height: auto;
}
/*-----------vista productos archive---------------*/
.post-type-archive-products .blog-item h3{
    text-align: center;
    margin-bottom: 10px;
}
.post-type-archive-products .blog-item .product-price{
    text-align: center;
    display: block;
    font-size: 25px;
    line-height: 28px;
    color: #1aa8da;
    font-family: 'QuicksandBold', sans-serif;
}
/*-----------vista producto---------------*/
.product-view{
    visibility: visible;
    animation-name: fadeInDown;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: center;
}
.product-view .product-price{
    display: block;
    font-size: 25px;
    line-height: 28px;
    color: #1aa8da;
    font-family: 'QuicksandBold', sans-serif;
    margin-bottom: 50px;
}
.product-view h2{
    margin-bottom: 20px;
}
#related-products{
    background: #0b72b2;
    position: relative;
    padding: 50px 20px;
    margin-top: 30px;
}
#related-products::before {
    content: "";
    position: absolute;
    display: block;
    top: -52px;
    left: 0;
    width: 100%;
    height: 53px;
    background: url(../images/waves.png) no-repeat;
    background-position: center bottom;
}
#related-products > div{
    max-width: 1200px;
    margin: auto;
}
#related-products p{
    font-size: 17px;
    line-height: 20px;
    color: #fff;
}
#related-products .product-price{
    display: block;
    font-size: 20px;
    line-height: 23px;
    color: #76ccf0;
    font-family: 'QuicksandBold', sans-serif;
}
.clearout
{
height:20px;
clear:both;
}
#flexisel
{
display:none;
}
.nbs-flexisel-container
{
    position:relative;
    max-width:100%;
}
.nbs-flexisel-container::after{
    content:"";
    display:block;
    clear: both;
}
.nbs-flexisel-ul
{
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;
    text-align:center;
}
.nbs-flexisel-inner
{
    overflow:hidden;
    float:left;
    width:100%;
    background:transparent;
    padding-top:15px;
    padding-bottom:15px;
}
.nbs-flexisel-item
{
    float:left;
    margin:0px;
    padding:0px;
    cursor:pointer;
    position:relative;
    border-right: 0px dotted #bcbcbc;
    background: url(../images/products-back.png) no-repeat;
    background-position: center center;
    background-size: 100%;
}
.nbs-flexisel-item img
{
    width: 85%;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
    margin-bottom: 0px;
    max-width:200px;
    max-height:300px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right
{
    width: 40px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    opacity:0;
}

.nbs-flexisel-nav-left
{
    left: -40px;
    opacity: 0;
    background: url(../images/control-products.png) 0 -32px no-repeat;
}

.nbs-flexisel-nav-right
{
    right: -40px;
    opacity: 0;
    background: url(../images/control-products.png) -33px -32px no-repeat;
}
#no-post{
    grid-column: 1 / span 4;
    text-align: center;
}
#no-post p{
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
}
.boton-h2o,
p.boton-h2o a{
    display: inline-block;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid #1aa8da;
    color: #1aa8da;
    font-family: 'QuicksandBold', sans-serif;
}
/*-----------vista post articulo---------------*/
.post-view{
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 50px;
}
.no-widgets{
    padding: 15px;
    background: rgba(255, 255, 255, .80);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.post-view .col-right h4{
    font-size: 20px;
    line-height: 23px;
    color: #26a8db;
    font-family: 'QuicksandBold', sans-serif;
    margin-bottom: 20px;
}
.post-view .col-right .widget_nav_menu ul.menu > li > a,
.post-view .col-right .widget_recent_entries ul > li > a{
    color: #333;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}
.post-view .col-right .widget_nav_menu ul.menu > li > a::before,
.post-view .col-right .widget_recent_entries ul > li > a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 20em;
    background: #26a8db;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.post-view .col-right .widget_nav_menu ul.menu > li > ul,
.post-view .col-right .widget_recent_entries ul > li > ul {
    display: none;
}
/*-----------forms---------------*/

form input,
form textarea,
form select{
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #1aa8da;
    border-radius: 15px;
    padding: 10px 25px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 19px;   
}
form input::placeholder,
form textarea::placeholder{
    color: #b7b7b7;   
}
form label input{
    margin-top: 10px;
}
form label{
    font-family: 'QuicksandBold', sans-serif;
    margin-bottom: 15px;
    display: block;
    color: #1aa8da;
}
form label textarea{
    height: 150px;
    resize: none;
}
form input[type=submit]{
    width: auto;
    background: #1aa8da;
    color: #fff;
    font-family: 'QuicksandBold', sans-serif;
}
form select[multiple=multiple]{
    height: auto;
    overflow-y: hidden;
}
form input[type=checkbox],
form input[type=radio]
{
    line-height: 0;
    width: 15px;
    height: 15px;
    margin-top: 0;
    padding: 0;
    appearance: none;
    border-radius: 3px;
}
form input[type=radio]
{
    border-radius: 50em;
}
form input[type=checkbox]:checked,
form input[type=radio]:checked
{
    background: #1aa8da;
}
form input[type=file]
{
    height: 45px;
}
.wpcf7-acceptance label{
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0px;
    color: #333;
    font-size: 15px;
    line-height: 19px;
}
#h2o-widgets form input,
#h2o-widgets form textarea,
#h2o-widgets form select,
.footer3 form input,
.footer3 form textarea,
.footer3 form select{
    background: transparent;
    color: #b1b1b1;
}
#h2o-widgets form label,
.footer3 form label{
    color: #fff;
}
#h2o-widgets form input[type=submit],
.footer3 form input[type=submit]{
    background: #1aa8da;
    color: #fff;
}
#h2o-widgets form input::placeholder,
#h2o-widgets form textarea::placeholder,
.footer3 form input::placeholder,
.footer3 form textarea::placeholder{
    color: #0084b2;   
}
#h2o-widgets form input[type=checkbox],
#h2o-widgets form input[type=radio],
.footer3 form input[type=checkbox],
.footer3 form input[type=radio]
{
    background: transparent;
}
#h2o-widgets form input[type=checkbox]:checked,
#h2o-widgets form input[type=radio]:checked,
.footer3 form input[type=checkbox]:checked,
.footer3 form input[type=radio]:checked
{
    background: #1aa8da;
}
/*-----------varios---------------*/
.box{
    padding: 30px;
    background: #d4ecf8;
    border-radius: 20px;
}
.cols{
    display:grid;
    gap:10px;
}
.cols.col4{
    grid-template-columns:repeat(4, 1fr);
}
.cols.col5{
    grid-template-columns:repeat(5, 1fr);
}
.contenedor-600{
    max-width:600px;
    margin:auto;
}
.contenedor-700{
    max-width:700px;
    margin:auto;
}
.contenedor-800{
    max-width:800px;
    margin:auto;
}
.contenedor-850{
    max-width:850px;
    margin:auto;
}
.contenedor-900{
    max-width:900px;
    margin:auto;
}

/*-----------@media Queries---------------*/

/*-----------Hover---------------*/
@media only screen and (min-width : 851px)
{

    .top-social li a:hover i{
       color: #1aa8da; 
    }
    #top-menu > ul > li:hover::before,
    #top-menu > ul > li.current-menu-item::before,
    #top-menu .menu > ul > li:hover::before,
    #top-menu .menu > ul > li.current-menu-item::before,
    #top-menu .menu > ul > li.current_page_item::before{
        height: 100%;
    }
    #top-menu > ul > li:hover > a,
    #top-menu > ul > li.current-menu-item > a,
    #top-menu .menu > ul > li:hover > a,
    #top-menu .menu > ul > li.current-menu-item > a,
    #top-menu .menu > ul > li.current_page_item > a{
        color: #26367A;
        font-family: 'QuicksandBold', sans-serif;
    }
    #top-menu > ul > li:hover > ul,
    #top-menu .menu > ul > li:hover > ul{
        height: auto;
        top:49px;
        opacity: 1;
    }
    #top-menu > ul > li > ul > li:hover > a,
    #top-menu .menu > ul > li > ul > li:hover > a{
        padding: 10px 25px 10px 25px;
    }
    #top-menu > ul > li > ul > li:hover::before,
    #top-menu .menu > ul > li > ul > li:hover::before{
        width: 100%;
    }
    .top-phone:hover .top-phone-ico{
        background: #1aa8da;
    }
    .top-phone:hover .top-phone-ico i{
        color: #fff;
    }
    .footer-social li:hover::before{
        width: 36px;
        height: 36px;
    }
    #b-whatsapp:hover{
        right: 0px;
    }
    #b-whatsapp:hover a{
        background: #0ca538;
        color: #fff;
    }
    .scrollup:hover {
        background: rgba(255, 255, 255, 0.95);
    }
    .blog-item:hover{
        box-shadow: 0 -3px 8px rgba(0, 0, 0, .3);
    }
    .blog-item:hover figure .blur{
        width: 500px;
        height: 500px;
    }
    .blog-item:hover figure .blur i{
       width: 60px;
        height: 60px;
        font-size: 25px;
        opacity: 1;
    }
    .post-type-archive-products .blog-item:hover figure .blur{
        width: 900px;
        height: 900px;
    }
    .main-blog .holder a:hover{
        background: #1aa8da;
        color: #fff;
    }
    .main-blog .holder a.jp-disabled{
        background: none;
        color: #1aa8da;
    }
    #h2o-widgets .widget_nav_menu ul.menu > li > a:hover,
    .footer3 .widget_nav_menu ul.menu > li > a:hover {
        color: #26a8db;
    }
    #related-products:hover .nbs-flexisel-nav-left {
    left: -30px;
    opacity: 1;
    }
    #related-products:hover .nbs-flexisel-nav-right {
        right: -30px;
        opacity: 1;
    }
    .boton-h2o:hover,
    p.boton-h2o a:hover{
        padding: 15px 35px;
        background: #1aa8da;
        color: #fff;
    }
    .post-view .col-right .widget_nav_menu ul.menu > li > a:hover,
    .post-view .col-right .widget_recent_entries ul > li > a:hover{
        color: #1172b3;
        font-family: 'QuicksandMedium', sans-serif;
    }
    form input[type=submit]:hover{
        padding: 10px 35px;
        background: #1172b3;
        cursor: pointer;
    }

}
/*--------------------------*/

@media only screen and (min-width : 851px) and (max-width : 1130px)
{

    #top-menu > ul > li > a,
    #top-menu .menu > ul > li > a {
        font-size: 13px;
        padding: 15px 10px;
    }
    .top-phone-ico {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .top-phone p {
        font-size: 20px;
        line-height: 20px;
    }
    .top-phone p span {
        font-size: 17px;
    }
    .products-carousel{
        min-height: 475px;
    }
    #icons article figure {
        width: 130px;
        height: 130px;
    }
    #icons article figure img {
        max-width: 80px;
    }
    footer .grid-container {
        grid-template-columns: 40% 30% 30%;
    }
    .footer1 {
        padding-right: 30px;
    }
    .footer3 {
        padding-left: 30px;
    }
    main {
        padding: 100px 50px 60px 50px;
        background-size: 100%;
    }
    .blog-items{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    main .main-content {
        padding: 50px;
    }
    .product-view {
        grid-template-columns: 300px 1fr;
        gap: 20px;
    }

}
@media only screen and (max-width : 900px)
{
    .slick-slide {
        opacity: 1 !important;
    }
    .slick-slide img {
        width: 100%;
    }
    .product p {
        font-size: 25px;
        line-height: 28px;
    }
}

@media only screen and (max-width : 850px)
{
    header{
        position: initial;
    }
    #top .grid-container{
        grid-template-columns: 1fr;
        grid-template-areas: "top-social";
        justify-items: center;
    }
    .top-datos{
        display: none;
    }
    .top-social{
        justify-self: inherit;
    }
    #logo-menu .grid-container{
        grid-template-columns: 80px 1fr;
        grid-template-areas: "site-name top-phone"
                             "top-menu top-menu";
        gap: 0;
        justify-items: end;
    }
    .site-name {
        justify-self: start;
    }
    #top-menu {
        width: 100%;
        position: absolute;
        top: 156px;
        left: 0;
        z-index: 999;
        }
    #top-menu > ul,
    #top-menu .menu > ul{
        flex-direction: column;
        text-align: center;
        overflow: hidden;
        height: 0;
        margin-left: 100%;
        opacity: 0;
        box-shadow: 0 0 0px rgba(0, 0, 0, .4);
        border-radius: 0;
    }
    #top-menu > ul > li,
    #top-menu .menu > ul > li{
        border-bottom: 1px dotted #d4ecf7;
    }
    #top-menu > ul > li:last-child,
    #top-menu .menu > ul > li:last-child{
        border-bottom: 0;
    }
    #top-menu > ul > li > ul,
    #top-menu .menu > ul > li > ul{
        position:relative;
        top:auto;
        left: auto;
        width: 100%;
        background: #d4ecf7;
        box-shadow: none;
        height: 100%;
        opacity: 1;
        display: none;
        border-radius: 0;
    }
    
    #top-menu > ul > li > ul > li,
    #top-menu .menu > ul > li > ul > li{
        border-bottom: 1px dotted #fff;
    }
    #top-menu > ul > li > ul > li:last-child,
    #top-menu .menu > ul > li > ul > li:last-child{
        border-bottom: none;
    }
    #top-menu > ul > li.menu-item-has-children::after,
    #top-menu .menu > ul > li.menu-item-has-children::after {
        display: none;
    }
    #top-menu.scroll{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        margin-top: 0;
    }
    .menu-movil{
        display: block;
        position: absolute;
        z-index: 2;
        top: -85px;
        right: 20px;
    }
    #top-menu.scroll .menu-movil{
        top: 10px;
        right: 20px;
    }
    #top-menu.scroll > ul,
    #top-menu.scroll .menu > ul{
        padding-top: 60px;
    }
    #menu_checkbox:checked + label i.open-menu{
        transform: rotateZ(90deg);
        opacity: 0;
        margin-top: -15px;
        margin-left: -11px;
    }
    #menu_checkbox:checked + label i.close-menu{
        transform: rotateZ(90deg);
        opacity: 1;
        margin-top: -15px;
        margin-left: -11px;
    }
    #menu_checkbox:checked + label + ul,
    #menu_checkbox:checked + label + .menu > ul{
        height: 100%;
        margin-left: 0;
        opacity: 1;
        box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    } 
    #top-menu.scroll #menu_checkbox:checked + label + ul,
    #top-menu.scroll #menu_checkbox:checked + label + .menu > ul{
        border-radius: 0;
        background: #fff;
    } 
    .top-phone {
        margin-right: 70px;
    }
    .top-phone-ico {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .top-phone p {
        font-size: 20px;
        line-height: 20px;
    }
    .top-phone p span {
        font-size: 17px;
    }
    #icons article{
        padding-top: 40px;
    }
    #icons article figure {
        width: 130px;
        height: 130px;
    }
    #icons article figure img {
        max-width: 80px;
    }
    #slider{
       margin-top: 0;
    }
    .products-carousel{
        min-height: auto;
    }
    #products::before,
    #related-products::before {
        background: url(../images/waves.png) no-repeat;
        background-position: left bottom;
    }
    #recharge .grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: "recharge-img" 
                             "recharge-text";
    }
    .recharge-img,
    .recharge-text {
        justify-self: center;
        text-align: center;
    }
    .recharge-text p.re-p1 {
        padding: 0;
    }
    .recharge-text p.re-p2 {
        padding: 30px;
        border-radius: 20px;
        margin: 20px 0;
    }
     #maquila .grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: "maquila-img" 
                             "maquila-text";
    }
    .maquila-img,
    .maquila-text {
        justify-self: center;
        text-align: center;
    }
    .maquila-text p.ma-p1 {
        padding: 0;
    }
    .maquila-text p.ma-p2 {
        padding: 30px;
        border-radius: 20px;
        margin: 20px 0;
    }
    #customers {
        text-align: center;
    }
    #customers > div {
        background: rgba(255,255,255,0.6);
    }
    #customers > div article {
        width: 100%;
        max-width: 500px;
    }
    .customers-item {
        padding: 0 5px 0 5px;
        margin-bottom: 5px;
    }
    #customers .holder{
        margin-top: 30px;
    }
    #customers .holder > a {
        width: 20px;
        height: 20px;
    }
    #customers .jp-current {
        width: 35px !important;
    }
    footer .grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: "footer1" 
                             "footer2" 
                             "footer3";
        gap: 20px;
    }
    .footer1,
    .footer3 {
        padding: 0 30px;
    }
    .footer-social {
        justify-content: center;
    }
     main {
        margin-top: 0;
        padding: 85px 20px 50px 20px;
        background-size: 100%;
    }
    #related-products > div {
        padding: 0 20px;
    }
    #related-products .nbs-flexisel-nav-left {
    left: -30px;
    opacity: 1;
    }
    #related-products .nbs-flexisel-nav-right {
        right: -30px;
        opacity: 1;
    }
    .product-view {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .product-view .thumb-product{
        text-align: center;
    }
    .product-view .thumb-product img{
        max-width: 300px;
        width: 100%;
    }
    .post-view {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .post-view .col-right{
        border-top: 1px dotted #bcbcbc;
        padding-top: 40px;
    }
}

@media only screen and (min-width : 601px) and (max-width : 850px)
{
     #icons .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        margin-top: 100px;
    }
    main .main-content {
        padding: 30px;
        border-radius: 30px;
    }
    .blog-items{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    #h2o-widgets > div > article{
        padding: 10px;
    }
    .h2o-breadcrumbs{
        padding: 10px 50px 10px 50px;
    }
    .thumb-page{
        border-radius: 30px 30px 15px 15px;
    }
    
}


@media only screen and (min-width : 401px) and (max-width : 600px)
{
    #icons .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        margin-top: 50px;
    }
    .home h2 {
        font-size: 32px;
        line-height: 32px;
    }
    .home h2 b {
        font-size: 45px;
        line-height: 45px;
    }
    #icons {
        padding: 50px 0 130px 0;
    }
    #recharge,
    #maquila {
        padding: 50px 20px;
    }
    .recharge-text p.re-p1 {
        font-size: 30px;
        line-height: 32px;
    }
    .recharge-text p.re-p2 {
        font-size: 22px;
        line-height: 24px;
    }
    .recharge-text p.re-p2::after {
        width: 100px;
        height: 101px;
        background: url(../images/sheet.png) no-repeat;
        background-size: 100%;
        right: -10px;
        bottom: -40px;
    }
    .maquila-text p.ma-p1,
    .maquila-text p.ma-p2 {
        font-size: 30px;
        line-height: 32px;
    }
    .maquila-text p.ma-p3,
     .maquila-text p.ma-p4 {
        white-space: normal;
        padding: 0 30px;
    }
    .slick-slide {
        opacity: 0 !important;
    }
    .slick-center{
        opacity: 1 !important;
    }
    #products {
        background: #1172b3 url(../images/products-back.png) no-repeat;
        background-position: center 60%;
        background-size: 100%;
        padding: 50px 20px 100px 20px;
    }
    main {
    padding-top: 50px;
    }
    main .main-content {
        padding: 25px;
        border-radius: 30px;
    }
    main h2{
        font-size: 32px;
        line-height: 35px;
    }
    .blog-items{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    .main-blog h2 {
        padding-left: 0px;
    }
    #h2o-widgets > div {
        flex-direction: column;
    }
    #h2o-widgets > div > article{
        padding: 0px;
        margin-bottom: 15px;
        border-bottom: 1px dotted #26a8db6b;
        padding-bottom: 15px;
    }
    #h2o-widgets > div > article:last-child{
        margin-bottom: 0px;
        border-bottom: 0;
        padding-bottom: 0;
    }
    .h2o-breadcrumbs{
        padding: 10px 25px 10px 25px;
    }
    .thumb-page{
        border-radius: 30px 30px 15px 15px;
    }
}

@media only screen and (max-width : 400px)
{
    #top{
        overflow: hidden;
        height: 0;
        padding: 0;
    }
    #logo-menu {
        padding: 0;
    }
    #logo-menu .grid-container{
        grid-template-columns:1fr;
        grid-template-areas: "top-phone"
                             "site-name"
                             "top-menu";
    }
    .site-name {
        margin-left: 20px;
        margin-top: -30px;
        position: relative;
        z-index: 1;
        background: #fff;
        border-radius: 10px;
    }
    .top-phone {
        margin-right: 0px;
        width: 100%;
        background: #26367a;
        justify-content: end;
        padding: 5px 20px;
    }
    .top-phone-ico {
        width: 35px;
        height: 35px;
        line-height: 33px;
    }
    .top-phone-ico i {
        font-size: 17px;
    }
    .top-phone p {
        font-size: 0px;
        line-height: 0px;
    }
    .top-phone p span {
        color: #fff;
    }
    #top-menu {
        width: 100%;
        position: absolute;
        top: 119px;
        left: 0;
        z-index: 999;
    }
    .menu-movil {
        right: 20px;
        top: -65px;
    }
    #icons .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        margin-top: 50px;
    }
    #icons h2::after,
    #products h2::after {
        width: 85%;
    }
    .home h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .home h2 b {
        font-size: 35px;
        line-height: 35px;
    }
    #products > p {
        font-size: 20px;
        line-height: 22px;
    }
    #icons {
        padding: 50px 0 130px 0;
    }
    #products {
        background: #1172b3 url(../images/products-back.png) no-repeat;
        background-position: center 60%;
        background-size: 100%;
        padding: 50px 20px 80px 20px;
    }
    #products::before,
    #related-products::before {
        background: url(../images/waves.png) no-repeat;
        background-position: left -100px bottom;
    }
    .products-carousel {
        margin-top: 50px;
    }
    #recharge,
    #maquila {
        padding: 50px 20px;
    }
    .recharge-text p.re-p1 {
        font-size: 25px;
        line-height: 27px;
    }
    .recharge-text p.re-p2 {
        font-size: 20px;
        line-height: 22px;
    }
    .recharge-text p.re-p3,
    .recharge-text p.re-p4 {
        font-size: 25px;
        line-height: 27px;
    }
    .recharge-text p.re-p2::after {
        width: 100px;
        height: 101px;
        background: url(../images/sheet.png) no-repeat;
        background-size: 100%;
        right: -10px;
        bottom: -40px;
    }
    .recharge-text p.re-p3,
    .recharge-text p.re-p4  {
        white-space: normal;
    }
    .maquila-text p.ma-p1,
    .maquila-text p.ma-p2 {
        font-size: 25px;
        line-height: 27px;
    }
    .maquila-text p.ma-p2 {
        padding: 15px;
    }
    .maquila-text p.ma-p3,
    .maquila-text p.ma-p4 {
        white-space: normal;
        padding: 0 15px;
        font-size: 25px;
        line-height: 27px;
    }
    .maquila-text p.ma-p3 a,
    .maquila-text p.ma-p4 a {
        display: block;
        font-size: 25px;
        line-height: 27px;
    }
    .maquila-text p.ma-p3 i,
    .maquila-text p.ma-p4 i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 17px;
    }
    footer{
        text-align: center;
    }
    .footer1, .footer3 {
        padding: 0 15px;
    }
    .footer1 {
        grid-template-columns: 1fr;
        grid-template-areas: "footer-logo" 
                             "footer-info"
                             "footer-social";
        align-items: center;
        gap: 30px;
    }
    .footer-logo img {
        max-width: 80px;
        display: inline-block;
    }
    .footer-info hr {
        width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer2 {
        padding: 30px 15px;
    }
    .footer-contact > span > div {
        padding-left: 0px;
    }
    .footer-contact i {
        left: 50%;
        margin-left: -10px;
        top: -45px;
        background: #1e3060;
        width: 30px;
        height: 30px;
        border: 1px dotted #27a8db;
        border-radius: 20em;
        line-height: 30px;
    }
    .fo-dir i{
        display: none;
    }
    .footer-contact > span {
        border-bottom: 1px dotted #27a8db;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .footer-contact > span:last-child {
        border-bottom: 0;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .footer3 > ul > li > a {
        padding-left: 0px;
    }
    .footer3 > ul > li > a::before {
        display: none;
    }
    .slick-slide {
        opacity: 0 !important;
    }
    .slick-center{
        opacity: 1 !important;
    }
    .slick-slide.slick-center .product p,
    .slick-slide.slick-center .product p span,
    .slick-slide .product p,
    .slick-slide .product p span,
    .product span {
        font-size: 20px;
        line-height: 23px;
    }
    main {
    padding-top: 50px;
    }
    main .main-content {
        padding: 20px;
        border-radius: 15px;
    }
    main h2{
        font-size: 30px;
        line-height: 33px;
    }
    main h2::after {
        width: 80px;
    }
    .blog-items{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    .main-blog h2 {
        padding-left: 0px;
    }
    #h2o-widgets > div {
        flex-direction: column;
    }
    #h2o-widgets > div > article{
        padding: 0px;
        margin-bottom: 15px;
        border-bottom: 1px dotted #26a8db6b;
        padding-bottom: 15px;
    }
    #h2o-widgets > div > article:last-child{
        margin-bottom: 0px;
        border-bottom: 0;
        padding-bottom: 0;
    }
    .h2o-breadcrumbs{
        padding: 10px 25px 10px 25px;
    }
    .thumb-page{
        border-radius: 15px;
    }
}






