body {
       font-family: Arial, sans-serif;
       margin: 0;
       padding: 0;
     }
     
     header {
        display: flex;
        justify-content: space-between; /* To push the elements to the edges */
        align-items: center; /* To vertically center the items */
        background-color: white;
        width: 100%;
        padding: 0px;
        position: fixed;
        z-index: 7;
        top: 0;
     }
     
     .logo {
         margin-left: 50px;
     }
     
     .logo img {
         height: 125px;
     }
     
     .links {
         margin-right: 50px;
     }
     
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 720px;
    background-color: #f0f0f0;
    position: relative; /* Add position relative */
 }

.hero-content img {
    position: absolute; /* Add position absolute */
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%; /* Set image width to cover the entire section */
    height: auto; /* Set image height to cover the entire section */
    object-fit: cover; /* Ensure the image covers the entire space while maintaining aspect ratio */
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Adjust timing and easing function as needed */
 }
 
 .hero-mobile {
     display: none;
 }    
 
        .collection {
           display: flex;
           overflow-x: auto;
           margin-left: 10px;
        }
        
        .collection div {
           flex: 0 0 auto;    
           width: 325px;
           height: 350px; 
           margin-left: 5px;
           text-align: center;
           background-size: cover;
           background-position: center;
           background-repeat: no-repeat;
        }
        
        .collection h2 {
            color: white;
            font-weight: 900;
            margin-top: 120px;
            margin-bottom: 20px;
        }
        
        .collection p {
            color: white;
            font-weight: 900;
            width: 80%;
            display: block;
            font-size: 18px;
            margin: auto;
        }
        
        .smallbanner {
            display: none;
        }

        .offers {
          margin-left: 15%;
        }

        .offers h3 {
           margin: 20px 0 20px 30px;
        }

        .offer-item {
           overflow-x: auto;
           white-space: nowrap;
           display: flex;
        }
        
        .offer-item img {
           width: 400px;
           height: 300px;
           display: inline-block;
           margin-left: 50px;
        }
        
        .expertise {
           overflow-x: auto;
           white-space: nowrap;
           display: flex;
        }

        .expertise img {
           width: 400px;
           height: 300px;
           display: inline-block;
           margin-left: 1px;
        }
        
     
 @media only screen and (max-width: 700px) {
     
     header {
        display: flex;
        justify-content: space-between; /* To push the elements to the edges */
        align-items: center; /* To vertically center the items */
        width: 100%;
        padding: 0px;
     }
     
     .logo {
         margin-left: 10px;
     }
     
     .links {
         margin-right: 0px;
     }
    
    .hero-mobile {
         display: block !important;
     }
    
    .hero {
        display: none;
     }
    
    .hero-mobile-content {
        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: cover;
        height: 250px; /* Set a maximum height for mobile devices */
        background-color: #f0f0f0;
        position: relative;
     }

    .hero-mobile-content img {
        position: absolute; /* Change position to relative */
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
        width: auto; /* Reset image width */
        height: 250px; /* Reset image height */
        max-width: 100%; /* Set maximum width to 100% */
        max-height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
     }
     
      .collection div {
           flex: 0 0 auto;    
           width: 300px;
           height: 350px; 
           margin-left: 5px;
           text-align: center;
           background-size: cover;
           background-position: center;
           background-repeat: no-repeat;
        }
     
     .bigbanner {
         display: none;
     }
     
     .smallbanner {
         display: block;
     }
  
    .offers {
        margin-left: 10px;
     }
        
       .offer-item img {
           width: 300px;
           height: 350px;
           display: inline-block;
           margin-left: 10px;
           border: 1px solid black;
         }
        
       .expertise img {
           width: 300px;
           height: 350px;
           display: inline-block;
           margin-left: 1px;
         }
         
 }