


body{
  font: 15px/1.5 Arial, Helvetica,sans-serif;
  padding:0;
  margin:0;
  background-color:#f4f4f4;
}

/* Global */
.container1  {
  width:80%;
  margin: auto;
  overflow:hidden;
}
h6 {
	font-family: Ariel, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
}

mark {
	background-color: green;
	color: #fff;
}

header{
  background-color: white;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color:#ffffff;
  padding-top:5px;
  padding-bottom: 5px;
  min-height:45px;  border-bottom:#4CAF50 3px solid;

}

header #branding h1{
  margin:0;
  color: green;
  text-align: center;
  text-transform: uppercase; 
  }

.container2{
  width:80%;
  overflow:hidden;
}

 #navigation {
 	width: 80%;
  margin-left:auto;
  margin-right:auto;
 	display: block;
   position: -webkit-sticky;
	position: sticky;
	top: 0;
 }

.topnav {
  overflow: hidden;
  background-color: #fff;
  border-bottom:#4CAF50 3px solid;
  text-align: center;
}  
 
  
.topnav-link{
  display: inline-block;
  color: #1DE9B6;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav-link: hover {
  background-color: #ddd;
  color: black;
}

#icon {
  display: none;
}
 
/* Showcase */
#showcase{
  width: 80%;
  margin: auto;
  overflow: hidden;
  text-align:center;
  color:blue;
  border-bottom:#4CAF50 3px solid;

}

#showcase img {
	width: 100%;
	height: auto;
}

#marquee{
  width: 80%;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  text-align:center;
  background-color: green;
  color:#f4f4f4;
  border-bottom:#4CAF50 3px solid;
}


#marquee .marquees {
	display: block;
	width: 80%;
  margin-left: auto;
  margin-right: auto;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
}



.marquees span {
	display: inline-block;
	padding-left: 100%;
	font-size: 20px;
	font-weight: bold;
		-webkit-animation: scroll 10s infinite linear;
}
.marquees mark {
	background-color: green ;
	font-weight: bold;
	color: #FFF;
}

/* Boxes */
#boxes{
  margin-top:5px;
  height: 210px;
  border-top: :#e8491d 3px solid;
}

#boxes .box{
  float:left;
  text-align: left;
  width:30%;
  height: 175px;
  padding-top: 10px;
  padding: 0 30px;
  margin: 10px;
  border-style: solid;
  border-width: 3px;
  border-color: red;
  border-radius: 5px;
  line-height: 100%;

}

#boxes .box p {
  font: 12px, Arial, sans-serif;
  color: black;

}
#boxes .box a{
  font: 12px, Arial, sans-serif;
  color: black;

}

.box mark {
	background-color: #69F0AE ;
	font-weight: bold;
	color: #FFF;
}

/* Sidebar */
aside#sidebar{
  float:right;
  width:30%;
  margin-top:10px;
}

aside#sidebar .quote input, aside#sidebar .quote textarea{
  width:90%;
  padding:5px;
}

/* Main-col */
article#main-col{
  float:left;
  width:65%;
}

/* Services */
ul#services li{
  list-style: none;
  padding:20px;
  border: #cccccc solid 1px;
  margin-bottom:5px;
  background:#e6e6e6;
}

footer {
  padding:10px;
  width: 80%;
  margin-left: 10%;
  margin-top:10px;
  color:#ffffff;
  background-color:#4CAF50;
  text-align: center;
}

#main {
  width:80%;
  margin: auto;
  overflow:hidden;
  height: auto;
  border-top: :#e8491d 3px solid;
}

#main img {
	width: 40%;
	float: left;
	padding-right: 20px;
}

#main .welcome {
	width:40%;
	padding: 20px;
	float: right;
	}
	
#main p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: justify;
	color: #000;
}	
/* Media Queries */
@media screen and (max-width: 600px){
  	.topnav-link{
	  display: none;
  	  float: none;
	}
   #icon{
    display: block;
  }
  .responsive{
  	display: block;
  }
  header #branding,
  #marquee
  #boxes
  #boxes .box
  #main
  #links
  footer
  article#main-col,
  aside#sidebar{
    float:none;
    text-align:center;
    width:100%;
  }
}



@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);	
	}
	100% {
		-webkit-transform: translate(-100%, 0);	
	}
}

