/*BODY*/

body {
	background-color: lightgrey;
	margin: 0px;
	padding: 0;
	font-family: arial;
}


/*HEADER*/

nav {
	width: 100%;
	background-color: #661f1e;
	margin-top: -55px;
}

ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
	display: inline-block;
	padding: 20px;
	background-color: #661f1e;
}

ul li:hover {
	background: grey;
}

ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
}

.toggle {
	width: 100%;
	padding: 10px 20px;
	background: white;
	text-align: left;
	box-sizing: border-box;
	color: black;
	font-size: 10px;
	display: none;
}

@media(max-width:768px) {
	.toggle {
		display: block;
	}
	ul {
		width: 100%;
		display: none;
	}
	ul li {
		display: block;
		text-align: center;
	}
	.active {
		display: block;
	}
}


/*LOGO*/

.logoTop {
	margin-top: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}


/*.About {
	margin-top: 150px;
}*/

.paulImg {
	padding-top: 35px;
	;
}

.truck {
	padding-bottom: 45px;
	;
}

/*STAR RATING8*/
.checked {
  color: orange;
}



/*INTERIOR PAGE*/

inText {
	font-size: 30px;
}


/*ABOUT ME PAGE*/

.About {
	margin-top: -15px;
}


/*SERVICES PAGE*/

.services {
	font-size: 20px;
	color: black;
}


/* INTERIOR PAGE SLIDESHOW*/

body {
  font-family: Arial;
  margin: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
position: relative;
top: 20px;

}


/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: maroon;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 20px;
  border-radius: 3px 0 0 3px;
 
}

.prev {
  left: 20px;
  border-radius: 3px 0 0 3px;
 
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
 background-color: none;

	
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: -29px;
}

/* Container for image text */
/*.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
 
}*/

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


