@charset "UTF-8";
/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/************************************************
*                                               *
*              LANGUAGE SECTION                 *
*                                               *
************************************************/
.language-preference {
  float: right;
}
.language-preference .language-form {
  display: inline-block;
}
.language-preference .language-form button {
  border: none;
  color: #ff8017;
  font-size: 16px;
  background: none;
}
.language-preference .language-form a {
  color: #ff8017;
  font-size: 16px;
  text-decoration: none;
}

/************************************************
*                                               *
*               HEADER SECTION                  *
*                                               *
************************************************/
.wabi-header {
  width: 100%;
  background: #fff;
}
.wabi-header nav {
  /* Grid templating */
  display: grid;
  grid-gap: 0;
  grid-template-columns: auto auto auto;
  grid-template-areas: "logo . nav-menu" "  .  . hamburger-menu";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav {
    padding-bottom: 10px;
  }
}
.wabi-header nav #nav-toggle {
  display: none;
}
.wabi-header nav .burger-menu {
  display: none;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav .burger-menu {
    display: block;
  }
}
.wabi-header nav .logo-img {
  width: 150px;
  grid-area: logo;
  padding-top: 0.65em;
}
.wabi-header nav .logo-img .header-logo {
  width: 150px;
  height: 60px;
}
.wabi-header nav .logo-img #hidden-logo {
  width: 60px;
  height: 60px;
  display: none;
  grid-area: logo;
}
.wabi-header nav .nav-menu {
  height: 100%;
  z-index: 1000;
  list-style: none;
  grid-area: nav-menu;
  place-self: center right;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav .nav-menu {
    opacity: 0;
    clear: both;
    display: none;
  }
}
.wabi-header nav li {
  height: 100%;
  line-height: 6;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li {
    width: 66%;
    height: auto;
    display: block;
    margin-left: 17%;
    text-align: center;
  }
  .wabi-header nav li li:hover .dropdown {
    width: 58%;
    z-index: 1;
    display: block;
  }
}
.wabi-header nav li:hover {
  background: #ff8017;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.wabi-header nav li:hover a {
  color: #ffffff;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li:hover {
    background: none;
  }
}
.wabi-header nav .dropdown {
  width: 117px;
  z-index: 1000;
  display: none;
  position: absolute;
  background-color: black;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.wabi-header nav li:hover > .dropdown {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav li:hover > .dropdown {
    width: 66%;
  }
}
.wabi-header nav .dropdown a {
  color: #ff8017;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.wabi-header nav .dropdown a:hover {
  color: #ff8017;
  background-color: #f1f1f1;
}
.wabi-header nav a {
  position: relative;
  padding: 0 32px;
  text-decoration: none;
  color: #ff8017;
  background: 0 0;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 24px;
  line-height: 1.5em;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .wabi-header nav input + label {
    top: 40px;
    z-index: 5;
    right: 40px;
    width: 45px;
    height: 60px;
    position: absolute;
  }
  .wabi-header nav input + label span {
    left: 0;
    top: 7px;
    height: 2px;
    width: 100%;
    display: block;
    transition: 0.5s;
    margin-top: -1px;
    background: #ff8017;
    position: absolute;
  }
  .wabi-header nav input + label span:first-child {
    top: -3px;
  }
  .wabi-header nav input + label span:last-child {
    top: 17px;
  }
  .wabi-header nav label:hover {
    cursor: pointer;
  }
  .wabi-header nav input:checked + label {
    margin-top: -48px;
    margin-right: -41px;
  }
  .wabi-header nav input:checked + label span {
    top: 50%;
    opacity: 0;
    position: relative;
  }
  .wabi-header nav input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
  }
  .wabi-header nav input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
  }
}
.wabi-header nav #nav-toggle:checked ~ .nav-menu {
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  overflow: hidden;
  background: #0e0e0e;
  -webkit-transition: opacity 0.45s ease-out 0.15s;
  -moz-transition: opacity 0.45s ease-out 0.15s;
  -o-transition: opacity 0.45s ease-out 0.15s;
  transition: opacity 0.45s ease-out 0.15s;
}
.wabi-header .active-link {
  background: #ff8017;
}
.wabi-header .active-link a {
  color: #ffffff;
}

/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/************************************************
*                                               *
*               FOOTER SECTION                  *
*                                               *
************************************************/
footer {
  width: 100%;
  padding-top: 50px;
  background: black;
}
footer .foot-container {
  padding: 0;
}
footer .foot-container hr {
  width: 89%;
  margin-top: 22px;
  border-top: 1px solid #eeeeee;
}
footer .foot-container p {
  margin: 0;
  color: #fff;
  font: 18px Lato;
}
footer .foot-container a {
  color: #fff;
  transition: all 0.25s;
  text-decoration: none;
}
footer .foot-container a:hover {
  color: #ff8017;
}
footer .top-section {
  text-align: center;
}
footer .top-section .fi {
  line-height: 1;
  display: inline-block;
}
footer .top-section ul {
  padding: 0;
  margin-bottom: 30px;
}
footer .top-section li:first-child {
  margin-left: 0px;
}
footer .top-section li {
  font-size: 80px;
  list-style: none;
  margin-left: 50px;
  display: inline-block;
  font-family: FontAwesome;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .top-section li {
    font-size: 40px;
  }
}
footer .bottom-section {
  padding-left: 50px;
}
footer .bottom-section a {
  color: #ff8017;
}
footer .bottom-section ul {
  margin-bottom: 0;
  list-style: none;
  text-align: left;
  padding-left: 28px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section ul {
    padding-left: 0px;
  }
}
footer .bottom-section li {
  line-height: 1.428571429;
  font-size: 16px;
  margin: 0 0 7px;
  padding-left: 1px;
  position: relative;
}
footer .bottom-section li:before {
  color: #ff8017;
  content: "";
  font-family: FontAwesome;
}
footer .bottom-section .about:after {
  content: "About Us";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .about:after {
    content: "About";
  }
}
footer .bottom-section .privacy:after {
  content: "Privacy Policy";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .privacy:after {
    content: "Privacy";
  }
}
footer .bottom-section .terms:after {
  content: "Terms & Conditions";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .terms:after {
    content: "T & C";
  }
}
footer .bottom-section .cancel:after {
  content: "Cancellation & Refund Policy";
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  footer .bottom-section .cancel:after {
    content: "Cancellation";
  }
}

/************************************************
*                                               *
*                  VARIABLES                    *
*                                               *
************************************************/
/************************************************
*                                               *
*                   MIXINS                      *
*                                               *
************************************************/
/************************************************
*                                               *
*                 BODY SECTION                  *
*                                               *
************************************************/
/* Get rid of the margins around the border */
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Gradient background */
  background: #ec6f2d33;
}

/************************************************
*                                               *
*                 MAIN SECTION                  *
*                                               *
************************************************/
main {
  margin: 5%;
  margin-bottom: 10%;
  border-radius: 5px;
  padding: 25px;
  text-align: center;
  background: #fff;
  overflow-x: hidden;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/************************************************
*                                               *
*                APPLY SECTION                  *
*                                               *
************************************************/
.apply {
  width: 100%;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .apply .apply-container #already-applied {
    display: none;
  }
}
.apply .apply-container .response {
  color: red;
}
.apply .apply-container h1 {
  margin-bottom: 0;
  text-align: center;
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .apply .apply-container h1 {
    font-size: 1.2em;
  }
}
.apply .apply-container h2 {
  margin-top: 0;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .apply .apply-container h2 {
    font-size: 1em;
  }
}
.apply .apply-container .cta-image {
  background-image: url(../img/about-us.jpg);
  height: 15em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom: 1px solid #BABBBD;
  margin-top: 0.3em;
}
@media only screen and (min-width: 1px) and (max-width: 802px) {
  .apply .apply-container .cta-image {
    height: 10em;
  }
}
.apply .apply-container fieldset {
  border: none;
  width: 480px;
  margin: auto;
  display: grid;
  grid-row-gap: 8px;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .apply .apply-container fieldset {
    width: auto;
    grid-row-gap: 0;
    grid-template-columns: repeat(1, minmax(150px, 1fr));
  }
}
.apply .apply-container fieldset .language {
  text-decoration: none;
}
.apply .apply-container fieldset .language p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.apply .apply-container fieldset .language select {
  margin: 12px;
  width: 105px;
  height: 21px;
}
.apply .apply-container fieldset input {
  margin: 2%;
  width: 208px;
  height: 34px;
  font-size: 18px;
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .apply .apply-container fieldset input {
    width: 162px;
  }
}
.apply .apply-container fieldset .apply-now {
  border: none;
  padding: 12px;
  color: white;
  display: inline;
  cursor: pointer;
  font-size: 1.25em;
  text-align: center;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
  background-color: #8CC63F;
  width: 214px;
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .apply .apply-container fieldset .apply-now {
    width: 130px;
  }
}

/************************************************
*                                               *
*             CHECK STATUS SECTION              *
*                                               *
************************************************/
#app-toggle, .dropdown-container {
  display: none;
}

.app-toggle-label {
  color: #0BB8E3;
}

label:hover {
  cursor: pointer;
  text-decoration: underline #0BB8E3;
}

#app-toggle:checked ~ .dropdown-container {
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: block;
  position: fixed;
  overflow: hidden;
}

.app-dropdown {
  background: white;
  margin: auto;
  margin-top: 2.5px;
  width: 380px;
  height: 320px;
  border-radius: 5px;
}
.app-dropdown #check-status-title {
  font-weight: bold;
}
@media only screen and (min-width: 1px) and (max-width: 599px) {
  .app-dropdown {
    width: auto;
  }
}
.app-dropdown #close-box {
  display: none;
}
.app-dropdown .close-app-box {
  margin-left: 91%;
  text-decoration: none;
}
.app-dropdown .check-app-email {
  height: 125px;
  margin-top: 30px;
}
.app-dropdown .check-app-email input {
  width: 75%;
  text-align: center;
  font-size: 1.25em;
  margin-top: 25px;
}
.app-dropdown .check-app-email .email-to-use {
  color: #999;
  font-size: 0.85em;
}
.app-dropdown .check-app-button {
  height: 123px;
  border-radius: 5px;
  background: #ec6f2d33;
}
.app-dropdown .check-app-button .check-app-btn {
  margin-top: 34.5px;
  padding: 16px;
  border: none;
  color: white;
  display: inline;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
  background-color: #8CC63F;
  width: 155px;
}

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