/* 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;
}
* {
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', sans-serif;
  font-size: 62.5%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
body {
  background-color: #f5f5f5;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
}
p,
a {
  font-size: 1.5rem;
}
.container {
  margin: 0 auto;
  max-width: 100vw;
  margin-top: 80px;
  height: 100vh;
}
@media (max-width: 800px) {
  .container {
    margin-top: 110px;
  }
}
@media (max-width: 640px) {
  .container {
    margin-top: 155px;
  }
}
@media (max-width: 500px) {
  .container {
    margin-top: 40px;
  }
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(95deg, #32006e, #32006e 45%, #76236c);
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0px 1px 5px grey;
}
@media (max-width: 800px) {
  header {
    flex-direction: column;
  }
}
header .header-left {
  display: flex;
}
header .header-left .button-mobile {
  color: white;
  padding: 5px 0;
  display: none;
}
@media (max-width: 500px) {
  header .header-left .button-mobile {
    display: flex;
    cursor: pointer;
    width: 100%;
  }
}
header .header-left .logo {
  margin: 15px 0 15px 25px;
  height: 50px;
  max-width: 100px;
}
@media (max-width: 800px) {
  header .header-left .logo {
    width: 100%;
    margin: 15px 0 0;
  }
}
@media (max-width: 500px) {
  header .header-left .logo {
    display: none;
  }
}
header .header-right {
  display: flex;
  align-items: center;
  min-height: 80px;
}
@media (max-width: 800px) {
  header .header-right {
    min-height: 40px;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  header .header-right {
    min-height: 0;
    width: 100%;
  }
}
header .header-right nav {
  width: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 800px) {
  header .header-right nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  header .header-right nav {
    flex-direction: column;
    align-items: center;
  }
}
header .header-right a {
  justify-content: space-between;
  padding: 15px;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
header .header-right a:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 500px) {
  header .header-right .page-links {
    text-align: center;
    border-bottom: solid black 2px;
    width: 100%;
    display: none;
  }
  header .header-right .page-links:first-child {
    border-top: solid black 2px;
  }
}
header .header-right .reveal-page-links {
  display: block;
}
header .header-right .inav {
  transform: skew(-15deg);
  width: 1px;
  height: 14px;
  background: white;
  margin: 4px 2px 0 2px;
  box-shadow: 0 3px 0 #dcdcdc;
  z-index: 500;
}
@media (max-width: 500px) {
  header .header-right .inav {
    display: none;
  }
}
@media (max-width: 635px) {
  header .header-right .last-inav {
    display: none;
  }
}
header .header-right .dropdown {
  display: flex;
  position: relative;
  flex-direction: row;
  width: 100;
  align-self: stretch;
}
@media (max-width: 500px) {
  header .header-right .dropdown {
    justify-content: space-around;
  }
}
header .header-right .dropdown .dropdown-button {
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  header .header-right .dropdown .dropdown-button {
    display: none;
  }
}
header .header-right .dropdown .dropdown-button a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
header .header-right .dropdown .dropdown-button a:hover {
  color: white;
  text-decoration: underline;
}
header .header-right .dropdown .dropdown-links {
  position: absolute;
  top: 100%;
  min-width: 150px;
  overflow: auto;
  border-radius: 5px;
  background: linear-gradient(0deg, #32006e, #32006e 45%, #76236c);
}
@media (max-width: 800px) {
  header .header-right .dropdown .dropdown-links {
    position: static;
    background: none;
  }
}
header .header-right .dropdown .dropdown-links a {
  text-align: center;
  text-decoration: none;
  display: block;
  color: white;
  border-bottom: solid black 2px;
  cursor: pointer;
}
header .header-right .dropdown .dropdown-links a:hover {
  text-decoration: underline;
  color: white;
}
@media (max-width: 800px) {
  header .header-right .dropdown .dropdown-links a {
    border-bottom: none;
  }
  header .header-right .dropdown .dropdown-links a:after {
    content: " LOGIN";
  }
}
@media (max-width: 500px) {
  header .header-right .dropdown .dropdown-links a {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 500px) {
  header .header-right .dropdown .dropdown-links .login-links {
    display: none;
  }
}
header .header-right .dropdown .dropdown-links .inav {
  align-self: center;
  display: none;
}
@media (max-width: 800px) {
  header .header-right .dropdown .dropdown-links .inav {
    display: block;
  }
}
@media (max-width: 500px) {
  header .header-right .dropdown .dropdown-links .inav {
    display: none;
  }
}
header .header-right .dropdown .dropdown-links .reveal-login-links {
  display: block;
}
header .header-right .dropdown .dropdown-hidden {
  display: none;
}
@media (max-width: 800px) {
  header .header-right .dropdown .dropdown-hidden {
    display: flex;
  }
}
header #google_translate_element {
  margin-right: 25px;
}
@media (max-width: 800px) {
  header #google_translate_element {
    display: none;
  }
}
header #google_translate_element .goog-te-gadget-simple {
  width: 175px;
}
header #google_translate_element .goog-te-gadget-icon {
  display: none;
}
.cta {
  display: flex;
  flex-direction: column;
}
.cta .cta-img {
  border: 1px solid #32006e;
  margin: 15px auto;
  width: 60%;
  opacity: 0.9;
  z-index: -1;
  display: none;
}
@media (max-width: 500px) {
  .cta .cta-img {
    width: 80%;
  }
}
.cta h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 400;
  color: #32006e;
  -webkit-text-stroke-color: white;
  -webkit-text-stroke-width: 1px;
  align-self: center;
  background: rgba(118, 54, 148, 0.2);
  border-top: solid black 1px;
  border-bottom: solid black 1px;
  z-index: 2;
}
@media (max-width: 800px) {
  .cta h2 {
    font-size: 3.5rem;
    -webkit-text-stroke-width: 1px;
  }
}
@media (max-width: 500px) {
  .cta h2 {
    font-size: 2.6rem;
    text-align: center;
    -webkit-text-stroke-width: 0.5px;
  }
}
.cta .cta-break {
  display: none;
}
@media (max-width: 475px) {
  .cta .cta-break {
    display: block;
  }
}
@media (max-width: 475px) {
  .cta .cta-space {
    display: none;
  }
}
.carousel .img-reveal {
  display: block;
  animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.9;
  }
}
.main-content {
  display: flex;
  flex-direction: column;
}
.main-content .main-intro {
  margin-top: 50px;
}
.main-content .main-intro p {
  text-align: center;
  font-size: 2rem;
  color: #333d47;
}
.main-content .main-intro h2 {
  text-align: center;
  font-size: 3rem;
  color: gray;
  margin: -20px 0 5px 0;
}
.main-content .section {
  display: flex;
  flex-direction: column;
}
footer {
  color: gray;
  padding: 20px 0 20px 0;
  text-align: center;
  margin-top: -10px;
}
footer p {
  font-size: 1rem;
}
.section .tabs {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section .tabs .tabs-links {
  display: flex;
  margin-top: 15px;
}
.section .tabs .tabs-links .tabs-link {
  text-decoration: none;
  font-size: 1.75rem;
  color: darkgray;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.section .tabs .tabs-links .tabs-link:hover {
  color: gray;
}
.section .tabs .tabs-links .tabs-link-selected {
  z-index: 2;
  color: #32006e;
  border-bottom: 1px solid #32006e;
}
.section .tabs .tabs-links .tabs-link-selected:hover {
  background-color: #32006e;
  color: white;
}
.section .tabs-items {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 15px;
}
@media (max-width: 500px), (max-width: 800px) {
  .section .tabs-items {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
  }
}
.section .tabs-items .tabs-item {
  display: none;
  height: auto;
  width: 25%;
  margin: 25px 15px 25px 30%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 500px), (max-width: 800px) {
  .section .tabs-items .tabs-item {
    width: 80%;
    margin: 25px auto;
  }
}
.section .tabs-items .tabs-item .tabs-text .tabs-item-title {
  color: gray;
  font-size: 2rem;
  margin: -5px 2px 20px 0;
  text-align: center;
}
.section .tabs-items .tabs-item .tabs-text .tabs-item-description {
  width: 98%;
  color: gray;
  font-size: 1.7rem;
  line-height: 2rem;
  margin-bottom: 5px;
}
@media (max-width: 500px), (max-width: 800px) {
  .section .tabs-items .tabs-item .tabs-text .tabs-item-description {
    margin: 0 auto;
    width: 90%;
    text-align: center;
  }
}
.section .tabs-items .tabs-item .btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}
.section .tabs-items .tabs-item .btn-wrap .regBtn {
  width: auto;
  font-size: 1.6rem;
  border-style: none;
  border-radius: 10px;
  color: white;
  background-color: #32006e;
  margin-top: 25px;
  padding: 15px;
}
@media (max-width: 500px), (max-width: 800px) {
  .section .tabs-items .tabs-item .btn-wrap .regBtn {
    width: 80%;
  }
}
.section .tabs-items .tabs-item-selected {
  display: block;
}
.section .selection-img {
  border: 1px solid #32006e;
  opacity: 0.9;
  max-height: 235px;
  max-width: 280px;
  height: auto;
  width: auto;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 500px), (max-width: 800px) {
  .section .selection-img {
    margin: 0 auto;
  }
}
.title-team {
  margin-top: 20px;
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 800px) {
  .title-team {
    margin-top: 130px;
  }
}
@media (max-width: 500px) {
  .title-team {
    margin-top: 100px;
  }
}
.team-members {
  margin-top: 20px;
  background: white;
  display: flex;
  flex-wrap: wrap;
}
.pictures {
  width: 30%;
  margin: 0 auto;
  justify-content: space-around;
  flex-wrap: wrap;
}
.pictures .person {
  display: flex;
}
.pictures .person img {
  margin: 0 auto;
  width: 60%;
  box-shadow: 3px 0 5px grey;
  max-height: 250px;
}
.person-selected img {
  z-index: 2;
  border: 2px solid darkblue;
}
.person-selected img:hover {
  background-color: white;
}
.info {
  display: flex;
}
.team-design {
  display: none;
  width: 60%;
  border: 2px solid darkblue;
  margin: 0 auto;
  box-shadow: 3px 0 5px grey;
  border-radius: 5px;
}
@media (max-width: 800px) {
  .team-design {
    display: block;
    background: white;
    border: none;
  }
}
.team-design h4 {
  font-size: 2rem;
  padding-bottom: 5px;
}
@media (max-width: 800px) {
  .team-design h4 {
    text-align: center;
    font-size: 1.6rem;
  }
}
.team-design h3 {
  font-size: 1.6rem;
}
@media (max-width: 800px) {
  .team-design h3 {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .team-design hr {
    display: none;
  }
}
@media (max-width: 800px) {
  .team-design ul {
    display: none;
  }
}
.text-selected {
  display: block;
}
.help-container {
  display: flex;
  flex-direction: column;
}
.help-container h1 {
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 800px) {
  .help-container h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 500px) {
  .help-container h1 {
    font-size: 3rem;
    margin-top: 2rem;
  }
}
.help-container h2 {
  font-size: 3rem;
  text-align: center;
}
@media (max-width: 800px) {
  .help-container h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 500px) {
  .help-container h2 {
    font-size: 2.4rem;
  }
}
.help-container .search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 3rem;
}
@media (max-width: 800px) {
  .help-container .search-bar {
    margin: 1rem 10% 3rem;
  }
}
@media (max-width: 500px) {
  .help-container .search-bar {
    margin: 1rem 5% 3rem;
  }
}
.help-container .search-bar .search-icon {
  padding-right: 10px;
  cursor: pointer;
}
.help-container .search-bar .search-box {
  width: 500px;
  padding: 12px 20px;
  border-radius: 10px;
  border: solid black 1px;
}
@media (max-width: 800px) {
  .help-container .search-bar .search-box {
    width: 450px;
  }
}
@media (max-width: 500px) {
  .help-container .search-bar .search-box {
    width: 400px;
  }
}
.help-container .search-bar .search-box:focus {
  border-color: #32006e;
  outline: none;
}
.help-container .carousel {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 500px) {
  .help-container .carousel {
    display: none;
  }
}
.help-container .help-img {
  border: 2px solid #32006e;
  width: 250px;
  height: 250px;
  opacity: 0.9;
  z-index: 10;
  border-radius: 50%;
  display: none;
}
.help-container .img-reveal {
  display: block;
  animation: fadeIn 5s;
}
.help-container .help-section .help-tabs-links .help-tabs-link {
  font-size: 1.75rem;
  padding: 10px;
}
@media (max-width: 500px) {
  .help-container .help-section .help-tabs-links .help-tabs-link {
    font-size: 1.6rem;
    padding: 5px;
  }
}
.help-container .help-section .help-tabs-items {
  flex-direction: initial;
}
.help-container .help-section .help-tabs-item {
  margin: 0 15%;
  width: 100%;
}
@media (max-width: 800px) {
  .help-container .help-section .help-tabs-item {
    margin: 0 10%;
  }
}
@media (max-width: 500px) {
  .help-container .help-section .help-tabs-item {
    margin: 0 5%;
  }
}
.help-container .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(118, 54, 148, 0.2);
  padding: 10px;
  border-radius: 15px;
  margin-top: 2rem;
}
.help-container .accordion-header:first-child {
  margin-top: 0;
}
.help-container .accordion-header:hover {
  border: 1px solid #32006e;
  padding: 9px;
}
.help-container .accordion-header .accordion-question {
  font-size: 2.4rem;
}
@media (max-width: 800px) {
  .help-container .accordion-header .accordion-question {
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .help-container .accordion-header .accordion-question {
    font-size: 2rem;
  }
}
.help-container .accordion-header .expand-btn {
  padding-left: 10px;
}
.help-container .accordion-header .collapse-btn {
  padding-left: 10px;
}
.help-container .accordion-header .hidden-btn {
  display: none;
}
.help-container .active-header {
  border: 1px solid #32006e;
  padding: 9px;
}
.help-container .accordion-content {
  display: none;
  font-size: 1.6rem;
  padding: 10px;
  margin: 0 2%;
  border: 0.5px solid #32006e;
  border-radius: 0 0 15px 15px;
  border-top: none;
}
.night-mode-toggle {
  background-color: hsl(0, 0%, 20%);
}
.night-mode-toggle h1,
.night-mode-toggle h2,
.night-mode-toggle div,
.night-mode-toggle p {
  color: white;
}
.night-mode-toggle .search-box {
  color: white;
  background-color: hsl(0, 0%, 30%);
}
.contact-body-container {
  margin: 0 auto;
  max-width: 100vw;
  margin-top: 81px;
  height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 800px) {
  .contact-body-container {
    margin-top: 111px;
  }
}
@media (max-width: 500px) {
  .contact-body-container {
    margin-top: 33px;
  }
}
.contact-body-container .contact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  width: 100vw;
  background-image: url('/Images/Contact/contact-cta.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-body-container .contact-cta h1 {
  color: white;
  font-size: 4.5rem;
  font-weight: 400;
}
.contact-body-container .contact-img-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: -500px;
}
.contact-body-container .contact-img-container .contact-us-img {
  max-width: 125px;
  max-height: 125px;
  width: auto;
  height: auto;
}
.contact-body-container .buttons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 52vh;
}
.contact-body-container .buttons .btn {
  margin: 0 auto;
  padding: 15px;
}
.contact-body-container .modal {
  position: fixed;
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.contact-body-container .modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  width: 25%;
  height: auto;
  border-radius: 0.5rem;
}
.contact-body-container .modal .modal-content .close-button {
  float: right;
  font-size: 1.5rem;
  width: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.contact-body-container .modal .modal-contenthover {
  background-color: darkgray;
}
.contact-body-container .modal .modal-content .modal-header {
  white-space: pre-wrap;
}
.contact-body-container .modal .modal-content .modal-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 8%;
  text-align: left;
}
.contact-body-container .modal .modal-content .modal-header p {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2rem;
  margin: 8%;
  text-align: left;
}
.contact-body-container .modal .modal-content form {
  display: none;
  flex-direction: column;
  align-content: flex-start;
  margin: 8%;
}
.contact-body-container .modal .modal-content form label,
.contact-body-container .modal .modal-content form input {
  display: block;
  width: 100%;
}
.contact-body-container .modal .modal-content form label {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.contact-body-container .modal .modal-content form input {
  padding: 10px;
}
.contact-body-container .modal .modal-content form textarea {
  width: 100%;
}
.contact-body-container .show-modal {
  opacity: 1;
  display: block;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
