body {
  font: 15px/1 times, arial, helvetica, comic, sans-serif;
  padding: 0;
  margin: 0;
  background-color: #a8c6fe;
}

/* Global */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  text-align: justify;
  overflow: hidden;
}

.container-1 {
  display: flex;
  /*
     align-items:flex-start;
     align-items:flex-end;
     align-items:center;
     flex-direction:column;
     */
}

.container-2 {
  display: flex;
  /*
     justify-content:flex-start;
     justify-content:flex-end;
     justify-content:center;
     justify-content:space-around;
     */
  justify-content: space-between;
}
}

.container-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container-4 {
  margin-left: 20%;
  margin-top: 0%;
  content: center;
  width: 70%;
  text-align: justify;
  margin-bottom: 0%;
  justify-content: space-between;
}

.container-1 div, .container-2 div, .container-3 div {
  border: 1px #ccc solid;
  padding: 10px;
}

.box {}

.box-1 {
  flex: 2;
  order: 2;
}

.box-2 {
  flex: 1;
  order: 1;
}

.box-3 {
  flex: 1;
  order: 3;
}

.box-4 {
  flex: 1;
  order: 0;
}

.container-2-box {
  flex-basis: 27%;
}

.container-3-box {
  flex-basis: 12%;
}

img, object {
  max-height: 90%;
  max-width: 90%;
}

img {
  border: 0px solid #00ff4a;
}

header ul {
  margin: 0;
  padding: 0;
}

/* header **/
header {
  background: #00364a;
  color: #00814a;
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 70px;
  float: none;
  border-bottom: #00ff4a 5px solid;
  border-top: #00ff4a 5px solid;
}

header a {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-family: arial;
  font-size: 20px;
}

header li {
  float: none;
  display: inline;
  padding: 0 40px 0 40px;
}

header #branding h1 {
  margin: auto;
}

header nav {
  float: none;
  margin-top: 10px;
}

header .highlight, header, .current a {
  color: #00ff4a;
  font-weight: bold;
  font-style: italic;
}

header a:hover {
  color: #cccccc;
}

/* Showcase */
#showcase {
  min-height: 223px;
  background: url('../images/New Bumper.png') no-repeat center;
  text-align: center;
  color: #ffffff;
  border-bottom: #00ff4a 3px solid;
  background-color: #a781fb;
  max-width: 100%;
}

#showcase h1 {
  margin-top: 100px;
  font-size: 55px;
  margin-bottom: 10px;
}

#showcase p {
  font-size: 36px;
}

/* main */
#main {
  padding: 50px;
  justify-content: center;
  max-width: 100%;
  border-bottom: #00ff4a 5px solid;
}

/* Boxes */
#boxes {
  margin-top: 0px;
}

#boxes p {
  float: left;
  font-size: 24px;
  font-weight: bold;
}

#boxes .box {
  justify-content: center;
  max-width: 70%;
  border-bottom: #00ff4a 3px solid;
}

footer {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #FFFFFF;
  background-color: #002c3b;
  text-align: center;
  border-top: #00ff4a 3px solid;
  border-bottom: #00ff4a 10px solid;
}

/* Media Queries */
@media(max-width: 768px) {

  header #branding,
  header nav,
  header nav li,
  #newsletter h1,
  #newsletter form,
  #boxes .box,
  article#main-col,
  aside#sidebar {
    float: none;
    text-align: center;
    width: 100%;
  }

  header {
    padding-bottom: 20px;
  }

  #showcase h1 {
    margin-top: 40px;
  }

  #newsletter button, .quote button {
    display: block;
    width: 100%;
  }

  #newsletter form input[type="email"], .quote input, .quote textarea {
    width: 100%;
    margin-bottom: 5px;
  }
}
