:root{
    --bs-blue: #d90429;
    --bs-green: #2b2d42;
    --bs-dark: #000000;
}
html{
    font-size: 62.5%; /*1rem = 10px*/
}
body{
    font-family: Impact, Haettenschweiler, "Franklin Gothic", "Arial", sans-serif;
    font-size: 2.4rem;
    line-height: 2;
}
h1, h2, h3{
    font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
    text-transform: uppercase;
}
h1{
    font-size: 3.8rem;
}
@media (min-width: 768px){
 h1{
    font-size: 5rem;
 }
}
h2{
    font-size: 3.2rem;
}
@media (min-width: 768px){
    h2{
       font-size: 4rem;
    }
}
h3{
    font-size: 2.4rem;
}
@media (min-width: 768px){
    h3{
       font-size: 3rem;
    }
}
/*Reescribir colores*/
.text-primary,
.nombre-sitio {
    color: var(--bs-blue) !important;
}
.btn-success{
    background-color: var(--bs-green) !important;
}
.bg-primary,
.btn-primary{
    background-color: var(--bs-blue) !important;
}
.servicios{
    background-color: var(--bs-green) !important;
}
.pie{
    background-color: var(--bs-dark) !important;
}

.hero{
    background-image: url(../img/Logo.png);
    height: 35rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (min-width: 768px){
    .hero{
        height: 55rem;
        background-size: cover;
        background-image: url(../img/Banner.png);
    }
}
/*Producto*/
@media (min-width: 768px){
    .producto img{
        height: 60rem;
        width: 100%;
        object-fit: cover;
    }
}
.logotipo{
    height: 15rem;
    width: 100%;
    object-fit: contain;
}
.categoria img{
    transition-property: transform;
    transition-duration: 300ms;
    height: 30rem;
    width: 100%;
    object-fit: contain;
}
.categoria img:hover{
    transform: scale(1.2);
}
.galeria li:not(:last-of-type){
    margin-bottom: 1rem;
}
.form-control{
    padding: 1rem;
    font-size: 1.6rem;
}

.filtro{
    display: none;
}