.pagos-pse {
    width: 100%;
}
.pagos-pse .image {
    width: 100%;
}
.banner-pagos-pse img {
    width: 100%;
}
.pagos-pse .head-pagos-pse {
    width: 90%;
    max-width: 800px;
    display: block;
    margin: 20px auto 70px;
    text-align: center;
}

.wp-productos-gnb {
    background-color: #98C355;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 25px;
}

.wp-productos-gnb .cont-productos-gnb .img-arbol {
    width: 38%;
    max-width: max-content;
    display: block;
    margin: 0 auto 15px;
}

.wp-productos-gnb .cont-productos-gnb h2 {
    text-align: center;
    color: #fff;
    font-family: 'Source Sans Pro';
}
.wp-productos-gnb .cont-productos-gnb h4 {
    color: #fff;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-family: 'Source Sans Pro';
    margin-bottom: 0;
}
.box-products {
    width: 48%;
    margin: 1% 1% 2%;
    position: relative;
    padding: 0;
}
.box-products .cont-box-products {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.box-products .cont-box-products .col-img-product {
    width: 40%;
    min-height: 120px;
}

.box-products .cont-box-products .col-img-product img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.box-products .cont-box-products .col-des-product {
    width: 60%;
    background-color: #98C355;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.box-products .cont-box-products .col-des-product h4 {
    text-align: center;
    margin-bottom: 0;
}
.box-products .cont-impuestos ul {
    margin: 20px 0 10px;
}
.box-products .cont-impuestos li {
    margin-bottom: 7px;
}
.box-products .cont-impuestos li a {
    color: #8D8D8D;
}
.title-guia {
    color: #28569A;
    font-weight: 700;
    transform: scale(1.1);
}
/********************************************************************
    Responsive
********************************************************************/
@media screen and (min-width: 768px) {
    .wp-productos-gnb {
        margin-bottom: 0;
    }
    .box-products .cont-box-products {
        background-color: #98C355;
    }
    .box-products .cont-box-products .col-des-product {
        width: 50%;
    }
    .box-products .cont-box-products .col-des-product h4 {
        font-size: 22px;
    }
    .box-products .cont-impuestos {
        top: 100%;
        left: 0;
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 0;
        transition: all 0.5s ease-in-out;
    }
    .box-products:hover .cont-impuestos {
        opacity: 1;
        height: auto;
    }
    .box-products {
        width: 45%;
        margin: 0 2% 2%;
    }

    .box-products:nth-child(3),
    .box-products:nth-child(4) {
        margin-bottom: 0;
    }
    .box-products .cont-box-products .col-img-product {
        transition: all 0.5s ease-in-out;
    }
    
    .box-products:hover .cont-box-products .col-img-product {
        width: 35%;
    }
    .box-products .cont-box-products .col-img-product {
        width: 50%;
        min-height: 150px;
        transition: all 0.5s ease-in-out;
    }
    
    .box-products:hover .cont-box-products .col-des-product {
        width: 65%;
    }
    
    .box-products:hover .cont-box-products .col-des-product h4 {
        font-weight: bold;
    }
    .cont-guia {
        margin-top: 120px;
    }
    .wp-productos-gnb .cont-productos-gnb .img-arbol {
        transition: all 0.5s ease-in-out;
    }
    
    .wp-productos-gnb:hover .cont-productos-gnb .img-arbol {
        transform: scale(1.2);
    }
    
    .wp-productos-gnb .cont-productos-gnb h2 {
        transition: all 0.5s ease-in-out;
    }
    
    .wp-productos-gnb:hover .cont-productos-gnb h2 {
        font-weight: 600;
    }
}