.backgrounds{
    background-color: #343a40;
}
.product-image-view{
    position: relative;
    border: 1px solid #f4623a;
    margin: 5px;
}

.product-image-view img{
    width: 100%;
    height: 300px;
    /* border: 1px solid grey; */
    transition: ease-in .3s;
    padding: 5px;
}
.product-image-view img:hover{
    padding: 0;
}
.product-title{
    display: block;
    background-color: #f4623a;
    padding: 10px;
    text-align: center;
    color: #dee2e6;
}
.item-header{
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #f4623a;
    /* margin-top: 60px; */
}
.gallery-item{
    
    margin: 0;
    padding: 0;
}
.gallery-item img{
    width: 100%;
    height: 300px;
}
.gallery-item-overlay{
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    
}
.gallery-item-title{
    
    background-color: #f4623a;
    color: #dee2e6;
    padding: 10px 20px;
}
.gallery-item:hover .gallery-item-overlay{
    opacity: 1;
}
.video-text{
    text-align: center;
    color: #ee3e0d;
    font-weight: 600;
    font-size: large;
}
#projects{
    background-color: rgb(244 98 58 / 25%);
    padding: 100px 0;
}
#products{
    background-color: #ee3e0d;
    padding: 100px 0;
}
#galleries{
    background-color: rgb(244 98 58 / 25%);
    padding: 100px 0;
}
#videos{
    background-color: #ee3e0d;
    padding: 100px 0;
}