.productBlock {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 0 20px;
    width: 100%;
    margin: auto;
    max-width: 1024px;
    padding: 0 0 20px 0;
}
.productBox {
    margin: 20px 0 0;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 0;
    position: relative;
    width: 200px;
    min-height: 290px;
}
.productBox .productImage {
    height: 200px;
    text-align: center;
}
.productBox .productImage img {
    object-fit: contain;
    max-height: 200px;
    max-width: 100%;
}
.productBox .productContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 2px 0;
    width: 100%;
    font-size: 14px;
    line-height: 1;
}
.productBox .new {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--green-light);
    padding: 0 5px;
}
.categories select {
    display: inline;
    width: auto;
    line-height: 1;
    padding: 2px;
    border: 0px;
    background: var(--light-pink);
    font-size: 15px;
}
.product-header-text {
    border-bottom: 1px solid var(--lighter-gray);
    line-height: 0.1em;
    margin: 10px 0 20px;
    text-align: center;
    font-size: 25px;
    letter-spacing: 3px;
}
.product-header-text span {
    background: var(--background);
    padding: 0 10px;
}
.products-banner {
    display: flex;
    color: white;
    background: var(--green-light);
    line-height: 1;
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}


/*///// Welcome Section //////*/
.products-welcome {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: white;
}
.welcome-left-img {
    max-height: 250px;
    position: absolute;
    top: 0;
    left: 0;
}
.welcome-right-img {
    max-height: 250px;
    position: absolute;
    bottom: -70px;
    right: 0;
}
.welcome-text {
    z-index: 2;
    position: absolute;
    left: 300px;
    top: 20px;
}
.welcome-header {
    font-size: 30px;
    font-family: var(--font-db);
}
.welcome-subtext {
    width: 400px;
    margin: 20px 0;
}


@media screen and (max-width:767px) {

    .products-welcome {
        height: 150px;
    }
    .welcome-left-img {
        max-height: 150px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .welcome-right-img {
        max-height: 150px;
        position: absolute;
        bottom: -40px;
        right: 0;
    }
    .welcome-text {
        z-index: 2;
        position: absolute;
        left: 150px;
        top: 0px;
    }
    .welcome-header {
        font-size: 20px;
    }
    .welcome-subtext {
        font-size: 12px;
        margin: 10px 0;
        width: 100%;
    }
    .categories select {
        font-size: 11px;
    }
    
    .products-banner {
        font-size: 20px;
    }
}
@media screen and (max-width:500px) {
    .products-banner {
        font-size: 10px;
    }
    
    .welcome-text {
        z-index: 2;
        position: absolute;
        left: 130px;
        top: 0px;
    }
    .welcome-header {
        font-size: 14px;
    }
    .welcome-subtext {
        font-size: 10px;
        margin: 5px 0;
        width: 100%;
    }
    .categories select {
        font-size: 10px;
    }
    .welcome-right-img {
        display: none;
    }
}