:root {
    /* MONOCHROMATIC BLUES THEME */
    --primary-color: #023E8A;
    --secondary-color: #0077B6;
    --light-color: #CAF0F8;
    --mid-dark-color: #0b131f;
    --high-dark-color: #080e16;
    --logo-color-primary: #0e3f61;
    --logo-color-secondary: #9b9d68;
    --white: #ffffff;
    --black: #000000;
}

/* HERO SECTION */

.our-products-hero-section {
    position: relative;
    height: 280px;
    background-image: url('../img/our products/products-page-hero-img-2.webp');
    background-size: cover;
    background-position: center;
}

.our-products-hero-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.dark-overlay-50 {
    position: relative;
}

.dark-overlay-50::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--light-color);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-separator {
    color: var(--white);
    margin: 0 5px;
}

/* SECTION 3 */

.section-3 {
    background-color: var(--primary-color);
}

/* SECTION 4 */

.section-4 {
    position: relative;
    height: 360px;
    background-image: url('../img/our products/section-4-img.webp');
    background-size: cover;
    background-position: center;
}

.section-4-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-4-content {
        left: 20px;
    }
}

/* SECTION 5 */

.section-5 {
    position: relative;
    height: 360px;
    background-image: url('../img/our products/section-5-img-alt.webp');
    background-size: cover;
    background-position: center;
}

.section-5-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-5-content {
        left: 20px;
    }
}