.hero-image {
    position: relative;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    margin: 0;
  
}

#logo-image{
    height: 60vh;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.hero-text {
    position: absolute;
    top: 60%;
    left: 5%; 
    transform: translateY(-50%);
    text-align: left; 
    z-index: 1;
    max-width: 600px; 
}
#logo-text{
    text-align: center;
    left: 30%;
}

.hero-text p {
   /* color: white;
    font-size: 3.2rem;*/
    font-weight: 300;
    max-width: 1200px;
    text-align: left;
}
#logo-text p{
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.647);
    margin: 0;
    padding: 0;
}

.product-highlight {
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
    /*background-color: #e7e7e7; */
}

.product-highlight .images {
    max-width: 400px;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    object-fit: contain;
    width: 60%;
}
.product-highlight .images img {
    max-width: 100%; 
    height: auto; 
}

.product-highlight .text {
    flex-wrap: wrap;
   max-width: 600px;
}

.product-highlight .text h2 {
   /* color: #1b2a38;*/
    margin-bottom: 20px;
}

.product-highlight .text p {
   /* color: #333;
    font-size: 1.8rem; 
    line-height: 1.6;*/
    margin-bottom: 10px;
   
}
#who-we-are{
   /* background-color: #e7e7e7;*/
    height: 90vh;
}

.top-image img {
    max-width: 400px; 
    height: auto;
}

.bottom-images {
    display: flex;
    gap: 20px;
    margin-top: 20px; 
}

.bottom-images img {
    max-width: 400px; 
    height: auto;
}

@media (max-width: 1500px) {
    .product-highlight {
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 10px;
        background-color: #e7e7e7;
    }
    .product-highlight .images {
       display: none;
    }
    .product-highlight .images img {
        max-width: 100%; 
        height: auto; 
    }
    #logo-text{
        text-align: center;
        left: 4%;
    }
    #who-we-are{
        height: 80vh;
    }
    #who-we-are img{
     display: none;   
    }
}