@font-face {
  font-family: Circularstd;
  src: url('../fonts/CircularStd-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Circularstd;
  src: url('../fonts/CircularStd-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Circularstd book;
  src: url('../fonts/CircularStd-Book.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --black: black;
  --midnight-blue: #253181;
  --slate-grey: #5e727d;
  --pink: #e05ba2;
  --white: white;
  --dark-turquoise: #37def5;
  --gold: #face55;
  --dim-grey: #425372b5;
  --gainsboro: #e2e4e8;
  --_apps---typography--heading-font: Circularstd, sans-serif;
  --_apps---typography--body-font: Circularstd, sans-serif;
  --_apps---typography--button-font: Circularstd, sans-serif;
  --_apps---sizes--radius: 10px;
  --_apps---colors--background: var(--white);
  --_apps---colors--foreground: #333;
  --_apps---colors--card: var(--white);
  --_apps---colors--card-foreground: #060606;
  --_apps---colors--popover: #f2f2f2;
  --_apps---colors--popover-foreground: #060606;
  --_apps---colors--primary: var(--midnight-blue);
  --_apps---colors--primary-foreground: #f6f8ff;
  --_apps---colors--secondary: #e7f4ff;
  --_apps---colors--secondary-foreground: #0b0d12;
  --_apps---colors--muted: #f8f8f8;
  --_apps---colors--muted-foreground: #7d797a;
  --_apps---colors--accent: #e4e4e4;
  --_apps---colors--accent-foreground: #0d0d0d;
  --_apps---colors--destructive: #d74843;
  --_apps---colors--border: var(--gold);
  --_apps---colors--input: #fdd159;
  --_apps---colors--ring: #2a3770;
  --_apps---charts--chart-1: var(--midnight-blue);
  --_apps---charts--chart-2: #44538c;
  --_apps---charts--chart-3: #191f78;
  --_apps---charts--chart-4: #121959;
  --_apps---charts--chart-5: #10155a;
  --_apps---sidebar--sidebar: #f8f8f8;
  --_apps---sidebar--sidebar-foreground: #060606;
  --_apps---sidebar--sidebar-primary: var(--midnight-blue);
  --_apps---sidebar--sidebar-primary-foreground: #f6f8ff;
  --_apps---sidebar--sidebar-accent: #e4e4e4;
  --_apps---sidebar--sidebar-accent-foreground: #0d0d0d;
  --_apps---sidebar--sidebar-border: var(--gold);
  --_apps---sidebar--sidebar-ring: #2a3770;
  --_apps---colors--background-dark: #030303;
  --_apps---colors--foreground-dark: #f8f8f8;
  --_apps---colors--card-dark: #141414;
  --_apps---colors--card-foreground-dark: #f8f8f8;
  --_apps---colors--popover-dark: #141414;
  --_apps---colors--popover-foreground-dark: #f8f8f8;
  --_apps---colors--primary-dark: #697fd7;
  --_apps---colors--primary-foreground-dark: #0a0d16;
  --_apps---colors--secondary-dark: #0c1234;
  --_apps---colors--secondary-foreground-dark: #f6f8ff;
  --_apps---colors--muted-dark: #010101;
  --_apps---colors--muted-foreground-dark: #868686;
  --_apps---colors--accent-dark: #292929;
  --_apps---colors--accent-foreground-dark: #f8f8f8;
  --_apps---colors--destructive-dark: #e5554f;
  --_apps---colors--border-dark: #face551a;
  --_apps---colors--input-dark: #ffffff26;
  --_apps---colors--ring-dark: #8195d7;
  --_apps---charts--chart-1-dark: #697fd7;
  --_apps---charts--chart-2-dark: #9eb1f1;
  --_apps---charts--chart-3-dark: #4b60bd;
  --_apps---charts--chart-4-dark: #8ca1e8;
  --_apps---charts--chart-5-dark: #42549e;
  --_apps---sidebar--sidebar-dark: #070707;
  --_apps---sidebar--sidebar-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-primary-dark: #697fd7;
  --_apps---sidebar--sidebar-primary-foreground-dark: #0a0d16;
  --_apps---sidebar--sidebar-accent-dark: #292929;
  --_apps---sidebar--sidebar-accent-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-border-dark: #ffffff1a;
  --_apps---sidebar--sidebar-ring-dark: #8195d7;
}

.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: #333;
  font-family: Circularstd, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circularstd, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Circularstd, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  position: static;
}

h3 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Circularstd, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 46px;
}

a {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

.flex-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-container.horizontal {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 26px;
  display: flex;
}

.flex-container.horizontal.reverse {
  flex-flow: wrap;
}

.nav-link {
  color: var(--slate-grey);
  padding-left: 16px;
  padding-right: 16px;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--midnight-blue);
}

.nav-link.w--current {
  color: var(--pink);
  font-family: Circularstd book, sans-serif;
}

.nav-link.dark-blue {
  color: var(--white);
  white-space: nowrap;
  margin-right: 4px;
  padding-left: 4px;
  padding-right: 4px;
  font-family: Circularstd, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.hero-graphic-right {
  z-index: -1;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.primary-cta {
  background-color: #fff;
  background-image: linear-gradient(180deg, var(--midnight-blue), var(--pink));
  color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  padding: 20px 26px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 3px 3px #00000012;
}

.hero-section {
  background-image: linear-gradient(51deg, #f1c6dd7d, #ffffff12), url('../images/Campaign-Image_tiny.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 127px 3%;
}

.hero-grid-wrapper {
  grid-column-gap: 34px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 3.75fr 1fr;
  margin-top: 94px;
}

.button {
  background-color: var(--dark-turquoise);
  border-radius: 100px;
  margin-top: 40px;
  padding: 18px 32px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  transition: all .3s;
}

.button:hover {
  background-color: #30cde3;
}

.button.dark-blue {
  background-color: var(--midnight-blue);
}

.button.dark-blue:hover {
  background-color: #132134;
}

.button._0-top-margin {
  margin-top: 0;
}

.about-section {
  border-bottom-width: 1px;
  border-bottom-color: var(--gold);
  background-image: linear-gradient(#f7e1fab8, #fff 36%);
  padding: 50px 3%;
}

.about-section.hide {
  display: none;
}

.service-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 55px;
  margin-bottom: 75px;
}

.grid-block {
  background-color: #f9fafb;
  border: 1.4px solid #0000;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.grid-block:hover {
  border-color: var(--gold);
}

.profile-details {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-icon {
  width: 55px;
  margin-right: 20px;
  padding: 4px;
}

.faq-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
}

.paragraph-basic {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.paragraph-basic._40-bottom-padding {
  margin-bottom: 18px;
}

.content-section {
  padding: 120px 3% 200px;
}

.features-grid-wrapper {
  grid-column-gap: 33px;
  grid-row-gap: 27px;
  align-self: stretch;
}

.feature-image-1 {
  width: 100%;
  max-width: 300px;
  display: block;
}

.h2 {
  color: var(--midnight-blue);
  margin-bottom: 14px;
}

.h2.white {
  color: #fff;
}

.h2.h2-centre.pink {
  color: var(--pink);
}

.h2.h2-centre.hide {
  display: none;
}

.standard-paragraph {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: Circularstd book, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.standard-paragraph.center {
  color: var(--midnight-blue);
  text-align: center;
  max-width: 900px;
  font-size: 22px;
  line-height: 32px;
  display: block;
}

.standard-paragraph.center.white {
  color: var(--white);
}

.standard-paragraph._40-bottom-margin {
  margin-bottom: 40px;
}

.feature-text-block {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 60px;
}

.small-blocks {
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.feature-icon {
  background-color: #faf8de;
  border-radius: 10px;
  width: 49px;
  margin-right: 16px;
  padding: 12px;
}

.feature-text {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.feature-text-block-2 {
  padding: 25px 0 25px 60px;
}

.feature-section {
  border-bottom: 1px solid var(--gainsboro);
  padding: 80px 3% 200px;
  position: relative;
}

.gradient-div {
  background-image: linear-gradient(#f7f7f7, #f6fcff 0% 0%, #f6fcff00);
  height: 130px;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.halftone-pattern {
  z-index: -1;
  position: absolute;
  inset: 50% auto 0% -60px;
}

.grid-wrapper-2 {
  grid-column-gap: 17px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: stretch;
  margin-top: 31px;
}

.feature-grid-block {
  padding: 0 24px 10px;
}

.feature-header {
  color: var(--midnight-blue);
  margin-bottom: 12px;
  font-family: Circularstd, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}

.request-section {
  background-color: var(--gold);
  background-image: url('../images/Hero-Shape-CTA.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider {
  background-color: #ddd0;
  width: 100%;
  max-width: 750px;
  height: 100%;
  margin-top: 90px;
}

.slide {
  background-color: #fff;
  border: 1px #4689d733;
  border-radius: 10px;
  margin-right: 50px;
  padding: 0;
}

.mask {
  background-color: #0000;
  overflow: visible;
  box-shadow: 0 20px 50px #4689d733;
}

.quotes-icon {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -40px 0 auto;
}

.profile-block {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.profile-image {
  border-radius: 100px;
  margin-right: 25px;
}

.slide-nav {
  display: none;
}

.slide-wrap {
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  padding: 90px 60px 50px;
  display: flex;
}

.arrow-right {
  background-color: #fff;
  border-radius: 100px;
  width: 55px;
  height: 55px;
  inset: 0% -25px 0% auto;
  box-shadow: 0 5px 10px #1b2d451a;
}

.icon {
  color: var(--midnight-blue);
  font-size: 15px;
}

.arrow-left {
  background-color: #fff;
  border-radius: 100px;
  width: 55px;
  height: 55px;
  inset: 0% auto 0% -25px;
  box-shadow: 0 5px 10px #1b2d451a;
}

.halftone-pattern-2 {
  position: absolute;
  inset: auto 0% -70px 4%;
}

.blog-section {
  padding: 140px 3%;
}

.news-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: auto;
  margin-top: 56px;
}

.articles-block {
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.article-thumbnail {
  border-radius: 10px;
  margin-bottom: 24px;
}

.article-profile-block {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.author-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
}

.date {
  color: var(--dim-grey);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
}

.article-profile-image {
  border-radius: 100px;
  margin-right: 12px;
}

.bottom-section {
  padding: 140px 3%;
  position: relative;
}

.h3 {
  flex: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
}

.grid-faq {
  grid-column-gap: 60px;
  grid-row-gap: 25px;
  flex-flow: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  align-self: auto;
  justify-items: stretch;
  width: 95%;
  margin-top: 38px;
  display: flex;
}

.banner {
  background-color: #fff;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-height: 285px;
  margin: 160px auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 32px 64px #0e567c29;
}

.cta-header {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.banner-text-wrapper {
  z-index: 20;
  position: relative;
}

.banner-button {
  background-color: var(--dark-turquoise);
  border-radius: 500px;
  padding: 20px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.footer-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .4fr .4fr 1fr;
}

.footer-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-title {
  color: var(--midnight-blue);
  margin-bottom: 36px;
  font-family: Circularstd, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.input-field {
  border: 0 #000;
  border-radius: 6px;
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 18px;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
  box-shadow: 0 33px 84px #0e567c29;
}

.input-field::placeholder {
  color: #33333361;
  font-style: italic;
}

.submit-button {
  background-color: var(--pink);
  border-radius: 40px;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Circularstd, sans-serif;
  font-size: 22px;
  font-weight: 500;
  transition: all .4s;
  display: inline-block;
}

.submit-button:hover {
  background-color: var(--midnight-blue);
  color: var(--gold);
  transform: translate(0, 2px);
  box-shadow: 0 12px 18px #0003;
}

.arrow {
  width: 15px;
}

.nav-content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 12px;
  display: flex;
}

.dropdown-toggle {
  color: var(--slate-grey);
  padding-left: 16px;
  padding-right: 16px;
  transition: all .2s;
}

.dropdown-toggle:hover {
  color: var(--midnight-blue);
}

.nav-blog-item {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
  display: flex;
}

.dropdown-pointer {
  position: relative;
}

.nav-link-details {
  color: #28333899;
  white-space: normal;
  font-size: 14px;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 44px;
}

.navigation-mob {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-dropdown {
  min-width: 140px;
}

.navigation-dropdown.w--open {
  background-color: #0000;
  min-width: 320px;
  max-height: 100vh;
  padding-top: 10px;
  left: -100px;
}

.navigation-left {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.dropdown-block {
  z-index: 25;
  color: #283338;
  background-color: #fafafa;
  border-top: 1px solid #00000014;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.dropdown-title {
  margin-bottom: 2px;
  font-size: 15px;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.navigation-wrap {
  z-index: 100;
  background-color: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 6px 40px #4940531f;
}

.dropdown-wrapper {
  background-color: #fff;
  border-radius: 10px;
  min-width: 140px;
  overflow: hidden;
  box-shadow: 4px -19px 35px #20355a14, 11px 11px 30px -10px #20355a26;
}

.dropdown-wrapper.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.nav-menu-2 {
  color: #283338;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  position: static;
}

.nav-logo {
  width: 54px;
}

.icon-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.dropdown-icon {
  width: 100%;
}

.pointer {
  z-index: 20;
  background-color: #fff;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -3% 4% auto 0%;
  transform: rotate(45deg);
}

.nav-link-blog {
  color: var(--gold);
  white-space: normal;
  font-size: 14px;
}

.navigation {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  padding: 16px 3%;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.dropdown {
  color: #5e727d;
  font-family: Circularstd book, sans-serif;
  font-size: 16px;
}

.dropdown-link {
  z-index: 25;
  color: #283338;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.dropdown-link:hover {
  color: var(--midnight-blue);
  background-color: #fafafacc;
}

.hero-paragraph {
  color: var(--midnight-blue);
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 36px;
}

.blog-title {
  color: var(--midnight-blue);
  margin-bottom: 8px;
  font-family: Circularstd, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  display: inline-block;
}

.blog-category {
  color: var(--gold);
  margin-bottom: 12px;
  font-family: Circularstd, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.hero-image {
  width: 100%;
}

.icon-image {
  width: 60px;
  margin-bottom: 20px;
}

.footer {
  padding: 20px 3% 140px;
  position: relative;
}

.button-hero {
  background-color: var(--dark-turquoise);
  border-radius: 100px;
  margin-top: 40px;
  padding: 18px 32px;
  font-family: Circularstd, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  transition: all .3s;
}

.button-hero:hover {
  background-color: #30cde3;
}

.hero-h1 {
  color: var(--midnight-blue);
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  font-size: 60px;
}

.flowbase-close-card {
  opacity: .43;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 10px 13px 10px 10px;
  transition: all .2s ease-out;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.flowbase-close-card:hover {
  opacity: 1;
}

.flowbase-logo {
  position: absolute;
  inset: 0;
}

.flowbase-title {
  color: #5b3acc;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.flowbase-author {
  color: #9b9eb8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.flowbase-left-wrap {
  display: flex;
}

.flowbase-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 40px;
  margin-right: 25px;
  display: flex;
}

.notice-wrapper {
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  padding: 15px 20px;
  display: flex;
  position: relative;
}

.button-card {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #8c54ff;
  background-image: linear-gradient(159deg, #8c54ff, #7b41f1);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 50px;
  margin-right: 15px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all .4s ease-out;
  display: flex;
  box-shadow: inset -1px -1px 3px #201b3d99, inset 1px 1px 3px #eee6ff70, 1px 1px 2px #5b3acc;
}

.button-card:hover {
  box-shadow: inset 1px 1px 3px #201b3d38, inset -1px -1px 3px #eee6ff00, 1px 1px 2px #5b3acc;
}

.highlight-text {
  color: #5b3acc;
}

.notice-delete {
  z-index: 99999;
  background-color: #fff;
  border-radius: 200px;
  min-width: 520px;
  margin-bottom: 30px;
  margin-left: 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 8px 1px 20px #807c8e26;
}

.flowbase-underline {
  text-decoration: underline;
}

.flowbase-icon-wrap {
  background-color: #5b3acc;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.flowbase-banner {
  height: 64px;
}

.global-component-banner {
  height: 50px;
  display: flex;
}

.global-fixed {
  z-index: 9999;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  background-color: #fff;
  background-image: url('../images/CTA-Chalk-Dot.svg'), linear-gradient(166deg, #fff0 50%, #fff6), linear-gradient(#f3f0ff, #f0f6ff);
  background-position: 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: auto, auto, auto;
  border: 1px solid #212a780a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 16px 3%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.global-canner-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  display: flex;
}

.div-block-771 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 510px;
  display: flex;
}

.global-fixed-banner-text {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.global-fixed-logo {
  width: 44px;
}

.global-banner-title {
  color: #11023b;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(167deg, #11023b, #11023bdb 60%, #311572);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.global-paragraph {
  color: #262556;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.global-button-primary {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  white-space: nowrap;
  background-color: #6f5cff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s ease-out, background-color .3s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 12px #9b8eff4d, inset 0 1px #9b8eff99, 0 -1px 1px #5b29ffcc, 0 0 0 1px #6e5bff;
}

.global-button-primary:hover {
  background-color: #7f6fff;
}

.global-button-primary:active {
  background-color: #705cfa;
}

.global-component-footer {
  border-top: 1px solid #122b6914;
  display: flex;
}

.bold-text {
  color: var(--midnight-blue);
  font-family: Circularstd, sans-serif;
  font-weight: 700;
}

.flex-block {
  max-width: 1180px;
}

.faculty-section {
  border-bottom-width: 1px;
  border-bottom-color: var(--gold);
  background-image: linear-gradient(#f6fceab8, #fff 16%);
  padding: 50px 3%;
}

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

.form-block {
  width: 60%;
  margin-top: 32px;
}

.cme-section {
  border-bottom-width: 1px;
  border-bottom-color: var(--gold);
  background-image: linear-gradient(#e3f8fa, #fff 13%);
  padding: 50px 3%;
}

.paragraph-link {
  color: var(--pink);
}

.footer-text {
  color: var(--dim-grey);
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Circularstd book, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.footer-text._40-bottom-padding {
  margin-bottom: 18px;
}

.program-logo {
  width: 60%;
  margin-bottom: 20px;
}

.program-icon {
  background-color: #e1fbfd;
  border: 1px solid #a6f9fdb0;
  border-radius: 10px;
  width: 60px;
  margin-bottom: 20px;
  margin-right: 16px;
  padding: 12px;
}

@media screen and (max-width: 991px) {
  .hero-grid-wrapper {
    grid-column-gap: 25px;
    grid-template-columns: 1fr;
  }

  .hero-text-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-image-block {
    margin-top: 80px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
    max-width: 630px;
  }

  .grid-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-section {
    padding-bottom: 140px;
  }

  .features-grid-wrapper {
    grid-column-gap: 40px;
  }

  .feature-image-block {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .h2 {
    font-size: 42px;
  }

  .h2.white, .h2.h2-centre {
    text-align: center;
  }

  .small-blocks {
    margin-bottom: 12px;
  }

  .feature-icon {
    width: 45px;
  }

  .feature-text-block-2 {
    padding-left: 0;
  }

  .grid-wrapper-2 {
    grid-column-gap: 14px;
    grid-row-gap: 17px;
  }

  .feature-grid-block {
    padding: 12px;
  }

  .arrow-right {
    right: -10px;
  }

  .arrow-left {
    left: -10px;
  }

  .grid-faq {
    grid-column-gap: 27px;
    margin-left: 25px;
  }

  .banner {
    background-position: 0 0;
    background-size: cover;
    padding-left: 42px;
    padding-right: 42px;
  }

  .banner-button {
    white-space: nowrap;
  }

  .mobile-nav-link {
    width: 100%;
  }

  .navigation-container-mob {
    justify-content: space-between;
  }

  .navigation-mob {
    border-bottom: 1px solid #4455671c;
    flex-direction: row;
    justify-content: center;
    height: 85px;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .menu-mob {
    color: #000;
    background-color: #fafafa;
    border-radius: 100px;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: var(--dark-turquoise);
  }

  .navigation-left {
    display: flex;
  }

  .nav-menu-2 {
    display: none;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 15px;
    box-shadow: 42px 42px 55px #20355a17;
  }

  .nav-logo {
    width: 40px;
  }

  .navigation {
    display: none;
  }

  .hero-paragraph {
    text-align: center;
    max-width: 500px;
  }

  .hero-image {
    max-width: 560px;
  }

  .hero-h1 {
    text-align: center;
    max-width: 500px;
    font-size: 55px;
  }

  .notice-delete {
    min-width: auto;
    max-width: 610px;
    margin-right: 15px;
    display: block;
  }

  .program-icon {
    width: 45px;
  }
}

@media screen and (max-width: 767px) {
  .flex-container.horizontal {
    flex-wrap: wrap;
  }

  .hero-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-text-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    display: flex;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
  }

  .features-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .feature-image-block {
    margin-bottom: 55px;
  }

  .feature-text-block-2 {
    padding-left: 0;
  }

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

  .slide-wrap {
    padding: 90px 50px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .articles-block, .h3 {
    margin-bottom: 35px;
  }

  .grid-faq {
    grid-column-gap: 41px;
    margin-left: 0;
  }

  .banner {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-column-gap: 45px;
    grid-template-columns: .5fr 1fr;
  }

  .hero-paragraph {
    text-align: center;
  }

  .button-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-h1 {
    text-align: center;
  }

  .notice-wrapper {
    display: none;
  }

  .notice-delete {
    min-width: auto;
    margin-left: 15px;
  }
}

@media screen and (max-width: 479px) {
  .flex-container {
    justify-content: center;
    align-items: center;
    padding-left: 6px;
    padding-right: 6px;
  }

  .flex-container.horizontal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .hero-section {
    background-position: 0 0, 50% 0;
    background-size: auto, contain;
    background-attachment: scroll, scroll;
    padding-top: 186px;
    padding-bottom: 38px;
  }

  .hero-grid-wrapper {
    margin-top: 26px;
  }

  .about-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-block {
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 24px;
  }

  .grid-icon {
    margin-bottom: 15px;
  }

  .paragraph-basic {
    font-size: 15px;
    line-height: 22px;
  }

  .features-grid-wrapper {
    grid-row-gap: 9px;
  }

  .h2 {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }

  .standard-paragraph {
    font-size: 15px;
    line-height: 22px;
  }

  .standard-paragraph.center {
    font-size: 17px;
    line-height: 24px;
  }

  .feature-text-block {
    padding-right: 0;
  }

  .small-blocks {
    margin-bottom: 2px;
  }

  .feature-text {
    font-size: 16px;
    line-height: 22px;
  }

  .grid-wrapper-2 {
    grid-column-gap: 11px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    display: block;
  }

  .feature-grid-block {
    text-align: center;
  }

  .request-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .profile-block {
    flex-wrap: wrap;
  }

  .profile-image {
    margin-bottom: 15px;
  }

  .blog-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-faq {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .banner {
    padding: 55px 28px;
  }

  .banner-button {
    margin-top: 35px;
  }

  .footer-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .footer-logo {
    width: 130px;
  }

  .submit-button {
    font-size: 17px;
  }

  .mobile-nav-link.request {
    background-image: linear-gradient(180deg, var(--midnight-blue), var(--pink));
    color: #fff;
    font-size: 16px;
  }

  .nav-logo {
    width: 170px;
  }

  .hero-paragraph {
    font-size: 17px;
    line-height: 24px;
  }

  .hero-h1 {
    margin-top: 9px;
    font-size: 36px;
  }

  .flowbase-close-card {
    top: 0;
    bottom: auto;
    right: 0;
  }

  .flowbase-title-wrap {
    width: 100%;
    padding-left: 4px;
  }

  .notice-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }

  .notice-delete {
    min-width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }

  .flowbase-icon-wrap {
    min-width: 60px;
  }

  .flowbase-banner {
    display: none;
  }

  .flowbase-footer {
    background-image: none;
    background-position: 50% 0;
    background-repeat: repeat-x;
    background-size: cover;
  }

  .global-component-banner {
    display: none;
  }

  .faculty-section {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .form {
    flex-flow: column;
    display: flex;
  }

  .form-block {
    width: 100%;
  }

  .cme-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-text {
    font-size: 15px;
    line-height: 22px;
  }

  .program-logo {
    width: 100%;
    margin-top: 16px;
  }
}

#w-node-_96611e63-f868-bab7-b4e8-a00ebf768a65-fb6a9864 {
  place-self: center;
}

#w-node-ffa0bef3-2894-8c96-0f45-47c1e63e4ea1-fb6a9864, #w-node-ffa0bef3-2894-8c96-0f45-47c1e63e4ec8-fb6a9864, #w-node-ffa0bef3-2894-8c96-0f45-47c1e63e4ebf-fb6a9864 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64f6ad50-6023-d66b-dfb3-f7e1a81bb0b5-fb6a9864 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_64f6ad50-6023-d66b-dfb3-f7e1a81bb0cd-fb6a9864, #w-node-_64f6ad50-6023-d66b-dfb3-f7e1a81bb0d3-fb6a9864 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_64f6ad50-6023-d66b-dfb3-f7e1a81bb0dc-fb6a9864 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#Questions-Comments.w-node-_0d8a14ee-f468-cbac-4215-35f5e30f0b36-fb6a9864 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0afafeca-521d-d0d1-dd15-6e16f8a78528-fb6a9864 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Circularstd';
  src: url('../fonts/CircularStd-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Circularstd book';
  src: url('../fonts/CircularStd-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}