body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: #2f2f2f;
}

.white.container {
  background-color: #fff;
  width: 85%;
  margin: auto;
  padding: 2% 2% 5%;
}

button {
  text-decoration: none;
  border: 0;
  font-size: 1.1em;
  font-weight: 200;
  padding: 10px 40px;
  font-family: 'Montserrat', sans-serif;
}

button:focus {
  outline: 0;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

#navigation {
  background-color: white;
  font-size: 1.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-height: 75px;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 900px) {
  #navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

#navigation .logo {
  background-color: #347cc3;
  width: 50vw;
  padding: 0 40px;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 900px) {
  #navigation .logo {
    width: 100vw;
    max-width: inherit;
    padding: 0;
  }
}

#navigation .logo img {
  max-width: 300px;
}

#navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  top: 0;
  position: relative;
  margin-left: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 900px) {
  #navigation .menu {
    margin-left: inherit;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

#navigation .menu .menu-item {
  cursor: pointer;
}

#navigation .menu ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

#navigation .menu ul:hover li:not(:hover) {
  color: rgba(0, 0, 0, 0.5);
}

#navigation .menu ul li {
  display: inline-block;
  margin: 0 20px;
}

#navigation .menu ul li:last-child {
  margin-right: 75px;
}

@media screen and (max-width: 900px) {
  #navigation .menu ul li:last-child {
    margin-right: 0px;
  }
}

#navigation .menu ul li a {
  text-decoration: none;
  color: inherit;
}

#showcase {
  width: 100%;
  height: 70vh;
  max-height: 1000px;
  min-height: 800px;
  background-image: url("../images/FHE_GenCover.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 25%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 700px) {
  #showcase {
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#showcase .wrapper {
  background-color: rgba(61, 129, 255, 0.5);
  color: #fff;
  padding: 40px;
  width: 50vw;
  max-width: 600px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media screen and (max-width: 700px) {
  #showcase .wrapper {
    width: 100vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
}

#showcase .wrapper small {
  font-size: 1.65em;
  padding: 0 2% 3%;
}

@media screen and (max-width: 900px) {
  #showcase .wrapper small {
    font-size: 1.1em;
  }
}

#showcase .wrapper h1 {
  font-size: 3.5em;
  padding: 0 2%;
  margin: 3% 0 2%;
}

@media screen and (max-width: 900px) {
  #showcase .wrapper h1 {
    font-size: 2.5em;
    margin: 0;
  }
}

#showcase .wrapper hr {
  width: 100%;
  border-color: #fff;
}

#showcase .wrapper p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 1.3em;
  line-height: 1.5em;
  padding: 0 2%;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

#showcase .wrapper p:first-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  #showcase .wrapper p {
    font-size: 1em;
  }
}

@media screen and (max-width: 700px) {
  #showcase .wrapper p {
    text-align: center;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
}

#showcase .wrapper a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#showcase .wrapper .indicators {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#showcase .wrapper .indicators .prev {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 25% 50%);
  clip-path: polygon(100% 0, 100% 100%, 25% 50%);
  padding: 10px;
  background-color: #fff;
}

#showcase .wrapper .indicators .next {
  -webkit-clip-path: polygon(0 0, 0% 100%, 75% 50%);
  clip-path: polygon(0 0, 0% 100%, 75% 50%);
  padding: 10px;
  background-color: #fff;
}

#searchbar {
  max-width: 1500px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px 0 0;
  line-height: inherit;
}

@media screen and (max-width: 700px) {
  #searchbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#searchbar .title {
  font-weight: 300;
}

#searchbar .title strong {
  font-weight: 800;
}

#searchbar .searchbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: auto;
}

@media screen and (max-width: 700px) {
  #searchbar .searchbar {
    width: 100%;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#searchbar #search {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  border-radius: 2rem;
  -webkit-box-shadow: inset 0 0 0 2px rgba(102, 102, 102, 0.5);
          box-shadow: inset 0 0 0 2px rgba(102, 102, 102, 0.5);
  outline: 0;
  border: 0;
  padding: 5px 20px;
  min-width: 0;
}

#searchbar #search:active {
  border: 0;
}

#searchbar #search:focus {
  -webkit-box-shadow: inset 0 0 0 2px #3c3;
          box-shadow: inset 0 0 0 2px #3c3;
  outline: 0;
}

#searchbar #search::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#searchbar #search:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#searchbar #search::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#searchbar #search::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#searchbar .submit {
  min-width: 0;
  border-radius: 0 2rem 2rem 0;
  border: 0;
  font-size: 1.3em;
  font-weight: 200;
  padding: 5px 20px;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  background-color: #3c3;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#searchbar .submit:hover {
  background-color: #2ab42a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#searchbar input {
  margin: auto 0;
}

#events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1500px;
  margin: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#events .event {
  max-width: 350px;
  margin: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 800px) {
  #events .event {
    max-width: inherit;
  }
}

#events .event .eventMonth {
  padding: 10px 20px;
  background-color: #347cc3;
  color: #fff;
}

#events .event .eventMonth small {
  font-size: 14px;
}

#events .event hr {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

#events .event img {
  max-width: 100%;
}

#events .event .eventInfo {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

#events .event .eventInfo hr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#events .event .eventInfo .eventTitle {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 900;
  padding-bottom: 10px;
}

#events .event .eventInfo .eventDescription {
  line-height: 1.5rem;
}

#events .event .eventInfo button {
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

#events .event .eventInfo button:hover {
  -webkit-box-shadow: 1px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 1px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#events .event .eventInfo .eventDetails {
  list-style-type: none;
  padding: 0;
}

#sponsorship {
  max-width: 1140px;
  margin: 50px auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#sponsorship h2 {
  font-size: 3em;
  line-height: 1.1em;
  margin-bottom: 0em;
}

#sponsorship p {
  margin: 10px 0 20px;
  font-size: 2.5em;
  line-height: 1em;
}

#sponsorship .seperator {
  border-top: 20px solid #c8a526;
  width: 50%;
  margin: auto;
}

#sponsorship a {
  margin: auto;
  background-color: #75ab38;
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  border: 0;
  font-size: 1.3em;
  font-weight: 200;
  padding: 10px 40px;
  font-family: 'Quicksand', sans-serif;
}

#sponsorship .paymentOptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
}

#sponsorship .paymentOptions .option {
  margin: 20px 10px 0;
}

#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #347cc3;
  color: white;
  padding: 2%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 500px) {
  #footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 250px;
}

#footer .logo img {
  width: 100%;
  max-width: 250px;
}

@media screen and (max-width: 500px) {
  #footer .logo {
    padding: 2% 0 0;
  }
}

#footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 500px) {
  #footer .menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
}

#footer .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 0;
}

#footer .menu ul a {
  text-decoration: none;
  color: inherit;
}

#signUp {
  opacity: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 158, 169, 0.85);
  position: fixed;
  top: -1500px;
  left: 0;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#signUp #exit {
  padding: 12px 12px;
  position: absolute;
  top: 5%;
  right: 5%;
  background-color: #fff;
  -webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  cursor: pointer;
}

#signUp .wrapper h2 {
  color: white;
  font-size: 2em;
  line-height: 1.3em;
  text-align: center;
}

#signUp .wrapper p {
  color: white;
}

#signUp .wrapper input {
  height: 35px;
  font-size: 1.2em;
  border-radius: 2rem;
  border: 0;
  padding: 5px 30px;
  font-family: 'Montserrat', sans-serif;
}

#signUp .wrapper input:active {
  border: 0;
}

#signUp .wrapper input:focus {
  -webkit-box-shadow: inset 0 0 0 2px #3c3;
          box-shadow: inset 0 0 0 2px #3c3;
  outline: 0;
}

#signUp .wrapper input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#signUp .wrapper input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#signUp .wrapper input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#signUp .wrapper input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

#signUp .wrapper .name {
  width: 100%;
}

#signUp .wrapper .email {
  width: 100%;
}

#signUp .wrapper .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
}

#signUp .wrapper .row {
  margin-top: 30px;
}

#signUp .wrapper .row:last-child {
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#signUp .wrapper hr {
  margin-top: 30px;
}

#signUp .wrapper button:last-child {
  margin-left: 10px;
}

#signUp .wrapper a.exitTwo {
  text-decoration: none;
  border-radius: 2rem;
  border: 0;
  font-size: 1.3em;
  font-weight: 200;
  padding: 10px 40px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  background-color: #f0f0f0;
  margin-left: 10px;
  color: #999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#signUp .wrapper a.exitTwo:hover {
  background-color: #c8c8c8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#signUp .wrapper a.exitTwo:focus {
  outline: 0;
}

#signUp .wrapper .newSignUp {
  text-decoration: none;
  border-radius: 2rem;
  border: 0;
  font-size: 1.3em;
  font-weight: 200;
  padding: 10px 40px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  background-color: #3c3;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

#signUp .wrapper .newSignUp:hover {
  background-color: #2ab42a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#signUp .wrapper hr {
  border-color: #fff;
}
/*# sourceMappingURL=styles.css.map */