/* 
  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-family: 'Open Sans', sans-serif;
}
body {
  overflow-x: hidden;
}
h1 {
  color: #D1BD88;
  font-size: 4rem;
  font-weight: bold;
}
h2 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
}
h3 {
  font-size: 1.5rem;
  font-style: italic;
}
p {
  line-height: 1.5;
}
a {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.button {
  background-color: #5B4ED3;
  border: none;
  border-radius: 500px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.button:hover {
  background-color: white;
  border: 1px solid #5B4ED3;
  color: #5B4ED3;
  cursor: pointer;
}
.nav-bar {
  background-color: #394147;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100vw;
  z-index: 1;
}
@media (max-width: 515px) {
  .nav-bar {
    align-items: center;
    border-bottom: 2px white solid;
    flex-direction: column;
  }
}
.nav-bar h1 {
  padding: 15px;
}
.nav-bar nav {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: 30%;
}
@media (max-width: 800px) {
  .nav-bar nav {
    width: 50%;
  }
}
@media (max-width: 515px) {
  .nav-bar nav {
    flex-direction: column;
  }
}
.nav-bar nav a {
  background-color: #5B4ED3;
  border: none;
  border-radius: 500px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  margin: 0 5px 0 5px;
}
.nav-bar nav a:hover {
  background-color: white;
  border: 1px solid #5B4ED3;
  color: #5B4ED3;
  cursor: pointer;
}
.nav-bar nav a:hover {
  border: white;
}
@media (max-width: 515px) {
  .nav-bar nav a {
    text-align: center;
    width: 100vw;
    border-radius: 0;
    border-top: 2px white solid;
  }
}
header {
  align-items: center;
  background-image: linear-gradient(to right, #98ACB5, #394147);
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  min-height: 365px;
  width: 100vw;
  height: 30vw;
}
@media (max-width: 515px) {
  header {
    display: block;
    height: auto;
    padding-bottom: 15px;
  }
}
header .header-left {
  height: 100%;
}
@media (max-width: 515px) {
  header .header-left {
    display: none;
  }
}
header .header-left img {
  border-radius: 25px;
  height: 100%;
  object-fit: cover;
  max-width: 307px;
  padding: 10px 0 10px 0;
}
@media (max-width: 800px) {
  header .header-left img:first-child {
    display: none;
  }
}
header .header-right {
  align-items: center;
  background-color: #D34F06;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 90%;
  justify-content: space-around;
  margin: 10px;
  width: 400px;
}
@media (max-width: 515px) {
  header .header-right {
    margin: auto;
    width: 95%;
  }
}
header .header-right h2 {
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
header .header-right p {
  color: white;
  padding: 15px;
}
header .header-right a {
  margin-bottom: 15px;
}
.home-header {
  padding-top: 95px;
}
@media (max-width: 515px) {
  .home-header {
    padding-top: 225px;
  }
}
@media (max-width: 825px) {
  .home-header .header-left {
    display: none;
  }
}
.home-header .header-right h2 {
  margin-bottom: 15px;
}
.about-header {
  padding-top: 99px;
}
@media (max-width: 515px) {
  .about-header {
    padding-top: 225px;
  }
}
.about-header .about-header-left img {
  background: white;
  border-radius: 100%;
  padding: 10px;
}
footer {
  align-items: center;
  background-color: #394147;
  color: white;
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: space-around;
  width: 100vw;
}
footer .copyright {
  font-size: 1.75rem;
  font-weight: bold;
}
.carousel {
  margin: 25px auto 0 auto;
  max-width: 80%;
}
@media (max-width: 515px) {
  .carousel {
    display: none;
  }
}
.carousel .carousel-inner > .item > a > img,
.carousel .carousel-inner > .item > img,
.carousel .img-responsive,
.carousel .thumbnail a > img,
.carousel .thumbnail > img {
  width: 100%;
  height: auto;
}
.carousel #search-for-it {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.carousel #search-for-it a {
  margin: 15px 0;
  width: 40%;
}
.carousel #search-for-it a:hover {
  text-decoration: none;
}
.bottom-banner {
  background-color: #D34F06;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin: 25px auto;
  max-height: 300px;
  width: 95%;
}
@media (max-width: 515px) {
  .bottom-banner {
    flex-direction: column;
    max-height: 100%;
    background: #D1BD88;
  }
}
.bottom-banner .bottom-banner-left {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 67%;
}
@media (max-width: 515px) {
  .bottom-banner .bottom-banner-left {
    width: 100%;
  }
}
.bottom-banner .bottom-banner-left h2 {
  margin-top: 15px;
}
@media (max-width: 800px) {
  .bottom-banner .bottom-banner-left h2 {
    display: none;
  }
}
.bottom-banner .bottom-banner-left p {
  color: white;
  font-size: 1.5rem;
  padding: 15px;
}
.bottom-banner .bottom-banner-left .button {
  background-color: #004A7F;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-family: Arial;
  font-size: 70px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% {
    background-color: #394147;
    -webkit-box-shadow: 0 0 3px #394147;
  }
  50% {
    background-color: #5B4ED3;
    -webkit-box-shadow: 0 0 40px #5B4ED3;
  }
  100% {
    background-color: #394147;
    -webkit-box-shadow: 0 0 3px #394147;
  }
}
@-moz-keyframes glowing {
  0% {
    background-color: #394147;
    -moz-box-shadow: 0 0 3px #394147;
  }
  50% {
    background-color: #5B4ED3;
    -moz-box-shadow: 0 0 40px #5B4ED3;
  }
  100% {
    background-color: #394147;
    -moz-box-shadow: 0 0 3px #394147;
  }
}
@-o-keyframes glowing {
  0% {
    background-color: #394147;
    box-shadow: 0 0 3px #394147;
  }
  50% {
    background-color: #5B4ED3;
    box-shadow: 0 0 40px #5B4ED3;
  }
  100% {
    background-color: #394147;
    box-shadow: 0 0 3px #394147;
  }
}
@keyframes glowing {
  0% {
    background-color: #394147;
    box-shadow: 0 0 3px #394147;
  }
  50% {
    background-color: #5B4ED3;
    box-shadow: 0 0 40px #5B4ED3;
  }
  100% {
    background-color: #394147;
    box-shadow: 0 0 3px #394147;
  }
}
@media (max-width: 515px) {
  .bottom-banner .button {
    margin-top: 10%;
  }
}
.bottom-banner .bottom-banner-img {
  border-radius: 0 15px 15px 0;
  object-fit: cover;
  width: 33%;
}
@media (max-width: 515px) {
  .bottom-banner .bottom-banner-img {
    border-radius: 15px 15px 0 0;
    height: auto;
    order: -1;
    width: 100%;
  }
}
/* toggle used for js on home-page header-right class */
.large {
  transform: scale(1.3);
}
.team-page {
  background: #394147;
}
@media mobile {
  .team-page {
    background: white;
  }
}
.developer-banner {
  background-color: #D1BD88;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  margin: 0 auto 25px auto;
  width: 70%;
}
@media (max-width: 515px) {
  .developer-banner {
    border-radius: 0;
    margin: 0 auto 0 auto;
    width: 100%;
  }
}
.developer-banner .banner-text {
  color: #D34F06;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
  width: auto;
}
@media (max-width: 515px) {
  .developer-banner .banner-text h2 {
    text-align: center;
  }
}
.developer-banner .banner-text .expand-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 515px) {
  .developer-banner .banner-text .expand-content .developer-description h3 {
    text-align: center;
  }
}
.developer-banner .banner-text .expand-content ul {
  display: flex;
  justify-content: space-around;
  width: 15%;
}
@media (max-width: 800px) {
  .developer-banner .banner-text .expand-content ul {
    width: 100%;
  }
}
.developer-banner .banner-text .expand-content ul a i {
  color: #D34F06;
  height: auto;
  width: 100%;
}
.developer-banner .banner-text .expand-content ul a i:hover {
  color: #5B4ED3;
}
.developer-banner img {
  border-radius: 0 15px 15px 0;
  height: auto;
  max-height: 300px;
  width: auto;
}
@media (max-width: 515px) {
  .developer-banner img {
    display: none;
  }
}
.reverse img {
  border-radius: 15px 0 0 15px;
  order: -1;
}
.joe-pic {
  margin-top: 20%;
}
.joe-content {
  display: flex;
  flex-direction: column;
}
.meet-us {
  display: flex;
  margin-top: 1.5%;
  margin-left: 15%;
}
@media (max-width: 800px) {
  .meet-us {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    margin-left: 10%;
  }
}
@media (max-width: 800px) and (max-width: 515px) {
  .meet-us {
    margin-left: 50%;
    padding-bottom: 2%;
  }
}
@media (max-width: 515px) {
  .mover {
    margin-top: 20%;
  }
}
@media (max-width: 515px) {
  .git {
    margin-left: 46%;
  }
}
@media (max-width: 515px) {
  .shelia-mov {
    margin-top: 10%;
  }
}
