body {
  font-family: "Open Sans";
}

.i {
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.4);
}

.sep {
  border-radius: 2px;
  height: 4px;
  width: 100%;
  background: linear-gradient(45deg, #ed1c24, #f0c613);
}

.clearfix {
  display: flex;
  position: relative;
}

body {
  padding: 0;
  margin: 0;
}
body #popup {
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
body #popup .inner {
  max-width: 850px;
  background: white;
  border-radius: 2px;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  top: 20px;
  left: 0px;
  right: 0px;
  margin: auto;
  margin-bottom: 40px;
}
body #popup .inner .close svg {
  position: absolute;
  padding: 20px;
  right: 0px;
  top: 0px;
  color: #ed1c24;
  font-size: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}
body #popup .inner .close svg:hover {
  transform: rotate(90deg);
}
body #popup .inner .i {
  color: #ed1c24;
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}
body #popup .inner .intro {
  text-align: center;
  margin-bottom: 40px;
}
body #popup .inner .intro div {
  padding-top: 20px;
}
body #popup .inner form .btn-wrap {
  background: white;
  width: 100%;
  padding: 10px;
}
body #popup .inner form .sections {
  margin-bottom: 50px;
}
body #popup .inner form .sect {
  position: relative;
}
body #popup .inner form .sect:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
body #popup .inner form .sect:not(:last-child):after {
  position: absolute;
  content: "";
  padding: 1px;
  width: 100%;
  bottom: -2px;
}
body #popup .inner form .sect .subtitle {
  color: #ed1c24;
  font-weight: bolder;
  font-size: 20px;
}
body #popup .inner form .sect input.error {
  background: rgba(237, 28, 36, 0.2);
}
body #popup .inner form .sect .input-grid {
  display: flex;
  flex-direction: column;
}
body #popup .inner form .sect .input-grid > div {
  display: flex;
  flex-direction: row;
}
body #popup .inner form .sect .input-grid > div label {
  text-align: right;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 210px;
  box-sizing: border-box;
  padding: 10px;
  padding-right: 15px;
}
body #popup .inner form .sect .input-grid > div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  flex-shrink: 1;
  flex-grow: 1;
  border: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  margin-bottom: 5px;
  padding: 10px;
  padding-left: 0px;
  border-radius: 0px;
  transition: all 0.2s ease;
}
body #popup .inner form .sect .input-grid > div input:focus {
  border-bottom-color: #ed1c24;
}
body #popup .inner form .sect .h-group {
  margin-left: 210px;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
}
body #popup .inner form .sect .h-group div {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 1;
  padding: 0px 10px;
  box-sizing: border-box;
}
body #popup .inner form .sect .h-group div:first-child {
  padding-left: 0px;
}
body #popup .inner form .sect .h-group div:last-child {
  padding-right: 0px;
}
body #popup .inner form .sect .h-group div label {
  display: none;
}
body #popup .inner form .sect .h-group div input {
  width: 100%;
  box-sizing: border-box;
}
body #popup .inner form .btn {
  border-radius: 4px;
  background: #ed1c24;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  padding: 24px;
  position: relative;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 200px;
  margin: auto;
  overflow: hidden;
}
body #popup .inner form .btn:hover:not(.check):not(.spin):not(.ex) .btn-icon {
  animation: btn-hover 0.3s ease;
}
body #popup .inner form .btn .mask {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 80px;
  opacity: 0;
  transition: all 0.3s ease;
}
body #popup .inner form .btn.spin .btn-icon {
  animation: fa-spin 0.45s infinite linear;
}
body #popup .inner form .btn.spin .btn-icon .bar:not(:nth-child(2)) {
  width: 0px;
  opacity: 0;
  right: 5px;
}
body #popup .inner form .btn.spin .btn-icon .bar:nth-child(2) {
  width: 100%;
  height: 100%;
  border-width: 3px;
  border-color: white;
  border-left-color: transparent;
  border-radius: 50%;
  right: 0 !important;
  top: 0 !important;
  background: transparent;
  opacity: 1 !important;
}
body #popup .inner form .btn.check .mask {
  background: #129444;
  width: 100%;
  opacity: 1;
  border-radius: 0px;
  transition: width 0.3s ease, opacity 0.3s ease, border-radius 0.2s ease 0.1s;
}
body #popup .inner form .btn.check .bar:first-child {
  width: 0px;
  opacity: 0;
  right: 5px;
}
body #popup .inner form .btn.check .bar:nth-child(2) {
  transform: rotate(-55deg);
  right: -4px !important;
  width: 100% !important;
}
body #popup .inner form .btn.check .bar:last-child {
  width: 10px;
  opacity: 1;
  bottom: 3px !important;
  right: 12px !important;
  transform: rotate(36deg) !important;
}
body #popup .inner form .btn.ex .mask {
  background: white;
  width: 100%;
  opacity: 1;
  border-radius: 0px;
  transition: width 0.3s ease, opacity 0.3s ease, border-radius 0.2s ease 0.1s;
}
body #popup .inner form .btn.ex .bar {
  border-color: #ed1c24 !important;
  background: #ed1c24 !important;
}
body #popup .inner form .btn.ex .bar:nth-child(2) {
  top: 1px !important;
  right: 0 !important;
  transform: rotate(45deg);
  margin: auto;
  width: 100%;
}
body #popup .inner form .btn.ex .bar:first-child {
  opacity: 0;
}
body #popup .inner form .btn.ex .bar:last-child {
  bottom: 10px !important;
  right: 0 !important;
  transform: rotate(-45deg);
  margin: auto;
  width: 100%;
}
body #popup .inner form .btn .btn-icon {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 0px;
  left: 0px;
  margin: auto;
  bottom: 1px;
  top: 0px;
}
body #popup .inner form .btn .btn-icon .bar {
  width: 60%;
  border: 2px solid white;
  height: 0px;
  position: absolute;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: white;
}
body #popup .inner form .btn .btn-icon .bar:first-child {
  transform: rotate(45deg);
  top: 7px;
  right: 0px;
}
body #popup .inner form .btn .btn-icon .bar:nth-child(2) {
  top: 1px;
  bottom: 0px;
  margin: auto;
  right: 4px;
  width: 100%;
}
body #popup .inner form .btn .btn-icon .bar:last-child {
  bottom: 6px;
  right: 0px;
  top: auto;
  left: auto;
  transform: rotate(-45deg);
}
body #popup .inner form .files {
  margin-top: 10px;
}
body #popup .inner form .files .file-inputs {
  display: none;
}
body #popup .inner form .files .transcripts {
  margin-top: 15px;
  color: #ed1c24;
  font-size: 14px;
  font-weight: bolder;
}
body #popup .inner form .files .desc {
  margin-top: 5px;
  font-size: 14px;
}
body #popup .inner form .files .desc span {
  color: #ed1c24;
  font-weight: bolder;
}
body #popup .inner form .files .file {
  position: relative;
  max-width: 300px;
  padding: 8px;
  box-sizing: border-box;
  background: #ed1c24;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  min-width: 300px;
  margin-top: 20px;
  flex-grow: 1;
}
body #popup .inner form .files .file .mask {
  z-index: 0;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 80px;
  opacity: 0;
  transition: all 0.3s ease;
}
body #popup .inner form .files .file span {
  position: relative;
  z-index: 1;
}
body #popup .inner form .files .file.success {
  cursor: default;
  color: white;
}
body #popup .inner form .files .file.success .mask {
  background: #129444;
  width: 100%;
  opacity: 1;
  border-radius: 0px;
  transition: width 0.3s ease, opacity 0.3s ease, border-radius 0.2s ease 0.1s;
}
body #popup .inner form .files .file i {
  margin-right: 10px;
}
body #popup .inner form .message {
  margin-bottom: 40px;
  padding: 10px;
  color: white;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
}
body #popup .inner form .message svg {
  margin-right: 10px;
  font-size: 20px;
}
body #popup .inner form .message.error {
  background: #ed1c24;
}
body #popup .inner form .message.success {
  background: #129444;
}
body.popup {
  overflow: hidden;
  width: 100%;
}
body.popup #popup {
  opacity: 1;
  visibility: visible;
}
body .btn.no-animate {
  padding: 16px 12px;
  color: white;
  background: linear-gradient(45deg, #ed1c24, #f0c613);
  max-width: 400px;
  text-align: center;
  margin: auto;
  border-radius: 2px;
  margin-top: 20px;
  cursor: pointer;
}
body .btn.no-animate.i {
  font-size: 25px !important;
  clear: both;
}
body #footer {
  text-align: center;
  position: relative;
  z-index: 3;
  background: white;
  padding: 70px 20px;
  text-align: center;
  font-size: 15px;
  box-shadow: 0px -2px 6px 2px rgba(0, 0, 0, 0.2);
}
body #about {
  margin: 50px auto 0px;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
  background-image: url("/images/splash2.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
body #about .content {
  color: white;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}
body #about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(45deg, #ed1c24, #f0c613);
  opacity: 0.8;
}
body #about .i {
  color: white;
  text-align: center;
  font-size: 60px;
  margin-top: 40px;
}
body #splash {
  width: 100%;
  height: auto;
  padding: 180px 20px;
  background-image: url(/images/splash.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}
body #splash .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: red;
  opacity: 0.8;
  background: linear-gradient(45deg, #ed1c24, #f0c613);
}
body #splash .splash {
  position: relative;
  z-index: 2;
  margin: auto;
  min-width: 300px;
}
body #splash .splash .img {
  width: 400px;
  height: 250px;
  margin: auto;
  background-image: url(/images/logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
body #splash .splash .text {
  color: white;
  text-align: center;
  font-size: 60px;
}
body #text {
  max-width: 1000px;
  text-align: center;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}
body #text .i:not(.btn) {
  font-size: 60px;
}
body #text .i:not(.btn):first-child {
  margin-top: 30px;
  color: #ed1c24;
}
body #text .i:not(.btn):nth-child(2) {
  margin-bottom: 30px;
  color: #f0c613;
}

@media (max-width: 700px) {
  body.popup {
    position: fixed;
  }

  form .input-grid > div:not(.h-group) {
    flex-direction: column-reverse !important;
  }
  form .h-group {
    flex-direction: column !important;
    margin-left: 0px !important;
  }
  form .h-group > div {
    padding-left: 0 !important;
    padding-right: 0px !important;
  }
  form input {
    box-sizing: border-box;
    width: 100%;
  }
  form label {
    padding-left: 0px !important;
    text-align: left !important;
    width: 100%;
    display: none;
  }
  form .file {
    min-width: 100% !important;
  }

  #popup .i {
    font-size: 30px !important;
  }

  #splash {
    padding: 60px 20px !important;
  }

  #splash .inner {
    min-width: 200px !important;
  }

  #splash .img {
    width: 250px !important;
    height: 190px !important;
  }

  #splash .i,
#text .i:not(.btn) {
    font-size: 30px !important;
  }
}
@keyframes btn-hover {
  50% {
    left: 15px;
  }
  100% {
    left: 0px;
  }
}

/*# sourceMappingURL=styles.css.map */
