:root {
  --blue: #302287;
  --blue-grey: #2f3c47;
  --brand: #ec3328;
  --soft-grey: whitesmoke;
  --text-grey: #555;
  --page-padding-desktop: 200px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #2f3c47;
  cursor: default;
  font-family: Futura Font, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 44px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
}

a {
  color: inherit;
  text-decoration: underline;
}

.page-padding {
  padding-left: 80px;
  padding-right: 80px;
}

.page-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 250px 1fr 310px;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-content._3col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 220px 1fr 280px;
  grid-auto-columns: 1fr;
  display: grid;
}

.header {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 220px 1fr 280px;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-top: 30px;
  padding-bottom: 60px;
  display: grid;
}

.nav {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 80px;
  display: flex;
  overflow: visible;
}

.nav-item-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.nav-item_title {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
}

.nav-item-list {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  font-weight: 500;
  display: flex;
}

.nav-item-full {
  z-index: 9;
  opacity: 0;
  margin-top: -30px;
  margin-left: -30px;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: none;
  position: absolute;
}

.nav-item-full.show {
  opacity: 1;
  display: block;
}

.nav-item-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #979797;
  justify-content: flex-start;
  align-items: center;
  margin-left: -12px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
}

.nav-item-list_link {
  color: var(--blue-grey);
  vertical-align: baseline;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition-property: all;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.165, .84, .44, 1);
  display: inline;
}

.nav-item-list_link:hover {
  color: var(--brand);
}

.small-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.grid-3col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 220px 1fr 280px;
}

.section-main {
  padding-bottom: 80px;
}

.content-center {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  border-left: 1px solid #9797974d;
  border-right: 1px solid #9797974d;
  flex-flow: column;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.search-wrapper {
  height: 50px;
  padding-left: 40px;
  padding-right: 40px;
}

.header-links {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.header_link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--brand);
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.header_link-text {
  border-top: 1px solid #ec332800;
  border-bottom: 1px solid #ec332800;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.header_link-text:hover {
  border-bottom-color: #ec3328;
}

.section-header {
  z-index: 9;
  position: relative;
}

.search {
  display: flex;
}

.search_field {
  background-color: var(--soft-grey);
  color: var(--text-grey);
  border: 1px #000;
  min-width: 280px;
  height: 50px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
}

.search_field::placeholder {
  color: #55555580;
}

.search_field.white-search {
  background-color: #fff;
}

.home-intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--text-grey);
  flex-flow: column;
  font-size: 18px;
  font-weight: 300;
  display: flex;
}

.heading {
  color: var(--blue-grey);
}

.home-calendar {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.mini-calendar-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mini-calendar-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.section-heading {
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 900;
}

.card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  flex-flow: column;
  padding: 20px;
  font-weight: 300;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 14px 20px #c9c9c900;
}

.card:hover {
  box-shadow: 0 14px 20px #c9c9c95e;
}

.card.grey {
  background-color: var(--soft-grey);
  justify-content: space-between;
  box-shadow: 0 5px 20px #5c5c5c00;
}

.card.grey:hover {
  box-shadow: 0 5px 20px #92929266;
}

.card.empty {
  background-color: var(--soft-grey);
  cursor: not-allowed;
  box-shadow: 0 5px 20px #5c5c5c00;
}

.card.empty:hover {
  box-shadow: none;
}

.card_text-big {
  font-size: 16px;
  font-weight: 500;
}

.grid-2col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 220px 1fr;
}

.page-bg {
  background-color: var(--soft-grey);
  width: 100vw;
  height: 100%;
  min-height: 100svh;
  position: relative;
}

.bg {
  z-index: -1;
  pointer-events: none;
  height: 100%;
  min-height: 100svh;
  display: block;
  position: fixed;
  inset: 0%;
  overflow: clip;
}

.card-vert-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.card-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-link_link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--blue-grey);
  background-color: #ec33281a;
  border: 1px solid #ec33283d;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: all .2s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.card-link_link:hover {
  background-color: #ec33283d;
}

.calendar-wrapper, .calendar-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.card-hor-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.small-item-list, .small-item-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.small-item-date {
  color: var(--text-grey);
  text-transform: uppercase;
  font-weight: 300;
}

.small-item-heading {
  flex-flow: column;
  display: flex;
}

.card-vert-flex-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.card_text {
  font-size: 14px;
  font-weight: 400;
}

.nav-item-full-wrapper {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

.grid {
  grid-column-gap: 60px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto auto;
  grid-auto-flow: column;
  place-items: center start;
  font-weight: 500;
}

.nav-item-full-bgdark {
  z-index: 1;
  background-color: #0000004d;
  min-height: 160svh;
  position: fixed;
  inset: -20svh 0% 0%;
}

.nav-item-contact {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--blue-grey);
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

.nav-item-contact-title {
  font-size: 18px;
}

.nav-item-contact-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  font-weight: 500;
  display: flex;
}

.nav-item-contact-link {
  font-size: 16px;
  font-weight: 300;
}

.empty-card {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.content-2col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 280px;
}

.content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.grid-for-cards {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.topic-item-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.topic-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--text-grey);
  flex-flow: column;
  font-size: 18px;
  display: flex;
}

.topic_heading {
  color: var(--blue-grey);
}

.topic-breadcrumbs {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.topic-bc-text {
  color: #979797;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.login-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 94svh;
  padding-bottom: 80px;
  display: flex;
}

.section-login {
  z-index: 9;
  background-color: var(--soft-grey);
  position: relative;
}

.login-header {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 6svh;
  display: flex;
}

.login-email {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.login-text {
  color: #2f3c4780;
  text-align: center;
  max-width: 280px;
}

.login-field {
  color: var(--blue-grey);
  text-align: center;
  border: 1px #000;
  width: 100%;
  height: 45px;
  overflow: clip;
}

.login-form {
  width: 280px;
  padding-top: 10px;
}

.login-button {
  background-color: var(--brand);
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
}

.login-code {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._404-header {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 6svh;
  display: flex;
}

.section-404-heading {
  z-index: 9;
  position: relative;
}

._404-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-404-content {
  z-index: 9;
  background-color: var(--blue-grey);
  position: relative;
}

._404-heading {
  color: var(--brand);
  text-align: center;
  font-size: 188px;
  font-weight: 400;
  line-height: 1;
}

._404-text {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 300;
}

.page-404 {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100svh;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .page-padding {
    padding-left: 200px;
    padding-right: 200px;
  }

  .page-content {
    max-width: 1440px;
  }

  .card-link_link {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .card-hor-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .page-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    padding-bottom: 30px;
    display: flex;
  }

  .nav, .small-wrapper {
    display: none;
  }

  .content-center {
    border-left-style: none;
    border-right-style: none;
  }

  .search-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-2col {
    grid-template-columns: 1fr;
  }

  .grid-2col.bg-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .content-2col {
    grid-template-columns: 1fr;
  }

  .grid-for-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .content-center {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-intro {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    font-size: 14px;
  }

  .mini-calendar-grid {
    grid-template-columns: 1fr;
  }

  .card-hor-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .card {
    padding: 15px;
  }

  .grid-for-cards {
    grid-template-columns: 1fr;
  }

  .topic-breadcrumbs {
    overflow: auto;
  }

  ._404-heading {
    font-size: 90px;
  }
}

#w-node-_23c5f8c0-1aed-7eea-84fd-12e2739fb332-b2114240, #w-node-_23c5f8c0-1aed-7eea-84fd-12e2739fb332-1339fc25 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Futura Font';
  src: url('../fonts/futura-light-bt.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura Font';
  src: url('../fonts/Futura-Heavy-font.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura Font';
  src: url('../fonts/Futura-Book-font.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura Font';
  src: url('../fonts/futura-medium-bt.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}