@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans|Yeseva+One");
@import url("https://fonts.googleapis.com/css2?family=Heebo&family=PT+Sans+Narrow&display=swap");
/* MAIN COLOR */
/* SECONDARY COLOR */
/* DARK GRAY, REASON WHY IT'S SET TO #333 IS SO YOU CAN DARKEN IT IF NEEDED USING darken($blk, 10%); FOR EXAMPLE. YOU COULD ALSO USE 2 VARIABLES INSTEAD */
/* USE THIS TO SET THE BORDER RADIUS FOR BUTTONS */
html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Sans Narrow", sans-serif;
}

html {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(15px + 7 * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 22px;
  }
}

p {
  font-size: 1rem;
  font-family: "PT Sans Narrow", sans-serif;
}

h1 {
  font-size: 2.0736rem;
}
h1 {
  font-size: 25.92px;
}
@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(25.92px + 24.705 * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  h1 {
    font-size: 50.625px;
  }
}

h2 {
  font-size: 1.728rem;
}
h2 {
  font-size: 25.92px;
}
@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(25.92px + 24.705 * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  h2 {
    font-size: 50.625px;
  }
}

h3 {
  font-size: 1.44rem;
}
h3 {
  font-size: 21.6px;
}
@media screen and (min-width: 320px) {
  h3 {
    font-size: calc(21.6px + 12.15 * ((100vw - 320px) / 1600));
  }
}
@media screen and (min-width: 1920px) {
  h3 {
    font-size: 33.75px;
  }
}

h1,
h2 {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.flash {
  display: none;
}

q,
blockquote {
  quotes: "“" "”";
}

.navbarFixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #0065dd;
  -webkit-text-fill-color: #0065dd;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

nav.navbar {
  z-index: 1000;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
nav.navbar .navbar-nav > li > a {
  font-family: "PT Sans Narrow", sans-serif;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e46d25;
  border-radius: 5px;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media (max-width: 767px) {
  nav.navbar .navbar-nav > li > a {
    margin-top: 0;
    padding: 6px 0px;
    display: inline-block;
  }
}
nav.navbar .navbar-nav > li > a:focus, nav.navbar .navbar-nav > li > a:active {
  background: transparent;
  color: #333;
  outline: 0;
}
nav.navbar .navbar-nav > li > a:hover {
  background: #8a0fea;
  color: #fafafa;
}
@media (max-width: 1024px) {
  nav.navbar .navbar-nav > li > a:hover {
    background: transparent;
    color: #333;
    outline: 0;
  }
}

.navbar-right {
  margin-top: 0px;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-toggler {
  margin: 20px 15px 8px 0px;
  border: 1px solid #e46d25;
  border-radius: 4px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(58, 141, 167, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/** LOGIN FORM **/
.btn-default {
  border: none;
  border-radius: 5px;
  background: #ab83cb;
  color: #fafafa;
  padding: 0.5em 2em;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 2em 0em;
  -webkit-transition: 0.7s ease all;
  -o-transition: 0.7s ease all;
  transition: 0.7s ease all;
}
.btn-default:hover {
  background: #a13af2;
  color: white;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .btn-default:hover {
    background: #e46d25;
    color: #fafafa;
    -webkit-box-shadow: 0px 0px 5px #333;
            box-shadow: 0px 0px 5px #333;
  }
}

.modal-dialog {
  max-width: 300px;
  text-align: center;
  margin: 6em auto;
}
@media (max-width: 812px) and (orientation: landscape) {
  .modal-dialog {
    margin: 0 auto;
  }
}
.modal-dialog .close {
  opacity: 1;
  font-size: 1.3em;
}
.modal-dialog .modal-content {
  color: #8a0fea;
}
.modal-dialog .modal-content h2 {
  text-align: center;
}
.modal-dialog input {
  border: 1px solid #777;
  text-align: center;
}
@media (max-width: 1024px) {
  .modal-dialog input#username,
.modal-dialog input#password,
.modal-dialog input#email {
    font-size: 16px;
  }
}
.modal-dialog button {
  background: transparent;
  color: #fafafa;
  display: block;
  border: none;
  padding: 1em 2em;
  margin: 0 auto;
  font-size: 18px;
}
.modal-dialog button:hover {
  background: transparent;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: 0px 0px 3px #333;
  border: none;
}
.modal-dialog input[type=submit] {
  border: none;
  border-radius: 5px;
  background: #8a0fea;
  color: #fafafa;
  padding: 0.5em 2em;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 2em 0em;
  -webkit-transition: 0.7s ease all;
  -o-transition: 0.7s ease all;
  transition: 0.7s ease all;
  display: block;
  width: 75%;
  font-size: 15px;
  margin: 0 auto;
}
.modal-dialog input[type=submit]:hover {
  background: #a13af2;
  color: white;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .modal-dialog input[type=submit]:hover {
    background: #e46d25;
    color: #fafafa;
    -webkit-box-shadow: 0px 0px 5px #333;
            box-shadow: 0px 0px 5px #333;
  }
}

.modal-title {
  font-size: 1.1em;
}

.modal-header,
.modal-footer {
  background: #8a0fea;
  color: #fafafa;
}

.modal-open {
  overflow: auto;
  padding-right: 0px !important;
}

input#username {
  margin-bottom: 20px;
}

/** END LOGIN FORM **/
footer {
  padding: 40px 0px 20px;
  background: #000000;
  color: #fafafa;
  font-size: 15px;
}
footer a {
  color: #fafafa;
  white-space: nowrap;
  font-size: 15px;
}
@media (max-width: 990px) {
  footer a {
    font-size: 13px;
  }
}
footer a:hover {
  color: white;
  outline: 0 !important;
  text-decoration: none;
}
footer a:focus {
  color: #fafafa;
  outline: 0 !important;
  text-decoration: none;
}
footer p {
  font-size: 15px;
}
@media (max-width: 990px) {
  footer p {
    font-size: 13px;
  }
}

input#username,
input#password,
input#email {
  width: 100%;
}
@media (max-width: 1024px) {
  input#username,
input#password,
input#email {
    font-size: 16px;
  }
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  -o-text-overflow: "";
     text-overflow: "";
}

a,
a:hover,
a:focus,
a:active {
  outline: 0 !important;
}

.logo {
  max-width: 250px;
  padding: 0.2em;
}

@media (max-width: 767px) {
  .logo {
    max-width: 175px;
  }

  .navbar-header a {
    float: left;
  }
}
@media (max-width: 600px) {
  .logo {
    max-width: 175px;
  }

  .navbar-toggle {
    margin-top: 15px;
  }
}
.top-pad {
  padding: 6em 0em;
  background: white;
}
.top-pad .heading,
.top-pad img {
  display: none;
}
@media (max-width: 990px) {
  .top-pad {
    padding: 6em 0em;
  }
}

.flex {
  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;
}
@media (max-width: 1024px) {
  .flex {
    display: block;
    /* may need to be inline-block */
  }
}

.terms,
.privacy {
  font-size: 1rem;
}
.terms img,
.privacy img {
  max-width: 100%;
}
.terms h1,
.terms h2,
.terms h3,
.privacy h1,
.privacy h2,
.privacy h3 {
  color: black;
}
.terms ol li,
.privacy ol li {
  font-size: 1rem;
}
.terms ol ol li,
.privacy ol ol li {
  font-size: 0.85rem;
}

#signUpForm {
  padding: 10px 10px !important;
}

.roundthis {
  border-radius: 15px;
}

.borderthis {
  background: white;
  padding: 20px;
  border: 5px solid #8a0fea;
}

.intro {
  background: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 350px 0px;
}
@media (max-width: 991px) {
  .intro {
    padding: 250px 0px;
  }
}
@media (max-width: 767px) {
  .intro {
    padding: 200px 0px;
  }
}
@media (max-width: 568px) {
  .intro {
    padding: 120px 0px;
  }
}
@media (max-width: 414px) {
  .intro {
    padding: 110px 0px;
  }
}
@media (max-width: 320px) {
  .intro {
    padding: 100px 0px;
  }
}

.form .col-md-4 {
  padding-bottom: 15px;
}
.form .padTopBtm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg {
  background: #8a0fea;
  color: white;
  padding: 4rem 0;
}

.btn {
  font-family: "Quicksand", sans-serif;
  background-color: #8a0fea;
  border-color: white;
  font-size: 15px;
  padding: 1em 2em;
  color: #fafafa;
  -webkit-transition-duration: 0.25s;
       -o-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.btn:hover {
  background-color: #e46d25;
  border-color: white;
  color: #fafafa;
}
@media (max-width: 1366px) {
  .btn:hover {
    background-color: #8a0fea;
    color: #fafafa;
  }
}
.btn:hover:active, .btn:hover:focus {
  background-color: #8a0fea;
  color: #fafafa !important;
}

#submit {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 90%;
}

#signUpForm .form-error {
  color: #bd0000 !important;
}

.form-error {
  color: #bd0000 !important;
}

.negMarBtm {
  margin-bottom: -55px;
}

.joinme span {
  margin-top: -100px;
  /* Size of fixed header */
  padding-bottom: 100px;
  display: block;
}