/* Reset css :  Con este código eliminamos márgenes,
padding y otras propiedades que los navegadores
añaden automáticamente */
/*
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:center;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
*/

/********************** Botón comprar */
*{
    box-sizing: border-box;
}

/*body{
    font-family: 'Quicksand', sans-serif;
    background: #fff;
    font-size: 1.2em;
    color: #333;
}*/

#wrapper{
    padding: 200px 6%;
}

#wrapper > div{
    width: 280px;
    margin:0 auto;
}

button.boton-comprar{
    position: relative;
    display: block;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    font-size: small;
    font-weight: bold;
    max-width: 40px;
    height: 13px;
    margin-bottom: 40px;
    overflow: hidden;
    color:rgba(255,255,255,1);
    cursor: pointer;
    letter-spacing: 2px;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: all ease 0.5s;
    background: transparent;
}

button.boton-comprar:after,
button.boton-comprar:before{
    width: 40px;
    height: 100px;
    content: '';
    display: block;
    background: rgba(255,255,255,0.5);
    transform: rotate(45deg);
    top: -30px;
    position: absolute;
    transition: none;
    right:-45%;
    cursor: pointer;
}

button.boton-comprar:before{
    left: -48%;
}

button.boton-comprar:hover{
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
    background: #423b02;
    opacity: 10%;
}

button.boton-comprar:hover:after,
button.boton-comprar:hover:before{
    transform: rotate(45deg), scaleX(130%);
    background: rgba(255,255,255,0.1);
    transition: all ease 0.5s;
}

button.boton-comprar:hover:after{
    right: 130%;
}

button.boton-comprar:hover:before{
    left: 130%;
}



/********************** Product slide */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,f4f4f4+51,d8d8d8+100 */
    background: white;
    /* Old browsers */
    background: -moz-linear-gradient(top, white 0%, white 50%, #f4f4f4 51%, #d8d8d8 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(50%, white), color-stop(51%, #f4f4f4), color-stop(100%, #d8d8d8));
}

.p_slider {
    width: 200px;
    height: 339px;
    position: relative;
    left: 50px;
    right: 0;
    bottom: 0;
    top: 100px;
    margin: auto;
}
.p_slider .left, .p_slider .right {
    cursor: pointer;
    position: absolute;
    z-index: 10;
}
.p_slider__item {
    position: absolute;
    width: 200px;
    height: 200px;
    cursor: pointer;
    -webkit-transition-duration: 1.5s;
    transition-duration: 1.5s;
    transition-property: transform,left,opacity,-webkit-filter;
}
.p_slider__item img {
    width: 200px;
    -webkit-transform: scale(0);
    transform: scale(0);
    position: relative;
    -webkit-animation: scale_bounce 1.2s .4s forwards;
    animation: scale_bounce 1.2s .4s forwards;
    -webkit-box-reflect: below 4px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), to(rgba(255, 255, 255, 0.2)));
}
.p_slider__item:nth-of-type(1) {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    left: -200px;
    -webkit-filter: blur(2px);
    opacity: 0.8;
    z-index: 1;
}
.p_slider__item:nth-of-type(2) {
    -webkit-transform: scale(1);
    transform: scale(1);
    left: 0;
    z-index: 2;
}
.p_slider__item:nth-of-type(3) {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    left: 200px;
    z-index: 1;
    -webkit-filter: blur(2px);
    opacity: 0.8;
}

.controls {
    position: absolute;
    width: 100%;
    top: 30%;
    left: 11%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.controls .left {
    float: left;
    cursor: pointer;
    position: relative;
    left: 40px;
}
.controls .left img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0.2;
}
.controls .left img:hover {
    opacity: 1;
    cursor: pointer;
}
.controls .right {
    float: right;
    cursor: pointer;
    position: relative;
    right: 40px;
}
.controls .right img {
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0.2;
}
.controls .right img:hover {
    opacity: 1;
    cursor: pointer;
}

@-webkit-keyframes scale_bounce {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    40% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    60% {
        -webkit-transform: scale(1.012);
        transform: scale(1.012);
    }
    80% {
        -webkit-transform: scale(0.995);
        transform: scale(0.995);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale_bounce {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    40% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    60% {
        -webkit-transform: scale(1.012);
        transform: scale(1.012);
    }
    80% {
        -webkit-transform: scale(0.995);
        transform: scale(0.995);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* end product slide */

/* Proceso icons */
.proceso-icon{
    width: 20% !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;

}


/*
Full screen Modal
*/
.fullscreen-modal .modal-dialog {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    background: #d53369; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #d53369 , #cbad6d); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #d53369 , #cbad6d);
}
@media (min-width: 468px) {
    .fullscreen-modal .modal-dialog {
        width: 450px;
    }
}
@media (min-width: 768px) {
    .fullscreen-modal .modal-dialog {
        width: 750px;
    }
    input, select, textarea {
        color: inherit;
        font: inherit;
        border: 0 solid #dedede;
        font-size: 14px;
        padding: 8px 15px;
        margin: 0 0 20px 0;
        max-width: 100%;
        resize: none
    }
}
@media (min-width: 992px) {
    .fullscreen-modal .modal-dialog {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .fullscreen-modal .modal-dialog {
        width: 1170px;
    }
}

/*
Slider Social
*/
@media (min-width: 320px) and (max-width:480px) {
    .slider-social {
        position: fixed;
        bottom: -7px !important;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 53px;
    }
 
    .slider-social a {
        display: inline-block !important;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 30px;
        border-radius: 50px;
        color: #ffffff;
        font-size: 16px;
        margin: 9px;
        border: 1px solid transparent;
        -webkit-transition: background-color .2s ease-in-out;
        -moz-transition: background-color .2s ease-in-out;
        -ms-transition: background-color .2s ease-in-out;
        -o-transition: background-color .2s ease-in-out;
        transition: background-color .2s ease-in-out;
    }

    .list-unstyled {
        display: inline-flex !important;
    }
}



.slider-social{
    position: fixed;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-social a{
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 30px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    margin: 9px;
    border: 1px solid transparent;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -ms-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.slider-social a:hover{
    background-color: #1d1c1c;
}

.slider-social .animated-wrap a:hover{
    background-color: transparent;
    color: #ffffff;
}

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* Boton enviar */
button.boton-enviar:before{
    background: #004b5b;
}
button.boton-enviar:hover{
    background: #ff004e;
}



/* Product card enviar */
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800');
* {
    box-sizing: border-box;
}
body {
    /*background-color: #ffe53b;
    background-image: linear-gradient(147deg, #ffe53b 0%, #fd3838 74%);*/
    min-height: 100vh;
    font-family: 'Fira Sans', sans-serif;
    display: flex;
}
.blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #00966c;
    /*background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);
    /*background: rgba(255, 255, 255, 0.1);*/
    box-shadow: 0 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 550px;
    transition: all 0.3s;
}
.blog-slider-ensamble {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #008F65;
    /*background-color: #00966c;
    background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);
    /*background: rgba(255, 255, 255, 0.1);*/
    box-shadow: 0 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 580px;
    transition: all 0.3s;
}
.blog-slider-espadin {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #E7004C;
    /*background-color: #ff034d;
    background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);
    /*background: rgba(255, 255, 255, 0.1);*/
    box-shadow: 0 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 580px;
    transition: all 0.3s;
}
.blog-slider-tobala {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background-color: #DD8A03;
    /*background-color: #f68a00;
    background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);
    /*background: rgba(255, 255, 255, 0.1);*/
    box-shadow: 0 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 580px;
    transition: all 0.3s;
}
.nav-tabs>li>a {
    color: #ff004e;
}
@media (min-width: 1200px) {
    .slider-social {
        top: 55%;
    }

    .list-unstyled li {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 992px) {
    .blog-slider {
        max-width: 680px;
        height: 400px;
    }
    .blog-slider-ensamble {
        max-width: 680px;
        height: 400px;
    }
    .blog-slider-espadin {
        max-width: 680px;
        height: 400px;
    }
    .blog-slider-tobala {
        max-width: 680px;
        height: 400px;
    }
}
@media screen and (max-width: 768px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-ensamble {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-espadin {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-tobala {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }

    .evite_el_exceso{
        position: absolute;
        top: 97% !important;
        left: 36% !important;
    }
    .contact-form-center{
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 414px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-ensamble {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-espadin {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-tobala {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .evite_el_exceso{
        position: absolute;
       top: 86% !important;
       left: 20% !important;
    }
    .contact-form-center{
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 375px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-ensamble {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-espadin {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-tobala {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .evite_el_exceso{
        position: absolute;
        top: 97% !important;
        left: 38% !important;
    }
    .contact-form-center{
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 375px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-ensamble {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-espadin {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .blog-slider-tobala {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .evite_el_exceso{
        position: absolute;
        top: 97% !important;
        left: 37% !important;
    }
    .contact-form-center{
        padding-bottom: 10px;
    }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
        height: 350px;
    }
    .blog-slider-ensamble {
        height: 350px;
    }
    .blog-slider-espadin {
        height: 350px;
    }
    .blog-slider-tobala {
        height: 350px;
    }
}
.blog-slider__item {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .blog-slider__item {
        flex-direction: column;
    }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
}

.blog-slider__img-ensamble {
    width: 300px;
    flex-shrink: 0;
    height: 440px;
    background-repeat: no-repeat;
    background-position: center;
    /*background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 84%);
    background-image: linear-gradient(147deg, #012168 0%, #012168 0%);*/
    background-image: linear-gradient(147deg, #244B5A 0%, #244B5A 0%);
    box-shadow: 4px 13px 30px 1px rgba(0, 144, 99, 0.2);
    /*box-shadow: #009063;*/
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}
.blog-slider__img-espadin {
    width: 300px;
    flex-shrink: 0;
    height: 440px;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    background-image: linear-gradient(147deg, #244B5A 0%, #244B5A 0%);
    /*background-image: linear-gradient(147deg, #012168 0%, #012168 0%);
    background-image: linear-gradient(147deg, #ffffff 0%, #fd3838 84%);*/
    /*box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);*/
    box-shadow: 4px 13px 30px 1px rgba(255, 3, 77, 0.2);
    /*box-shadow: #ff034d;*/
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}
.blog-slider__img-tobala {
    width: 300px;
    flex-shrink: 0;
    height: 440px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: linear-gradient(147deg, #244B5A 0%, #244B5A 0%);
    /*background-image: linear-gradient(147deg, #012168 0%, #012168 0%);*/
    box-shadow: 4px 13px 30px 1px rgba(246, 138, 0, 0.2);
    /*box-shadow: #f68a00;*/
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}
.blog-slider__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #004b5b;
    /*background-color: rgba(0, 75, 91, 0.3);
    background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);
    background-image: linear-gradient(147deg, #004b5b 0%, rgba(0, 75, 91, 0.2) 74%);*/
    border-radius: 20px;
    /*opacity: 0.8;*/
}
.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

.img-size {
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    .blog-slider__img {
        transform: translateY(-50%);
        width: 60%;
    }
    .blog-slider__img-espadin {
        transform: translateY(-50%);
        width: 60%;
        height: 300px;
    }
    .blog-slider__img-ensamble {
        transform: translateY(-50%);
        width: 60%;
        height: 300px;
    }
    .blog-slider__img-tobala {
        transform: translateY(-50%);
        width: 60%;
        height: 300px;
    }
    .blog-slider__title {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        text-align: left;
    }
    .blog-slider__text {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        padding: 5px 0 5px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 15px;
    }
    .img-size {
        max-width: 100px;
        padding-top: 20px;
    }

    .table-responsive {
        border: 0 !important;
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}
@media screen and (max-width: 576px) {
    .blog-slider__img {
        width: 65%;
    }
    .blog-slider__img-espadin {
        width: 65%;
        height: 300px;
    }
    .blog-slider__img-ensamble {
        width: 65%;
        height: 300px;
    }
    .blog-slider__img-tobala {
        width: 65%;
        height: 300px;
    }
    .blog-slider__title {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        text-align: left;
    }
    .blog-slider__text {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        padding: 5px 0 5px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 15px;
    }
    .img-size {
        max-width: 100px;
        padding-top: 20px;
    }
}
@media (max-width: 414px) {
    .blog-slider__img {
        width: 65%;
    }
    .blog-slider__img-espadin {
        width: 65%;
        height: 300px;
    }
    .blog-slider__img-ensamble {
        width: 65%;
        height: 300px;
    }
    .blog-slider__img-tobala {
        width: 65%;
        height: 300px;
    }
    .blog-slider__title {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        text-align: left;
    }

    .blog-slider__text {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        padding: 5px 0 5px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 15px;
    }
    .img-size {
        max-width: 100px;
        padding-top: 20px;
    }
    .div-hide{
        display: none;
    }

    .titulo-proceso{
        margin: -100px -30px 0 !important;
        font-size: 40px !important;
    }

    .titulo-nuestros-procesos{
        margin: 15px -25px 0 !important;
        font-size: 24px !important;
    }

    .texto-nuestros-procesos{
        margin: 90px -25px 0 !important;
        padding: 65px 15px 0 15px !important;
        font-size: 16px !important;
        line-height: 17px !important;
    }

    .icono-nuestros-procesos{
        width: 150px !important;
        height: 50px !important;
    }
    .tabs {
        display: block;
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -15px -25px -15px !important;
        overflow: hidden;
        height: 270px !important;
    }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
        height: 130px;
    }
    .blog-slider__img-espadin {
        height: 180px;
    }
    .blog-slider__img-ensamble {
        height: 180px;
    }
    .blog-slider__img-tobala {
        height: 180px;
    }
    .blog-slider__title {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        text-align: left;
    }
    .blog-slider__text {
        font-size: 10px;
        font-weight: 200;
        color: #FFFFFF;
        padding: 5px 0 5px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 15px;
    }
    .img-size {
        max-width: 100px;
        padding-top: 20px;
    }
}
.blog-slider__content {
    padding-right: 25px;
}
@media screen and (max-width: 768px) {
    .blog-slider__content {
        margin-top: -200px;
        margin-bottom: 20px;
        text-align: center;
        padding: 30px 0;
    }

    .wrapper{
        white-space: normal !important;
    }

    .titulo-proceso{
        margin: -100px -30px 0 !important;
        font-size: 40px !important;
    }

    .titulo-nuestros-procesos{
        margin: 15px -25px 0 !important;
        font-size: 18px !important;
    }

    .texto-nuestros-procesos{
        margin: 90px -25px 0 !important;
        padding: 65px 15px 0 15px !important;
        font-size: 16px !important;
        line-height: 17px !important;
    }

    .icono-nuestros-procesos{
        width: 150px !important;
        height: 50px !important;
    }
}
@media screen and (max-width: 576px) {
    .blog-slider__content {
        padding: 30px 0;
        width: 100%;
    }
}
.blog-slider__content > * {
    opacity: 80%;
    transform: translateY(25px);
    transition: all 0.4s;
}
.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}
@media screen and (min-width: 576px) {
    .blog-slider__title {
        font-size: 14px;
        font-weight: 200;
        color: #FFFFFF;
        text-align: left;
    }

    .blog-slider__text {
        font-size: 14px;
        font-weight: 200;
        color: #FFFFFF;
        padding: 5px 0 5px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 15px;
    }
}
.blog-slider__button {
    display: inline-flex;
    background-color: #ff004e;
    /*background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);*/
    padding: 5px 25px;
    border-radius: 50px;
    color: #fff;
    /*box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);*/
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    margin: 20px 0 0 150px;
    border: 0;
}
.blog-slider__button-white {
    display: inline-flex;
    background-color: #fff;
    /*background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);*/
    padding: 5px 25px;
    border-radius: 50px;
    color: #ff004e;
    /*box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);*/
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    margin: 20px 0 0 150px;
    border: 0;
}
@media screen and (max-width: 576px) {
    .blog-slider__button {
        width: 40%;
        border: 0;
    }
    .blog-slider__button-white {
        width: 40%;
        border: 0;
    }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}
@media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
}
.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fd3838;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }

}
/* End Product Card enviar */


/* Tabs */
/*body {
    background: #191828;
    color: #efedef;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6em;
    margin: 0;
    padding: 100px; }
h1 {
    font-size: 40px;
    line-height: 0.8em;
    color: rgba(255,255,255,0.2);}
a {
    background: #fd264f;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 1em;
    margin: 0;
    padding: 5px 110px;
    position: fixed;
    top: 20px;
    right: -100px;
    text-align: center;
    text-decoration: none;
    transform: rotate(45deg);
}*/
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none; }

.tabs {
    display: block;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    overflow: hidden;
    height: 350px;}
.tabs [class^="tab"] label,
.tabs [class*=" tab"] label {
    color: #efedef;
    cursor: pointer;
    display: block;
    font-size: .6em;
    font-weight: 300;
    line-height: 1em;
    padding: 2rem 0;
    text-align: center; }
.tabs [class^="tab"] [type="radio"],
.tabs [class*=" tab"] [type="radio"] {
    border-bottom: 0 solid rgba(239, 237, 239, 0.5);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.tabs [class^="tab"] [type="radio"]:hover, .tabs [class^="tab"] [type="radio"]:focus,
.tabs [class*=" tab"] [type="radio"]:hover,
.tabs [class*=" tab"] [type="radio"]:focus {
    border-bottom: 0 solid #ff004e; }
.tabs [class^="tab"] [type="radio"]:checked,
.tabs [class*=" tab"] [type="radio"]:checked {
    border-bottom: 0 solid #ff004e; }
.tabs [class^="tab"] [type="radio"]:checked + div,
.tabs [class*=" tab"] [type="radio"]:checked + div {
    opacity: 1; }
.tabs [class^="tab"] [type="radio"] + div,
.tabs [class*=" tab"] [type="radio"] + div {
    display: block;
    opacity: 0;
    padding: 2rem 0;
    width: 90%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.tabs .tab-2 {
    width: 50%; }
.tabs .tab-2 [type="radio"] + div {
    width: 200%;
    margin-left: 200%; }
.tabs .tab-2 [type="radio"]:checked + div {
    margin-left: 0; }
.tabs .tab-2:last-child [type="radio"] + div {
    margin-left: 100%; }
.tabs .tab-2:last-child [type="radio"]:checked + div {
    margin-left: -100%; }
/* End tabs */



/* Sección de puntos de venta */

.ubicacion_left{
    text-align: left;
    line-height: 18px;
padding-bottom: 20px;
}
.ubicacion_left_parrafo{
    margin: 0;
}

.ubicacion_left_parrafo a{
    color: white;
}
.ubicacion_left_parrafo a:hover {
    font-weight: 800;
}
.venta_linea {
    background-color: rgba(0, 0, 0, 0.6);
    color: #6c550b;
    font-size: 16px;
    width: 400px;
    padding: 5px;
}

.estados span{
    background-color: rgba(210, 0, 0, 0.6);
    display: inline-block;
    width:50%;
    padding-left: 5px;
    margin-bottom: 5px;
}

.ubicacion_pointer {
    background-image: url(../images/puntero.png);
}

.local{

}

.direccion{

}

@media screen and (max-width: 468px)
{

    #blog,body {overflow: auto;}
    .full-screen {
        height: 100vh;
        padding: 27% 5% 0 5%
    ;}

    .venta_linea {
        background-color: rgba(0, 0, 0, 0.6);
        color: #6c550b;
        font-family: Freight;
        font-size: 12px;
        width: 359px;
        padding: 5px;
    }

    .estados span{
        background-color: rgba(210, 0, 0, 0.6);
        display: inline-block;
        width:50%;
        padding-left: 5px;
        margin-bottom: 5px;
    }

    p {
        margin: 5px 0 5px 0;
        line-height: 15px;
    }

    .final_padding{
        padding-bottom: 20px;
    }

    .titulo{
        padding: 5px 0 5px 0;
    }

    /*.div-contacto-bg{
        background: url("../images/mexico_bg.png");
        background-size: 80%;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }

    .modal-contacto-bg{
        background: url("../images/mexico.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }*/

    .modal-bg{
        background-color: transparent;
    }

    .menu_slider_item {
        padding: 100px 40px 0 40px !important;
    }

    .menu_list li {
        font-size: 14px;
        line-height: 1.3;
        padding-right: 0 !important;
        text-align: center;
    }
}

/* end sección de puntos de venta */

/* Animation pointer icon */
@-webkit-keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
@keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
.buzz-out-on-hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out-on-hover:hover, .buzz-out-on-hover:focus, .buzz-out-on-hover:active {
    -webkit-animation-name: buzz-out-on-hover;
    animation-name: buzz-out-on-hover;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}




/**
 * Tab Shine
 */

.tab-shine {
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-family: sans-serif;
}


/**
 * The "shine" element
 */

.tab-shine:after {
    animation: shine 4s ease-in-out  infinite;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(0deg);

    background: rgba(224, 10, 10, 0.13);
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%
    );
}

/* Hover state - trigger effect */


/* Active state */

.tab-shine:active:after {
    opacity: 0;
}

@keyframes shine{
    10% {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
    }
    100% {
        opacity: 0;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
    }
}
/**
 * Tab Shine End
 */


/**
*Shop icon
 */
.heart_animation {
    animation: heartbeat 1s infinite;
    margin-left: 5px;
}

.heart_animation:hover {
    animation: none;
}
@keyframes heartbeat {
    0% {
        transform: scale(.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(.75);
    }

    100% {
        transform: scale(.75);
    }
}
/**
*Shop icon End
 */


/* Signika */
@font-face {
    font-family: Signika;
    src: url(../fonts/SIGNIKA-LIGHT.TTF?) format('opentype');
}

/* Chaparral */
@font-face {
    font-family: Chaparral;
    src: url(../fonts/CHAPARRALPRO-REGULAR.OTF?) format('opentype');
}

.chaparralpro{
    font-family: Chaparral, serif;
}

.signika{
    font-family: Signika, serif;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.table-responsive > .table-bordered {
    border: 0
}


/* -------------------------- */

/*     Punto de venta list      */
.square {
    list-style-type: square;
}

.evite_el_exceso{
    position: absolute;
    top: 90%;
    left: 40%;
}

.hide-ovalo{
    display: none;
}

input, select, textarea {
    border: 0 solid #dedede;
}