@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;1,700&family=Redressed&display=swap");
body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; }

.bold {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400; }

.bolder {
  font-weight: 700; }

.blue {
  color: #004b6a; }

.black {
  font-family: 'Redressed', cursive;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700; }

.upper {
  text-transform: uppercase; }

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.pt-50 {
  padding-top: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.pt-100 {
  padding-top: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.btn-rounded {
  border-radius: 150px; }

.btn-custom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ff0844), to(#ffb199));
  background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%); }

#about_header {
  height: 40vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.62))), url(../img/main_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.62)), url(../img/main_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: aliceblue; }
  #about_header h1 {
    font-size: 4em; }

#first {
  text-align: right; }

#benny img {
  margin: 0 auto;
  width: 80%;
  max-width: 100px;
  margin-bottom: 25px; }

#offerings .card {
  border-radius: 0; }
#offerings img {
  max-width: 75px;
  margin-bottom: 25px; }

#we_are .col-md-9 {
  max-height: 350px;
  overflow-y: scroll; }

#flow .row {
  margin-bottom: 35px; }
#flow .item .card {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  cursor: pointer; }
  #flow .item .card.last::after {
    opacity: 0; }
  #flow .item .card::after {
    content: url(../img/after.png);
    position: absolute;
    bottom: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  #flow .item .card .pill {
    background: #004b6a;
    text-align: center;
    border-radius: 250px;
    padding: 6px 0px;
    color: aliceblue;
    margin-top: 15px; }
  #flow .item .card .credits {
    position: absolute;
    bottom: -40px;
    -webkit-transform: translateY(-50%) translateX(100%);
            transform: translateY(-50%) translateX(100%);
    right: 0; }
    #flow .item .card .credits p {
      margin-bottom: 0;
      font-weight: 700 !important; }

#contact_header {
  height: 40vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.62))), url(../img/main_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.62)), url(../img/main_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: aliceblue; }
  #contact_header h1 {
    font-size: 4em; }

#contact_form .form-control {
  border-radius: 25px; }
  #contact_form .form-control:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid red; }
#contact_form ::-webkit-input-placeholder {
  font-size: .8em; }
#contact_form :-ms-input-placeholder {
  font-size: .8em; }
#contact_form ::-ms-input-placeholder {
  font-size: .8em; }
#contact_form ::placeholder {
  font-size: .8em; }

#sent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  z-index: 2565;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
  opacity: 0;
  visibility: hidden; }
  #sent.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible; }
  #sent .inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.71);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #sent .inner img {
      max-width: 85px;
      margin-bottom: 20px; }

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100vh;
  z-index: 11;
  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; }
  .loader img {
    max-width: 350px; }

html {
  scroll-behavior: smooth; }

::-webkit-scrollbar {
  width: 0px;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */ }

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
  background: #FF0000; }

#word {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/word_bg.jpg);
  background-position: center;
  background-size: cover;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  z-index: 69000; }
  #word.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    z-index: 25000; }
  #word .word_container {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    background: rgba(255, 255, 255, 0.62);
    margin: 50px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px); }
    #word .word_container .container,
    #word .word_container .row,
    #word .word_container #center {
      height: 100%; }
    #word .word_container #center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }

nav {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  z-index: 2560; }
  nav.white {
    background: white;
    height: 60px; }
    nav.white a {
      color: #4C4C4C !important; }
    nav.white img {
      height: 50px !important;
      margin-top: 5px; }
    nav.white ul {
      margin-top: 10px !important; }
  nav .container {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    nav .container img {
      height: 90px;
      -webkit-transition: all .5s linear;
      transition: all .5s linear; }
    nav .container ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-left: 0;
      list-style: none; }
      nav .container ul a {
        color: aliceblue;
        padding: .5em 1em;
        font-weight: 400; }
        nav .container ul a:hover {
          text-decoration: none; }

#home_header {
  height: 70vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.62))), url(../img/main_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.62)), url(../img/main_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: aliceblue; }
  #home_header h1 {
    font-size: 5em; }

#enrol {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.62))), url(../img/main_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.62)), url(../img/main_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: aliceblue; }
  #enrol h1 {
    font-weight: 700;
    margin-bottom: 25px; }

footer {
  background: #272727;
  color: aliceblue;
  padding-top: 8px;
  padding-bottom: 8px; }

#auth {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  z-index: 2561;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  visibility: hidden; }
  #auth.active {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
    visibility: visible; }
  #auth .item {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.71);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding-top: 50px;
    position: relative; }
    #auth .item .card {
      border: none;
      background: transparent; }
    #auth .item .form-control {
      border-radius: 50px;
      background: transparent; }
      #auth .item .form-control:focus {
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        border: 1px solid red; }
    #auth .item ::-webkit-input-placeholder {
      font-size: .8em; }
    #auth .item :-ms-input-placeholder {
      font-size: .8em; }
    #auth .item ::-ms-input-placeholder {
      font-size: .8em; }
    #auth .item ::placeholder {
      font-size: .8em; }
    #auth .item #auth_closer {
      width: 32px;
      height: 32px;
      position: absolute;
      bottom: 50px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      cursor: pointer; }

#requirements ol {
  list-style: upper-latin; }
  #requirements ol li {
    margin-bottom: 1.5em; }
#requirements strong {
  text-decoration: underline;
  font-weight: 700 !important; }

#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  z-index: 2563;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  visibility: hidden; }
  #mobile-nav.active {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
    visibility: visible; }
  #mobile-nav .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
    padding-top: 35px; }
    #mobile-nav .bg ul {
      list-style: none;
      padding-left: 20px; }
      #mobile-nav .bg ul li a {
        display: block;
        padding: 10px;
        color: #212529;
        font-weight: bold; }
        #mobile-nav .bg ul li a:hover, #mobile-nav .bg ul li a:active {
          text-decoration: none; }
  #mobile-nav #nav_closer {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    cursor: pointer; }

@media only screen and (max-width: 768px) {
  .credits {
    display: none; }

  nav ul {
    display: none !important; }
  nav.white img {
    height: 30px !important;
    margin-top: 5px; }
  nav.white #menu-btn {
    width: 30px;
    height: 30px;
    margin-top: 10px !important; }

  #menu-btn {
    width: 30px;
    height: 30px;
    margin-top: 30px; } }
@media only screen and (min-width: 769px) {
  #menu-btn {
    display: none; } }
