.has-text-primary {
  color: #0B1040 !important;
}

.columns.is-mobile {
  display: flex;
}
.columns .column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .columns {
    display: flex;
  }
  .columns .column.is-three-quarters {
    flex: none;
    width: 75%;
  }
  .columns .column.is-two-thirds {
    flex: none;
    width: 66.6666%;
  }
  .columns .column.is-half {
    flex: none;
    width: 50%;
  }
  .columns .column.is-one-third {
    flex: none;
    width: 33.333%;
  }
  .columns .column.is-one-quarter {
    flex: none;
    width: 25%;
  }
  .columns .column.is-full {
    flex: none;
    width: 100%;
  }
}

body table,
body p {
  font-family: "Lato", sans-serif;
  font-weight: 500;
}
body strong {
  color: inherit;
}

.title {
  color: rgb(42, 64, 116);
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
}

header {
  background-color: #0B1040;
}
header .logo {
  width: 70%;
  padding: 1rem;
}
header .logo img {
  display: block;
  width: 100%;
}
header #menu {
  width: 30%;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}
header #menu a {
  width: max-content;
  margin: 0;
}
header #menu .parent {
  position: relative;
  overflow: visible;
}
header #menu .parent:hover {
  background-color: #802217;
}
header #menu .parent:hover .children {
  opacity: 1;
  height: fit-content;
}
header #menu .parent:hover .children li:hover {
  background-color: #802217;
}
header #menu .parent:hover .droparrow svg {
  transform: rotate(-90deg);
}
header #menu .parent .is-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: space-between;
}
header #menu .parent svg {
  transform: rotate(90deg);
  width: auto;
  height: 1rem;
  margin-left: 0.5rem;
  fill: #f9f9f9;
  cursor: pointer;
  transition: 200ms;
  -webkit-transition: 200ms;
}
header #menu .parent .children {
  position: absolute;
  top: 5.5em;
  z-index: 1;
  font-size: inherit;
  transition: 200ms;
  -moz-transition: 200ms;
  opacity: 0;
  height: 0;
  width: max-content;
  bottom: -100%;
  background-color: #0B1040;
  z-index: 120;
  padding: 0;
  list-style: none;
  margin: 0 !important;
}
header #menu .parent .children li {
  padding: 0;
}
header #menu .parent .children a {
  display: inline-block;
  color: #fff;
  margin: 0;
}
header #menu .parent.open {
  background-color: #005ca2;
}
header #menu .parent.open .children {
  height: fit-content;
  opacity: 1;
}
header #menu .parent.open .droparrow svg {
  transform: rotate(-90deg);
}
header #menu .toggleOpen {
  cursor: pointer;
  padding: 1rem;
}
header #menu .toggleOpen span {
  transition: 200ms;
  display: block;
  height: 0.25rem;
  width: 2rem;
  margin: 0.25rem auto;
  background-color: #f9f9f9;
}
header #menu.menuOpen .toggleOpen {
  margin: 0.5rem 0rem;
}
header #menu.menuOpen .toggleOpen span {
  transform: rotate(45deg);
  margin: 0;
}
header #menu.menuOpen .toggleOpen span:last-child {
  transform: rotate(-45deg);
  margin: -0.25rem 0;
}
header #menu.menuOpen .container {
  height: 100%;
}
header #menu .container {
  height: 0;
  width: 100%;
  transition: 200ms;
}
header #menu .container a {
  text-decoration: none;
  color: #f9f9f9;
  width: max-content;
  display: block;
  padding: 2rem;
}
header #menu .container .children {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
header #menu .container .children a {
  display: block;
  padding: 0.9rem 3rem;
}
header #menu .container .children li:first-child a {
  padding-top: 1.5rem;
}
header #menu .container .children li:last-child a {
  padding-bottom: 1.5rem;
}
header #menu .container .children li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  margin-bottom: -1px;
}
@media (max-width: 1408px) {
  header #menu {
    overflow: hidden;
    padding: 0;
    width: 100%;
  }
  header #menu .parent .is-flex {
    padding: 0 1rem;
  }
  header #menu .parent.open .children {
    padding: 0.25rem;
  }
  header #menu .container {
    padding: 1rem 0;
  }
}
@media (min-width: 1408px) {
  header .logo {
    width: 14rem;
  }
  header #menu {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  header #menu .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header #menu .container a {
    width: max-content;
  }
  header #menu.menuOpen .container {
    height: 3rem;
  }
  header #menu .parent .children {
    position: absolute;
  }
}
@media (min-width: 1408px) {
  header {
    display: flex;
    align-items: center;
  }
  header .toggleOpen {
    display: none;
  }
  header #menu .container {
    text-align: center;
    height: auto;
  }
}
@media (min-width: 1600px) {
  header .logo {
    width: 20rem;
  }
}

.banner-image {
  position: relative;
  margin-bottom: 4rem;
}
.banner-image img {
  display: block;
  width: 100%;
}

.home .content .title {
  font-size: 3rem;
  text-align: center;
}
.home .content p {
  line-height: 2;
}
.home .content h1 {
  color: #1A56A5;
}

.content .red {
  color: #802217 !important;
}
.content .title {
  font-size: 3rem;
  text-align: center;
}
.content h1 {
  color: #1A56A5;
  margin-bottom: 0;
}

.register {
  text-align: center;
  background-color: rgb(249, 177, 60);
  padding: 2rem 0;
  line-height: 1;
  font-size: 1.6rem;
}
.register h1 {
  margin: 0;
}

footer {
  background-color: #0B1040;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  color: #f9f9f9;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
footer a {
  color: #f9f9f9;
}
footer a svg {
  fill: #f9f9f9;
  width: 30px;
  height: 30px;
}
footer.text-right p {
  text-align: right;
}

.has-background-link {
  background-color: #0B1040 !important;
}

.card-content h1 a {
  color: #1A56A5 !important;
}

.card {
  height: 100%;
}

.slider-text {
  position: absolute;
  right: 0;
  bottom: 0;
}

#slider {
  overflow: hidden;
}
#slider .card-content {
  max-width: 50%;
}
@media screen and (max-width: 1023px) {
  #slider .card-content {
    display: none;
  }
}
#slider .prev,
#slider .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
#slider .prev.next,
#slider .next.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#slider .slider-navigation-next {
  margin-right: 10px;
}
#slider .slider-navigation-previous {
  margin-left: 10px;
}
#slider .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
}
#slider .item-slide img {
  max-width: 1200px;
}
#slider .caption-container {
  color: white;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

#carousel-card {
  box-shadow: none;
}

.droparrow {
  padding-right: 10px;
}

header #menu .parent .children {
  opacity: 1;
  height: auto;
}

header #menu .parent.open .children {
  display: block;
  opacity: 1;
  height: auto;
}

@media (max-width: 1408px) {
  header #menu {
    overflow: hidden;
  }
  header #menu .parent .children {
    position: static;
    width: 100%;
  }
  iframe {
    display: unset !important;
    max-width: unset !important;
    width: 100vw;
    height: 50vh;
  }
  #video-sibling-image {
    display: none;
  }
}

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