/* main */

body {
  background: #f7f7f7;
}

.page .container {
  padding: 2rem;
  line-height: 1.3em;
  background: transparent;
}

/* header */

header {
  display: flex;
  flex-grow: 0;
  justify-content: space-between;
  background-color: white;
  height: 75px;
  padding: 25px;
  margin: 0px;
  font-family: muli, sans-serif;
  font-weight: 400;
  font-style: normal;
}

header.mainmenu ul {
display: inline-flex;
}

header.mainmenu li {
  list-style-type: none;
}

header.mainmenu li a {
  padding: 0 1.5rem;
  display: block;
  top: 0;
}

header.mainmenu ul {
	justify-content: flex-end;
	color: red;
}

a  {
	color: black;
	}


a:hover  {
	color: #FBB03B;
	text-decoration: underline;	
}

a:active  {
	color: #FBB03B;
	text-decoration: none;
	}

/* menu test */



/* logo */

.logo {
    display: inline-block;
    width: 300px; 
    height: 50px;
    background-image: url(https://www.topweg.nl/wp-content/uploads/2020/11/Mainlogo_Regular.svg);
	background-repeat: no-repeat;
	align-self: center;
	cursor: pointer;

}

/* logo responsive */

@media screen and (max-width: 800px) {
  .logo {
	background-image: url(https://www.topweg.nl/wp-content/uploads/2020/11/MainIcon.svg)
  }
	header.mainmenu li a {
 	 text-indent: -1em;
}
}
/* achtergrond */

.background {
	background: #333D40;
 	/*background: linear-gradient(to bottom, #FBB03B 0%, #F7931E 100%);*/
	width: 100vw;
 	position: relative;
 	margin-left: -50vw;
 	left: 50%;
	height: 400px;
	color: white;
}

#patroon {
	background-image: url(https://www.topweg.nl/wp-content/uploads/2020/11/bg-3.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 1000px) {
  #patroon {
	background-image: url(https://www.topweg.nl/wp-content/uploads/2020/11/bg_responsive-01-01-01.svg);
	background-size: cover;
	height: 340px;
	}}

#subheader {
	background: linear-gradient(to bottom, #FBB03B 0%, #F7931E 100%);
	height: 170px;
}

/* buttons */

.button {
	/*background: linear-gradient(to bottom, #FBB03B 0%, #F7931E 100%);*/
	background: transparent;
	color: red;
	border-radius: 40px;
	border-style: 1px;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
	text-decoration: none;	
}

.button:hover {
	background: transparent;
	color: white;
	cursor: pointer;
	width: 160px;
	border-radius: 40px;
	border-style: 1px transparent;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
}

.secondbutton {
	background: transparent;
	color: white;
	border-radius: 40px;
	border-style: 1px;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
}

.secondbutton:hover {
	background: white;
	color: orange;
	cursor: pointer;
	border-radius: 40px;
	border-style: 1px;
	border-color: white;
	padding: 12px;
	z-index: 1000px;
}

.sb-slider img {
     width: 100%;
}

/* footer */

.footer {
	background-color: #333D40;
	height: 270px;
	position: relative;
  	left: 0;
 	bottom: 0;
 	width: 100%;
	margin-top: 1200px;
	color: white;
}


.footer #footertext {
	padding: 40px;
	display: flex;
    justify-content: space-evenly;
}


.socials {
    place-content: space-between;
}

.copyright {
	text-align: center;
	color: white;
}

@media screen and (max-width: 800px) {
  .footer #footertext {
	flex-direction: column;
  }
	.footer {
		height: 440px;
		margin-top: 1900px;
		flex-direction: column;
	}
	.socials {
    justify-content: end;
}
	section {
	margin-bottom: 20px;
}


