.mainSite #mainHeader {
	min-height: 60vh;
	background-image: url('/image/header.svg');
}

.mainSite #mainHeader .container {
	position: relative;
}
.mainSite #mainHeader .headerTxt {
	text-shadow: none;
	color: #000;
}

.mainSite #mainHeader #headerContentImg {
	width: 120px;
	height: 120px;
	right: 0;
	bottom: -100px;
	position: absolute;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 5s ease-in-out;
	animation: floatAndBob 15s infinite; /* 5s is de duur van de animatie, infinite maakt het oneindig */
}

.mainSite  .topMenu .navbar-brand>span {
	padding-top: 15px;
}

@keyframes floatAndBob {
  0% {
    transform: translateY(0px) translateX(0px) rotate(1deg); /* Beginpositie */
  }
  15% {
    transform: translateY(-5px) translateX(5px) rotate(4deg); /* Beginpositie */

  }
  25% {
    transform: translateY(-10px) translateX(-10px); /* Halverwege op en neer gaan en naar linksonder bewegen */
  }
  50% {
    transform: translateY(-15px) rotate(5deg); /* Halverwege op en neer gaan en naar linksonder bewegen */
  }
  75% {
    transform: translateY(-5px) rotate(-7deg); /* Terug naar de beginpositie, maar iets naar rechtsonder */
  }
  100% {
    transform: translateY(0px) translateX(1px) rotate(2deg); /* Beginpositie */
  }
}

.fotos
{
	margin-top:10vh;
}

.hpFoto
	{
		display: block;
		width: 100%;
		padding-top: 100%;
		background-color: #ccc;
		margin: 15px 0px 15px 0px;;
		background-position:center;
		background-size:cover;
	}
	.sponsors
	{
		display: flex;
		align-items: center;
		justify-content:space-around;
		width: 100%;
		flex-direction: column;
		margin-bottom: 5vh;

	}
	.sponsors a
	{

		flex: 1 1 auto;
		display: flex;
		align-items: center;
		justify-content:space-around;		
		height: 150px;
		max-width: 250px;
	}
	.sponsors a img
	{
		max-width: 90%;
		max-height: 120px;;
	}

.mainSite .badMap {
	background-color: var(--color-prim);
	padding: 20px;
	border-radius: 25px;
	color: var(--color-white);
	font-size: .8em;
	font-weight: 600;
}

.mainSite .badMap .mapImg {
	background-image: url("/image/Kaart.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1/.8;
}

.mainSite .badMap .legenda {
	width: 100%;
}


.mainSite .badMap .legenda tr {
	height: 50px;
	width: 50%;
}

.mainSite .badMap .legenda td {
	padding: auto;
}

.mainSite .badMap .legenda tbody {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	line-height: 2rem;
}

.mainSite .badMap .legenda tr>td:first-of-type div {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.mainSite .badMap .legenda tr>td:first-of-type div.smlIMG {
	width: 30px;
	margin: 0px 10px 0px 5px;
}

.mainSite .socialIcon {
	color: currentColor;
	font-size: 2em;
}

.mainSite .contentPage .swiper {
    margin: 25px 0 150px 0;
    height: 100px;
	transition-timing-function: linear;
}


.mainSite .contentPage .swiper .swiper-wrapper {
    transition-timing-function: linear;
}
.mainSite .contentPage .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 150px !important; */
    /* margin: 0px; */
}

.mainSite .swiper .swiper-slide img {
    width: 100%;
    max-height: 50px;
	object-fit: contain;
}

.mainSite .swiper {
	margin: 25px 0 150px 0;
    height: 100px;
}

.mainSite .blueContent {
	background-color: var(--color-prim);
	border-radius: 25px;
	padding: 30px;
	color: var(--color-white);
	margin: 15px 0;
	min-height: 300px;
}

.mainSite .blueContent:first-of-type {
	margin-top: 50px;
}

.mainSite .blueContent:last-of-type {
	margin-bottom: 50px;
}

.mainSite .blueContent a {
	color: currentColor;
	display: block;
	font-weight: 700;
}

.mainSite .blueContent .socials {
	display: flex;
	flex-direction: row;
}

.mainSite .blueContent .socials .socialIcon {
	margin-right: 15px;
}

@media (min-width: 600px) {
	.mainSite  .topMenu .navbar-brand>img {
		height: 200px;
		z-index: 3;
	}
}

@media (min-width: 768px) {
	.mainSite .badMap .legenda tr>td:first-of-type div {
		width: 30px;
		height: 30px;
	}
	
	.mainSite .badMap .legenda tr>td:first-of-type div.smlIMG {
		width: 25px;
	}
}

@media (min-width: 992px) {
	.sponsors
	{

		flex-direction: row;

	}

	.mainSite .badMap .legenda tr>td:first-of-type div {
		margin-right: 5px;
	}


	.mainSite .swiper .swiper-slide img {
        max-height: 100px;
    }

}

@media (min-width: 1200px) {
	.mainSite  .topMenu .navbar-brand>img {
		height: 250px;
	}
}