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;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  color: #696969;
}
html,
body {
  font-family: 'Open Sans', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Source Sans Pro', Arial;
  color: #444;
  font-weight: 800;
}
h1 {
  font-size: 5rem;
}
h2 {
  font-size: 3.2rem;
  padding-bottom: 10px;
}
h4 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
p {
  line-height: 2.25;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
img {
  max-width: 100%;
  height: auto;
}
br {
  line-height: 2.25;
}
.nav-bar {
  background: #e9e9e9;
  height: 15em;
  border-bottom: 0.3em solid #e0dbdb;
  display: flex;
}
@media (max-width: 500px) {
  .nav-bar {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .nav-bar {
    width: 100%;
  }
}
.nav-bar .nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 0 50px;
}
@media (max-width: 500px) {
  .nav-bar .nav-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .nav-bar .nav-container {
    width: 100%;
  }
}
.nav-bar .nav-container .logo {
  color: white;
  background-color: #ff4486;
  border-radius: 6px;
  font-weight: 400;
  font-family: 'Oleo Script', serif;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0.25em 0.2em 0.25em 0.2em;
}
@media (max-width: 500px) {
  .nav-bar .nav-container .logo {
    align-items: center;
    display: flex;
    cursor: pointer;
  }
}
.nav-bar nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  transition: 0.25s;
  font-weight: 800;
  letter-spacing: 0.025em;
  color: #696969;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.5em 1em 0.5em 1em;
}
@media (max-width: 500px) {
  .nav-bar nav {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.nav-bar a:hover {
  background-color: white;
}
.nav-bar a {
  text-decoration: none;
  color: #b7c3c7;
  font-size: 2.5rem;
  width: 200px;
  text-align: center;
}
@media (max-width: 500px) {
  .nav-bar a {
    font-size: 2rem;
    width: 100%;
  }
}
footer {
  background: #e9e9e9;
  padding: 50px 0 0 50px;
  width: 100%;
  flex-flow: wrap;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.3em solid #e0dbdb;
}
@media (max-width: 500px) {
  footer {
    width: 100%;
    font-size: 12px;
  }
}
.footer-content {
  padding: 0 0 50px 0;
  width: 100%;
  height: 15em;
  display: flex;
  justify-content: space-evenly;
}
.foot {
  width: 25%;
}
@media (max-width: 500px) {
  .foot {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 800px) {
  .foot {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .hide {
    display: none;
  }
}
@media (max-width: 800px) {
  .hide {
    font-size: 1em;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .hides {
    display: none;
  }
}
.icons {
  display: flex;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  line-height: 2.5em;
  border-radius: 0.35em;
  outline: 0;
  opacity: 0.9;
  text-decoration: none;
  background: #222222;
}
.contact-icons {
  display: flex;
  width: 11em;
  justify-content: flex-start;
  justify-content: space-between;
}
.container {
  width: 100%;
  display: flex;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  justify-content: space-around;
}
@media (max-width: 500px) {
  .container {
    display: flex;
    flex-flow: column;
    align-content: center;
    align-items: center;
  }
}
@media (max-width: 800px) {
  .container {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
  }
}
.left {
  padding: 50px 0 0 50px;
  width: 65%;
}
@media (max-width: 500px) {
  .left {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .left {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .more {
    padding: 0 0 50px 0;
  }
}
.right {
  padding: 50px 50px 0 50px;
  width: 35%;
}
@media (max-width: 500px) {
  .right {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .right {
    width: 100%;
    text-align: center;
  }
}
.m-team {
  text-align: center;
}
.team-head {
  display: flex;
  justify-content: center;
  align-items: center;
}
.subhead-img {
  width: 20%;
}
.sub-headers {
  width: 100%;
}
.team {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: 80px 0 90px 0;
}
@media (max-width: 800px) {
  .team {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
}
.one {
  width: 40em;
  height: 40em;
  position: relative;
  float: left;
  margin-right: 10px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  margin: 0px 0 50px 0;
}
.picFace {
  position: absolute;
  width: 40em;
  height: 40em;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .picFace {
    display: flex;
    align-items: center;
    width: 35em;
    height: 35em;
  }
}
@media (max-width: 800px) {
  .picFace {
    width: 40em;
    height: 40em;
    text-align: center;
  }
}
.front {
  background-color: #333;
}
.back {
  background-color: #333;
}
.picFace .name-title {
  margin: 0px;
  font-size: 1.5rem;
  padding: 10px 0px 10px 10px;
  border: 0.4rem solid #e0dbdb;
  background-color: #0090c5;
  color: white;
  text-align: center;
  width: 40em;
}
.h2-team {
  padding: 10px;
  color: white;
  line-height: 24px;
}
button {
  -moz-transition: background-color 0.25s ease-in-out;
  -webkit-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  background: #0090c5;
  transition: 0.05s;
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 800;
  outline: 0;
  border: 0;
  cursor: pointer;
  font-size: 1.35em;
  padding: 0.6em 1.5em;
  width: 18em;
  height: 5em;
}
button:hover {
  opacity: 1;
}
a {
  color: #0090c5;
  text-decoration: underline;
}
li {
  height: 2.25em;
  width: 100%;
}
.list {
  font-size: 2.25em;
}
