/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  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;
  z-index: 2;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 80vh;
  border-radius: 1em;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90vw;
  overflow-x: hidden;
  padding: 1em 1.5em 0;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  font-family: sans-serif;
  letter-spacing: -0.4px;
}

.modal__close {
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 1px solid #878787;
  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;
}

.modal__close:focus {
  background: #878787;
  color: white;
  outline: none;
}

.modal__close:hover {
  background: #474747;
  color: white;
  border-color: #878787;
}

.modal__close:active {
  background: black;
  border-color: black;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin: 0.5em 0;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
    Demo Animation Style
  \**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

html {
  font-size: 18px;
  line-height: 1.5;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  width: 100%;
  color: #1a1a1a;
}

main.centre {
  height: 100%;
  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;
}

p {
  font-family: "Hind Madurai", sans-serif;
}

h1 {
  line-height: 1.25;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}

h2 {
  font-size: 1.6em;
  margin-bottom: 1em;
  font-weight: bold;
  margin-top: 0.2em;
  border-top: 0.2em solid #914099;
  padding-top: 0.4em;
  font-family: "Istok Web", sans-serif;
  line-height: 1.2 !important;
  text-align: left;
}

a {
  cursor: pointer;
}

.list-container {
  display: -ms-grid;
  display: grid;
  margin: 0 auto 1em;
  width: 55vw;
  max-width: 550px;
  row-gap: 1em;
}

.list-container.login {
  width: 20em;
  row-gap: 0;
  margin-bottom: 4em;
  display: block;
  background: #f3f3f3e3;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 2em;
  border-radius: 1em;
  left: -20vw;
  padding: 1.8em 2.1em;
  position: relative;
}

.list-container.login h2 {
  margin: 0.25em 0 0.7em;
  padding: 0;
  border: none;
}

.list-container.login .btn {
  margin: 0.25em 0;
}

.btn {
  width: 100%;
  padding: 1em;
  border: none;
  border-radius: 7em 7em 7em 7em;
  border-radius: 0.75em;
  font-weight: bold;
  font-size: 1em;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background-color: #914099;
}

.btn.primary:hover {
  background-color: #5e2963;
}

.btn.small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  padding: 1em 4em;
}

.btn:active {
  -webkit-transition: 0s;
  transition: 0s;
  background-color: #3e1142 !important;
}

.input-field {
  padding: 0 0.5em;
  margin: 0.5em 0;
  font-size: 1em;
  width: 100%;
  line-height: 2.5em;
  border-radius: 0;
  border: none;
  background: white;
  border: 2px solid #1a1a1a;
}

.warning-message {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding-top: 1em;
  height: 1em;
}

.warning-message i {
  margin: 0 0.5em;
  color: red;
  font-size: 1em;
}

.brand-logo {
  position: absolute;
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 11vw;
  right: 0;
  bottom: 0;
  margin: 0.5em;
  min-width: 7em;
}

.hero {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 40vh;
  background-position-y: 4%;
  background-position-x: center;
  background-color: #8a8a8a;
  background-color: white;
  background-color: -moz-linear-gradient(104deg, white 0%, black 100%);
  background-color: -webkit-linear-gradient(104deg, white 0%, black 100%);
  background-color: linear-gradient(104deg, white 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
  background-blend-mode: multiply;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
  min-height: 310px;
  max-height: 750px;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif !important;
  margin-top: 1.25em;
  max-width: 75%;
  min-width: 10em;
  padding: 10px;
  color: white;
  font-size: 1.8em;
  margin: 0;
  text-align: left;
}

.hero p {
  margin-top: 0.5em;
  color: #62b9ff;
  max-width: 15em;
  padding: 0 0.5em;
  font-size: 2.75vh;
}

.hero .brand-logo {
  left: 0 !important;
  top: 0;
}

article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}

.body-text-container {
  width: 600px;
  margin: 0 10px;
}

.border-top {
  border-top: 2px solid #dadada;
  margin-top: 2em;
  padding-top: 0.5em;
}

@media only screen and (min-width: 720px) {
  .brand-logo {
    margin: 1.5em 2em;
  }
  .hero {
    height: 80vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero h1 {
    margin-top: 1.25em;
    max-width: 8em;
    padding: 0 0.5em;
    position: relative;
    color: #ffffff;
    font-size: 3.5vw;
    font-size: clamp(2.5em, 4vw, 4em);
    margin: 0;
    text-align: center;
    top: 2vh;
    font-weight: unset;
  }
  .hero p {
    margin-top: 0.5em;
    color: #62b9ff;
    max-width: 15em;
    padding: 0 0.5em;
    font-size: 2.75vh;
  }
}

i {
  font-size: 1em;
  color: #ffffff;
  margin-right: 0.75em;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-container {
    display: block !important;
  }
  .overlayLeftBtn {
    height: 5em;
    margin-bottom: 1em;
  }
  main.centre {
    display: block;
  }
}

label {
  font-weight: bold;
}
/*# sourceMappingURL=styles.css.map */