
/* 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');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.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 */
.wharehouse-section {
    padding: 120px 0;
    background: white;
  }
  
  .wharehouse-news .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
  
  .wharehouse-news .wharehouse-details {
    max-width: 50%;
  } 

  .wharehouse-news .section-title {
    margin-top: 208px;
    
  }
 
  .wharehouse-news .wharehouse-details .section-title {
    padding: 0;
  }
  
  .wharehouse-news .wharehouse-image .wharehouse-image {
    height: 400px;
    width: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
    margin-top: 220px;
  
   
  }
  
   .wharehouse-news.text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-l);
    margin-top: 80px;
  
  }
  
  /* wharehouse button Learn more */
  .wharehouse-news .wharehouse-details .buttons {
    display: flex;
    gap: 23px;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-end; 
    height: 100%
  }
  
  .wharehouse-news .wharehouse-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;
  }
  
  .wharehouse-news .wharehouse-details .button:hover,
  .wharehouse-news .wharehouse-details .button.Learn-more {
    color: var(--white-color);
    border-color: var(--white-color);
    background: black ;
  }
  
  .wharehouse-news .wharehouse-details .button.Learn-more:hover {
    color: var(--white-color);
    background: green;
    border-color: green;
  }

    
    /* Footer section styling */
.footer-section {
  padding: 20px 0;
  background: var(--dark-color);
  position: absolute;
  bottom: -100px;
  width: 100%;
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--white-color);
  transition: 0.2s ease;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
  color: green;
}

.footer-section .policy-text .separator {
  color: #fff;
  margin: 0 5px;
}

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

  .wharehouse-news .text {
    display: block; /* Blokweergave voor tekst */
    width: 90%; /* Zorgt dat tekst de meeste ruimte inneemt */
    max-width: 600px; /* Beperkt de breedte tot een maximum */
    margin: 20px auto; /* Zorgt dat de tekst gecentreerd staat */
    text-align: left; /* Tekst uitlijnen aan de linkerkant */
    line-height: 1.8; /* Verbetert leesbaarheid */
    font-size: 1rem; /* Standaard lettergrootte */
    color: #333; /* Donkere tekstkleur voor betere leesbaarheid */
  }

  .wharehouse-news .wharehouse-image {
    display: block; /* Zorg dat de afbeelding los staat */
    width: 100%; /* Laat de afbeelding de volledige breedte gebruiken */
    max-width: 600px; /* Beperk tot een nette breedte */
    margin: 20px 0; /* Geef ruimte boven en onder */
    object-fit: cover; /* Zorg dat de afbeelding goed schaalt */
  }

  
  
    .wharehouse-news .wharehouse-image{
      margin-top: -200px;
     
     }
  }
   

  
      
      

   

