/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 2.6rem;
  max-width: 90%;
  margin: 10px auto;
  background-color: #fafafa;
  color: #0a0a0a;
  min-height: 100vh;
  position: relative;
}

a {
  color: #2E6299;
}
a:hover {
  color: #AF4915;
}

h1, h2 {
  font-size: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

h3 {
  font-size: 2.8rem;
  color: #0a0a0a;
  padding: 0.3% 0.5%;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 10px;
  font-weight: bold;
}

h4 {
  font-size: 2.7rem;
  padding: 0.3% 0.5%;
}

.nav {
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 540px) {
  .nav {
    padding: 0;
  }
}

p {
  margin-bottom: 10px;
  padding: 2%;
}

#legal {
  width: 95%;
  margin: 2.5%;
}
#legal h1 {
  font-weight: bold;
}
#legal p {
  margin-bottom: 0;
}

#header {
  position: relative;
}
#header .headerimage {
  width: 100%;
  height: auto;
}
#header .pride {
  position: absolute;
  height: 20%;
}
#header .inclusive {
  position: absolute;
  height: 20%;
  top: 0;
  right: 0;
}

#nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#nav ul li {
  display: inline-block;
  border: 5px;
  padding: 5px;
  position: relative;
}
@media screen and (max-width: 540px) {
  #nav ul li {
    font-size: large;
  }
}
#nav ul li a {
  display: block;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  background-color: #FF9090;
  color: #0a0a0a;
}
#nav ul li .dropdown {
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#nav ul li.contact a {
  background-color: #6DC1C1;
}
#nav li ul li {
  display: none;
  position: relative;
  left: 24px;
  width: 100%;
  background-color: #6DC1C1;
  z-index: 1;
}
#nav li:hover ul li {
  display: block;
}

#intro {
  border: 5px black solid;
}
#intro h3 {
  background-color: #FF9090;
}
#intro .checkmarks::before {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 17px;
  width: 8px;
  margin-right: 9px;
  border-bottom: 3px solid black;
  border-right: 3px solid black;
  margin-left: 5px;
}

#quotes ul {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#quotes ul li {
  width: 20%;
}
@media screen and (max-width: 540px) {
  #quotes ul li {
    font-size: small;
  }
}
#quotes ul li:nth-child(odd) {
  background-color: #6DC1C1;
}
#quotes ul li:nth-child(even) {
  background-color: #FF9090;
}

#programs {
  border: 5px black solid;
}
#programs h3 {
  background-color: #6DC1C1;
}
#programs h4 {
  -webkit-text-decoration: underline #6DC1C1;
          text-decoration: underline #6DC1C1;
  padding-left: 2%;
}
#programs .programs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 540px) {
  #programs .programs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#programs .programs .small, #programs .programs .medium, #programs .programs .large {
  width: 100%;
}
#programs .programs .programimage {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: block;
}

#about {
  border: 5px black solid;
}
#about h3 {
  background-color: #FF9090;
}

#contact {
  border: 5px black solid;
}
#contact h3 {
  background-color: #6DC1C1;
}
#contact .name, #contact .email {
  margin-left: 2rem;
}
#contact .textarea {
  width: 50%;
  height: 12rem;
  margin-left: 2rem;
}

#articleintro {
  border: 5px black solid;
}
#articleintro h1 {
  background-color: #FF9090;
}
#articleintro .checkmarks::before {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 17px;
  width: 8px;
  margin-right: 9px;
  border-bottom: 3px solid black;
  border-right: 3px solid black;
  margin-left: 5px;
}
#articleintro ul {
  margin-bottom: 12px;
}
#articleintro .list {
  margin-left: 5px;
}

#article {
  border: 5px black solid;
}
#article h2, #article h3 {
  background-color: #6DC1C1;
}
#article ol, #article ul {
  margin-bottom: 12px;
}
#article .list {
  margin-left: 5px;
  margin-bottom: 5px;
}
#article ol .list {
  list-style: decimal inside;
}

#video {
  border: 5px black solid;
}
#video video {
  width: 80%;
  margin: 0 10%;
}