@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

:root{
    --font-head:"Roboto Slab", serif;
    --font-body:"Raleway", sans-serif;
    --primary-color: 193, 39, 45;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    position: relative;
}

/* Nav Bar */
nav.navbar{
    background-color: rgba(var(--primary-color), 1);
    position: absolute;
    top: 0px;
    width: 100%;
    transition: all 800ms ease-in-out;
    z-index: 1099;
}
nav.navbar.scrolled{
    position: fixed;
    top: 0!important;
}
.navbar .navbar-nav .nav-link{
    font-weight: 600;
}
/* Logo */
.navbar-brand img{
    width: 100px;
}
/* links */
nav.navbar .nav-link{
    color: #ffffff;
}
/* nav.navbar .nav-link.active{
    color: gold!important;
} */

/* Banner */
.hero-section {
    background: url('../images/banner.jpg') no-repeat center center/cover;
    color: white;
    padding: 3rem 1rem;
}
.hero-section-inner{
    min-height: calc(100vh - 85px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

/* Home Products Section  */
.product-card{
    position: relative;
    text-align: center;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: .75rem;
    background-color: #fff;
    bottom: 0;
    transition: all .3s ease-in-out;
}
.product-card img{
    width: 100%;
    max-width: 180px;
}
.product-card p{
    font-size: .8rem;
}
.product-card:hover{
    background-color: rgba(var(--primary-color), .08);
    border-color: rgba(var(--primary-color), .2);
    bottom: .5rem;
}

/* Product page card */
.product-card-big img{
    width: 100%;
    max-width: 200px;
}

/* about section */
.about-section {
    background-color: rgba(var(--primary-color), .08);
    padding: 50px 20px;
}

/* status */
.stats {
    text-align: center;
    padding: 20px 0;
}
.stats h3 {
    color: rgba(var(--primary-color), 1);
    font-weight: light;
    font-size: 3rem;
    /* font-family: var(--font-body)!important; */
}
.stats p{
    font-size: 1.2rem;
    line-height: 1.5;
    /* font-family: var(--font-head)!important; */
    text-transform: uppercase;

}

/* footer */
footer {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(255, 255, 255, 1);
}
footer a {
    color: #ffddc1;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}
footer a:hover{
    font-weight: 600;
}

/* -------------------------------------------------------
    ----------------------------------------------------- */
h1, h2,h3,h4,h5,h6, .font-head{
    font-family: var(--font-head)!important;
}
.font-body{
    font-family: var(--font-body)!important;
}
.btn-header{
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}
.btn-header:hover{
    color: rgba(255, 255, 255, 1);
    background-color: rgba(var(--primary-color), 1);
    border-color: rgba(255, 255, 255, 1);
}
.text-theme{color: rgba(var(--primary-color), 1);}
.text-shadow{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.fw-800{
    font-weight: 800!important;
}

.btn-theme{
    background-color: rgba(var(--primary-color), 1);
    border-color: rgba(var(--primary-color), 1);
    color: white;
    font-weight: 600;
}

.btn-theme:hover{
    background-color: white;
    border-color: rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
}

.bg-theme-gradient{
    background: linear-gradient(0deg, rgba(var(--primary-color), 0) 0%, rgba(var(--primary-color), .08) 100%);
}
.bg-theme-light{
    background-color: rgba(var(--primary-color),.08)!important;
}

.navbar-nav .dropdown-item{
    font-weight: 500;
}
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover{
    background-color: rgba(var(--primary-color),1);
    color: white;
}

/* WhatsApp Button */
.whatsapp-floating-button,
.call-floating-button{
    width: 50px;
    height: 50px;
    /*background: #10b418;*/
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display:  flex;
    justify-content: center;
    align-items: center;

    bottom: 20px;
}
.whatsapp-floating-button{
    left: 20px;
}
.call-floating-button{
    padding: 5px;
    right: 20px;
}
.whatsapp-floating-button:before,
.call-floating-button:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.whatsapp-floating-button:before{
    background-color: #10b418;
}
.call-floating-button:before{
    background-color: #095ac4;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


@media (min-width:575px) {
    .call-floating-button{
        display: none!important;
    }
    .product-home-card{
        /* min-width: 200px; */
        max-width: 250px;
    }
}
@media (min-width:992px) {
    .product-home-card{
        /* min-width: 200px; */
        width: 220px;
    }
}
@media (max-width: 575px) {
    
}