/* Verberg het desktop-menu onder 1181px */
@media only screen and (min-width: 981px) and (max-width: 1180px)  {
	#menu-menuall-1 {
		display: none !important; /* Desktop-menu verbergen */
	}
	#desktop-menu {
		display: none !important; /* Desktop-menu verbergen */
	}
	#mobiel-menu {
		display: block !important; /* Mobiel menu tonen */
	}

	.smallmenuItems .et_pb_menu__wrap  {
		display:none !important;
	}

	.pa-header > div:first-child  {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.et_mobile_nav_menu {
		display: flex !important;
		align-items: center;
	}

	.et_mobile_nav_menu li {
		list-style-type: none;
		text-align: start;
	}

	#mobiel-menu .et_pb_menu__wrap {
		justify-content: end;
	}

	.et_pb_menu__logo-wrap img {
		width: 140px;
	}

	#AdressRowNavbar h4 {
		color: white !important;
	}

}

/* Verberg het mobiele menu boven 1180px */
@media (min-width: 1181px) {
	#mobiel-menu {
		display: none !important; /* Mobiel menu verbergen */
	}
	#desktop-menu {
		display: block !important; /* Desktop-menu tonen */
	}
}

@media (max-width: 1181px) {
	#mobiel-menu #mobile_menu3 {
		width: 100vw;
		position: absolute;
		left: -8.8%;
		top:115%;
		padding:5% 5% 0% 5%;
	}
	
	/* submenu styling	 */
	#mobile_menu3 .extra-menu-container {
		margin-top:auto;
		width: 110%;
		position: relative;
		left: -5%;
	}
}
/* 
@media (max-width: 980px) {
	#mobile_menu3 .extra-menu-container {
		margin-top:auto;
		width: 110%;
		position: relative;
		left: -5%;
	}
} */

/* Animation keyframes */
@keyframes growDown {
	0% {
		opacity: 0;
		height: 0;
	}
	100% {
		opacity: 1;
		height: calc(100vh - 10vh);
	}
}

@keyframes shrinkUp {
	0% {
		opacity: 1;
		height: calc(100vh - 10vh);
	}
	100% {
		opacity: 0;
		height: 0;
	}
}

/* Menu animation styling */
.mobile_nav.opened .et_mobile_menu {
	display: flex ;
	flex-direction: column !important;
	overflow: hidden;
}
.mobile_nav.closed .et_mobile_menu {
	display: none ;
	flex-direction: column !important;
	overflow: hidden;
}

.mobile_nav.opened .et_mobile_menu {
	animation: growDown 0.7s forwards;
}

.mobile_nav.closed .et_mobile_menu {
	animation: shrinkUp 0.7s forwards;
}


/* hamburgericon */

:root {
	--white: #ffffff;
	--vapor: #eeeeee;
	--blue-light: #5dade2; /* Lichte versie van blauw */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	background-color: var(--vapor);
	font-family: 'Lato', sans-serif;
}

.container {
	display: flex;
	justify-content: end;
	width:fit-content;
}

.inner {
	display: flex;
	justify-content: end;
}

.burger-toggle {
	max-height: 80px;
	cursor: pointer;
}

.burger-toggle .inner {
	width: 40px;
	height: 40px;
	position: relative;
	transform: scale(0.5)
}

.burger-toggle span {
	position: absolute;
	right: 0;
	width: 40px;
	height: 4px;
	background-color: var(--white);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), top 0.4s ease, opacity 0.2s ease, width 0.3s ease;
}

/* Posities van de lijnen */
.burger-toggle span:nth-child(1) {
	top: 0;
}

.burger-toggle span:nth-child(2) {
	top: 18px;
	width: 35px;
}

.burger-toggle span:nth-child(3) {
	top: 36px;
	width: 30px;
}

/* Active state animatie */
.burger-toggle.active span:nth-child(1) {
	top: 18px;
	transform: rotate(45deg) scale(1.1);
}

.burger-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.burger-toggle.active span:nth-child(3) {
	top: 18px;
	width: 40px;
	transform: rotate(-45deg) scale(1.1);
}


/* sub menu styling */

#mobile_menu3 .menu {
	padding-left:0px;
	background-color:#000000 !important;
}

.width50 {
	width:50%;
}

.width100 {
	width:100%;
}

.footer-menu > div:first-child {
	display:flex;
	flex-direction:row;
}

.footer-menu {
  background-color: #000; /* Achtergrondkleur */
  color: white;
  padding: 5% 5% 40px 5%;
  font-family: 'Poppins', sans-serif;
}

.footer-menu .accordionButton {
	margin-top:0px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}

.menu li {
  margin: 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 20px !important;
  font-family: 'Libre Franklin', Helvetica, Arial, Lucida, sans-serif;
  padding:10px 5% !important;
  font-weight: 300 !important;
  line-height:26px !important;
}

.social-icons a {
  display: inline-flex;
  margin: 0px 5%; /* Ruimte tussen de iconen */
}

.social-icons {
	justify-content: center;
    display: flex;
	margin-top:30px;
}
.social-icons img {
  width: 25px; /* Pas de grootte aan naar wens */
  height: 25px; /* Zorg ervoor dat de hoogte en breedte gelijk zijn voor een cirkelvormig effect */
  transition: background-color 0.3s ease; /* Voor hover-effecten */
}

.social-icons a:hover img {
  background-color: rgba(0, 0, 0, 0.1); /* Lichte achtergrond bij hover */
}




