@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

:root {
    --primary: #e42927 !important;
    --secondary: #0382cf !important;
    --light: #f8f9fa !important;
    --pure-light: #ffffff !important;
    --dark: #343a40 !important;
    --pure-dark: #000000 !important;
    --dark-transparent: rgba(0,0,0,0.9) !important;
    --breakpoint-xs: 0;
    --breakpoint-sm: 360px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

.bg-dark-transparent{
    background-color: var(--dark-transparent) !important;
}

.text-primary-v{
    color: var(--secondary) !important;
}

.shadow-text{
    text-shadow: 2px 2px 6px var(--dark-transparent);
}

.btn-not-shadow:focus, .btn-not-shadow.focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}

@media screen and (min-width: 992px) {
    .w-lg-auto{
        width: auto !important;
    }
}

@media screen and (min-width: 992px) {
    .margin-left-menu{
        margin-left: 7rem;
    }
}

/* --------------- Custom Scrollbar --------------- */
::-webkit-scrollbar-track
{
    border-radius: 5px;
}
::-webkit-scrollbar
{
    width: 5px;
    background-color: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background-color: var(--dark);
}

html{
    height: 100%;
    width: 100%;
}
body {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.side-nav-menu{
    position: fixed !important;
    width: 100% !important;
    height: auto !important;
    background: rgba(0,0,0,0.9);
    padding: 0.5rem;
    top: 0;
    left: 0;
    z-index: 100;
}
@media screen and (min-width: 992px) {
    .side-nav-menu{
        display: flex !important;
        flex-direction: column !important;
        width: 7rem !important;
        height: 100% !important;
    }
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
    background-color: white !important;
}

.navbar-toggler{
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.navbar-toggler.active.focus, .navbar-toggler.active:focus, .navbar-toggler.focus, .navbar-toggler.focus:active, .navbar-toggler:active:focus, .navbar-toggler:focus {
    outline: thin;
    outline-offset: -2px;
}

@media screen and (min-width: 992px) {
    .navbar-brand.active{
        border-bottom: 1px solid #fff;
    }
}
@media screen and (min-width: 992px) {
    .navbar-nav{
        height: 90%;
        justify-content: space-around;
    }
}

.brand{
    width: 3.5rem;
    height: auto;
}
@media screen and (min-width: 992px) {
    .brand{
        width: 4.5rem;
    }
}

.icon-link-nav{
    font-size: 1.8rem;
}
.icon-link-nav.active, .icon-link-nav:hover{
    color: var(--primary);
}

#navMenuCollapse.collapse.show{
    height: 85vh;
}

.btn-expand-menu{
    position: absolute;
    right: 0;
    color: var(--primary) !important;
    top: 1rem;
}

.nav-item{
    border-bottom: 1px solid var(--dark);
    padding: 1rem 0rem;
}@media screen and (min-width: 992px) {
    .nav-item{
        border-bottom: none;
        padding: 0rem;
    }
}

.sub-menu-nav .list-group-item{
    font-size: 12px;
    background-color: transparent !important;
    color: var(--pure-light)!important;
    border: 0;
}

.sub-menu-nav .btn-link{
    color: var(--primary) !important;
}

#subMenuProducts .list-group{
    font-size: 12px;
}

.footer-nav{
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.btn-back-info{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}


.home-section{
    height: 100%;
    width: 100%;
}

.section-wrap{
    height: auto;
    min-height: 100%;
    width: 100%;
}
@media screen and (min-width: 992px) {
    .section-wrap {
        height: 100%;
        min-height: 720px;
    }
}

.carousel .diagonals{
    position: absolute;
    height: auto;
    max-height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.9;
}
@media screen and (min-width: 992px) {
    .carousel .diagonals{
        height: 100%;
        width: auto;
    }
}

.carousel-control-prev{
    height: 5rem;
    width: 5rem;
    top: 50% !important;
    left: 10rem !important;
}

.carousel-control-next{
    height: 5rem;
    width: 5rem;
    top: 50% !important;
    right: 3rem !important;
}

.carousel-item{
    background-color: var(--dark);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-caption{
    top: 25%;
    bottom: unset !important;
    color: var(--pure-light) !important;
    left: 5% !important;
    width: 90%;
}
@media screen and (min-width: 992px) {
    .carousel-caption{
        top: unset;
        left: 15% !important;
        bottom: 50% !important;
        width: 50% !important;
    }
}

.section-content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

header{
    background-color: var(--pure-light);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 2rem;
    margin-top: 4rem;
}@media screen and (min-width: 992px) {
    header{
        height: 5rem;
        margin-top: 0;
    }
}


footer{
    background-color: var(--pure-light);
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 3.5rem;
    width: 100%;
    padding: 0.25rem 0.5rem 0.75rem;
    position: relative;
}
@media screen and (min-width: 992px) {
    footer{
        padding: 0.25rem 0.5rem;
        height: 2.5rem;
    }
}
footer .diagonals{
    position: absolute;
    right: 5rem;
    bottom: 0;
    height: 1.8rem;
}
footer .diagonals-min{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.5rem;
}

footer .links{
    line-height: 100%;
    width: 50%;
    font-size: 11px;
}
@media screen and (min-width: 992px) {
    footer .links{
        font-size: 12px;
        width: auto;
    }
}

footer .links a{
    text-decoration: underline;
}

footer .brand-footer{
    font-size: 14px;
    line-height: 100%;
}

#servicesSection .card{
    border-radius: 0.5rem !important;
}@media screen and (min-width: 992px) {
    #servicesSection .card{
        border-radius: 0 !important;
    }
}

#servicesSection .card .card-img-top{
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}@media screen and (min-width: 992px) {
    #servicesSection .card .card-img-top{
        border-top-left-radius: 0rem !important;
        border-top-right-radius: 0rem !important;
    }
}

#servicesSection .card .card-title{
    font-size: 16px;
}

#servicesSection .card .card-text{
    font-size: 10px;
}

#servicesSection .card .image-footer{
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 5rem;
    height: auto;
}

#aboutUsSection .img-anniversary{
    width: 100%;
    max-width: 25rem;
}

#contactSection .shadow{
    box-shadow: 0 0 1rem rgba(0,0,0,.15)!important
}


#productsSection .btn-category{
    font-size: 12px !important;
}

#productsSection .btn-subcategory{
    font-size: 10px !important;
}

#productsSection .container-image-product{
    width: 7rem;
    max-height: 5rem;
    display: flex;
    padding: 2px;
}

#productsSection .link-product{
    color: var(--dark)!important;
}

#productsSection .link-product:hover, #productsSection .link-product:active{
    color: var(--primary)!important;
}

#productsSection hr{
    border-top: 1px solid rgba(0,0,0,0.5);
}

#productInfoSection .container-image-product{
    width: 100%;
    height: 20rem;
    display: flex;
}

#productInfoSection .container-details-product{
    background-color: var(--light);
    padding: 1rem 1.5rem;
    width: 100%;
}@media screen and (min-width: 992px) {
    #productInfoSection .container-details-product{
        width: 80%;
    }
}

#productInfoSection .product-specs{
    height: auto;
}@media screen and (min-width: 992px) {
    #productInfoSection .product-specs{
        padding: 0 5rem;
    }
}

#productInfoSection .btn-back{
    display: none;
    position: absolute;
    right: 0;
    top: 0
}@media screen and (min-width: 992px) {
    #productInfoSection .btn-back{
        display: block;
    }
}

#categoryProductMobil .img-category{
    width: 80%;
}

#categoryProductMobil .container-img-category{
    width: 70%;
    height: 12rem;
    background-color: var(--pure-light);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#categoryProductMobil .link-subcategory{
    color: var(--primary) !important;
    text-decoration: underline;
}

#categoryProductMobil .container-image-product{
    height: 6rem;
    display: flex;
}


.container-toast {
    position: fixed;
    top: 0;
    z-index: 10;
    margin-top: 5rem;
    width: 100%;
    display: flex;
}
.icon-toast {
    height: 1rem;
    width: auto;
}
.toast {
    margin-right: auto;
    margin-left: 1rem;
}@media screen and (min-width: 992px) {
    .toast{
        margin-right: 1rem;
        max-width: 100% !important;
    }
}

.btn-primary{
    background-color: var(--primary) !important;
    color: var(--pure-light) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover{
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:active{
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: none;
    outline: none;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem var(--primary) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-dark{
    color: var(--dark)!important;
    border-color: var(--dark)!important;
}
.btn-outline-dark:hover{
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    color: var(--light) !important;
}
.btn-outline-dark:active{
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    color: var(--light) !important;
    box-shadow: none;
    outline: none;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem var(--primary)!important;
}

.container-category-products{
    text-align: center;
    height: 150px;

}

.img-category-aceite-motor {
    height: 100% !important;
    width: 60% !important;
    padding: 20px
}

.img-category-grasa {
    height: 100% !important;
    width: 100% !important;
}

.img-category-anticongelante {
    height: 100% !important;
    width: 100% !important;
    padding: 20px;
}

.img-category-transmision {
    height: 100% !important;
    width: 80% !important;
    padding: 18px;
}

.img-category-aceite {
    height: 100% !important;
    width: 80% !important;
    padding: 18px;
}

.container-categoria-producto-movil {
    height: 12rem;
    margin-top: 10px
}

.files-container{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ficha-tecnica{
    text-align: center;
    font-size: 14px;
}

.img-file{
    width: 20px;
    cursor: pointer;
}

.ficha-tecnica-tittle{
    margin-bottom: 10px!important;
}
