/* Products Header Section */

.header-container {
    min-height: 420px;
    background: url("../assets/img/products/header.jpg") no-repeat top;
    background-size: contain;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.breadcrumb {
    background: transparent;
}

/* Products Nav Section */

.nav-container {
    background: #f4f8ea;
}

.nav-container .nav-link {
    color: #0d314a;
    transition: all .3s;
}

.nav-container .nav-link.active {
    background: #85be2f;
    color: #ffffff;
}

.nav-container .icon {
    width: 120px;
    height: 120px;
    background: #e8f2d7;
    text-align: center;
}

/* Products */

.card-body {
    text-align: center;
}

.card-img-top {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    margin-top: 1.25rem;
}

.card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1rem;
}

.card.bg {
    background: #fafbf5;
    border-color: #fafbf5;
}

@media (max-width: 550px) {
    .nav-container {
        background: #ffffff;
    }
    .nav-container .icon {
        width: 24px;
        height: 24px;
    }
    .nav-container h5 {
        font-size: .7rem;
    }
    .nav-container .col-3 {
        padding-right: 5px;
        padding-left: 5px;
    }
    .header-container {
        background: url("../assets/img/products/mobile/banner.jpg") no-repeat top;
        background-attachment: fixed;
        position: relative;
        text-align: center;
        min-height: 356px;
        margin-top: 68px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: inherit;
    content: "/";
}