@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Bad+Script|Josefin+Slab:400,700");
@import url("https://fonts.googleapis.com/css2?family=Orelega+One&display=swap");
/* MAIN COLOR */
/* SECONDARY COLOR */
html,
body {
  height: 100%;
  font-family: 'Josefin Slab', 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;
}

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;
  }
}

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

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

/* 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;
}

.logo {
  max-height: 100px;
}

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

nav {
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

nav.navbar {
  z-index: 1000;
  border: none;
}

nav.navbar .navbar-nav > li > a.nav-link {
  text-align: center;
  color: #000;
  margin-top: 0;
  font-size: .8rem;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

nav.navbar .navbar-nav > li > a.nav-link:focus, nav.navbar .navbar-nav > li > a.nav-link:active {
  background: transparent;
  color: #000;
  outline: 0;
}

nav.navbar .navbar-nav > li > a.nav-link:hover {
  background: #5c00d3;
  color: #fff;
}

@media (max-width: 1024px) {
  nav.navbar .navbar-nav > li > a.nav-link:hover {
    background: transparent;
    color: #fff;
    outline: 0;
  }
}

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

/** LOGIN FORM **/
.btn-default {
  background: #5c00d3;
  color: #fff;
  padding: 1em 2em;
  font-size: .9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-transition: 0.7s ease all;
  transition: 0.7s ease all;
  border: none;
  margin-bottom: 1em;
  border: white 2px solid;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.btn-default:hover {
  background: #7307ff;
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .btn-default:hover {
    background: #aa81df;
    color: #fff;
    -webkit-box-shadow: 0px 0px 5px #000;
            box-shadow: 0px 0px 5px #000;
  }
}

.modal-dialog {
  max-width: 300px;
  text-align: center;
  margin: 6em auto;
}

@media (max-width: 823px) and (orientation: landscape) {
  .modal-dialog {
    margin: 0 auto;
  }
}

.modal-dialog .close {
  display: none;
}

.modal-dialog .modal-content {
  color: #5c00d3;
}

.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;
  margin-top: 10px;
  color: #fff;
  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 #000;
  border: none;
}

.modal-dialog input[type="submit"] {
  background: #5c00d3;
  color: #fff;
  padding: 1em 2em;
  font-size: .9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-transition: 0.7s ease all;
  transition: 0.7s ease all;
  border: none;
  margin-bottom: 1em;
  border: white 2px solid;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  display: block;
  width: 100%;
  font-size: 18px;
  margin: 10px auto;
}

.modal-dialog input[type="submit"]:hover {
  background: #7307ff;
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .modal-dialog input[type="submit"]:hover {
    background: #aa81df;
    color: #fff;
    -webkit-box-shadow: 0px 0px 5px #000;
            box-shadow: 0px 0px 5px #000;
  }
}

.modal-header,
.modal-footer {
  background: #5c00d3;
  color: #fff;
}

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

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

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

/** END LOGIN FORM **/
section h1,
section h2,
section h3 {
  font-family: "Orelega One", sans-serif;
  font-size: 35px;
}

span {
  font-weight: bold;
}

.pd, .section-a,
.section-b,
.section-c, .section {
  padding: 150px 0;
}

@media (max-width: 1024px) {
  .pd, .section-a,
  .section-b,
  .section-c, .section {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .pd, .section-a,
  .section-b,
  .section-c, .section {
    padding: 50px 0;
  }
}

img {
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.section {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(92, 0, 211, 0.8)), to(rgba(170, 129, 223, 0.8))), url("../img/bg1.jpg");
  background-image: linear-gradient(-90deg, rgba(92, 0, 211, 0.8), rgba(170, 129, 223, 0.8)), url("../img/bg1.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.section-a,
.section-c {
  background: #d9d9d9;
}

.section-a {
  background-color: #f2f2f2;
}

.section-a img {
  padding: 10px;
  border: dotted 2px #5c00d3;
  margin-bottom: 10px;
}

.section-a img:hover {
  border: 2px solid #000;
  -webkit-transition: .9s all ease;
  transition: .9s all ease;
}

.section-b {
  background-color: #e6e6e6;
}

.section-c {
  color: #000;
}

footer {
  padding: 50px 0px 20px;
  background: #5c00d3;
  color: #fff;
  font-size: .7rem;
}

footer a {
  color: #fff;
  white-space: nowrap;
  font-size: .7rem;
}

footer a:hover, footer a:focus {
  color: #fff;
}

footer p {
  font-size: .7rem;
}

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;
  text-overflow: '';
}

.top-pad {
  padding: 7em 1em;
  background: white;
}

.top-pad .heading,
.top-pad img {
  display: none;
}

@media (max-width: 990px) {
  .top-pad {
    padding: 7em 1em;
  }
}

.terms,
.privacy {
  font-size: 1rem;
}

.terms ol li,
.privacy ol li {
  font-size: 1rem;
}

.terms ol ol li,
.privacy ol ol li {
  font-size: 0.85rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 350px;
  }
}

.modal-dialog input {
  width: 100%;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */
.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}

/*
 * Extra utilities
 */
.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.flex-equal > * {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}

@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.img-holder1 {
  background-image: url("../img/img7.jpg");
  background-size: cover;
  background-position: top center;
}

.img-holder2 {
  background-image: url("../img/img8.jpg");
  background-size: cover;
  background-position: top center;
}

.form-error {
  color: red;
}
