.page-title {
    position: relative;
}

.bg-layer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 70, 77, 0.6);
    z-index: 2;
}

.auto-container {
    position: relative;
    z-index: 3;
}

.content-box {
    position: relative;
    z-index: 3;
    color: #fff; 
}

.container {
    width: 80%;
    margin: 50px auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -12px;
}

.product-box {
    border: 1px solid #ddd;
    padding: 14px;
    margin: 7px;
    text-align: start;
    background-color: #f9f9f9;
    width: 200px; 
    height: 87%; 
    box-sizing: border-box;
}


.product-box:hover {
    background-color: #01464D;
    color: white;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    flex: 1 0 30%; /* Default flex-basis is 30% for larger screens */
    display: grid;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
    .col-md-4 {
        flex: 1 0 100%; /* Change flex-basis to 100% for tablets */
        display: grid;
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .col-md-4 {
        flex: 1 0 100%; /* Ensure full width on mobile */
        display: grid;
        flex-direction: column;
        align-items: center;
    }
	.col-md-8 {
        flex: 1 0 100%; /* Ensure full width on mobile */
        display: grid;
        flex-direction: column;
        align-items: center;
    }
    .product-box {
        border: 1px solid #ddd;
        padding: 14px;
        margin: 7px;
        text-align: start;
        background-color: #f9f9f9;
        width: 200px;
        height: 87%;
        box-sizing: border-box;
        margin-left: 25px;
    }
}
