@charset "UTF-8";
@media (max-width: 1200px) {
  .navbar-inner.fixed-top,
  .navbar-home.fixed-top {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .navbar-inner .navbar-nav .nav-link,
  .navbar-home .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.7);
  }
}
@media (min-width: 1200px) {
  .navbar.navbar-home .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgba(50, 50, 50, 0.7);
  }
  .navbar.navbar-home .navbar-nav .nav-link:hover,
  .navbar.navbar-home .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.9);
  }
}
.navbar-nav {
  font-size: 1.2rem;
}

.navbar-nav .badge {
  text-shadow: none;
}

.navbar .navbar-toggler {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.4);
}

.dropdown-toggle:after {
  vertical-align: 0.2em;
}

.navbar.bg-white {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.navbar.bg-white .navbar-nav .nav-link,
.navbar.navbar-inner .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.9);
  text-shadow: none;
}

.navbar.bg-white .navbar-nav .nav-link:hover,
.navbar.navbar-inner .navbar-nav .nav-link:hover,
.navbar.bg-white .navbar-nav .nav-link:focus,
.navbar.navbar-inner .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #00aeda;
}

.bd-toc {
  position: -webkit-sticky;
  position: sticky;
  top: 4rem;
  height: calc(100vh - 4rem);
  overflow-y: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.05rem;
}

.toc-entry {
  margin-bottom: 0.03rem;
  list-style: none;
}

li.toc-entry::before {
  content: "›"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #00aeda;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.chat-container {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.chat-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  min-height: 380px;
  max-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #FFFFFF;
}

.chat-bubble {
  display: flex;
  max-width: 78%;
  animation: bubbleIn 0.25s ease-out;
}
.chat-bubble--user {
  align-self: flex-end;
}
.chat-bubble--assistant {
  align-self: flex-start;
}
.chat-bubble__content {
  padding: 0.55rem 0.9rem;
  border-radius: 1.125rem;
  line-height: 1.5;
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.chat-bubble__content p:last-child {
  margin-bottom: 0;
}
.chat-bubble__content pre {
  margin: 0.4rem 0;
  padding: 0.5rem 0.65rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.82rem;
}
.chat-bubble__content code {
  font-size: 0.82rem;
}
.chat-bubble__content pre code {
  background: none;
  padding: 0;
}
.chat-bubble__content a {
  text-decoration: underline;
}
.chat-bubble--user .chat-bubble__content {
  background: #00aeda;
  color: #FFFFFF;
  border-bottom-right-radius: 0.3rem;
}
.chat-bubble--user .chat-bubble__content code {
  color: #FFFFFF;
}
.chat-bubble--user .chat-bubble__content a {
  color: #FFFFFF;
}
.chat-bubble--user + .chat-bubble--user {
  margin-top: -0.1rem;
}
.chat-bubble--user + .chat-bubble--user .chat-bubble__content {
  border-top-right-radius: 0.3rem;
}
.chat-bubble--assistant .chat-bubble__content {
  background: #e9eaeb;
  color: #333;
  border-bottom-left-radius: 0.3rem;
}
.chat-bubble--assistant + .chat-bubble--assistant {
  margin-top: -0.1rem;
}
.chat-bubble--assistant + .chat-bubble--assistant .chat-bubble__content {
  border-top-left-radius: 0.3rem;
}
.chat-bubble--typing .chat-bubble__content {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  min-height: 2.25rem;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9e9e9e;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.16s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.35;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.chat-input {
  border-top: 1px solid #ebebeb;
  padding: 0.6rem 0.75rem;
  background: #f9f9f9;
}
.chat-input .form-control {
  border: 1px solid #dcdcdc;
  border-radius: 1.5rem;
  border-right: none;
  padding: 0.6rem 1.15rem;
  font-size: 0.95rem;
  background: #FFFFFF;
}
.chat-input .form-control:focus {
  box-shadow: none;
  border-color: #00aeda;
}
.chat-input .input-group-append .btn {
  border-radius: 0 1.5rem 1.5rem 0;
  padding: 0.6rem 2rem;
  border: 1px solid #dcdcdc;
  border-left: none;
  display: flex;
  align-items: center;
}
.chat-input .input-group-append .btn:focus {
  box-shadow: none;
}
.chat-input .input-group-append .btn .fa-paper-plane {
  font-size: 0.9rem;
}

html,
body {
  font-family: "Source Sans Pro", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
}

a {
  color: #00aeda;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #00aeda;
  opacity: 0.9;
  text-decoration: underline;
}

h3, .h3 {
  font-size: 1.4rem;
}

h4, .h4 {
  font-size: 1.25rem;
}

a.inline-anchor {
  display: block;
  position: relative;
  top: -70px;
  visibility: hidden;
}

.btn,
.btn-lg,
.btn-sm,
.form-control,
.form-control-lg,
.form-control-sm {
  font-size: 1rem;
}

.form-control-lg,
.btn-lg {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.btn-link.btn-lg {
  font-size: 1.25rem;
}

.display-1 {
  font-size: 4.5rem;
}

.display-2 {
  font-size: 4rem;
}

.display-3 {
  font-size: 3.5rem;
}

.display-4 {
  font-size: 3rem;
}

.font-weight-bold {
  font-weight: 400;
}

.carousel-indicators li {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.75rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.table th,
.table td {
  padding: 0;
  border-top: none;
}

.table th {
  padding-bottom: 0.75rem;
}

.table thead th {
  border-bottom: 1px solid #eceeef;
}

.carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 40px;
  width: 100%;
}

.carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.25);
}

.carousel-indicators .active {
  background-color: rgba(0, 0, 0, 0.5);
}

.paragliding-blue {
  color: #00aeda;
}

/** homepage hero */
.right-hero, .left-hero {
  min-height: 100vh;
}

.hero-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#mouse {
  position: absolute;
  width: 20px;
  height: 35px;
  bottom: 50px;
  right: 10px;
}

#mouse #wheel {
  animation: wheelAnimation 2s ease-out infinite;
}

@keyframes wheelAnimation {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(-22px);
  }
  100% {
    opacity: 0;
    transform: translateY(-22px);
  }
}
#mouse .mouse {
  fill: rgba(255, 255, 255, 0.96);
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

.instructor {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/about-us/about-us-RgP8vJa.jpg") bottom center;
  background-size: cover;
}

.btn-info {
  color: #FFFFFF;
  background-color: #00aeda;
  border-color: #00aeda;
}

.btn-info:hover {
  color: #FFFFFF;
  background-color: #00aeda;
  border-color: #00aeda;
  opacity: 0.9;
}

.btn-info span {
  top: -3px !important;
  position: relative;
}

.page-copy p {
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}

.page-copy h2 {
  font-size: 1.6rem;
  margin-top: 1.8rem;
  margin-bottom: 1.3rem;
}

.orange {
  color: #e7711b;
}

.photo img {
  border-radius: 50%;
}

.review p {
  color: #929292;
}

.video {
  position: relative;
  padding: 20px;
  background: #efefef;
  border-radius: 5px;
}

.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.fluid-width-video-wrapper iframe {
  width: 100%;
  height: 388px;
  margin-bottom: -6px;
}

/*# sourceMappingURL=app.output.css.map */
