/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

html, body {
    height: 100%; /* Zorg dat de hoogte 100% is van het scherm */
    margin: 0; /* Verwijder de standaard marge */
  }
  
  header{
    width: 100%;
    margin: 0 auto;
  }
  .navbar{
    background-color: transparent;
    box-shadow: 0 3px 10px rgba(0,0, 0, 0.15);
    width: 100%;
    z-index: 5;
    border-radius: var(--border-radius-m);
  }
  .navbar .dropdown{
  background-color: white;
  box-shadow: 0 3px 10px rgba(0,0, 0, 0.15);
  width: 100%;
  z-index: 5;
  border-radius: var(--border-radius-m);
  }


/* Wharehousing styling */
.news-2-section {
  padding: 120px 0;
  background: white;
}

.news-2 .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

    
    .news-2 .news-details {
      max-width: 50%;
    } 
  
    .news-2 .section-title {
      margin-top: 208px;
      
    }
   
    .news-2 .news-details .section-title {
      padding: 0;
    }
    
    
    .news-2  .text {
      line-height: 30px;
      margin: 50px 0 30px;
      text-align: center;
      font-size: var(--font-size-l);
      margin-top: 80px;
    
    }
    .news-2 .news-details .buttons {
      display: flex;
      gap: 23px;
      flex-direction: column;
      align-items: center; 
      justify-content: flex-end; 
      height: 100%
    }
     .news-2 img{
      margin-top: 300px;
      border-radius: 15px;
  box-shadow: 0px 4px 15px rgb(0, 0, 0, 0.2);

     
    }

    .news-2 .news-details .button {
      padding: 10px 26px;
      display: block;
      border: 2px solid transparent;
      border-radius: var(--border-radius-m);
      background: green;
      color: var(--white-color);
      font-size: var(--font-size-m);
      font-weight: var(--font-weight-medium);
      transition: 0.3s ease;
      justify-content: center;
      margin-top: auto;
    }
    
    .news-2 .news-details .button:hover,
    .news-2 .news-details .button.Learn-more {
      color: var(--white-color);
      border-color: var(--white-color);
      background: black ;
    }
    
    .news-2 .news-details .button.Learn-more:hover {
      color: var(--white-color);
      background: green;
      border-color: green;
    }
  
      
      /* Footer section styling */
  .footer-section-news {
    padding: 20px 0;
    background: var(--dark-color);
    position: absolute;
    bottom: -100px;
    width: 100%;
  }
  
  .footer-section-news .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-section-news :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;
  }
  
  .footer-section-news .social-link-list {
    display: flex;
    gap: 25px;
  }
  
  .footer-section-news .social-link-list .social-link {
    font-size: var(--font-size-l);
  }
  
  .footer-section-news .social-link-list .social-link:hover,
  .footer-section-news .policy-text .policy-link:hover {
    color: green;
  }
  
  .footer-section-news .policy-text .separator {
    color: #fff;
    margin: 0 5px;
  }

  

  
  /* Responsive media query code for max width 900px */
  @media screen and (max-width: 900px) {
    .news-2 .section-content {
      align-items: center;
      flex-direction: column-reverse;
    }

    }

    @media (max-width: 768px) {
      .news-2 img {
        margin-top: 80px; /* Houd marge consistent */
        width: 100%; /* Maak de afbeelding groter door de breedte op 100% te zetten */
        height: auto; /* Zorg ervoor dat de verhoudingen behouden blijven */
        max-width: none;
         }
    }
    
    /* Media query voor mobiele schermen */
    @media (max-width: 480px) {
      .news-2 img {
        margin-top: 40px;
    width: 200%; /* Vergroot de afbeelding verder op mobiele schermen */
    height: auto; /* Behoud de aspectratio */
    max-width: none;
 }
    }

    /* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) { 
  
  .footer-section-news {
    flex-direction: column;
    gap: 20px;
    position: relative;
  
  }
   }
     
  
  