:root {
    --primary: #009a88;
}


body {
    font-family: 'Poppins', Courier, monospace;
}

#carouselExampleIndicators .carousel-item img {
    max-height: 83vh;
    object-fit: cover;
}

.service-image-wrapper img {
    height: 21em;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5em;
    /* padding: 1em; */
}


.text-primary {
    color: var(--primary) !important;
}

.navbar-brand {
    font-size: 2em;
    font-weight: bold;
}

.carousel-caption {
    top: 25%;
    background: rgb(0 0 0 / 40%);
    border-radius: 0.5em;
    padding: 1em 0.5em;
    bottom: auto;
}

.carousel-caption h5 {
    font-weight: bold;
    font-size: 3em;
    text-align: center;
}

.our-services>div:nth-child(even) {
    background: #eee;
}

.product-image-showcase {
    height: 15em;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 2em;
        padding: 0.5em 0;
    }

    #carouselExampleIndicators .carousel-item img {
        min-height: 60vh;
        object-fit: cover;
    }

    .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
    }
    
    
}

@media (min-width: 768px) {
    .our-services>div:nth-of-type(even) .service-image-wrapper {
        order: 2 !important;
    }
}