/* Stylesheet */

* {
  box-sizing: border-box;
}
body	{
	background-color:#b7d9b7;
	font-size: large;
}

ul 	{
	list-style-position: inside;
	text-align:left;
}

.wrapper {
	border-radius: 25px 25px 0px 0px;
	margin:auto;
	background-color:white;
	width:80%;
	height: auto;
	text-align:center;
}
@media only screen and (max-width: 800px) {
	.wrapper {width: 100%;}
}
.main {
  background-color:white;
  float:left;
  width:100%;
  padding:15px;
  
}

@media only screen and (max-width:800px) {
  /* For mobile phones: */
  .menu, .main, .right, {
    width:100%;
  }
}


.header {
	border-radius: 25px 25px 0px 0px;
	background-color:#0156A6;
	text-align:center;
	height: 195px;
}

.header img {
	width: 40%;
}

@media only screen and (max-width:900px) {
  /* For mobile phones: */
  .header img {
	width:70%;
  }
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .header img {
	width:100%;
  }
}

.slogan {
	margin: auto;  
	width:100%;
	padding:5px;
	
}

h1	{
	text-align:center;
}

h2	{
	text-align:center;
}

h3	{
	text-align:center;
}

.pointers {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.requirements {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:30%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:centre;
}

.removal {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.hire {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.hire img {
	width:60%;
	border-radius: 10%;
}

.metal {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:30%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.metal img {
	width:60%;
	border-radius: 10%;
}

.rubbish {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.rubbish img {
	width:60%;
	border-radius: 10%;
}



.clearfix::after {
  content: "";
  clear: both;
  display: table;

}

.trade {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.trade img {
	width:60%;
	border-radius: 10%;
}

.holiday {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:30%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.holiday img {
	width:60%;
	border-radius: 10%;
}

.bags {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#7AA12D;
	width:32%;
	padding:15px;
	margin:1%;
	color: white;
	text-align:center;
}

.bags img {
	width:60%;
	border-radius: 10%;
}


.lorry {
	width:30%;
	border-radius: 50%;
}

.EA {
	width:20%;
}

@media only screen and (max-width:800px) {
  /* For mobile phones: */
  .pointers, .requirements, .removal, .hire, .metal, .rubbish, .trade, .holiday, .bags {
	width:100%;
  }
  .hire img, .metal img, .rubbish img, .trade img, .holiday.img, bags.img, .lorry img, {
	width: 50%;
}

}

.welcome {
	border-radius: 15px 15px 15px 15px;	
	float: left;  
	background-color:#e5e5e5;
	width:100%;
	padding:15px;
}

.links {
	border-radius: 15px 15px 15px 15px;	
	float:left;  
	background-color:#ca3535;
	width:30%;
	padding:10px;
	margin:1%;
}

.links img {
	width:60%;
}

@media only screen and (max-width:800px) {
  /* For mobile phones: */
  .links img {
	width:30%;
  }
}

@media only screen and (max-width: 800px) {
	.latest , .message , .links , .welcome {width: 100%; Margin: 1%;}
}




.links a:link {
  color: white;
}

/* visited link */
.links a:visited {
  color: white;
}

/* mouse over link */
.links a:hover {
  color: white;
}

/* selected link */
.links a:active {
  color: white;
}


.footer {
	border-radius: 0px 0px 25px 25px;
	background-color:#0156A6;
	float: left;
	text-align:center;
	padding:15px;
	width: 100%;
}

.footer img {
	border:15px solid transparent;
}

.about , {
	text-align: justify;
}


/* The dots/bullets/indicators */
.dot {
  height: 0px;
  width: 0px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Nav Bar */

.navigation {
	background-color:#b7d9b7;
}
.topnav {
  overflow: hidden;
  background-color: #7AA12D;
}

.topnav a {
	border-radius: 25px 25px 25px 25px;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
border-radius: 25px 25px 25px 25px;
  background-color: #ca3535;
  color: black;
}

.topnav a.active {
border-radius: 25px 25px 25px 25px;
  background-color: #ffa200;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Policies Page Format */


.accordion > input[name="collapse"] {
  display: none;
  
  position: absolute;
  left: -100vw;
}

.accordion label,
.accordion .content{
  margin: 0 auto;
 }


.accordion .content {
  background: #fff;
  overflow: hidden;
  height: 0;
  transition: 0.5s;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 25px 25px 25px 25px;
  padding: 0px 5px 0px 5px;
  text-align: justify;
}

.accordion > input[name="collapse"]:checked ~ .content {
  height: auto;
  transition: height 0.5s;
}

.accordion label {
  display: block;
 
}


/* For Desktop */
@media only screen and (min-width: 800px){


.accordion > input[name="collapse"]:checked ~ .content {
  height: auto;
}

}

.accordion {
  margin-bottom: 1em;
}

.accordion > input[name="collapse"]:checked ~ .content {
  border-top: 0;
  transition: 0.3s;
}

.accordion .handle {
  margin: 0;
  font-size: 16px;
  
}

.accordion label {
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  padding: 10px;
  background: #7AA12D;
  user-select: none;
  
}

.accordion label:hover,
.accordion label:focus {
  background: #ca3535;
}

.accordion .handle label:before {
  font-family: FontAwesome;
  content: "\f107";
  display: inline-block;
  margin-right: 10px;
  font-size: 1em;
  line-height: 1.556em;
  vertical-align: middle;
  transition: 0.4s;
  
}

.accordion > input[name="collapse"]:checked ~ .handle label:before {
    transform: rotate(180deg);
    transform-origin: center;
    transition: 0.4s;
}

.contactform {
	border-radius: 15px 15px 15px 15px;	
	float:left;
	background-color:#e5e5e5;
	width:98%;
	padding:15px;
	margin:1%;
	color: black;
}

@media only screen and (max-width:800px) {
  /* For mobile phones: */
  .contact , .contactform {
    width:100%;
  }
}
form .label{
    margin: 15px 0 10px;
}
form input, form textarea {
    padding: 10px 15px;
    border: solid 1px #e5e6e8;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #404040;
    width: 100%;
    box-sizing: border-box;
}
#alert{
    display: none;
    margin: 15px 0 0;
    color: #808080;
}
button{
    margin: 20px 0 0;
    padding: 10px 15px;
    background-color: #d54b4b;
    color: #ffffff;
    font-size: 0.8em;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
button:hover{
    cursor: pointer;
}
.google-message{
    margin: 15px 0 0;
    color: #808080;
    font-size: 0.8em;
}
.google-message a{
    color: #808080;
}
.grecaptcha-badge {
    visibility: hidden;
}
  
.marquee {
    width: auto;
line-height: 25px;
	background-color: #0156A6;
	color: White;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
    display: inline-block;
    font-size: 25px;
    padding-left: 10%;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
