.header {
    background-image: url("../assets/images/sliders/mproductos.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    background-attachment: fixed;
}

.navbar .nav-item .productos {
    color: #B31617;
}

.ptitle {
    color: #B32217;
}

.card {
    width: 17rem;
    height: 16rem;
    border-radius: 20px;
    border: transparent;
    background-color: transparent;
    transition: .8s;
    box-shadow: inset 0 -50vh 0 -1px transparent;
    /* transition: box-shadow .6s ease-in-out; */
}

.card:hover .svgcolor {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    transform: scale(1.1);
}

.cproductos .svgcolor {
    width: 50%;
    filter: invert(1%) sepia(100%) saturate(5520%) hue-rotate(348deg) brightness(87%) contrast(99%);
}

.cproductos:hover {
    box-shadow: inset 0 -100vh 0 -1px #B31617;
    color: white;
}

.view-first .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(179, 22, 23, 0.8);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

input[type],
textarea#texto {
    border-radius: 20px;
    background-color: white;
}

input[type]::placeholder,
textarea#texto::placeholder {
    color: black;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-403px * 14));
        transform: translateX(calc(-403px * 14));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-403px * 14));
        transform: translateX(calc(-403px * 14));
    }
}

.slider {
    background: pr;
    /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    transition: transform 0.8s ease;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 40px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(403px * 28);
    /* height: calc(103px * 1); */
}

.slider .slide {
    height: 100px;
    width: 403px;
}

.imgstyle {
    width: 70%;
}
.modal select#inputState,
.modal input[type],
.modal textarea#texto {
    border-radius: 20px;
    background-color: #C4C4C4;
    color: #fff;
}

.modal select#inputState::-ms-expand {
    border-radius: 20px;
}

.modal input[type]::placeholder,
.modal textarea#texto::placeholder {
    color: white;
}

@media only screen and (min-width: 768px) {
    .header {
        background-image: url("../assets/images/sliders/productos.jpg");
    }
}