.section-1{
    position: relative;
}
.section-1 img{
    display: block;
    width: 100%;
    height: auto; /* 500px */
    /*object-fit: cover;
    object-position: center;*/
}
.section-1-overlay{
    position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  padding: 5%;
}
.section-1-overlay h1{
    font-size: 60px;
    font-family: 'Hastegi';
    /*text-transform: uppercase;*/
    font-weight: 400;
}
@media (max-width:1200px){
    .section-1-overlay h1 {
        font-size: 42px;
    }
}
@media (max-width:1024px){
    .section-1-overlay h1 {
        font-size: 36px;
    }
}
@media (max-width:992px){
    .section-1-overlay h1 {
        font-size: 36px;
    }
}
@media (max-width:768px){
    .section-1-overlay h1 {
        font-size: 32px;
    }
}
@media (max-width:575px){
    .section-1-overlay h1 {
        font-size: 32px;
    }
}
@media (max-width:425px){
    .section-1-overlay h1 {
        font-size: 28px;
    }
}
@media (max-width:375px){
    .section-1-overlay h1 {
        font-size: 28px;
    }
}


.section-2{
    padding: 50px 5% 0 5%;
}
.section-2-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -1%;
}
.section-2-row-col{
    width: 23%;
    margin: 0 1% 2% 1%;
    background: rgba(239, 179, 121, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
 .product-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.3;
    overflow: hidden;
    cursor: pointer;
}

.product-img-box img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

.product-img-default {
    opacity: 1;
}

.product-img-hover {
    opacity: 0;
    transform: scale(1);
}

/* Hover effect */
.product-img-box:hover .product-img-default {
    opacity: 0;
    transform: scale(1);
}

.product-img-box:hover .product-img-hover {
    opacity: 1;
    transform: scale(1);
}

@media (max-width:1200px){

}
@media (max-width:1024px){
    .section-2-row-col{
        width: 31.33%;
    }
}
@media (max-width:992px){
    .section-2-row-col{
        width: 31.33%;
    }
}
@media (max-width:768px){
    .section-2-row-col{
        width: 31.33%;
    }
}
@media (max-width:575px){
    .section-2-row-col{
        width: 48%;
    }
}
@media (max-width:425px){
    .section-2-row-col{
        width: 48%;
    }
}
@media (max-width:375px){
    .section-2-row-col{
        width: 48%;
    }
}
