@media only screen and (max-width: 1000px) {
  /* Styles for smaller screens go here */
	body {
	  background-color: #1b1d22;
	  color: #ffffff;
	  font-family: "Abel", sans-serif;
	  display: flex;
	  flex-direction: column;
	}

	header {
	  position:fixed;
	  top: 0;
	  left: 0;
	  width: 100%;

	   background-color: #1b1d22;
	  display: flex;
	  //justify-content: space-between;
	  align-items: center;
	  z-index: 1;

	}
	.highlight-line {
	  position: relative;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: 3px; /* Adjust the height of the highlighted line */
	  background-color: #b7335a; /* Your highlight color */
	}


	.logo{
		 padding:10px;
	}


	.logo img{
		max-height: 50px;
		width: auto;
		 //justify-content: center;
		margin:0px;
	}

	header a {
	 font-weight: bolder;
	  display: inline-block;
	  padding: 15px 15px;
	  text-decoration: none;
	  //color: #aec160;
	  border: none;
	  position: relative;
	  overflow: hidden;
	}

	header a::after {
	  content: "";
	  display: block;
	  position: absolute;
	  left: 50%; 
	  bottom: 0;
	  width: 0; /* Start with no width */
	  height: 2px; /* Adjust the thickness of the underscore */
	  background-color: #aec160; 
	  transition: width 0.3s ease, transform 0.3s ease;  /* Add a transition for a smooth effect */
	  transform-origin: 50% 0;
	  transform: translateX(-50%);
	}

	header a:hover::after{

	  width: 100%;
	  transform: translateX(-50%);
	}

	nav ul {

	  list-style: none;
	  display: flex;
		 justify-content: flex-start;
	}

	nav li {
	  //margin-right: 0px;
	  margin:0px;
	}

	nav a {
	  text-decoration: none;
	  //color: #4C9F9E;
	  color: #aec160;
	}

	.social-icons {
		position: absolute;
	 /* Adjust as needed */
	  right: 0;
		padding-right:0px;
		padding:0px;
		margin:0px;

	}
	.social-icons img {
		max-height: 20px;
		width: auto;
		margin:0px;
		padding:0px;
	}

	p {
		text-weight: 200;
		font-size: 1.3em; 
		font-family: "Abel", sans-serif;
	}

	h2{
		text-weight: 500;
		font-size: 3em; 
		font-family: "Poppins", sans-serif;
	}

	h3{
		text-weight: 500;
		font-size: 1.5em; 
		font-family: "Poppins", sans-serif;
	}


	/*burger menu*/
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #282b33;
	z-index:5;
  }

  .nav-links.show {
    display: flex;
  }

  .burger-menu {
    display: block;
	color:white;
	font-size: 2em;
  }

  /*banner */
  .banner {
	  height: auto;
	  background: url('Images/Mobile_Banner.jpg');
	  background-size:cover;
	  padding-top: 120px;
	  padding-bottom: 20px;
	  padding-right:20px;
	  padding-left:20px;
	  font-family: "Abel", sans-serif;
	}



	.banner-content img{
		max-width:100%;
	}
	/*services */
	.services img, video{
		max-width:95%;
		padding: 0px 15px;
	}
	.services p,h1,h2,h3{
		padding: 0px 20px;
	}
	/*work*/
	.work h2{
		padding:10px 10px;
		margin:10px 0px;
	}
	.work a {
	  color: #ffffff;
	  text-decoration: none;
	  margin-top: 10px;
	  //justify-content:center;
	  padding: 10px 10px;
	  background-color: #535F5F;
	  border-radius: 5px;
	  right:0;
	  margin:5px 10px;
	}
	/*image grid */ 
	.image-grid {
	  padding: 20px 0px;
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  column-gap: 2px;
	  row-gap: 2px;
	  place-items: center;
	  //width: 100%;
	  height: auto;
  
	}

	.image-grid .image-wrapper {
		overflow: hidden; 
		width: 100%;
		height: 400px
	}

	.image-grid img{
		width: 100%;
	  height: 400px; /* Adjust the height as needed */
	  max-width: 100%;
	  object-fit: cover; /* Maintain aspect ratio without cropping */
	  cursor: pointer;
	  transition: filter 0.3s ease, transform 0.3s ease; /* Combine multiple transitions */
	  transform-origin: center center; /* Set the transform origin to the center of the image */
	}
	/*workpage imagegrid*/
	.workpage-tabs {
	  padding:5px 5px;
	  margin:0px;
	  position: sticky;
	  top: 75px;
	  overflow: hidden;
	  background-color:#282b33;
	  justify-content:center;
	}

	.workpage-image-grid {
	  padding: 20px 0px;
	  //display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  column-gap: 2px;
	  row-gap: 2px;
	  place-items: center;
	  //width: 100%;
	  height: auto;
	}
	.workpage-image-grid .image-wrapper {
		overflow: hidden; 
		width: 100%;
		height: 400px
	}

	.workpage-image-grid img {
	  width: 100%;
	  height: 400px; /* Adjust the height as needed */
	  max-width: 100%;
	  object-fit: cover; /* Maintain aspect ratio without cropping */
	  cursor: pointer;
	  transition: filter 0.3s ease, transform 0.3s ease; /* Combine multiple transitions */
	  transform-origin: center center; /* Set the transform origin to the center of the image */
	}
	/*overlay*/
	.overlay {
	  display: none;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
	  z-index:100;
	}


	.overlay-content {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index:100;
	}

	.overlay-image {
	  max-width: 90vw; /* Set maximum width to 70% of the viewport width */
	  max-height: 90vh; /* Set maximum height to 70% of the viewport height */
	  width: auto;
	  height: auto;
	  object-fit: contain; /* Maintain aspect ratio */
	  cursor: pointer;
	  z-index:100;
	}
	/*workpage*/
	.workpage{
		//margin-top:100px;
		//padding: 40px 20px;
		text-align:center;
		padding: 0px 0px;
		width:100%;
		height:auto;

	}

	.workpage button{
		flex: 1;
	  font-size: 0.75em;
	  width:100px;
	  height:20px;
	  
	  //word-break: break-all; 

	  display: flex;
  align-items: center;
  justify-content: center;

	  color: #ffffff;
	  text-decoration: none;
	  display: inline-block;
	  //padding: 10px 5px;
	  background-color: #535F5F;
	  border-radius: 20px;
	  
	  cursor: pointer;
	  border: none;
	  overflow: hidden; /* Ensure text doesn't affect button height */
	  white-space: nowrap; /* Prevent text from wrapping */
	  text-overflow: ellipsis; /* Display an ellipsis (...) when text overflows */
	}

	.workpage button:hover{
		background-color: #b7335a;
	}

	button.active {
	  background-color: #aec160; /* Change this color for the active tab */
	}

	/*contact page*/
	.Contact-banner-content{
		display:flex;
		flex-orientation:row;
		padding:20px 20px;
	}
	.Contact-banner-content h1,p{
		padding:0px 0px;
	}

	.Contact-banner-content button{
		 padding: 10px;
		  background-color: #4C9F9E;
		  color: white;
		  border: none;
		  cursor: pointer;

	}
	.Contact-banner-content button:hover{
		background-color: #366566;
	}
	/*shoppage*/
	.shop-text-content h1,p{
		padding:0px;

	}
	/*business*/
	.HorizontalImages{
		align:center;
		display:flex;
		flex-orientation: row;
		 justify-content: center;
	}
	.HorizontalImages img{
		width:20%;
		height:auto;
	}

	/*seperator*/
	.separator {
	  height: 20px; /* Adjust the height of the separator */
	  background-image: url('Images/Border_01.jpg'); /* Replace with the path to your image */
	  background-size: cover;
	  background-repeat: no-repeat;
	}
	/*footer*/

	

	footer {
	  background-color: #000000;
	  padding: 20px;
	  text-align: center;
	}

	footer img{
		width:50%;

	}

	footer a {
	  color: #ffffff;
	  text-decoration: none;
	  margin-top: 10px;
	  display: inline-block;
	  padding: 10px 20px;
	  background-color: #535F5F;
	  border-radius: 5px;
	}
}
@media only screen and (min-width: 1000px) {
	.burger-menu {
		font-size: 1.5em;
		cursor: pointer;
		display: none;
	}

	body {
	  background-color: #1b1d22;
	  color: #ffffff;
	  font-family: "Abel", sans-serif;
	  display: flex;
	  flex-direction: column;
	}

	header {
	  position:fixed;
	  top: 0;
	  left: 0;
	  width: 100%;

	   background-color: #1b1d22;
	  display: flex;
	  //justify-content: space-between;
	  align-items: center;
	  z-index: 1;

	}
	.highlight-line {
	  position: relative;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: 3px; /* Adjust the height of the highlighted line */
	  background-color: #b7335a; /* Your highlight color */
	}


	.logo{
		 padding:10px;
	}


	.logo img{
		max-height: 100px;
		width: auto;
		 //justify-content: center;
		margin:0px;
	}

	header a {
	 font-weight: bolder;
	  display: inline-block;
	  padding: 15px 15px;
	  text-decoration: none;
	  //color: #aec160;
	  border: none;
	  position: relative;
	  overflow: hidden;
	}

	header a::after {
	  content: "";
	  display: block;
	  position: absolute;
	  left: 50%; 
	  bottom: 0;
	  width: 0; /* Start with no width */
	  height: 2px; /* Adjust the thickness of the underscore */
	  background-color: #aec160; 
	  transition: width 0.3s ease, transform 0.3s ease;  /* Add a transition for a smooth effect */
	  transform-origin: 50% 0;
	  transform: translateX(-50%);
	}

	header a:hover::after{

	  width: 100%;
	  transform: translateX(-50%);
	}

	nav ul {

	  list-style: none;
	  display: flex;
		 justify-content: flex-start;
	}

	nav li {
	  //margin-right: 0px;
	  margin:0px;
	}

	nav a {
	  text-decoration: none;
	  //color: #4C9F9E;
	  color: #aec160;
	}

	.social-icons {
		position: absolute;
	 /* Adjust as needed */
	  right: 0;
		padding-right:20px;

	}
	.social-icons img {
		max-height: 30px;
		width: auto;
		margin:0px;
	}

	p {
		text-weight: 200;
		font-size: 1.3em; 
		font-family: "Abel", sans-serif;
	}

	h2{
		text-weight: 500;
		font-size: 3em; 
		font-family: "Poppins", sans-serif;
	}

	h3{
		text-weight: 500;
		font-size: 1.5em; 
		font-family: "Poppins", sans-serif;
	}


	.banner {
		position: relative;
	  margin-top: 100px;
	  height: auto;
	  background: url('Images/tomas-verstraete-2.jpg') center/cover;
	  background-size:cover;
	  padding: 150px 150px;
	  font-family: "Abel", sans-serif;
	  overflow: hidden;
	}



	.banner-content{
	
		align-items:center;
		display:flex;
		justify-content:center;
		position: relative;
		 transform: translate(-10 %, 0%);
	}


	.banner-content h1 {
	  margin-bottom: 20px;
  
	  font-size: 2.5em; 
	  font-family: "Poppins", sans-serif;
	  font-weight:1000;

	  display:flex;
	  flex-orientation:row;
	}

	.banner-image{
		 padding:20px;
	}

	.banner-image img {

	  max-width: 100%;
	  height: auto;
	  max-height:400px;
	  margin-right: 75px; /* Adjust spacing between image and text */
	}

	.banner-text-content{
	
		flex:1;
		float:left;
		max-width: 600px;
	}

	.banner-text-content img{
		max-width: 100%;
		height: auto;
	}

	.banner-text-content p{
		font-size: 21px;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

	}

	.shop-banner-content {
		justify-content:center;
		display:flex;
		position: relative;
	}


	.shop-banner-content h1{
	  margin-bottom: 20px;
	  text-align:center;
	  font-size: 2.5em; 
	  font-family: "Poppins", sans-serif;
	  font-weight: 1000;

	}

	.shop-text-content{
		justify-content: center;
		text-align:center;
		flex:1;
		max-width: 600px;
	}

	.Contact-banner-content{
		display:flex;
		flex-orientation:row;

	}

	.Contact-banner-content button{
		 padding: 10px;
		  background-color: #4C9F9E;
		  color: white;
		  border: none;
		  cursor: pointer;

	}
	.Contact-banner-content button:hover{
		background-color: #366566;
	}

	form {
		  width:50%;
		  max-width: 1000px;
		  margin: 0 auto;
		}

		.form-group {
		  margin-bottom: 20px;
		}

		.form-group label, .form-group input, .form-group textarea {
		  display: block;
		  margin-bottom: 10px;
		}

		.form-group input, .form-group textarea {
		  width: 100%;
		  padding: 8px;
		  box-sizing: border-box;
		}

		.form-group textarea {
		  resize: vertical; /* Allow vertical resizing */
		  height: 120px; /* Set the initial height */
		}

		.button-group {
		  text-align: center;
	 }

	.services {
		padding:30px 80px;
	  align-items:center;
		display:flex;
		justify-content:center;
		position: relative;
		 transform: translate(-10 %, 0%);
	}

	.service_textbox{
		padding: 10px 20px;
		display: flex;
		width:auto;
		flex-direction:column;
	}

	.services-container {
		max-width:1500px;
		width:100%;
	  display: flex;
	  //justify-content: space-between;
	}
	.left-container {

	  width: 30%; /* Adjust the width as needed */
	  //padding: 10px 20px;
	  align-text:right;
	  justify-content:right;
	}

	.left-container ul {
		padding:10px 15px;
		list-style:square;
		font-size: 1.1em; 
		font-weight:500;
	}

	.left-container li {
		padding:2px 2px;
	}


	.right-container {
	 padding: 70px 70px;
	  width: 70%; /* Adjust the width as needed */
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}

	.service-item {
	  margin-bottom: 20px;
	  display:flex;
	  max-width:100%;
	  flex-direction:row;

	}

	.service-item p {
		max-width:100%;

	}

	.service-item img, video {
	  width: 75%;
	  height: auto;
	  object-fit: cover;
	}


	.work, .business-partners {
	  padding: 40px 20px;
	  text-align:center;
	}

	.work{
		padding: 0px 0px;
		width:100%;
		height:auto;

	}

	.work a {
	  color: #ffffff;
	  text-decoration: none;
	  margin-top: 10px;
	  display: inline-block;
	  padding: 10px 20px;
	  background-color: #535F5F;
	  border-radius: 5px;
	  margin:20px
	}

	.workpage{
		margin-top:50px;
		padding: 40px 20px;
		text-align:center;
		padding: 0px 0px;
		width:100%;
		height:auto;

	}

	.workpage button{
	  color: #ffffff;
	  text-decoration: none;
	  margin: 5px;
	  display: inline-block;
	  padding: 10px 10px;
	  background-color: #535F5F;
	  border-radius: 20px;
	  margin:20px
	  cursor: pointer;
	  border: none;
	}

	.workpage button:hover{
		background-color: #b7335a;
	}

	button.active {
	  background-color: #aec160; /* Change this color for the active tab */
	}


	.workpage-tabs {
	  padding:10px 10px;
	  margin:0px;
	  position: sticky;
	  top: 120px;
	  overflow: hidden;
	  	  z-index:2;
	  background-color:#282b33;
	  justify-content:center;
	}



	.image-grid {
	  padding: 20px 0px;
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  column-gap: 2px;
	  row-gap: 2px;
	  place-items: center;
	  //width: 100%;
	  height: auto;
  
	}

	.image-grid .image-wrapper {
		overflow: hidden; 
		width: 100%;
		height: 400px
	}

	.image-grid img{
		width: 100%;
	  height: 400px; /* Adjust the height as needed */
	  max-width: 100%;
	  object-fit: cover; /* Maintain aspect ratio without cropping */
	  cursor: pointer;
	  transition: filter 0.3s ease, transform 0.3s ease; /* Combine multiple transitions */
	  transform-origin: center center; /* Set the transform origin to the center of the image */
	}

	.image-grid img:hover {
		filter: brightness(90%); /* Adjust brightness on hover (you can customize this value) */
	  transform: scale(1.1);
	}

	.workpage-image-grid {
	  padding: 20px 0px;
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  column-gap: 2px;
	  row-gap: 2px;
	  place-items: center;
	  //width: 100%;
	  height: auto;
	}
	.workpage-image-grid .image-wrapper {
		overflow: hidden; 
		width: 100%;
		height: 400px
	}

	.workpage-image-grid img {
	  width: 100%;
	  height: 400px; /* Adjust the height as needed */
	  max-width: 100%;
	  object-fit: cover; /* Maintain aspect ratio without cropping */
	  cursor: pointer;
	  transition: filter 0.3s ease, transform 0.3s ease; /* Combine multiple transitions */
	  transform-origin: center center; /* Set the transform origin to the center of the image */
	}


	.workpage-image-grid img:hover {
	  filter: brightness(90%); /* Adjust brightness on hover (you can customize this value) */
	  transform: scale(1.1);
	}

	.overlay {
	  display: none;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
	  z-index:100;
	}


	.overlay-content {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index:100;
	}

	.overlay-image {
	  max-width: 90vw; /* Set maximum width to 70% of the viewport width */
	  max-height: 90vh; /* Set maximum height to 70% of the viewport height */
	  width: auto;
	  height: auto;
	  object-fit: contain; /* Maintain aspect ratio */
	  cursor: pointer;
	  z-index:100;
	}


	.HorizontalImages{
		align:center;
		display:flex;
		flex-orientation: row;
		 justify-content: center;
	}
	.HorizontalImages img{
		width:auto;
		height:150px;
		max-width:100%
	}

	.separator {
		height: 20px; /* Adjust the height of the separator */
	  background-image: url('Images/Border_01.jpg'); /* Replace with the path to your image */
	  background-size: cover;
	  background-repeat: no-repeat;
	}

	footer {
	  background-color: #000000;
	  padding: 20px;
	  text-align: center;
	}

	footer img{
		width:20%;

	}

	footer a {
	  color: #ffffff;
	  text-decoration: none;
	  margin-top: 10px;
	  display: inline-block;
	  padding: 10px 20px;
	  background-color: #535F5F;
	  border-radius: 5px;
	}
}