	body {
	margin: 0px;
  	padding: 0px;
  	font-family: 'Montserrat', sans-serif;
	background-color: white;
	}

	html {
    	scroll-behavior: smooth;
	}

/*////////////////////////////////////////////////////*/

	#home {
  	display: flex;
	}

	#home-left {
  	width: 50%;
	}

	#home-right {
  	width: 50%;
  	display: flex;
  	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 50px;
	}

	#nav {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	width: 75%;
  	margin: 0 auto;
  	text-align: center;
  	font-weight: 900;
	}

	#nav a {
  	text-decoration: none;
  	color: black;
  	font-size: 1.25rem;
  	padding: 10px 20px;
	}

	#nav a:hover {
  	color: white;
  	background-color: black;
	}

	#title-pt {
  	flex: 1; 
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
	}

	img {
	width: 100%;
	display: block;
	}

	h1 {
  	font-weight: 900;
	font-size: 2rem;
	margin: 0px 0px 20px 0px;
	}

	h2 {
  	font-weight: 400;
	font-size: 1.5rem;
	margin: 0px;
	}

	p {
	font-size: 1rem;
	}

/*////////////////////////////////////////////////////*/

	#over-mij {
	display: flex;
	}

	#over-mij-links {
  	width: 50%;
	display: flex;
	flex-direction: column;
  	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
	}

	#over-mij-links h2 {
	font-weight: 900;
	font-size: 2rem;
    	align-self: center;
    	text-align: center;
	margin: 0px;
	}

	#over-mij-links p {
	margin: 50px 100px 0px 100px;
	}

	#over-mij-rechts {
  	width: 50%;
	}

/*////////////////////////////////////////////////////*/

	#diensten {
	display: flex;
	}

	#diensten-rechts {
  	width: 50%;
	display: flex;
	flex-direction: column;
  	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
	}

	#diensten h2 {
	font-weight: 900;
	font-size: 2rem;
    	align-self: center;
    	text-align: center;
	margin: 0px;
	}

	.diensten-sub {
	margin: 0px 100px 0px 100px;
	}

	#diensten p {
    	margin: 0px;
	}

	.aanbod {
	font-size: 1.2rem;
	margin: 50px 0px 25px 0px;
	}

	#diensten-links {
  	width: 50%;
	}

/*////////////////////////////////////////////////////*/

	#contact {
    	display: flex;
	}

	#contact-links {
    	width: 50%;
    	display: flex;
    	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 0px;
	}

	#contact h2 {
	font-weight: 900;
	font-size: 2rem;
    	text-align: center;
    	margin: 0px 0px 100px 0px;
	}

	.text-contact {
	margin-bottom: 100px;
	margin: 0px 100px 100px 100px;
	text-align: center;
	}

	.contact-info {
    	display: flex;
    	flex-direction: column;
    	gap: 50px;
	}

	.contact-row {
    	display: flex;
    	align-items: center;
    	gap: 50px;
	}

	.contact-row img {
    	display: block;
	}

	.contact-row .label {
    	width: 50px;
	}

	.contact-row .value {
    	font-weight: 400;
	font-size: 1rem;
    	color: black;
    	text-decoration: none;
    	font-family: 'Montserrat', sans-serif;
	padding: 15px 20px;
	}

	.contact-row .value:hover {
    	text-decoration: none;
	color: white;
  	background-color: black;
	}

	#contact-rechts {
    	width: 50%;
	}

	address.contact-info {
    	font-style: normal;
	}

/* Responsive CSS Tablet //////////////*/

	@media (max-width: 1048px) {

	#nav {
	display: none;
	}

	h1 {
	font-size: 1.5rem;
	}
	
	h2 {
	font-size: 1rem;
	}
	
	#over-mij-links p {
	margin: 50px 25px 0px 25px;
	}

	.diensten-sub {
	margin-left: 25px;
	margin-right: 25px;
	}

	.text-contact {
	margin: 0px 25px 100px 25px;
	text-align: left;
	}

	.contact-row .label {
    	width: 30px;
	}

	.contact-info, .contact-row {
    	gap: 30px;
	}

	.contact-row .value {
	padding: 5px 10px;
	}
}

/* Responsive CSS Mobile //////////////*/

	@media (max-width: 750px) {

	#home,
    	#over-mij,
    	#diensten,
    	#contact {
        flex-direction: column;
    	}

    	#home-left,
    	#home-right,
    	#over-mij-links,
    	#over-mij-rechts,
    	#diensten-links,
    	#diensten-rechts,
    	#contact-links,
    	#contact-rechts {
        width: 100%;
    	}

	#over-mij {
	border-top: 2px solid black;
	}

	#diensten {
        flex-direction: column-reverse;
    	}

	.contact-row {
	gap: 5px;
	}

	.text-contact {
	margin: 0px 25px 100px 25px;
	}
}





