@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
    --base-color : #00071A;
    --main-color : #B90C0C;
}

body {
    font-family: 'Oswald', sans-serif;
    letter-spacing: .050rem;
    background: var(--base-color) url(../img/lp-img/bg-main.webp) no-repeat;
    background-size: cover;
}

a {
    text-decoration: none;
    color: white;
}

hr {
    margin: 0.25rem 0;
}

b, .fw-bold {
    font-weight: 400!important;
}

.btn-danger {
    background-color: var(--main-color);
}

.bg-black {
    --bs-bg-opacity: .6;
}

.border-dark {
    border-color: #37386a !important;
}

.call {
    font-size: 0.8rem;
}

.card {
    background: url(../images/bg-cards.webp)no-repeat;
    background-size:  100% 100%;
    background-position: center bottom;
    justify-content: flex-end;
}

.card img {
    transform-origin: bottom;
    transition: scale3d(1, 1, 1);
    transition: all .3s cubic-bezier(.215,.61,.355,1);
}
    
.card:hover img {
    transition: all .3s cubic-bezier(.215,.61,.355,1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.carousel-indicators {
    margin-bottom: 0rem;
}

.btn-gradient {
    background: #0CC489;
    background: linear-gradient(to left, #0ED396, #0CC489);
}

.brand-max {
    max-width: 420px;
}



/* Responsive: Portrait tablets and up */
@media only screen and (max-width: 768px) {

    .brand {
        background-color: var(--base-color);
    }
    .brand img {
        max-width: 70%;
    }

    .hero.bg-dark {
        background-color: transparent !important;
    }

    .products {
        max-width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 3rem!important;
    }

    .products .row {
        width: 750px;
    }

    .products .row-cols-5>* {
        width: 150px;
    }

    .products h5 {
        font-size: .75rem;
    }
}