.navbar {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  background-color: #2b64c5;
}

.navbar-home {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  top: -50px;
  transition: all 0.5s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 20px 0;
}
.navbar-top h3 {
  color: white;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
}
.navbar-top .kau-title {
  color: #d2d2d2;
}

.navbar-hr {
  border-top: 1px solid #2E4E9A;
  border-bottom: 1px solid #5b82df;
  margin: 0;
}

.navbar-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar-logo {
  height: 65px;
  margin-right: 10px;
}

.shadow {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-links {
  padding: 15px 0 15px 0;
  font-weight: 500;
  display: flex;
  justify-content: space-evenly;
  text-transform: uppercase;
  align-items: center;
}
.navbar-links a, .navbar-links a:link, .navbar-links a:visited, .navbar-links a:hover {
  color: white;
}

.navbar-menu-mobile, .ghost-hamburger, .ghost-navbar-mobile {
  display: none;
}

@media only screen and (max-width: 996px) {
  .navbar-top h3 {
    font-size: 18px;
  }

  .navbar-links a, .navbar-links a:link, .navbar-links a:visited, .navbar-links a:hover {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .ghost-hamburger {
    width: 40px;
    display: block;
    margin-left: 10px;
  }

  .ghost-navbar-mobile {
    display: block;
    height: 60px;
  }

  #hamburger {
    margin-right: 10px;
  }

  .navbar-menu-mobile {
    display: flex;
    z-index: 2;
    padding: 15px 0 15px 0;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: #2b64c5;
  }

  .navbar-top, .navbar-hr {
    display: none;
  }

  .navbar-links {
    text-shadow: none;
    position: absolute;
    background-color: #2b64c5;
    margin-top: -100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 1;
    height: 100vh;
    transition: margin-top 0.5s ease-out;
    padding: 0;
  }
  .navbar-links a, .navbar-links a:link, .navbar-links a:visited, .navbar-links a:hover {
    margin-bottom: 3vh;
    font-size: 3vh;
  }

  .navbar-mobile-logo {
    height: 30px;
  }
}
.wrapper {
  background: url("../images/equations_transparent.png");
  background-size: cover;
  background-attachment: fixed;
}

.ext-wrapper {
  padding: 30px 0;
}

.int-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 100px;
  padding: 50px;
  box-shadow: 5px 5px 10px #c8c8c8;
}

@media only screen and (max-width: 996px) {
  .int-wrapper {
    padding: 30px;
    margin: 0 70px;
  }
}
@media only screen and (max-width: 768px) {
  .wrapper {
    background-attachment: scroll;
    background-size: 250%;
    background-position: center;
  }

  #inner-wrapper {
    padding-top: 64px;
  }

  .ext-wrapper {
    padding: 0;
  }

  .int-wrapper {
    margin: 0;
    box-shadow: none;
  }

  .no-padding {
    padding-top: 0 !important;
  }
}
a:link {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
  color: inherit;
}

.link {
  cursor: pointer;
  position: relative;
  display: inline;
  white-space: normal;
  color: var(--color-text);
}

.link::before,
.link::after {
  position: absolute;
  width: 94%;
  height: 0.5px;
  background: currentColor;
  top: 100%;
  left: 3.5%;
  pointer-events: none;
}

.link::before {
  content: "";
  /* show by default */
}

.link--elara:hover {
  text-decoration: none;
}

.link--elara::before {
  transform-origin: 50% 100%;
  transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}

.link--elara:hover::before {
  transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.link--elara span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link--elara:hover span {
  transform: translate3d(0, -2px, 0);
}

.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: white;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: white;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.footer {
  background-color: #2b64c5;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-media {
  display: flex;
  align-items: center;
}
.social-media p {
  margin-right: 10px;
}
.social-media a {
  margin: 0 10px;
}

.icon {
  display: inline-block;
  height: 25px;
  width: 25px;
  background-size: cover;
  background-position: center;
  transition: all 0.2s ease-out;
}

.fb {
  background-image: url("../images/fb_w.png");
}

.fb:hover {
  background-image: url("../images/fb.png");
}

.tg {
  background-image: url("../images/tg_w.png");
}

.tg:hover {
  background-image: url("../images/tg.png");
}

.yt {
  background-image: url("../images/yt_w.png");
}

.yt:hover {
  background-image: url("../images/yt.png");
}

.ig {
  background-image: url("../images/ig_w.png");
}

.ig:hover {
  background-image: url("../images/ig.png");
}

@media only screen and (max-width: 768px) {
  .footer {
    flex-direction: column-reverse;
  }

  .social-media {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .social-media p {
    display: none;
  }
}
@media only screen and (max-width: 374px) {
  .footer span {
    font-size: 14px;
  }
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #707070;
}

a, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a, a:link, a:hover, a:visited {
  color: #2b64c5;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 25px;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

ul {
  padding: 0;
  margin: 0;
}

ol {
  padding: 0;
  margin: 0 0 0 20px;
}

li {
  margin-top: 4px;
  line-height: 22px;
}

.arrow-link {
  list-style: none;
  position: relative;
  padding: 0 0 0 20px;
}
.arrow-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 5px;
  width: 5px;
  border: 1px solid #2b64c5;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.tab {
  display: inline-block;
  width: 40px;
}

.semi-bold {
  font-weight: 500;
}

.centered {
  text-align: center;
}

.collapse {
  margin-left: 5px;
  height: 7px;
  width: 7px;
  border: 1px solid #2b64c5;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
  display: inline-block;
}

@media only screen and (max-width: 996px) {
  h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 28px;
  }
}

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