@font-face {
  font-family: Silka Webfont;
  src: url('../fonts/silka-bold-webfont.woff2') format("woff2"), url('../fonts/silka-bold-webfont.eot') format("embedded-opentype"), url('../fonts/silka-bold-webfont.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Silka Webfont;
  src: url('../fonts/silka-medium-webfont.woff2') format("woff2"), url('../fonts/silka-medium-webfont.eot') format("embedded-opentype"), url('../fonts/silka-medium-webfont.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Silka Webfont;
  src: url('../fonts/silka-regular-webfont.woff2') format("woff2"), url('../fonts/silka-regular-webfont.eot') format("embedded-opentype"), url('../fonts/silka-regular-webfont.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #5b2c83;
  --pink: #ea5986;
  --white: white;
  --black: black;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

label {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.pagewrapper {
  font-family: Silka Webfont, sans-serif;
}

.hero {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#000000a3, #0000 18%), url('../images/western-campus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 20px;
  display: flex;
}

.hero.sub {
  min-height: auto;
}

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

.heading {
  text-transform: uppercase;
  max-width: 45ch;
  margin-bottom: 40px;
}

.grad {
  -webkit-text-fill-color: transparent;
  background-color: #fff;
  background-image: linear-gradient(95deg, #5b2c83, #5b2c83 38%, #ea5986);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.button {
  background-image: linear-gradient(96deg, var(--purple), var(--pink));
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
}

.button:hover {
  opacity: .68;
}

.button.reverse {
  border: 2px solid var(--purple);
  color: var(--purple);
  background-color: #fff;
  background-image: none;
  padding: 12px 15px;
  font-size: 14px;
}

.button.reverse:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.button.reverse.w--current {
  border: 2px solid var(--purple);
  color: var(--purple);
  background-color: #fff;
  background-image: none;
}

.div-block {
  flex: 1;
}

.contact-modal {
  opacity: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #5b2c83db;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.form {
  text-align: left;
  background-color: #401a61;
  width: 100%;
  max-width: 600px;
  margin-top: 54px;
  margin-bottom: 54px;
  padding: 35px 45px 45px;
  position: relative;
  box-shadow: 0 2px 15px #00000069;
}

.field {
  border: 1px #000;
}

.field.ta {
  height: 100px;
}

.checkbox-field {
  margin-bottom: 20px;
}

.close {
  background-color: var(--pink);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 20px -25px auto auto;
  box-shadow: 0 5px 5px #00000061;
}

.close:hover {
  background-color: #a53659;
}

.success-message {
  background-color: #ddd0;
}

.fs-cc-prefs2_option {
  border-bottom: 1px solid #c0c0c04d;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs2_close {
  background-color: var(--pink);
  color: #fff;
  cursor: pointer;
  padding: 12px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: 0 0 auto auto;
  box-shadow: -1px 1px 4px #3333331a;
}

.fs-cc-prefs2_overlay {
  z-index: -1;
  background-color: #010440e6;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_label {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs2_form-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fs-cc-banner2_component {
  z-index: 999;
  color: #000;
  background-color: #fff;
  width: 450px;
  padding: 30px;
  display: none;
  position: fixed;
  inset: auto 0% 0% auto;
}

.fs-cc-prefs2_checkbox-label {
  display: none;
}

.fs-cc-manager2_button {
  color: var(--purple);
  cursor: pointer;
  background-color: #fff;
  flex-direction: column;
  width: 48px;
  padding: 8px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager2_button:hover {
  color: #4353ff;
}

.fs-cc-manager2_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.fs-cc-banner2_text {
  font-size: 15px;
}

.fs-cc-prefs2_title {
  color: #010440;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-banner2_text-link {
  border-bottom: 2px solid var(--purple);
  color: var(--purple);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs2_button {
  border: 1px solid var(--pink);
  background-color: var(--pink);
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-prefs2_button.fs-cc-button-alt {
  border-color: var(--purple);
  color: var(--purple);
  background-color: #fff;
  margin-bottom: 12px;
}

.fs-cc-banner2_container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs2_content {
  color: #000;
  background-color: #fff;
  height: 100%;
  padding: 40px 32px;
}

.fs-cc-prefs2_checkbox {
  z-index: 1;
  border-width: 2px;
  border-color: var(--purple);
  cursor: pointer;
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_checkbox.w--redirected-checked {
  background-color: #0540f2;
  background-size: auto;
  border-color: #0540f2;
}

.fs-cc-prefs2_form {
  color: #fff;
  background-color: #333;
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs2_submit {
  background-color: var(--purple);
  text-align: center;
  margin-top: 12px;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-prefs2_component {
  z-index: 997;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs2_space-small {
  margin-bottom: 12px;
}

.fs-cc-preferences2_close-icon {
  color: #fff;
  width: 24px;
  height: 24px;
}

.fs-cc-banner2_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.fs-cc-banner2_button {
  background-color: var(--pink);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  flex: 1;
  min-width: 120px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 20px;
  font-weight: 700;
}

.fs-cc-banner2_button.fs-cc-button-alt {
  color: #fff9;
  background-color: #02087366;
}

.fs-cc-prefs2_buttons-wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 16px;
  display: flex;
}

.fs-cc-prefs2_checkbox-field {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media screen and (max-width: 991px) {
  .div-block-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .flex-block {
    flex-flow: column;
  }

  .close {
    right: 10px;
  }

  .fs-cc-prefs2_title {
    font-size: 20px;
  }

  .fs-cc-banner2_text-link {
    margin-right: 8px;
  }

  .fs-cc-banner2_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner2_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner2_button {
    margin-left: 0;
    margin-right: 8px;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 28px;
    line-height: 30px;
  }

  .flex-block {
    align-items: stretch;
  }

  .form {
    margin-top: 0;
    margin-bottom: -8px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .fs-cc-prefs2_close {
    padding: 8px;
  }

  .fs-cc-prefs2_label {
    font-size: 14px;
  }

  .fs-cc-banner2_component {
    width: 100%;
  }

  .fs-cc-prefs2_title {
    font-size: 18px;
  }

  .fs-cc-prefs2_button.fs-cc-button-alt {
    margin-bottom: 8px;
  }

  .fs-cc-prefs2_content {
    padding: 24px;
  }

  .fs-cc-prefs2_submit {
    margin-top: 8px;
  }

  .fs-cc-prefs2_component {
    padding: 24px;
  }
}


@font-face {
  font-family: 'Silka Webfont';
  src: url('../fonts/silka-bold-webfont.woff2') format('woff2'), url('../fonts/silka-bold-webfont.eot') format('embedded-opentype'), url('../fonts/silka-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silka Webfont';
  src: url('../fonts/silka-medium-webfont.woff2') format('woff2'), url('../fonts/silka-medium-webfont.eot') format('embedded-opentype'), url('../fonts/silka-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silka Webfont';
  src: url('../fonts/silka-regular-webfont.woff2') format('woff2'), url('../fonts/silka-regular-webfont.eot') format('embedded-opentype'), url('../fonts/silka-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}