@keyframes fnAutoFill {
  to {
    font-family: inherit;
    font-size: inherit;
  }
}
:root {
  --main-banner-padding: 3em 2em;
  --main-banner-padding-right: 50%;
  --main-banner-bg-size: 100%;
  --main-banner-margin-top: -3.4em;
}
.main-banner {
  margin-top: var(--main-banner-margin-top);
}
.main-banner .banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--main-banner-bg-size);
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  padding: var(--main-banner-padding);
  overflow: hidden;
}
.main-banner .shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(45deg, #030a10, #0d4f6321);
}
.main-banner .info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5em;
  padding-right: var(--main-banner-padding-right);
  z-index: 5;
}
.main-banner .actions {
  margin-top: 1em;
  z-index: 10;
}
.main-banner .subtitle {
  font-size: 0.7em;
  color: #7c8f9b;
  z-index: 2;
}
.main-banner .title {
  font-weight: 500;
  font-size: 1.6em;
  z-index: 3;
}
.main-banner .education-link {
  font-weight: 500;
  font-size: 0.8em;
  z-index: 2;
  --site-link-color: #8c7b6c;
  --site-link-hover-color: #ffad63;
  --site-link-hover-style: none;
}
.main-banner .text {
  z-index: 3;
  color: #87bccd;
  font-size: 0.9em;
}
.main-banner .text b {
  padding: 0 0.3em;
  font-size: 1.2em;
  color: #e2e3e3;
}
.main-banner .shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(45deg, #030a10, #0d4f6321);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-banner {
    --main-banner-padding-right: 29%;
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .main-banner .banner {
    background-size: cover;
  }
  .main-banner .subtitle {
    font-size: 0.9em;
  }
  .main-banner .info {
    padding: 0;
  }
}
