*{
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    box-sizing:border-box;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

/* registro */
.register{
    text-decoration: none!important;
    font-weight: 700;
}
.total{
    font-size: 15px;
}

/* input camara */
.SubirFoto {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    line-height: normal;
}

.SubirFoto + label {
    font-size: .8rem;
    font-weight: bold;
    color: #d3394c;
    display: inline-block;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    /* padding: 0.6rem 1.2rem; */
    cursor: pointer;
}

.SubirFoto:focus + label,
.SubirFoto + label:hover {
    color: orange;
    outline: 1px dotted #000;
    fill: orange;
}

.SubirFoto + label figure {
    width: 40%;
    height: 25%;
    fill: #f1e5e6;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 6px 10px;
    margin: 0 auto 10px;
}

.SubirFoto + label:hover figure {
    background:orange;
}

inputfile + label svg {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}
/* f input camara */
/* f registro */
/* carrito */

.mab:hover{
    background: #fff!important;
    color:#000!important;
}
.mab:after{
    color:#000!important;
}

.badge i{
    font-size: 20px;
    border-radius: 50%;
    padding: 10px;
    color: #004581!important;
}
/* fin carrito */
/* form pedido */
.fechaNext{
    font-weight: 600;
}

.radioForm{
    text-align: start;
}
.pedidocontent .form-outer {
    width: 100%;
    overflow: hidden;
}

.pedidocontent .form-outer form {
    display: flex;
    width: 400%;
}

.form-outer form .page {
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
}

.form-outer form .page .title {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
}
.form-outer form .page .etitle {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
    margin-top: -70px;
    z-index: 10;
    position: relative;
}
.form-outer form .page .ftitle {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
    margin-top: -70px;
    z-index: 10;
    position: relative;
}

.form-outer form .page .field {
    width: 100%;
    height: 45px;
    margin: 45px 0;
    display: flex;
    position: relative;
}

/* form .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
} */

form .page .field input {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
}

form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}

form .page .field button {
    width: 50%;
    height: calc(100% + 5px);
    border: none;
    background: #d33f8d;
    /* margin-top: -20px; */
    margin: -30px auto 0 auto;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

form .page .field button:hover {
    background: #000;
}

form .page .btns button {
    margin-top: -20px !important;
}

form .page .btns button.prev {
    margin-right: 3px;
    font-size: 17px;
}

form .page .btns button.next {
    margin-left: 3px;
}
/*  */
.pedidocontent {
    width: 100%;
    background: #fff;
    /* text-align: center; */
    border-radius: 5px;
    padding: 50px 35px 10px 35px;
}
/* .pedidocontent .progress-bar{
    display: flex;
    flex-direction: row;
} */
.pedidocontent .progress-bar {
    display: flex;
    flex-direction: row;
    margin: 40px 0;
    user-select: none;
}
.pedidocontent .progress-bar .step {
    text-align: center;
    width: 100%;
    position: relative;
}
.pedidocontent .progress-bar .step p {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}
.progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #000;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
}
.progress-bar .step .bullet.active {
    border-color: #d43f8d;
    background: #d43f8d;
}
.progress-bar .step .bullet span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.progress-bar .step .bullet.active span {
    display: none;
}

.progress-bar .step .bullet:before,
.progress-bar .step .bullet:after {
    position: absolute;
    content: '';
    bottom: 11px;
    right: -220px;
    height: 3px;
    width: 200px;
    background: #262626;
}

.progress-bar .step .bullet.active:after {
    background: #d43f8d;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
    display: none;
}

.progress-bar .step p.active {
    color: #d43f8d;
    transition: 0.2s linear;
}

.progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}

.progress-bar .step .check.active {
    display: block;
    color: #fff;
}
/*  */

.userdate{
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* f form pedido */
/* estilos carrusel */
#carruselFirst{
    z-index: 1;
}
.carousel-indicators li{
    background-color: #004581!important;
    
}

.carousel-indicators li.active{
    background-color: #000!important;
    
}
/* fin estilos carrusel */
/* barra1 */
.logo{
    width: 130px;
    height: 20px;
}

.nav1{
    background: #004581;
}
.nav2{
    z-index: 5;
}
.nav2 .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav1 .container a{
    color: #fff;
    font-size: 18px;
}

.nav1 .container a:hover{
    color: #28a745;
}
.dropdown{
    display: inline!important;
}

.especial{
    margin-left: -30px!important;
    border: 1px solid #004581!important;
}

.sigue{
    background: #28a745;
    border-radius: 20px;
    padding: 0px 15px;
}
.sigue:hover{
    background: #dc3545;
    color: #fff!important;
}

.boton1{
    background: #28a745;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
}

.boton1 div a{
    color: #000!important;
}

.dropdown .boton2{
    background: #004581!important;
    color: #fff;
    padding: 8px 15px 5px 15px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.dropdown .boton2:hover{
    background: #004581!important;
    color: #dc3545;
    padding: 8px 15px 5px 15px;
    border-radius: 50%;
    border: 1px solid #dc3545;
}

.dropdown a{
    color: #000!important;
}
.dropdown a:hover{
    background: #004581;
    color: #fff!important;
}
/* fin barra1 */
/* barra2 */
.dropdown .specialtbn{
    font-weight: 700;
    font-size: 18px;
}
.dropdown .specialtbn:hover{
    background: #fff!important;
    color: #dc3545!important;
}

.desplegable{
    width: 100%;
}

.desplegable a{
    text-transform: capitalize;
}
/* fin barra2 */
/* seccion1 */
.containAll{
    background: #f6f6f6;
}
.fblanquito{
    background: #fff;
}
.titulo1{
    font-size: 40px;
    text-align: center;
    color: #000;
    text-transform: capitalize;
}
.product{
    border-radius: 20px;
}
.productoinfo{
    color: #b2b2b2;
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.productoinfo .text-tag{
    font-size: 11px;
    background: #fff;
}
.productoinfo div{
    background: #fff;
}
.productoinfo .productoname{
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    line-height: 17px;
}
.productoinfo .precio{
    color: #000;
    font-size: 16px;
    background: #fff;
}
.product a img{
    padding: 40px 50px 15px 50px;
    background: #fff;
    border-radius: 10px 10px 0 0;
}
.contenedorProduct{
    position: relative;
}
.shopBtn{
    display: none;
    padding: 0 25px;
    display: flex;
    justify-content: space-around;
}
.shopBtn{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shopBtn .circle1{
    padding:10px 45px;
    background: #1b8f43;
    border: 1px solid #1b8f43;
    color: #fff;
    border-radius: 20px;
    position: absolute;
    top: 0;
    margin-top: 50%;
    transition: all .5s;
}
.shopBtn .circle1:hover{
    background: #13632E;
}
.shopBtn .circle2{
    display: block;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    margin-bottom: 25%;
}
.containBtn{
    position: absolute;
    background: #fff;
    border-radius: 10px;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s;
}
.containBtn:hover{
    opacity: 1;
}

.uniProduc .medida{
    color:  #737373;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
}
.uniProduc p{
    font-weight: 400;
    font-size: 22px;
}
.uniProduc lu li{
    font-size: 14px;
    color: #262626;
    line-height: 18px;
}
.uniProduc div a{
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 2s;
}
.belloBtn{
    background-color: #1b8f43;
    border: 1px solid #1b8f43;
    color: #fff;
    font-size: 15px;
    padding: 15px 100px;
    border-radius: 50px;
}
.nav-tabs a{
    text-decoration: none;
    border: none!important;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    padding: 15px 60px 0 80px;
}
.nav-tabs .active{
    transition: all .5s;
    padding-bottom: 12px;
    color: #16a2ff!important;
    border-bottom: 5px solid #16a2ff!important;
}
/* fin seccion1 */
/*seccion2 */
.firstBanner img{
    width: 100%;
    margin: 50px 0;
}
/* fin seccion2 */
/*  */
.contenedor2{
    position: relative;
}
.imgContent{
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 250px!important;
    width: 100%;
    position: relative;
}

.imgContent .text{
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0px;
    background: #004581;
    display: block;
}
.imgContent .text a{
    font-size: 18px;
    color: #fff;
}

.img2Content{
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    /* max-height: 250px!important; */
    /* height: 250px; */
    position: relative;
}

.img2Content .text h2{
    font-size: 24px;
    color: #004581;
    margin-bottom: 10px;
}

.img2Content .text p{
    color: #000;
    font-size: 18px;
    margin-bottom: 16px;
}

.img2Content .text a{
    background: #004581;
    border: 1px solid #004581;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    padding: 5px 15px;
    text-decoration: none;
    transition: all 0.5s !important;
}

.img2Content .text a:hover{
    background: transparent;
    border: 1px solid #004581;
}

.cajaContent{
    display: flex;
    flex-direction: row;
}

.iconContent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0px!important;
}
.iconContent i{
    padding: 35px;
    color: #28a745;
    border-radius: 50%;
    font-size: 50px;
    box-shadow: 8px 8px 2px 0.2px #999;
}
.textContent{
    display: inline;
    justify-content: center;
    text-align: center;
}
.textContent h2{
    font-size: 24px;
    color: #28a745;
    font-weight: 700;
}
.textContent p{
    font-size: 12px;
    font-weight: 500;
}

.textContent p span{
    font-size: 12px;
}
/*  */
/* servicios */
.llitle{
    color: #004581;
    font-weight: 700;
}
.llitle1{
    color: #000;
    font-size: 24px;
}
.catalogo-enlace{
    text-decoration: none!important;
}
.imgContaint{
    border: 1px solid #004581;
    position: relative;
    overflow: hidden;
}

/* .img2Containt{
    border: 1px solid #004581;
} */

.imgContaint img{
    width: 100%;
    /* min-height: 250px; */
    height: 100%;
}
.imgContaint .info{
    width: 100%;
    height: 100%;
    background: #004581;
    color: #fff;
    padding: 15px 0;
    position: absolute;
    top: 0;
    margin-top: 180px;
    opacity: .9;
    transition: all 1s;
}
.i1m2g{
    max-width: 1080px;
    max-height: 1080px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.imgContaint .info:hover{
    margin-top: 0;
}

.info h4{
    font-weight: 400;
    font-size: 18px;
    position: relative;
}
.info h4 span{
    position: absolute;
    margin-top: 8px;
}
.info p{
    margin: 30px 0;
    font-weight: 400;
}
.info .verMore{
    position: relative;
    text-decoration: none;
    color: #fff;
}

.info .verMore i{
    position: absolute;
    margin-top: 2px;
    margin-left: 8px;
    font-size: 10px;
    padding: 5px;
    font-weight: 900;
    color: #004581;
    background: #fff;
    border-radius: 50%;
}
.imgContaint i{
    font-size: 35px;
}

.img2Containt img{
    width: 100%;
    max-height: 350px;
}
/* F servicios */
/* footer */
footer{
    padding: 60px 0 100px 0;
}
.footer0 a{
    display: block;
    text-decoration: none;
    color: #000;
    line-height: 30px;
    text-transform: capitalize;
}
.footer0 a:hover{
    text-decoration: none;
}
.footer0 img{
    height: 100px;
}
footer h2{
    font-size: 16px;
    font-weight: 900;
    color: #000;
}
.redes{
    display: flex;
}
.redes a{
    font-size: 20px;
    margin-right: 25px;
}
.secondbgimg{
    height:80vh;
    width:100%;
    position: relative;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.contenedorconsejo{
    padding-top: 16%;
    padding-left: 10%;
}
.consejotext{
    display: block;
    background: #ccc;
    opacity: 0.8;
    color: #000;
    width: 45%;
    height: 200px;
    border-radius: 10px;
}
.consejotext h2{
    font-weight: 700;
    padding: 50px 20px;
}
.triimg{
    position: relative;
}
.triimg img{
    width: 100%;
    height: 250px;
}
.img4{
    width: 100%;
    height: 300px;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-size: cover; */
}
.ctitle{
    font-size: 20px;
    color: #2E74B5!important;
    font-weight: 700;
}
.blck{
    position: relative;
}
.blck p{
    width: 68%;
    color: #000;
    line-height: 28px;
    letter-spacing: 1px;
    padding-right: 150px;
}
.blck img{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    height: 500px;
    width: 45%;
    margin-top: -200px;
}
.blck1 p{
    line-height: 28px;
    letter-spacing: 1px;
    color: #000;
    padding-right: 45px;
}
.blck p span{
    word-spacing: 10px;
}
.blck1 p span{
    word-spacing: 10px;
}
.blck2 p{
    line-height: 28px;
    color: #000;
    padding-right: 45px;
    word-spacing: 10px;
}
.blck2 h3{
    font-size: 18px;
    color: #000;
}
.textb{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.textb h3{
    color: #2E74B5;
    font-weight: 600;
    font-size: 20px;
}
.textb p{
    color: #000;
    word-spacing: 10px;
    padding-right: 75px;
    line-height: 28px;
}
.textc h3{
    font-size: 18px;
    color: #000;
    font-weight: 700;
}
.textc p{
    color: #000;
    word-spacing: 10px;
    padding-right: 75px;
    line-height: 28px;
}
.textd p{
    color: #000;
    line-height: 30px;
    word-spacing: 8px;
}
.textf h3{
    font-size: 18px;
    color: #000;
    font-weight: 700;
}
.textf p{
    margin-bottom: 0;
    word-spacing: 10px;
    color: #000;
    line-height: 30px;
}
.texte h3{
    font-size: 18px;
    color: #000;
    font-weight: 700;
}
.texte p{
    margin-bottom: 0;
    word-spacing: 10px;
    color: #000;
    line-height: 30px;
}
.txtspe{
    position: relative;
}
.txtspe img{
    position: absolute;
    right: 0;
    top: 0;
    height: 120%;
    margin-top: -10px;
    margin-right: 100px;
}
.brdr{
    background: #fff;
    padding: 50px 0;
}
/* f footer */
/* blog */
.parrafofeo{
    font-size: 18px;
    line-height: 35px;
}
.parrafofino{
    font-size: 16px;
    line-height: 30px;
}
.bloginfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.bloginfo h4{
    font-size: 17px;
}
.bloginfo a{   
    margin: 0 auto;
}
.bloginfo1 h4{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    color: #000;
}
/* f blog */
.concursoinfo h4{
    font-size: 24px;
    font-weight: 600;
}
.containSpecial{
    line-height: 30px;
}
@media only screen and (max-width : 992px) {
    .product{
        position: relative;
        display: flex;
        justify-content: space-between;
    }
    .product a{
        width: 50%;
    }
    .product a img {
        padding: 15px 30px 5px 30px;
    }
    .product .productoinfo{
        padding-top: 20px;
        width: 50%;
        background: #fff;
    }
    .product .productoinfo .precio{
        margin-bottom: 0px;
    }
    .containBtn .shopBtn {
        padding-bottom: 15px;
    }
    .containBtn .shopBtn .circle2{
        display: none;
    }
    .containBtn {
        position: relative;
        opacity: 1;
    }
    .shopBtn .circle1 {
        position: relative;
        margin-top: 0%;
    }
    .pedidocontent .progress-bar {
        display: block;
        flex-direction: row;
        margin: 20px 0;
        user-select: none;
    }
    .pedidocontent {
        width: 100%;
        background: #fff;
        /* text-align: center; */
        border-radius: 5px;
        padding: 0;
    }
    .progress-bar .step .bullet:before,
    .progress-bar .step .bullet:after {
        display: none;
    }
    .form-outer form .page .ftitle {
        text-align: left;
        font-size: 25px;
        font-weight: 500;
        margin-top: 0px;
        z-index: 10;
        position: relative;
    }
}
@media only screen and (max-width : 770px) {
    .desplegable a{
        text-align: start;
    }   
}