/**
 * CSS output file
 * 
 * Combine all theme scss into a single CSS file
 */
/**
 * Variables
 * Contains global variables available to the theme.
 */
/**
 * Mixins
 * Contains global SCSS mixins
 */
.jumbotron {background: url(https://www.ivcc.edu/_test/sculpture.jpg); width: 100%;}

.button {
  color: #093ea7;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 4px 11px 3px;
  border: 1px solid;
  background: transparent;
}

.button:after {
  content: "";
  width: 21px;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: -2px;
  right: 13px;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.button:hover {
  background-color: transparent;
  color: #093ea7;
}

.button:hover:after {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

/**
 * Animations
 * Contains all keyframe animations in use on the site.
 */
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow,
.slick-dots button {
  border: 0;
  min-width: inherit;
  padding: 0;
}

.slick-arrow:before, .slick-arrow:after,
.slick-dots button:before,
.slick-dots button:after {
  content: none;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #FFFF00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
  border-radius: 0;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: none;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
 * Typography
 * Base typography for the theme
 */
h1 {
  color: #4d2177;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: -0.2em;
}

@media screen and (min-width: 700px) {
  h1 {
    font-size: 40px;
  }
}

@media screen and (min-width: 1100px) {
  h1 {
    font-size: 60px;
    line-height: 1.17;
    margin-top: 20px;
    margin-bottom: 0.5em;
  }
}

h2 {
  color: #4d2177;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0;
}

@media screen and (min-width: 700px) {
  h2 {
    margin-bottom: 0;
    font-size: 30px;
  }
}

@media screen and (min-width: 1100px) {
  h2 {
    font-size: 50px;
  }
}

h3, .faculty-list__text h2 {
  color: #4d2177;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: -0.3em;
}

@media screen and (min-width: 700px) {
  h3, .faculty-list__text h2 {
    font-size: 25px;
  }
}

@media screen and (min-width: 1100px) {
  h3, .faculty-list__text h2 {
    font-size: 35px;
    margin-bottom: -0.2em;
  }
}

h4, .program-courses h3, .program-courses .faculty-list__text h2, .faculty-list__text .program-courses h2 {
  font-family: "Barlow Condensed", sans-serif;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.21;
  margin: 0;
}

@media screen and (min-width: 700px) {
  h4, .program-courses h3, .program-courses .faculty-list__text h2, .faculty-list__text .program-courses h2 {
    font-size: 20px;
    margin-top: 35px;
  }
}

@media screen and (min-width: 1100px) {
  h4, .program-courses h3, .program-courses .faculty-list__text h2, .faculty-list__text .program-courses h2 {
    font-size: 25px;
    margin: 50px 0 1.4em;
  }
}

h5 {
  font-family: "Barlow Condensed", sans-serif;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.21;
  margin: 0;
}

@media screen and (min-width: 700px) {
  h5 {
    font-size: 18px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 1100px) {
  h5 {
    font-size: 20px;
    margin-top: 40px;
  }
}

h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.21;
  text-transform: uppercase;
  margin-bottom: -0.2em;
}

@media screen and (min-width: 700px) {
  h6 {
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  h6 {
    font-size: 16px;
    margin-bottom: 1.7em;
  }
}

p.intro-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (min-width: 700px) {
  p.intro-text {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  p.intro-text {
    font-size: 26px;
  }
}

p {
  margin: 1em 0 1.7em;
}

p:empty {
  display: none;
}

.outline-cta {
  color: #093ea7;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 4px 11px 3px;
  border: 1px solid;
  background: transparent;
}

.outline-cta:after {
  content: "";
  width: 21px;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: -2px;
  right: 13px;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.outline-cta:hover {
  background-color: transparent;
  color: #093ea7;
}

.outline-cta:hover:after {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.circle-cta {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  background: transparent;
  z-index: 10;
  margin-right: 20px;
  padding: 12px 27px 12px 0;
  display: inline-block;
}

@media screen and (min-width: 1100px) {
  .circle-cta {
    font-size: 16px;
    padding-right: 32px;
    padding: 12px 32px 12px 0;
    display: inline-block;
  }
}

.circle-cta:hover {
  background: transparent;
  color: #000000;
}

.circle-cta:hover:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #9ef7ff;
}

.circle-cta:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 100em;
  background: url(../assets/icons/cta-blue.svg) no-repeat;
  background-size: 100%;
  -webkit-transition: background-color 300ms 200ms, -webkit-transform 200ms;
  transition: background-color 300ms 200ms, -webkit-transform 200ms;
  -o-transition: transform 200ms, background-color 300ms 200ms;
  transition: transform 200ms, background-color 300ms 200ms;
  transition: transform 200ms, background-color 300ms 200ms, -webkit-transform 200ms;
  z-index: -1;
}

@media screen and (min-width: 1100px) {
  .circle-cta:before {
    width: 50px;
    height: 50px;
    margin-top: -26.5px;
    background-size: 100%;
  }
}

.circle-cta:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 0;
  width: 35px;
  height: 38px;
  background: url(../assets/icons/black.svg) no-repeat center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-size: 7px 5px;
  z-index: 1;
}

@media screen and (min-width: 1100px) {
  .circle-cta:after {
    width: 40px;
    height: 53px;
    margin-top: -26.5px;
    background-size: 11px 8px;
  }
}

main ul {
  list-style: none;
  padding-left: 35px;
}

@media screen and (min-width: 700px) {
  main ul {
    padding-left: 65px;
  }
}

@media screen and (min-width: 1100px) {
  main ul {
    padding-left: 75px;
  }
}

main ul li {
  margin: 0.5em 0;
  position: relative;
}

main ul li:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: -18px;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 100px;
}

@media screen and (min-width: 700px) {
  main ul li:before {
    width: 6px;
    height: 6px;
    top: 0.6em;
    left: -30px;
  }
}

ol {
  padding-left: 23px;
}

@media screen and (min-width: 700px) {
  ol {
    padding-left: 50px;
  }
}

@media screen and (min-width: 1100px) {
  ol {
    padding-left: 55px;
  }
}

span.blue {
  color: #000000;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

a {
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

a:hover {
  text-decoration: none;
}

main a {
  color: #000000;
  font-weight: 600;
  background: #e3e3e3;
}

main a:hover {
  color: #e3e3e3;
  background: #000000;
}

input,
button {
  font-family: "Rajdhani", sans-serif;
}

/**
 * Base theme styles
 * This file contains theme base styles.
 * 
 * For example:
 * - WYSIWYG styles and layouts
 * - Images and Videos
 * - Tables
 */
html {
  overflow-x: hidden;
}

main:focus {
  outline: 0;
}

.skip-link {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:active, .skip-link:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media screen and (min-width: 700px) {
  body {
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  body {
    font-size: 20px;
  }
}

body.js-fixed {
  overflow: hidden;
}

* > p:last-child,
* > ul:last-child,
* > ol:last-child {
  margin-bottom: 0;
}

a.skip-link {
  color: #000000;
}

a.skip-link.visually-hidden:focus {
  background-color: #FFFFFF;
  padding: 3px 10px;
  position: absolute !important;
  z-index: 10000;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figcaption {
  margin: 0.5em 0 0;
  font-style: italic;
}

.visuallyhidden {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.page-content {
  padding: 0 15px;
}

@media screen and (min-width: 700px) {
  .page-content {
    padding: 0 40px;
  }
}

@media screen and (min-width: 1100px) {
  .page-content {
    padding: 0 0 0 75px;
    max-width: 795px;
  }
}

@media screen and (min-width: 1100px) {
  .hero-image {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
  }
}

@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .hero-image {
    width: 1600px;
    margin-left: -800px;
  }
}

.hero-image img {
  width: 100%;
}

.page-wrapper {
  max-width: 1600px;
  margin: 0 auto 50px;
}

@media screen and (min-width: 1100px) {
  .page-wrapper {
    margin-bottom: 100px;
  }
}

/* WYSIWYG */
blockquote {
  color: #FFFFFF;
  text-align: center;
  margin: 25px -15px;
  padding: 35px 15px 45px;
  background: #4d2177;
}

@media screen and (min-width: 700px) {
  blockquote {
    margin: 30px -40px;
    padding: 45px 65px;
  }
}

@media screen and (min-width: 1100px) {
  blockquote {
    margin-left: -276px;
    max-width: 1600px;
    width: 100vw;
    padding: 55px 248px;
    margin-top: 70px;
  }
}

blockquote:before {
  content: "";
  display: block;
  width: 34.5px;
  height: 34.5px;
  margin: 0 auto;
  background: url(../assets/icons/quote.png) no-repeat center;
  background-size: 100%;
}

@media screen and (min-width: 700px) {
  blockquote:before {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1100px) {
  blockquote:before {
    width: 75px;
    height: 75px;
  }
}

blockquote p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 1.5em 0 1.3em;
}

@media screen and (min-width: 700px) {
  blockquote p {
    font-size: 30px;
    margin: 1em 0 1.3em;
  }
}

@media screen and (min-width: 1100px) {
  blockquote p {
    font-size: 40px;
    margin: 0.8em 0 1em;
  }
}

blockquote .attribution {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  blockquote .attribution {
    font-size: 16px;
  }
}

.cta-group {
  padding: 0;
  margin: 1.3em 0;
}

@media screen and (min-width: 700px) {
  .cta-group {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

.cta-group li {
  margin: 15px 0;
}

@media screen and (min-width: 700px) {
  .cta-group li {
    margin: 0;
  }
}

.cta-group li:before {
  content: none;
}

.img-with-caption {
  margin: 0 -15px 0 10px;
}

@media screen and (min-width: 700px) {
  .img-with-caption {
    float: right;
    width: 50%;
    margin: 0 -40px 40px 35px;
  }
}

@media screen and (min-width: 1100px) {
  .img-with-caption {
    width: 68%;
    margin: 0 calc((-100vw + 811px) + 200px) 40px 50px;
  }
}

@media screen and (min-width: 1201px) {
  .img-with-caption {
    margin-right: -270px;
  }
}

.img-with-caption figcaption {
  font-size: 15px;
  font-style: normal;
  color: #FFFFFF;
  margin: 0 35px 0 -25px;
  background: #093ea7;
  padding: 4px 10px 3px 11px;
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .img-with-caption figcaption {
    font-size: 20px;
    margin: 0 0px 0 65px;
    padding: 5px 10px 4px 23px;
  }
}

table {
  margin: 20px -15px 50px;
  border-top: 2px solid #000000;
  border-collapse: collapse;
}

@media screen and (min-width: 700px) {
  table {
    margin: 40px -40px 50px;
    border: 0;
  }
}

@media screen and (min-width: 1201px) {
  table {
    margin: 40px -75px 50px;
  }
}

tr {
  display: none;
}

@media screen and (min-width: 700px) {
  tr {
    display: table-row;
    border-bottom: 1px solid #e3e3e3;
  }
}

tr.small-only {
  display: table-row;
}

tr.small-only th,
tr.small-only td {
  padding-top: 15px;
}

tr.small-only.small-only + .small-only th,
tr.small-only.small-only + .small-only td {
  padding-top: 5px;
}

tr.small-only.last + tr.small-only td,
tr.small-only.last + tr.small-only th {
  padding-top: 15px;
}

tr.small-only.last {
  border-bottom: 1px solid #e3e3e3;
}

tr.small-only.last th,
tr.small-only.last td {
  padding-bottom: 15px;
}

@media screen and (min-width: 700px) {
  tr.small-only {
    display: none;
  }
}

@media screen and (min-width: 700px) {
  thead tr {
    border-bottom: 2px solid #000000;
  }
}

td, th {
  padding: 5px 15px;
  vertical-align: top;
}

@media screen and (min-width: 700px) {
  td {
    font-size: 18px;
    padding: 20px 40px;
    min-height: 75px;
  }
  td:first-child, td:last-child {
    padding: 20px 40px;
  }
}

@media screen and (min-width: 1100px) {
  td {
    font-size: 20px;
    padding: 25px 100px 25px 0;
  }
  td:first-child {
    padding: 25px 100px 25px 0;
  }
  td:last-child {
    padding-right: 0;
  }
}

th {
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}

@media screen and (min-width: 700px) {
  th {
    font-size: 18px;
    padding: 0 40px 10px;
  }
  th:last-child, th:first-child {
    padding: 0 40px 10px;
  }
}

@media screen and (min-width: 1100px) {
  th {
    font-size: 20px;
    padding: 0 100px 15px 0;
  }
  th:first-child {
    padding: 0 100px 15px 0;
  }
  th:last-child {
    padding-right: 0;
  }
}

@media screen and (min-width: 1100px) {
  .wide-layout .main {
    padding-left: 55px;
  }
  .wide-layout .page-content {
    padding-left: 0;
    max-width: 870px;
  }
  .wide-layout .main .breadcrumbs {
    margin-left: 20px;
  }
  .wide-layout h1 {
    padding-left: 0;
    margin-left: 0;
  }
}

.h1-wrap {
  padding-bottom: 15px;
  margin-right: -15px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (min-width: 700px) {
  .h1-wrap {
    margin-right: -40px;
    padding-right: 40px;
    padding-bottom: 20px;
    margin-bottom: 44px;
  }
}

@media screen and (min-width: 1100px) {
  .h1-wrap {
    padding-bottom: 30px;
    border-bottom: 0;
    margin-bottom: 40px;
  }
  .h1-wrap:after {
    content: "";
    width: 100vw;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e3e3e3;
  }
}

.h1-wrap h1 {
  margin: 0.67em 0 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.h1-wrap h1:after {
  content: none;
}

@media screen and (min-width: 1100px) {
  .h1-wrap h1 {
    margin-top: 80px;
  }
}

.open-sectionnav {
  overflow: hidden;
}

@media screen and (min-width: 1201px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}

@media screen and (min-width: 1201px) {
  .desktop-only {
    display: block;
  }
}

/**
 * @file
 * Print specific styliing
 */
@media print {
/*   .header,
  .footer {
    display: none;
  } */
}

button,
input[type="submit"] {
  color: #093ea7;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 4px 11px 3px;
  border: 1px solid ;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

#catalogdropdown_0_Button1 button,
input[type="submit"] {
	border: 1px solid !important;
}

button:after,
input[type="submit"]:after {
  content: "";
  width: 21px;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: -2px;
  right: 13px;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

button:hover,
input[type="submit"]:hover {
  background-color: transparent;
  color: #093ea7;
}

button:hover:after,
input[type="submit"]:hover:after {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

::-ms-clear {
  display: none;
}

label, legend {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  label, legend {
    font-size: 15px;
  }
}

input[type="text"],
input[type="search"] {
  width: 100%;
  max-width: 390px;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #000000;
  -webkit-appearance: none;
}

input[type="text"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder {
  color: #000000;
}

input[type="text"]::-moz-placeholder,
input[type="search"]::-moz-placeholder {
  color: #000000;
}

input[type="text"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder {
  color: #000000;
}

input[type="text"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder {
  color: #000000;
}

input[type="text"]::placeholder,
input[type="search"]::placeholder {
  color: #000000;
}

@media screen and (min-width: 700px) {
  input[type="text"],
  input[type="search"] {
    margin: 5px 0;
  }
}

@media screen and (min-width: 1100px) {
  input[type="text"],
  input[type="search"] {
    margin: 2px 0;
  }
}

input[type="checkbox"] {
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 22px 0 1px;
  opacity: 0;
}

@media screen and (min-width: 700px) {
  input[type="checkbox"] {
    margin: 0 22px 0 2px;
  }
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background-color: #f2f2f2;
}

input[type="checkbox"]:checked + label::before {
  background-color: black;
}

input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  margin-top: -0.95em;
  margin-left: 10px;
  height: 8px;
  width: 3px;
  border-right: 2px solid #9ef7ff;
  border-bottom: 2px solid #9ef7ff;
  -webkit-transform: rotate(50deg);
      -ms-transform: rotate(50deg);
          transform: rotate(50deg);
}

input[type="checkbox"]:focus + label {
  outline: 2px solid #093ea7;
}

input[type="radio"] {
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 22px 0 1px;
  border-radius: 100%;
  overflow: hidden;
  opacity: 0;
}

@media screen and (min-width: 700px) {
  input[type="radio"] {
    margin: 0 22px 0 2px;
  }
}

input[type="radio"] + label::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #f2f2f2;
  border-radius: 100em;
}

input[type="radio"]:checked + label::before {
  background-color: black;
}

input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  margin-top: -0.8em;
  margin-left: 6px;
  height: 8px;
  width: 8px;
  background-color: #9ef7ff;
  border-radius: 100%;
}

@media screen and (min-width: 700px) {
  input[type="radio"]:checked + label::after {
    margin-top: -0.85em;
  }
}

input[type="radio"]:focus + label {
  outline: 2px solid #093ea7;
}

select {
  max-width: 390px;
  margin: 6px 0 0;
  padding: 10px 0 14px;
  border: none;
  border-bottom: 2px solid #000000;
  font-family: "Rajdhani", sans-serif;
}

@media screen and (min-width: 700px) {
  select {
    margin: 8px 0 5px;
    padding: 5px 0 5px;
  }
}

@media screen and (min-width: 1100px) {
  select {
    margin: 8px 10px 17px 0;
    padding: 5px 5px 5px 0;
	font-size: 14px;
  }
}

fieldset {
  margin: 0 0 14px 0;
  padding: 0;
  border: none;
}

@media screen and (min-width: 700px) {
  fieldset {
    margin: 0 0 20px 0;
  }
}

fieldset legend {
  margin-bottom: 19px;
}

@media screen and (min-width: 700px) {
  fieldset legend {
    margin-bottom: 29px;
  }
}

fieldset label {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-transform: none;
  line-height: 1.2;
}

@media screen and (min-width: 700px) {
  fieldset label {
    margin-top: -2px;
    font-size: 18px;
  }
}

@media screen and (min-width: 700px) {
  .form {
    margin-bottom: 65px;
  }
}

.form h2 {
  margin-bottom: 19px;
}

@media screen and (min-width: 700px) {
  .form h2 {
    margin-bottom: 31px;
  }
}

@media screen and (min-width: 1100px) {
  .form h2 {
    margin-bottom: 19px;
  }
}

.form__field {
  margin-bottom: 31px;
}

.form__option {
  clear: both;
  margin-bottom: 25px;
  position: relative;
}

.header {
  background: #4d2177;
  width: 100%;
  height: 106px;
  position: relative;
  z-index: 100000;
  top: 0;
  -webkit-transition: top 300ms;
  -o-transition: top 300ms;
  transition: top 300ms;
}

.header .content-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

@media screen and (min-width: 700px) {
  .header .content-wrapper {
    padding: 10px 42px;
  }
}

@media screen and (min-width: 1201px) {
  .header .content-wrapper {
    padding: 6px 40px 0;
  }
}

.header__logo {
  width: 63px;
}

@media screen and (min-width: 700px) {
  .header__logo {
    width: 76px;
  }
}

@media screen and (min-width: 1201px) {
  .header__logo {
    width: 158px;
  }
}

.header__logo img {
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.header__logo a:hover img {
  opacity: 0.8;
}

.header-menu {
  position: relative;
  height: 70px ;
}

.header-menu__button {
  color: #9ef7ff;
  font-size: 12px;
  text-transform: uppercase;
  background: transparent url(/Institutions/Illinois-Valley-Community-College/images/menu.svg) no-repeat right center;
  background-size: 17px;
  border: 0;
  padding-right: 30px;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
  cursor: pointer;
}

.header-menu__button:hover {
  color: #9ef7ff;
  opacity: 0.8;
  background: transparent url(../assets/icons/menu.svg) no-repeat right center;
  background-size: 17px;
}

@media screen and (min-width: 700px) {
  .header-menu__button {
    font-size: 14px;
    background-size: 20px;
  }
  .header-menu__button:hover {
    color: #9ef7ff;
    opacity: 0.8;
    background: transparent url(../assets/icons/menu.svg) no-repeat right center;
    background-size: 20px;
  }
}

@media screen and (min-width: 1201px) {
  .header-menu__button {
    display: none;
  }
}

.header-menu__button:after {
  content: none;
}

.desktop--menu {
  display: none;
}

@media screen and (min-width: 1201px) {
  .desktop--menu {
    display: block;
  }
}

@media screen and (min-width: 1201px) {
  .mobile--menu {
    display: none;
  }
}

.menu-wrapper {
  position: fixed;
  width: 320px;
  top: 49px;
  right: 0;
  bottom: 0;
  z-index: 15;
  overflow-y: auto;
  right: 0;
  display: none;
  background: #4d2177;
}

@media screen and (min-width: 700px) {
  .menu-wrapper {
    top: 60px;
  }
}

@media screen and (min-width: 1201px) {
  .menu-wrapper {
    position: relative;
    top: 0;
    width: auto;
	height: inherit ;
    padding-top: 0;
    display: block !important;
    overflow-y: visible;
  }
}

input[type="text"].header-search-field {
  width: 100%;
  padding: 17px 15px 16px;
  border: 0;
  margin: 0;
}

input[type="text"].header-search-field::-webkit-input-placeholder {
  color: #000000;
  font-size: 14px;
}

input[type="text"].header-search-field:-moz-placeholder {
  color: #000000;
  font-size: 14px;
}

input[type="text"].header-search-field::-moz-placeholder {
  color: #000000;
  font-size: 14px;
}

input[type="text"].header-search-field:-ms-input-placeholder {
  color: #000000;
  font-size: 14px;
}

@media screen and (min-width: 1201px) {
  input[type="text"].header-search-field {
    visibility: hidden;
    padding: 13px 15px 12px;
    width: 333px;
    opacity: 0;
    -webkit-transform: translateX(373px);
        -ms-transform: translateX(373px);
            transform: translateX(373px);
    -webkit-transition: all 700ms;
    -o-transition: all 700ms;
    transition: all 700ms;
  }
}

.menu__search {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: all 700ms;
  -o-transition: all 700ms;
  transition: all 700ms;
}

@media screen and (min-width: 1201px) {
  .menu__search {
    width: 44px;
    height: 44px;
    bottom: 15px;
    right: -40px;
    top: auto;
  }
  .menu__search.expanded {
    width: 333px;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .menu__search.expanded input[type="submit"].menu-search__submit,
  .menu__search.expanded .header-search-field {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .menu__search.expanded .menu-search__button {
    display: none;
  }
}

.menu-search__button {
  display: none;
}

@media screen and (min-width: 1201px) {
  .menu-search__button {
    display: block;
    position: absolute;
    width: 27px;
    height: 27px;
    bottom: 12px;
    right: 40px;
    background: transparent url(../assets/icons/search-blue.svg);
    border: 0;
  }
  .menu-search__button:hover {
    background: transparent url(../assets/icons/search-blue.svg);
    opacity: 0.8;
  }
  .menu-search__button:after {
    content: none;
  }
}

input[type="submit"].menu-search__submit {
  color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: 0;
  padding: 0;
  background: url(../assets/icons/search.svg) no-repeat center;
  background-size: 11px;
}

@media screen and (min-width: 700px) {
  input[type="submit"].menu-search__submit {
    background-size: 17px;
  }
}

@media screen and (min-width: 1201px) {
  input[type="submit"].menu-search__submit {
    visibility: hidden;
    opacity: 0;
    width: 44px;
    height: 44px;
    right: 30px;
    background-size: 25px;
    -webkit-transition: opacity 300ms ease-out 100ms, -webkit-transform 300ms ease-out;
    transition: opacity 300ms ease-out 100ms, -webkit-transform 300ms ease-out;
    -o-transition: transform 300ms ease-out, opacity 300ms ease-out 100ms;
    transition: transform 300ms ease-out, opacity 300ms ease-out 100ms;
    transition: transform 300ms ease-out, opacity 300ms ease-out 100ms, -webkit-transform 300ms ease-out;
    -webkit-transform: translateX(373px);
        -ms-transform: translateX(373px);
            transform: translateX(373px);
  }
}

.menu__main {
  position: relative;
  padding-top: 50px;
}

@media screen and (min-width: 1201px) {
  .menu__main {
    padding-right: 25px;
    padding-top: 0px;
  }
}

.menu__main > ul > li > a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}

.menu__main > ul > li > a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.menu__main > ul > li {
  padding: 20px 50px 5px 50px;
  position: relative;
}

@media screen and (min-width: 1201px) {
  .menu__main > ul > li {
    display: inline-block;
    padding: 0 30px 20px;
    position: static;
  }
  .menu__main > ul > li:hover > a, .menu__main > ul > li.focus-in > a {
    color: #9ef7ff;
    opacity: 1;
    position: relative;
  }
  .menu__main > ul > li:hover > a:after, .menu__main > ul > li.focus-in > a:after {
    content: "";
    position: absolute;
    bottom: -25px;
    width: 100%;
    height: 7px;
    left: 0;
    background-color: #9ef7ff;
  }
  .menu__main > ul > li:hover > ul, .menu__main > ul > li.focus-in > ul {
    opacity: 1;
    z-index: 1000;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid #e3e3e3;
  }
}

.menu__main ul {
  margin: 0;
  padding: 0;
}

.menu__main > ul {
  padding-bottom: 25px;
  border-bottom: 1px solid #FFFFFF;
}

@media screen and (min-width: 1201px) {
  .menu__main > ul {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .menu__main > ul:hover > li > ul {
    opacity: 1;
    padding-top: 30px;
    padding-bottom: 30px;
    height: auto;
  }
}

.menu__main button {
  position: absolute;
  top: 12px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(https://www.ivcc.edu/_resources/assets/icons/plus%20copy.svg) no-repeat 15px 15px;
  border: 0;
}

@media screen and (min-width: 1201px) {
  .menu__main button {
    display: none;
  }
}

.menu__main button:hover {
  opacity: 0.8;
}

.menu__main button:after {
  content: none;
}

.menu__main button.expanded {
  background-image: none;
}

.menu__main button.expanded:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 12px;
  display: block;
  height: 2px;
  background: #9ef7ff;
  z-index: 100;
}

.menu__main ul ul {
  display: none;
  margin: 10px -50px -10px;
  background: #FFFFFF;
  padding: 5px 50px;
  list-style: none;
}

@media screen and (min-width: 1201px) {
  .menu__main ul ul {
    position: absolute;
    left: 35px;
    right: -10px;
    display: block;
    z-index: 100;
    margin-top: 20px;
    padding: 0px 45px;
    opacity: 0;
    z-index: -1;
    height: 0;
    overflow: hidden;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .menu__main ul ul.two-col {
    padding-right: calc(33.3333% + 45px);
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .menu__main ul ul.one-col {
    padding-right: calc(66.666% + 45px);
  }
  .menu__main ul ul.three-col {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

.menu__main ul ul li {
  margin: 10px 0;
}

@media screen and (min-width: 1201px) {
  .menu__main ul ul li {
    margin: 0 0 15px;
  }
}

.menu__main ul ul a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (min-width: 1201px) {
  .menu__main ul ul a {
    font-size: 16px;
  }
}

.menu__main ul ul a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.menu__ancillary {
  position: relative;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary {
    text-align: right;
    margin-bottom: 10px;
  }
}

.menu__ancillary > ul > li > a,
.menu__ancillary > ul > li > .button,
.menu__ancillary > ul > li > button {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
  position: static;
  background: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary > ul > li > a,
  .menu__ancillary > ul > li > .button,
  .menu__ancillary > ul > li > button {
    font-size: 14px;
  }
}

.menu__ancillary > ul > li > a:after,
.menu__ancillary > ul > li > .button:after,
.menu__ancillary > ul > li > button:after {
  content: none;
}

.menu__ancillary > ul > li > a:hover,
.menu__ancillary > ul > li > .button:hover,
.menu__ancillary > ul > li > button:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary > ul > li > button:hover,
  .menu__ancillary > ul > li > .button:hover {
    color: #9ef7ff;
    opacity: 1;
  }
}

.menu__ancillary > ul > li {
  padding: 20px 50px 5px 50px;
  position: relative;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary > ul > li {
    display: inline-block;
    padding: 0 18px 10px;
  }
  .menu__ancillary > ul > li:hover ul, .menu__ancillary > ul > li.focus-in ul {
    opacity: 1;
    z-index: 1000;
    height: auto;
    border: 1px solid #e3e3e3;
  }
  .menu__ancillary > ul > li:hover > a, .menu__ancillary > ul > li.focus-in > a {
    color: #9ef7ff;
    opacity: 1;
  }
  .menu__ancillary > ul > li:hover button:before,
  .menu__ancillary > ul > li:hover .button:before, .menu__ancillary > ul > li.focus-in button:before,
  .menu__ancillary > ul > li.focus-in .button:before {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}

.menu__ancillary ul {
  margin: 0;
  padding: 0;
}

.menu__ancillary button:before,
.menu__ancillary .button:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(/Institutions/Illinois-Valley-Community-College/images/brightblue.svg) no-repeat 15px 15px;
  border: 0;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary button:before,
  .menu__ancillary .button:before {
    background-position: 0;
    width: 15px;
    height: 15px;
    right: -3px;
    top: 4px;
    left: auto;
  }
}

.menu__ancillary button:before:after,
.menu__ancillary .button:before:after {
  content: none;
}

.menu__ancillary button:before.expanded,
.menu__ancillary .button:before.expanded {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu__ancillary button.expanded:before,
.menu__ancillary .button.expanded:before {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu__ancillary ul ul {
  display: none;
  margin: 10px -50px -10px;
  background: #FFFFFF;
  padding: 5px 50px;
  list-style: none;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary ul ul {
    position: absolute;
    display: block;
    padding: 0 20px;
    z-index: 1000;
    text-align: left;
    left: 0;
    width: 220px;
    margin-left: 18px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    z-index: -1;
  }
}

.menu__ancillary ul ul li {
  margin: 10px 0;
}

@media screen and (min-width: 1201px) {
  .menu__ancillary ul ul li {
    margin: 5px 0;
  }
}

.menu__ancillary ul ul a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

.menu__ancillary ul ul a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.menu__ancillary > ul > li:last-child ul {
  left: auto;
  right: 10px;
}

.menu-open {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

body.menu-open .menu-background {
  height: 100%;
}

.menu-open .header-menu__button {
  background-image: url(/Institutions/Illinois-Valley-Community-College/images/x-lightblue.svg);
  background-size: 10px;
}

@media screen and (min-width: 700px) {
  .menu-open .header-menu__button {
    background-size: 15px;
  }
}

.scrollDown .header {
  position: fixed;
  top: -100%;
  z-index: 10000;
  width: 100%;
}

.scrollUp .header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
}

.scrollDown .page-wrapper,
.scrollUp .page-wrapper {
  margin-top: 48px;
}

@media screen and (min-width: 700px) {
  .scrollDown .page-wrapper,
  .scrollUp .page-wrapper {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1201px) {
  .scrollDown .page-wrapper,
  .scrollUp .page-wrapper {
    margin-top: 108px;
  }
}

.stickySection .page-wrapper {
  margin-top: 88px;
}

@media screen and (min-width: 700px) {
  .stickySection .page-wrapper {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1201px) {
  .stickySection .page-wrapper {
    margin-top: 148px;
  }
}

footer {
  clear: both;
}

.key-ctas {
  background-color: #3f0084 !important;
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  padding: 50px 15px;
  position: relative;
}

.key-ctas.homepage {
  background: transparent;
  padding-bottom: 40px;
}

@media screen and (min-width: 1100px) {
  .key-ctas.homepage {
    padding-bottom: 60px;
    margin-top: -100px;
  }
}

.key-ctas.homepage h2,
.key-ctas.homepage a {
  color: #000000;
}

@media screen and (min-width: 700px) {
  .key-ctas {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 45px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .key-ctas {
    padding: 85px 90px 75px;
  }
}

.key-ctas h2 {
  margin: 0;
  position: relative;
}

@media screen and (min-width: 1201px) {
  .key-ctas h2 {
    font-size: 90px;
  }
}

.key-ctas h2,
.key-ctas a {
  color: #fff !important;
}

.key-ctas ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: -15px;
}

@media screen and (min-width: 700px) {
  .key-ctas ul {
    margin-right: -40px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px) {
  .key-ctas ul {
    margin-right: -90px;
  }
}

.key-ctas li {
  font-size: 10px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 25px;
  border-radius: 100em;
  -webkit-transition: all 300ms 150ms;
  -o-transition: all 300ms 150ms;
  transition: all 300ms 150ms;
}

@media screen and (min-width: 700px) {
  .key-ctas li {
    font-size: 12px;
    width: 75px;
    height: 75px;
    margin-right: 45px;
  }
}

@media screen and (min-width: 1100px) {
  .key-ctas li {
    font-size: 20px;
    width: 125px;
    height: 125px;
    margin-right: 72px;
  }
}

.key-ctas li:after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -0.5px;
  background-color: #e3e3e3;
}

@media screen and (min-width: 700px) {
  .key-ctas li:after {
    right: -45px;
    width: 45px;
  }
}

@media screen and (min-width: 1100px) {
  .key-ctas li:after {
    right: -72px;
    width: 72px;
  }
}

.key-ctas li:hover {
  background: #9ef7ff;
}

.key-ctas li:hover a {
  color: #000000;
  -webkit-transition: all 300ms 100ms;
  -o-transition: all 300ms 100ms;
  transition: all 300ms 100ms;
}

.key-ctas li:hover a:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.key-ctas li:nth-child(2) a:before {
  -webkit-transform: rotate(72deg);
      -ms-transform: rotate(72deg);
          transform: rotate(72deg);
}

.key-ctas li:nth-child(2):hover a:before {
  -webkit-transform: rotate(117deg);
      -ms-transform: rotate(117deg);
          transform: rotate(117deg);
}

.key-ctas li:nth-child(3) a:before {
  -webkit-transform: rotate(-250deg);
      -ms-transform: rotate(-250deg);
          transform: rotate(-250deg);
}

.key-ctas li:nth-child(3):hover a:before {
  -webkit-transform: rotate(-205deg);
      -ms-transform: rotate(-205deg);
          transform: rotate(-205deg);
}

.key-ctas li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent url(/Institutions/Illinois-Valley-Community-College/images/blue-circle.svg) no-repeat center;
  background-size: 100%;
  border-radius: 100em;
  z-index: 0;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.no-backgroundblendmode .key-ctas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4d2177;
  opacity: 0.85;
  z-index: 0;
}

.no-backgroundblendmode .key-ctas.homepage:before {
  content: none;
}

.footer-top {
  padding: 20px 40px 15px 15px;
  border-top: 1px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 40px 20px;
  }
}

@media screen and (min-width: 1100px) {
  .footer-top {
    padding: 15px 45px 20px;
  }
}

.footer__logo {
  width: 87px;
  margin-bottom: 20px;
}

@media screen and (min-width: 700px) {
  .footer__logo {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px) {
  .footer__logo {
    width: 155px;
  }
}

.footer__address {
  font-size: 12px;
  line-height: 1.4;
  width: 50%;
  float: left;
}

@media screen and (min-width: 700px) {
  .footer__address {
    width: 60%;
    padding-left: 35px;
    margin-top: 5px;
  }
  .footer__address div {
    display: inline;
  }
}

@media screen and (min-width: 700px) and (min-width: 1100px) {
  .footer__address div {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  .footer__address {
    font-size: 14px;
    padding-left: 50px;
    margin-top: 20px;
    width: auto;
  }
}

.footer__address address {
  font-style: normal;
}

.footer__contact {
  font-size: 14px;
  text-transform: uppercase;
  float: right;
  line-height: 1.4;
}

@media screen and (min-width: 700px) {
  .footer__contact {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .footer__contact {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 16px;
    margin-left: 45px;
    margin-top: 22px;
  }
}

.footer__contact a {
  color: #000000;
  font-weight: 500;
  display: block;
}

@media screen and (min-width: 700px) {
  .footer__contact a {
    display: inline-block;
    margin-right: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .footer__contact a {
    margin-right: 0;
    display: block;
  }
}

.footer__contact a:first-child:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(/Institutions/Illinois-Valley-Community-College/images/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 3px;
  -webkit-transition: background-image 300ms;
  -o-transition: background-image 300ms;
  transition: background-image 300ms;
}

.footer__contact a:hover {
  color: #4d2177;
}

.footer__contact a:first-child:hover:after {
  background: url(/Institutions/Illinois-Valley-Community-College/images/black-full.svg) no-repeat;
}

.footer__social {
  clear: both;
  overflow: auto;
}

@media screen and (min-width: 700px) {
  .footer__social {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
  }
}

.footer__social ul {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

@media screen and (min-width: 700px) {
  .footer__social ul {
    margin-top: 0px;
  }
}

.footer__social li {
  display: inline-block;
  margin-right: 5px;
}

.footer__social a {
  display: block;
  position: relative;
}

.footer__social img {
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.footer__social img.hover {
  opacity: 0;
  position: absolute;
  top: 0;
}

.footer__social a:hover img.hover {
  visibility: visible;
  opacity: 1;
}

.footer__copyright.medium-only {
  display: none;
}

@media screen and (min-width: 700px) {
  .footer__copyright.medium-only {
    font-size: 12px;
    display: block;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 20px;
    margin-left: auto;
  }
}

@media screen and (min-width: 1100px) {
  .footer__copyright.medium-only {
    display: none;
  }
}

.footer-bottom {
  padding: 15px;
  border-top: 1px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .footer-bottom {
    padding: 15px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 45px;
  }
}

.footer__navigation ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.footer__navigation {
  font-size: 12px;
  margin-bottom: 10px;
}

@media screen and (min-width: 700px) {
  .footer__navigation {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px) {
  .footer__navigation {
    font-size: 14px;
  }
}

.footer__navigation li {
  display: inline-block;
}

.footer__navigation li:after {
  content: '|';
  display: inline-block;
  margin: 0 2px;
}

@media screen and (min-width: 1100px) {
  .footer__navigation li:after {
    margin: 0 4px;
  }
}

.footer__navigation a {
  color: #000000;
  font-weight: 400;
}

.footer__copyright {
  font-size: 12px;
}

@media screen and (min-width: 700px) {
  .footer__copyright {
    display: none;
  }
}

@media screen and (min-width: 1100px) {
  .footer__copyright {
    font-size: 14px;
    display: block;
  }
}

.footer__copyright a {
  color: #000000;
  font-weight: 400;
  text-decoration: underline;
}

.section-navigation {
  position: relative;
  background: #FFFFFF;
  top: 0;
}

.hero-image + .section-navigation {
  margin-top: -22px;
  margin-left: 50px;
}

@media screen and (min-width: 700px) {
  .hero-image + .section-navigation {
    margin-left: 110px;
  }
}

@media screen and (min-width: 1100px) {
  .hero-image + .section-navigation {
    margin-left: 0px;
  }
}

.open-section-navigation {
  color: #000000;
  text-align: left;
  padding: 6px 18px 3px;
  width: 201px;
  height: 40px;
  background: #9ef7ff url(../assets/icons/plus.svg) no-repeat 90% center;
  border: 0;
}

.open-section-navigation:hover {
  background: #000000 url(../assets/icons/plus%20copy.svg) no-repeat 90% center;
  color: #9ef7ff;
}

.open-section-navigation.expanded {
  color: #9ef7ff;
  background-color: #000000;
  background-image: none;
}

.open-section-navigation.expanded:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -1px;
  width: 12px;
  display: block;
  height: 2px;
  background: #FFFFFF;
  z-index: 100;
}

.open-section-navigation:after {
  content: none;
}

.section-navigation > ul {
  position: absolute;
  left: 0;
  right: 0;
  height: 301px;
  width: 320px;
  margin: 0;
  padding: 10px 20px;
  background: #000000;
  z-index: 100;
  display: none;
}

.section-navigation > ul ul {
  padding-left: 15px;
}

.section-navigation > ul ul ul {
  padding-left: 20px;
}

.section-navigation > ul ul ul a {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
}

.section-navigation > ul .mCSB_scrollTools {
  width: 2px;
  background: #e3e3e3;
}

.section-navigation > ul .mCSB_scrollTools .mCSB_dragger {
  background: #093ea7;
}

.section-navigation > ul li {
  margin: 11px 0;
}

@media screen and (min-width: 1100px) {
  .section-navigation > ul li {
    margin: 5px 0;
  }
}

.section-navigation > ul .mCSB_container > li {
  margin-top: 0;
}

.section-navigation > ul .mCSB_container > li > a {
  font-size: 18px;
}

.section-navigation > ul a {
  color: #9ef7ff;
  font-size: 14px;
}

.hero-image ~ .main h1 {
  padding: 0;
  margin-left: 0;
  margin-bottom: -0.2em;
  border: 0;
  margin-top: 0.67em;
}

.hero-image ~ .main h1:after {
  content: none;
}

@media screen and (min-width: 1100px) {
  .hero-image ~ .main h1 {
    margin-bottom: 0.5em;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .hero-image ~ .main {
    margin-top: -126px;
    position: relative;
    background: #FFFFFF;
    margin-left: 201px;
    padding-left: 0;
  }
  .hero-image ~ .main .breadcrumbs {
    margin-left: 0;
  }
}

h1 {
  margin-right: -15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

@media screen and (min-width: 700px) {
  h1 {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 0;
  }
  h1:after {
    content: "";
    width: 100vw;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e3e3e3;
  }
}

@media screen and (min-width: 1100px) {
  h1 {
    padding-bottom: 60px;
    margin-bottom: 60px;
    margin-left: -80px;
    padding-left: 80px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1100px) {
  .main {
    margin-left: 145px;
    margin-top: -60px;
    padding-left: 80px;
  }
}

.main .breadcrumbs {
  display: none;
}

@media screen and (min-width: 1100px) {
  .main .breadcrumbs {
    display: block;
    padding-top: 5px;
    margin-left: -80px;
    position: relative;
  }
  .main .breadcrumbs ul {
    padding: 0;
  }
  .main .breadcrumbs li {
    display: inline-block;
    font-size: 14px;
  }
  .main .breadcrumbs li:after {
    content: '>';
  }
  .main .breadcrumbs li a {
    color: #000000;
    font-weight: 400;
    background: none;
  }
  .main .breadcrumbs li a:hover {
    color: #4d2177;
  }
  .main .breadcrumbs li:before {
    content: none;
  }
}

.stickySection.scrollUp .section-navigation,
.stickySection.scrollUp .breadcrumbs {
  position: fixed;
  top: 49px;
  margin-top: 0;
  z-index: 1000;
  -webkit-transition: top 300ms;
  -o-transition: top 300ms;
  transition: top 300ms;
  background: #FFFFFF;
}

@media screen and (min-width: 700px) {
  .stickySection.scrollUp .section-navigation,
  .stickySection.scrollUp .breadcrumbs {
    top: 60px;
  }
}

@media screen and (min-width: 1201px) {
  .stickySection.scrollUp .section-navigation,
  .stickySection.scrollUp .breadcrumbs {
    top: 108px;
  }
}

.stickySection.scrollUp .breadcrumbs {
  margin-top: -20px;
  left: 201px;
  right: 0;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.stickySection.scrollDown .section-navigation,
.stickySection.scrollDown .breadcrumbs {
  position: fixed;
  top: -100%;
  margin-top: 0;
  z-index: 1000;
  -webkit-transition: top 300ms;
  -o-transition: top 300ms;
  transition: top 300ms;
}

.news-list {
  margin: 30px -15px;
  padding: 0;
  padding-right: 15px;
}

@media screen and (min-width: 700px) {
  .news-list {
    margin: 55px -40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .news-list {
    margin: 55px 0;
    padding-bottom: 0;
  }
}

.news-list li {
  margin: 35px 0;
  clear: both;
  overflow: auto;
}

@media screen and (min-width: 1100px) {
  .news-list li {
    margin: 50px 0;
  }
}

.news-list li:first-child {
  margin-top: 0;
}

.news-list__image {
  width: 28%;
  float: left;
  margin-right: 20px;
}

@media screen and (min-width: 700px) {
  .news-list__image {
    width: 30%;
    margin-right: 30px;
  }
}

@media screen and (min-width: 1100px) {
  .news-list__image {
    width: 36%;
    margin-right: 45px;
  }
}

.news-list__image img {
  width: 100%;
}

.news-item__summary {
  display: none;
}

@media screen and (min-width: 700px) {
  .news-item__summary {
    font-size: 15px;
    display: block;
  }
}

.news-list__text {
  overflow: hidden;
}

.news-list__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 0;
}

@media screen and (min-width: 700px) {
  .news-list__title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .news-list__title {
    font-size: 25px;
  }
}

.news-list__title a {
  background: transparent;
  position: relative;
  padding-right: 15px;
}

.news-list__title a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 0;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
  right: 0;
}

.news-list__title a:hover {
  color: #4d2177;
  background: transparent;
}

.news-list__title a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.news-list__date {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

@media screen and (min-width: 700px) {
  .news-list__date {
    font-size: 16px;
    margin-top: 12px;
  }
}

.news-list__date:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 4px;
  background: #093ea7;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 15px;
}

.pager {
  text-align: center;
}

@media screen and (min-width: 700px) {
  .pager {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (min-width: 1100px) {
  .pager {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 100px;
  }
}

.pager .amount-shown {
  font-size: 15px;
  margin-bottom: 20px;
}

@media screen and (min-width: 700px) {
  .pager .amount-shown {
    margin: 0 50px 0 0;
  }
}

.pager ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.pager li {
  display: inline-block;
  margin: 0 4px;
}

.pager li.disabled a {
  cursor: default;
}

@media screen and (min-width: 700px) {
  .pager li {
    margin: 0 10px;
  }
}

.pager li:before {
  content: none;
}

.pager li.active a {
  background: #e3e3e3;
  cursor: default;
}

.pager li.active a:hover {
  text-decoration: none;
}

.pager a {
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  padding: 0 5px;
}

.pager a:hover {
  color: #000000;
  opacity: 0.6;
  background: transparent;
}

.pager li.next,
.pager li.last,
.pager li.first,
.pager li.previous {
  display: inline-block !important;
  margin: 0 4.5px;
}

@media screen and (min-width: 700px) {
  .pager li.next,
  .pager li.last,
  .pager li.first,
  .pager li.previous {
    margin: 0 7.5px;
  }
}

.pager li.next.disabled a,
.pager li.last.disabled a,
.pager li.first.disabled a,
.pager li.previous.disabled a {
  opacity: 0.095;
}

.pager li.next a,
.pager li.last a,
.pager li.first a,
.pager li.previous a {
  width: 12px;
  height: 7px;
  display: inline-block;
  -webkit-transform: rotate(90deg) rotateY(180deg);
          transform: rotate(90deg) rotateY(180deg);
  background: url(../assets/icons/black.svg) repeat-y;
  background-size: 11px 8px;
  vertical-align: middle;
  margin-top: -2px;
}

.pager li.next a:hover,
.pager li.last a:hover,
.pager li.first a:hover,
.pager li.previous a:hover {
  background-image: url(../assets/icons/black-full.svg);
}

.pager li.first a,
.pager li.last a {
  height: 16px;
}

.pager li.next a,
.pager li.last a {
  margin-top: -3px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.pager .previous.disabled, .pager .next.disabled {
  cursor: default;
}

.pager .previous.disabled:hover, .pager .next.disabled:hover {
  cursor: default;
  text-decoration: none;
}

@media (max-width: 767px) {
  .pager li:nth-child(3), .pager li.active, .pager li.activeSibling:nth-last-child(2), .pager li:nth-last-child(3) {
    display: inline-block !important;
  }
  .pager li:first-child:nth-last-child(n+6) ~ li {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+6) ~ li:nth-last-child(-n+5) {
    display: inline-block;
  }
  .pager li:first-child:nth-last-child(n+6) ~ li:nth-last-child(5):before {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-right: 18px;
  }
}

@media screen and (max-width: 767px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+6) ~ li:nth-last-child(5):before {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .pager li:first-child:nth-last-child(n+6).active:before,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:before {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-right: 18px;
  }
}

@media screen and (max-width: 767px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+6).active:before,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:before {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .pager li:first-child:nth-last-child(n+6).active:after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:after {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-left: 18px;
  }
}

@media screen and (max-width: 767px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+6).active:after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:after {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .pager li:first-child:nth-last-child(n+6).active:nth-child(-n+4):before, .pager li:first-child:nth-last-child(n+6).active:nth-child(-n+4):after, .pager li:first-child:nth-last-child(n+6).active:nth-last-child(-n+4):before, .pager li:first-child:nth-last-child(n+6).active:nth-last-child(-n+4):after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:nth-child(-n+4):before,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:nth-child(-n+4):after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:nth-last-child(-n+4):before,
  .pager li:first-child:nth-last-child(n+6) ~ li.active:nth-last-child(-n+4):after {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+6).active ~ li:nth-last-child(-n+5),
  .pager li:first-child:nth-last-child(n+6) ~ li.active ~ li:nth-last-child(-n+5) {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+6).active ~ li:nth-child(-n+5),
  .pager li:first-child:nth-last-child(n+6) ~ li.active ~ li:nth-child(-n+5) {
    display: inline-block;
  }
  .pager li:first-child:nth-last-child(n+6).active ~ li:nth-child(-n+4):after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active ~ li:nth-child(-n+4):after {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+6).active ~ li:nth-child(5):after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active ~ li:nth-child(5):after {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-left: 18px;
  }
}

@media screen and (max-width: 767px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+6).active ~ li:nth-child(5):after,
  .pager li:first-child:nth-last-child(n+6) ~ li.active ~ li:nth-child(5):after {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  .pager li:nth-child(3), .pager li.activeSibling, .pager li.active,
  .pager li.active + li, .pager li:nth-last-child(3) {
    display: inline-block !important;
  }
  .pager li:first-child:nth-last-child(n+8) ~ li {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+8) ~ li.activeSibling:before {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-right: 18px;
  }
}

@media screen and (min-width: 768px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+8) ~ li.activeSibling:before {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .pager li:first-child:nth-last-child(n+8) ~ li.active + li:after {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-left: 18px;
  }
}

@media screen and (min-width: 768px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+8) ~ li.active + li:after {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  .pager li:first-child:nth-last-child(n+8) ~ li:nth-last-child(-n+5) {
    display: inline-block;
  }
  .pager li:first-child:nth-last-child(n+8) ~ li:nth-last-child(5):before {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-right: 18px;
  }
}

@media screen and (min-width: 768px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+8) ~ li:nth-last-child(5):before {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .pager li:first-child:nth-last-child(n+8) ~ li:nth-child(-n+3):before, .pager li:first-child:nth-last-child(n+8) ~ li:nth-child(-n+3):after, .pager li:first-child:nth-last-child(n+8) ~ li:nth-last-child(-n+3):before, .pager li:first-child:nth-last-child(n+8) ~ li:nth-last-child(-n+3):after, .pager li:first-child:nth-last-child(n+8) ~ li.activeSibling:nth-last-child(-n+2):before, .pager li:first-child:nth-last-child(n+8) ~ li.activeSibling:nth-last-child(-n+2):after {
    display: none !important;
  }
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-last-child(-n+5),
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-last-child(-n+5) {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-last-child(-n+5):before,
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-last-child(-n+5):before {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-child(-n+5),
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-child(-n+5) {
    display: inline-block;
  }
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-child(-n+4):after,
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-child(-n+4):after {
    display: none;
  }
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-child(5):after,
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-child(5):after {
    content: "\2026";
    font-weight: 600;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-left: 18px;
  }
}

@media screen and (min-width: 768px) and (min-width: 700px) {
  .pager li:first-child:nth-last-child(n+8).active ~ li:nth-child(5):after,
  .pager li:first-child:nth-last-child(n+8) ~ li.active ~ li:nth-child(5):after {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  .pager li:first-child:nth-last-child(n+8).active:before, .pager li:first-child:nth-last-child(n+8).active:after,
  .pager li:first-child:nth-last-child(n+8) ~ li.active:before,
  .pager li:first-child:nth-last-child(n+8) ~ li.active:after {
    display: none;
  }
}

.faculty-list {
  margin: 30px -15px;
  padding: 0;
  padding-right: 15px;
}

@media screen and (min-width: 700px) {
  .faculty-list {
    margin: 45px -40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty-list {
    margin: 55px 0;
    padding-bottom: 0;
  }
}

.faculty-list li {
  margin: 35px 0;
  clear: both;
  overflow: auto;
}

@media screen and (min-width: 1100px) {
  .faculty-list li {
    margin: 50px 0;
  }
}

.faculty-list li:first-child {
  margin-top: 0;
}

.faculty-list__image {
  width: 28%;
  float: left;
  margin-right: 20px;
}

@media screen and (min-width: 700px) {
  .faculty-list__image {
    width: 30%;
    margin-right: 30px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty-list__image {
    width: 36%;
    margin-right: 45px;
  }
}

.faculty-list__image img {
  width: 100%;
}

.faculty-list__text {
  overflow: hidden;
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .faculty-list__text {
    font-size: 15px;
  }
}

.faculty-list__text h2 {
  margin-top: 0;
  margin-bottom: 0.1em;
}

@media screen and (min-width: 700px) {
  .faculty-list__text h2 {
    margin-top: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty-list__text h2 {
    margin-top: 10px;
  }
}

.faculty-list__text h2 a {
  color: #4d2177;
  background: transparent;
  position: relative;
  padding-right: 15px;
}

@media screen and (min-width: 1100px) {
  .faculty-list__text h2 a {
    padding-right: 20px;
  }
}

.faculty-list__text h2 a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 0;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.5em;
  background-size: 11px 8px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
  right: 0;
}

.faculty-list__text h2 a:hover {
  color: #4d2177;
  background: transparent;
}

.faculty-list__text h2 a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.faculty-list__text .faculty__title {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .faculty-list__text .faculty__title {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty-list__text .faculty__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}

#events .nav:last-child {
  display: none;
}

@media screen and (min-width: 1100px) {
  .event-list-nav {
    float: left;
  }
}

.event-list-nav li {
  display: none;
}

.event-list-nav li:nth-child(1),
.event-list-nav li:nth-child(2),
.event-list-nav li:nth-child(3) {
  display: inline-block;
}

.h1-wrap aside nav {
  display: none;
}

.h1-wrap aside div[role="tablist"],
.h1-wrap aside #hc_featured,
.h1-wrap aside .setting,
.h1-wrap aside h2,
.h1-wrap aside .links {
  display: none;
}

#events > ul time {
  display: none;
}

#events > ul a .sr-only {
  display: none;
}

#hc_search {
  position: relative;
  padding-right: 15px;
  margin-bottom: 20px;
}

@media screen and (min-width: 700px) {
  #hc_search {
    width: 300px;
  }
}

@media screen and (min-width: 1100px) {
  #hc_search {
    float: left;
    margin-left: 50px;
    margin-bottom: 40px;
  }
}

#hc_search #hc_search_keyword {
  padding: 12px 20px 10px;
  border: 1px solid #e3e3e3;
  width: 100%;
}

#hc_search #hc_search_keyword::-webkit-input-placeholder {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
}

#hc_search #hc_search_keyword:-moz-placeholder {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
}

#hc_search #hc_search_keyword::-moz-placeholder {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
}

#hc_search #hc_search_keyword:-ms-input-placeholder {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
}

#hc_search #hc_search_submit {
  color: transparent;
  position: absolute;
  top: 0;
  right: 15px;
  border: 0;
  width: 60px;
  height: 100%;
  background: url(../assets/icons/search.svg) no-repeat center;
  background-size: 20px 20px;
}

#hc_search > span {
  display: none;
}

.sr-only {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

@media screen and (min-width: 700px) {
  .calendar-wrap,
  .filters-wrap {
    float: right;
    clear: right;
    width: 320px;
    margin-right: -40px;
    margin-top: -2px;
  }
}

@media screen and (min-width: 1100px) {
  .calendar-wrap,
  .filters-wrap {
    margin-right: calc(-100vw + 870px + 201px);
    padding-right: 15px;
    border: 1px solid #e3e3e3;
    border-right: 0;
  }
}

@media screen and (min-width: 700px) {
  .calendar-wrap {
    margin-top: -50px;
  }
}

.calendar-wrap aside {
  position: absolute;
  display: none;
  background: #FFFFFF;
  z-index: 1000;
  border-bottom: 1px solid #e3e3e3;
  left: -15px;
  right: 0;
}

@media screen and (min-width: 700px) {
  .calendar-wrap aside {
    width: 320px;
    border: 1px solid #e3e3e3;
    margin-top: -1px;
    padding-bottom: 10px;
    left: auto;
    right: auto;
  }
}

@media screen and (min-width: 1100px) {
  .filters-wrap {
    margin-top: -3px;
  }
}

.open-event-calendar {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  width: calc(100% + 15px);
  border: 1px solid #e3e3e3;
  border-right: 0;
  border-left: 0;
  margin: 0 -15px;
  padding: 14px 15px;
  background: transparent url(../assets/icons/calendar.svg) no-repeat 93% center;
}

@media screen and (min-width: 700px) {
  .open-event-calendar {
    margin: 0;
    width: 100%;
    z-index: 100;
    border-left: 1px solid #e3e3e3;
  }
}

@media screen and (min-width: 1100px) {
  .open-event-calendar {
    border: 0;
  }
}

.open-event-calendar:hover {
  background: transparent url(../assets/icons/calendar.svg) no-repeat 93% center;
}

.open-event-calendar:after {
  content: none;
}

.catCol input[type="checkbox"]:checked + label::after {
  margin-top: -1em;
}

.open-event-filters {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  width: calc(100% + 15px);
  border: 1px solid #e3e3e3;
  border-right: 0;
  border-left: 0;
  margin: -1px -15px;
  padding: 14px 15px;
  -webkit-transition: color 300ms;
  -o-transition: color 300ms;
  transition: color 300ms;
  background: transparent url(../assets/icons/plus.svg) no-repeat 93% center;
}

.open-event-filters.expanded {
  background: transparent;
}

.open-event-filters.expanded:hover {
  background: transparent;
}

@media screen and (min-width: 700px) {
  .open-event-filters {
    margin: -1px 0;
    width: 100%;
    z-index: 100;
    border-left: 1px solid #e3e3e3;
  }
}

@media screen and (min-width: 1100px) {
  .open-event-filters {
    border: 0;
  }
}

.open-event-filters:hover {
  background: transparent url(../assets/icons/plus.svg) no-repeat calc(100% - 15px) center;
}

.open-event-filters:after {
  content: none;
}

.mini-cal {
  margin-left: -15px;
}

@media screen and (min-width: 700px) {
  .mini-cal {
    margin-left: 0;
  }
}

.mini-cal .navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin: 10px 0 0 0;
}

.mini-cal .navigation li:before {
  content: none;
}

.mini-cal .navigation .title {
  margin: 0 17px;
}

.mini-cal .navigation select {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  background: none;
  border-bottom: 0;
}

.mini-cal .nav a {
  color: transparent;
  background: transparent url(../assets/icons/black.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  height: 8px;
  width: 11px;
  -webkit-transform: rotate(90deg) rotateY(180deg);
          transform: rotate(90deg) rotateY(180deg);
}

@media screen and (min-width: 1100px) {
  .mini-cal .nav a {
    margin-top: -9px;
  }
}

.mini-cal .nav:last-child a {
  -webkit-transform: rotate(-90deg) rotateY(0deg);
          transform: rotate(-90deg) rotateY(0deg);
  background-position: bottom;
  margin-left: -5px;
  margin-top: 1px;
}

@media screen and (min-width: 1100px) {
  .mini-cal .nav:last-child a {
    margin-top: -7px;
  }
}

.mini-cal table {
  margin: 10px auto;
  border: 0;
}

.mini-cal tr {
  display: table-row;
}

@media screen and (min-width: 700px) {
  .mini-cal tr {
    border-bottom: 0;
  }
}

.mini-cal td,
.mini-cal th {
  font-size: 15px;
  text-align: center;
  padding: 5px 13px;
  display: table-cell;
  min-height: inherit;
}

.mini-cal td:last-child,
.mini-cal th:last-child {
  border: 0;
}

.mini-cal td a,
.mini-cal th a {
  color: #FFFFFF;
  font-weight: 400;
  display: block;
  position: relative;
  background: transparent;
}

.mini-cal td a:before,
.mini-cal th a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -13px;
  background: #093ea7;
  border-radius: 100em;
  z-index: -1;
}

.mini-cal td.today {
  position: relative;
}

.mini-cal td.today:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -13px;
  background: #9ef7ff;
  border-radius: 100em;
  z-index: -1;
}

.mini-cal .dow {
  font-weight: 400;
  padding: 0 13px 15px;
  position: relative;
}

.mini-cal .dow:after {
  content: "|";
  right: -1px;
  top: 0;
  position: absolute;
}

.mini-cal .dow:last-child:after {
  content: none;
}

.mini-cal .dow:first-child, .mini-cal .dow:last-child {
  padding: 0 13px 15px;
}

#filter {
  position: absolute;
  background: #fff;
  z-index: 10;
  display: none;
  border-bottom: 1px solid #e3e3e3;
  left: -15px;
  right: 0;
  padding-left: 15px;
}

@media screen and (min-width: 700px) {
  #filter {
    padding: 0 20px;
    border: 1px solid #e3e3e3;
    left: auto;
    right: auto;
    width: 320px;
  }
}

#filter label {
  font-size: 20px;
  margin-bottom: 18px;
}

#filter > span {
  color: transparent;
}

#filter > span a {
  background: transparent;
}

#filter > span a:first-child {
  display: none;
}

#filter > span a:last-child {
  font-weight: 400;
  font-size: 15px;
  position: absolute;
  top: -34px;
  right: 15px;
}

#filter > span a:last-child:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #9ef7ff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.event-list-nav {
  padding-left: 0;
  margin-top: 25px;
}

@media screen and (min-width: 1100px) {
  .event-list-nav {
    margin-top: 10px;
  }
}

.event-list-nav li {
  margin-top: 0;
}

@media screen and (min-width: 700px) {
  .event-list-nav li:nth-child(3):after {
    content: none;
  }
}

.event-list-nav li:before {
  content: none;
}

.event-list-nav li:after {
  content: '|';
  display: inline-block;
  margin: 0 15px;
}

.event-list-nav li a {
  background: transparent;
}

.event-list-nav li a:hover {
  color: #4d2177;
}

.hc_left {
  color: transparent;
  background: transparent url(../assets/icons/black.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  height: 8px;
  width: 11px;
  -webkit-transform: rotate(90deg) rotateY(180deg);
          transform: rotate(90deg) rotateY(180deg);
  margin-right: 10px;
}

.hc_left:hover {
  background: transparent url(../assets/icons/black-full.svg) no-repeat;
}

.hc_right {
  color: transparent;
  background: transparent url(../assets/icons/black.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  height: 8px;
  width: 11px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 8px;
}

.hc_right:hover {
  background: transparent url(../assets/icons/black-full.svg) no-repeat;
}

.event-pagination > li {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (min-width: 1100px) {
  .event-pagination > li {
    margin-bottom: 7px;
  }
}

.event-pagination > li:before {
  content: none;
}

.current-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}

@media screen and (min-width: 700px) {
  .current-date {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .current-date {
    font-size: 25px;
  }
}

#events ul {
  padding-left: 0;
}

#events ul li {
  content: none;
  overflow: auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 1100px) {
  #events ul li {
    margin-bottom: 30px;
  }
}

#events ul li .event-details a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 0.6em;
  background: transparent;
  display: block;
}

#events ul li .event-details a span {
  position: relative;
  padding-right: 20px;
}

#events ul li .event-details a span:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  bottom: 0.3em;
  right: 5px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

#events ul li .event-details a:hover {
  color: #4d2177;
}

#events ul li .event-details a:hover span:after {
  background-image: url(../assets/icons/black-full.svg);
}

@media screen and (min-width: 700px) {
  #events ul li .event-details a {
    font-size: 20px;
    margin-top: 1.3em;
  }
}

@media screen and (min-width: 1100px) {
  #events ul li .event-details a {
    font-size: 25px;
    margin-top: 1em;
  }
}

#events ul li .event-detail__time,
#events ul li .event-list__location {
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

@media screen and (min-width: 700px) {
  #events ul li .event-detail__time,
  #events ul li .event-list__location {
    font-size: 15px;
  }
}

#events ul li img {
  display: none;
}

@media screen and (min-width: 1100px) {
  #events ul li img {
    display: block;
    width: 18%;
    margin-right: 40px;
    float: left;
  }
}

#events ul .event-details {
  overflow: hidden;
}

#events ul .date {
  float: left;
}

.event-pagination {
  clear: both;
}

.news__image {
  margin: 0 -15px 30px 10px;
}

@media screen and (min-width: 700px) {
  .news__image {
    margin: 0 45px 30px -40px;
  }
}

@media screen and (min-width: 1100px) {
  .news__image {
    margin: 70px -85px 40px -201px;
  }
}

.news__image figcaption {
  color: #FFFFFF;
  font-size: 15px;
  font-style: normal;
  margin: 0 35px 0 -25px;
  background: #093ea7;
  padding: 3px 12px;
}

@media screen and (min-width: 700px) {
  .news__image figcaption {
    margin: 0 0 0 115px;
    display: inline-block;
  }
}

@media screen and (min-width: 1100px) {
  .news__image figcaption {
    font-size: 20px;
    padding: 5px 20px;
    margin: 0 0 0 203px;
  }
}

.news__date {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

@media screen and (min-width: 700px) {
  .news__date {
    font-size: 16px;
    margin-top: 12px;
  }
}

@media screen and (min-width: 1100px) {
  .news__date {
    margin-top: 25px;
  }
}

.news__date:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 4px;
  background: #093ea7;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 15px;
}

@media screen and (min-width: 1100px) {
  .news__body {
    max-width: 720px;
    margin: 0 auto;
  }
}

.faculty__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

@media screen and (min-width: 700px) {
  .faculty__title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty__title {
    font-size: 25px;
  }
}

.faculty__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  width: 55px;
  display: inline-block;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 700px) {
  .faculty__label {
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty__label {
    font-size: 20px;
    margin-bottom: 0.9em;
    margin-right: 25px;
  }
}

.faculty__text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 1.3em;
  overflow: hidden;
}

@media screen and (min-width: 700px) {
  .faculty__text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty__text {
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 2em;
  }
}

.faculty__text .outline-cta {
  font-family: "Rajdhani", sans-serif;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (min-width: 1100px) {
  .faculty__text .outline-cta {
    margin-right: 15px;
  }
}

.faculty__buttons {
  margin: 0.5em 0 0;
}

@media screen and (min-width: 1100px) {
  .faculty__buttons {
    margin-top: 0;
  }
}

@media screen and (min-width: 700px) {
  .faculty__image {
    float: left;
    margin-right: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .faculty__image {
    width: 39%;
    margin-right: 75px;
  }
}

.faculty__image img {
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .faculty__body {
    max-width: 720px;
    margin: 0 auto;
  }
}

.program-courses {
  margin: 0 -15px;
}

@media screen and (min-width: 700px) {
  .program-courses {
    margin: 0;
  }
}

.program-courses h3, .program-courses .faculty-list__text h2, .faculty-list__text .program-courses h2 {
  padding: 0 15px;
  margin-bottom: 10px;
}

@media screen and (min-width: 700px) {
  .program-courses h3, .program-courses .faculty-list__text h2, .faculty-list__text .program-courses h2 {
    padding: 0;
  }
}

.program-table {
  width: 100%;
  margin: 0 0 30px 0;
  border-collapse: collapse;
  border-top: 0;
}

.program-table tr {
  display: table-row;
  border-bottom: 0;
}

.program-table th {
  font-size: 13px;
  font-weight: 600;
  display: table-cell;
  padding: 5px 15px 5px 5px;
  border-bottom: 1px solid #000000;
}

.program-table th:first-child {
  padding-left: 15px;
}

@media screen and (min-width: 700px) {
  .program-table th {
    font-size: 15px;
  }
  .program-table th:first-child {
    padding-left: 0;
  }
}

.program-table td {
  font-size: 13px;
  display: table-cell;
  padding: 5px 15px 5px 5px;
  border-bottom: 1px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .program-table td {
    font-size: 15px;
  }
}

.program-table td:first-child, .program-table td:nth-child(2) {
  font-weight: 600;
}

.program-table td:last-child {
  font-weight: 600;
  color: #4d2177;
  width: 25%;
}

.program-table td:nth-child(3) {
  width: 65%;
}

@media screen and (min-width: 1100px) {
  .program-table td:nth-child(3) {
    width: 60%;
  }
}

.program-table td:first-child {
  padding: 5px 5px 5px 15px;
}

@media screen and (min-width: 700px) {
  .program-table td:first-child {
    padding: 5px 5px 5px 0px;
  }
}

.program-table tr:last-child td {
  border-bottom: 0;
}

.program__body {
  max-width: 720px;
  margin: 0 auto;
}

main footer {
  display: none;
}

main header .social {
  display: none;
}

main .breadbox {
  display: none;
}

.event aside,
#evernote #location,
.event #detail_left {
  display: none;
}

.regMeter + br {
  display: none;
}

#detail_right a + br {
  display: none;
}

#detail_right h2:last-of-type {
  display: none;
}

#detail_right a.share,
#detail_right a.email,
#detail_right #share_link,
#detail_right a.yahoo {
  display: none;
}

#detail_right .ical {
  color: transparent;
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background: transparent url(../assets/icons/apple-blue.svg);
}

@media screen and (min-width: 1100px) {
  #detail_right .ical {
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background-size: 100%;
  }
}

#detail_right .google_cal {
  color: transparent;
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background: transparent url(../assets/icons/google-blue.svg);
}

@media screen and (min-width: 1100px) {
  #detail_right .google_cal {
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background-size: 100%;
  }
}

#detail_right .live {
  color: transparent;
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background: transparent url(../assets/icons/window-blue.svg);
}

@media screen and (min-width: 1100px) {
  #detail_right .live {
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background-size: 100%;
  }
}

.event-detail__day {
  color: #4d2177;
  font-size: 35px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 700px) {
  .event-detail__day {
    font-size: 60px;
  }
}

.event-detail__month {
  color: #4d2177;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
  margin-left: 7px;
}

@media screen and (min-width: 700px) {
  .event-detail__month {
    font-size: 30px;
    margin-left: 17px;
  }
}

.event-detail__month:after {
  content: "";
  width: 1px;
  height: 23px;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 20px 0 15px;
  background: #e3e3e3;
}

@media screen and (min-width: 700px) {
  .event-detail__month:after {
    height: 39px;
    margin: 0 30px 0 28px;
  }
}

.event-detail__time {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  margin-right: 11px;
}

@media screen and (min-width: 700px) {
  .event-detail__time {
    font-size: 15px;
  }
}

.event-detail__location {
  display: inline-block;
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .event-detail__location {
    font-size: 15px;
  }
}

header.h1-wrap {
  padding-bottom: 10px;
}

@media screen and (min-width: 700px) {
  header.h1-wrap h1 {
    font-size: 30px;
  }
}

@media screen and (min-width: 1100px) {
  header.h1-wrap {
    margin-left: -85px;
    margin-right: -85px;
  }
  header.h1-wrap h1 {
    font-size: 50px;
  }
}

#detail_right h2,
#detail_right + h2 {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  clear: both;
  margin-bottom: 1.5em;
  margin-top: 30px;
}

@media screen and (min-width: 700px) {
  #detail_right h2,
  #detail_right + h2 {
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  #detail_right h2,
  #detail_right + h2 {
    font-size: 16px;
  }
}

#detail_right {
  overflow: hidden;
}

#categories ul {
  padding: 0;
  margin: -5px 0 0 0;
}

@media screen and (min-width: 700px) {
  #categories ul {
    font-size: 16px;
  }
}

#categories ul li {
  display: inline-block;
  margin-right: 5px;
  margin-top: 0;
}

#categories ul li:before {
  content: none;
}

#categories ul li a {
  color: #093ea7;
  text-decoration: underline;
  background: transparent;
}

@media screen and (min-width: 1100px) {
  .event section {
    padding: 0 75px;
  }
}

.video {
  margin: 0 15px 35px -15px;
  position: relative;
}

@media screen and (min-width: 700px) {
  .video {
    margin: 0 45px 0 -40px;
  }
}

@media screen and (min-width: 1100px) {
  .video {
    margin: 0 -80px 50px -276px;
  }
}

.video iframe {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
}

.video__img-wrap {
  position: relative;
}

.video__img-wrap.visible-video iframe {
  visibility: visible;
  z-index: 10;
}

.video__img-wrap.visible-video .video__play-button {
  z-index: -1;
  opacity: 0;
}

.video__play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  right: -23px;
  border: 0;
  background: url(../assets/icons/play.svg) no-repeat center;
  background-size: 100%;
}

.video__play-button:before {
  content: "";
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  position: absolute;
  display: block;
  background: url(../assets/icons/play-circle.svg) no-repeat center;
  background-size: 100%;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (min-width: 1100px) {
  .video__play-button:before {
    width: 115px;
    height: 115px;
  }
}

.video__play-button:hover {
  background: url(../assets/icons/play.svg) no-repeat center;
  background-size: 100%;
}

.video__play-button:hover:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (min-width: 1100px) {
  .video__play-button {
    width: 115px;
    height: 115px;
    right: -55px;
    margin-top: -74.5px;
  }
}

.video__play-button:after {
  content: none;
}

.video__caption {
  color: #FFFFFF;
  font-size: 12px;
  background: #093ea7;
  margin-left: 60px;
  margin-right: -35px;
  padding: 3px 5px 2px;
}

@media screen and (min-width: 700px) {
  .video__caption {
    font-size: 15px;
    padding: 4px 11px 3px;
    display: inline-block;
    margin-left: 116px;
    margin-right: 0;
  }
}

@media screen and (min-width: 1100px) {
  .video__caption {
    font-size: 20px;
    margin-left: 201px;
    padding-right: 90px;
  }
}

.three-col {
  margin: 50px 0;
}

@media screen and (min-width: 1100px) {
  .three-col {
    margin: 70px 0;
  }
}

.three-col__header p {
  margin-top: 0;
}

.three-col__columns {
  margin: 25px -15px;
  overflow-x: auto;
}

@media screen and (min-width: 700px) {
  .three-col__columns {
    margin: 25px -40px 25px -20px;
  }
}

@media screen and (min-width: 1201px) {
  .three-col__columns {
    margin: 40px -100px;
    overflow: visible;
  }
}

.three-col__col {
  font-size: 15px;
  padding: 0 15px;
  margin: 0 5px 0 0;
  width: calc(33.33% - 20px);
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}

@media screen and (min-width: 700px) {
  .three-col__col {
    margin: 0 10px 0 0;
    width: calc(32.33% - 20px);
  }
}

@media screen and (min-width: 1100px) {
  .three-col__col {
    width: 33.33%;
    padding: 0 20px;
    margin: 0;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .three-col__col:nth-child(2) {
    -webkit-transition-delay: 100ms;
         -o-transition-delay: 100ms;
            transition-delay: 100ms;
  }
  .three-col__col:nth-child(3) {
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
}

.three-col__col p {
  margin: 0.5em 0 1em;
}

.three-col__col img {
  width: 100%;
  margin: 0 -15px;
}

@media screen and (min-width: 1100px) {
  .three-col__col img {
    margin: 0;
  }
}

.three-col__col ul {
  padding-left: 0;
  position: static;
}

.three-col__col ul li {
  padding-left: 30px;
  position: relative;
}

.three-col__col ul li:before {
  left: 0;
}

.animate .three-col__col {
  opacity: 1;
}

.three-col__wrap {
  width: 300%;
  white-space: nowrap;
}

@media screen and (min-width: 700px) {
  .three-col__wrap {
    width: 150%;
  }
}

@media screen and (min-width: 1100px) {
  .three-col__wrap {
    width: auto;
  }
}

.three-col__wrap h3, .three-col__wrap .faculty-list__text h2, .faculty-list__text .three-col__wrap h2 {
  margin-top: 0.8em;
  margin-bottom: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
}

@media screen and (min-width: 700px) {
  .three-col__wrap h3, .three-col__wrap .faculty-list__text h2, .faculty-list__text .three-col__wrap h2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  .three-col__wrap h3, .three-col__wrap .faculty-list__text h2, .faculty-list__text .three-col__wrap h2 {
    font-size: 20px;
    margin-bottom: 7px;
  }
}

.three-col__wrap h3 a, .three-col__wrap .faculty-list__text h2 a, .faculty-list__text .three-col__wrap h2 a {
  background: transparent;
}

.three-col__wrap h3 a:after, .three-col__wrap .faculty-list__text h2 a:after, .faculty-list__text .three-col__wrap h2 a:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 3px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

.three-col__wrap h3 a:hover, .three-col__wrap .faculty-list__text h2 a:hover, .faculty-list__text .three-col__wrap h2 a:hover {
  color: #4d2177;
}

.three-col__wrap h3 a:hover:after, .three-col__wrap .faculty-list__text h2 a:hover:after, .faculty-list__text .three-col__wrap h2 a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.three-col__subtitle {
  font-size: 13px;
  font-weight: 500;
}

@media screen and (min-width: 1100px) {
  .three-col__subtitle {
    font-size: 16px;
  }
}

.two-col {
  margin: 50px 0;
}

@media screen and (min-width: 1100px) {
  .two-col {
    margin: 70px 0;
  }
}

.two-col__header p {
  margin-top: 0;
}

.two-col__columns {
  margin: 25px -15px;
  overflow-x: auto;
}

@media screen and (min-width: 700px) {
  .two-col__columns {
    margin: 25px -32.5px 25px -32.5px;
  }
}

@media screen and (min-width: 1201px) {
  .two-col__columns {
    margin: 40px -100px;
    overflow: visible;
  }
}

.two-col__col {
  font-size: 15px;
  padding: 0 15px;
  margin: 0 0 25px 0;
}

.two-col__col:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 700px) {
  .two-col__col {
    padding: 0 32.5px;
    width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .two-col__col {
    width: 50%;
    padding: 0 20px;
    margin: 0;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .two-col__col:last-child {
    -webkit-transition-delay: 100ms;
         -o-transition-delay: 100ms;
            transition-delay: 100ms;
  }
}

.two-col__col p {
  margin: 0.5em 0 1em;
}

.two-col__col img {
  width: calc(100% + 30px);
  margin: 0 -15px;
  max-width: inherit;
}

@media screen and (min-width: 700px) {
  .two-col__col img {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}

@media screen and (min-width: 1100px) {
  .two-col__col img {
    width: 100%;
    margin: 0;
  }
}

.two-col__col ul {
  padding-left: 0;
  position: static;
}

.two-col__col ul li {
  padding-left: 30px;
  position: relative;
}

.two-col__col ul li:before {
  left: 0;
}

.animate .two-col__col {
  opacity: 1;
}

.two-col__wrap h3, .two-col__wrap .faculty-list__text h2, .faculty-list__text .two-col__wrap h2 {
  margin-top: 0.8em;
  margin-bottom: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
}

@media screen and (min-width: 700px) {
  .two-col__wrap h3, .two-col__wrap .faculty-list__text h2, .faculty-list__text .two-col__wrap h2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1100px) {
  .two-col__wrap h3, .two-col__wrap .faculty-list__text h2, .faculty-list__text .two-col__wrap h2 {
    font-size: 20px;
    margin-bottom: 7px;
  }
}

.two-col__wrap h3 a, .two-col__wrap .faculty-list__text h2 a, .faculty-list__text .two-col__wrap h2 a {
  background: transparent;
}

.two-col__wrap h3 a:after, .two-col__wrap .faculty-list__text h2 a:after, .faculty-list__text .two-col__wrap h2 a:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 3px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

.two-col__wrap h3 a:hover, .two-col__wrap .faculty-list__text h2 a:hover, .faculty-list__text .two-col__wrap h2 a:hover {
  color: #4d2177;
}

.two-col__wrap h3 a:hover:after, .two-col__wrap .faculty-list__text h2 a:hover:after, .faculty-list__text .two-col__wrap h2 a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.two-col__subtitle {
  font-size: 13px;
  font-weight: 500;
}

@media screen and (min-width: 1100px) {
  .two-col__subtitle {
    font-size: 16px;
  }
}

@media screen and (min-width: 700px) {
  .two-col__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.image-list {
  margin: 50px 0;
}

@media screen and (min-width: 1100px) {
  .image-list {
    margin: 70px 0;
  }
}

.image-list__header p {
  margin-top: 0;
}

.image-list__list {
  margin: 20px 0;
}

@media screen and (min-width: 700px) {
  .image-list__list {
    margin: 30px 0;
  }
}

@media screen and (min-width: 1201px) {
  .image-list__list {
    margin: 40px -80px;
  }
}

.image-list__list img {
  width: 33%;
  float: left;
  margin-left: -15px;
  margin-right: 20px;
}

@media screen and (min-width: 700px) {
  .image-list__list img {
    margin-left: -40px;
    margin-right: 30px;
  }
}

@media screen and (min-width: 1100px) {
  .image-list__list img {
    margin-left: 0;
    margin-right: 45px;
  }
}

.image-list__text {
  overflow: hidden;
}

.image-list__list h3, .image-list__list .faculty-list__text h2, .faculty-list__text .image-list__list h2 {
  margin-top: 0;
  margin-bottom: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

@media screen and (min-width: 700px) {
  .image-list__list h3, .image-list__list .faculty-list__text h2, .faculty-list__text .image-list__list h2 {
    font-size: 20px;
    margin-top: 12px;
  }
}

@media screen and (min-width: 1100px) {
  .image-list__list h3, .image-list__list .faculty-list__text h2, .faculty-list__text .image-list__list h2 {
    font-size: 25px;
    margin-bottom: 7px;
  }
}

.image-list__list h3 a, .image-list__list .faculty-list__text h2 a, .faculty-list__text .image-list__list h2 a {
  background: transparent;
  position: relative;
}

@media screen and (min-width: 700px) {
  .image-list__list h3 a, .image-list__list .faculty-list__text h2 a, .faculty-list__text .image-list__list h2 a {
    padding-right: 20px;
  }
}

.image-list__list h3 a:after, .image-list__list .faculty-list__text h2 a:after, .faculty-list__text .image-list__list h2 a:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 0;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 6px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

@media screen and (min-width: 700px) {
  .image-list__list h3 a:after, .image-list__list .faculty-list__text h2 a:after, .faculty-list__text .image-list__list h2 a:after {
    right: 0;
  }
}

@media screen and (min-width: 1100px) {
  .image-list__list h3 a:after, .image-list__list .faculty-list__text h2 a:after, .faculty-list__text .image-list__list h2 a:after {
    right: 4px;
    margin-bottom: 8px;
  }
}

.image-list__list h3 a:hover, .image-list__list .faculty-list__text h2 a:hover, .faculty-list__text .image-list__list h2 a:hover {
  color: #4d2177;
}

.image-list__list h3 a:hover:after, .image-list__list .faculty-list__text h2 a:hover:after, .faculty-list__text .image-list__list h2 a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.image-list__item {
  margin-bottom: 30px;
}

.image-list__item:after {
  display: table;
  content: '';
  clear: both;
}

@media screen and (min-width: 700px) {
  .image-list__item {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .image-list__item {
    opacity: 0;
    -webkit-transition: all 300ms 0ms;
    -o-transition: all 300ms 0ms;
    transition: all 300ms 0ms;
  }
  .image-list__item:nth-child(2) {
    -webkit-transition-delay: 100ms;
         -o-transition-delay: 100ms;
            transition-delay: 100ms;
  }
  .image-list__item:nth-child(3) {
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .image-list__item:nth-child(4) {
    -webkit-transition-delay: 300ms;
         -o-transition-delay: 300ms;
            transition-delay: 300ms;
  }
  .image-list__item:nth-child(5) {
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
  }
}

.image-list__item p {
  font-size: 15px;
  margin-top: 0.5em;
}

@media screen and (min-width: 1100px) {
  .image-list__item p {
    margin-top: 1em;
  }
}

.animate .image-list__item {
  opacity: 1;
}

.image-list__subtitle {
  font-size: 13px;
  font-weight: 500;
  margin-top: 7px;
}

@media screen and (min-width: 700px) {
  .image-list__subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
}

.story-display {
  margin: 50px 0;
}

@media screen and (min-width: 700px) {
  .story-display {
    margin: 50px -40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1100px) {
  .story-display {
    margin-left: -276px;
    max-width: 1600px;
    width: 100vw;
  }
}

.story-display__image {
  position: relative;
  margin: 0 -15px;
  background-size: cover;
  padding-bottom: 90%;
  background-color: #000000;
}

@media screen and (min-width: 700px) {
  .story-display__image {
    width: 50%;
    margin: 0;
    padding-bottom: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .story-display__image {
    width: 71%;
    padding-bottom: 0;
  }
  .story-display__image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    height: 100%;
    z-index: 100;
    background: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
  }
}

.story-display__image figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.story-display__image figcaption:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #093ea7;
  mix-blend-mode: hard-light;
}

.story-display__caption {
  color: #FFFFFF;
  font-size: 13px;
  font-style: normal;
  padding: 10px 20px;
  position: relative;
}

@media screen and (min-width: 700px) {
  .story-display__caption {
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .story-display__caption {
    font-size: 20px;
    padding: 25px 30px 25px 156px;
  }
}

.story-display__caption a {
  color: #093ea7;
  background: #FFFFFF;
}

.story-display__caption p {
  margin: 0;
}

.animate .story-display__quote {
  opacity: 1;
}

.animate .story-display__image:after {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

@media screen and (min-width: 700px) {
  .story-display__quote {
    width: 50%;
    padding: 0 40px 30px 44px;
  }
}

@media screen and (min-width: 1100px) {
  .story-display__quote {
    padding: 110px 65px 120px 60px;
    opacity: 0;
    -webkit-transition: all 300ms 300ms;
    -o-transition: all 300ms 300ms;
    transition: all 300ms 300ms;
  }
}

.story-display__quote blockquote {
  color: #000000;
  font-size: 27px;
  text-align: left;
  margin: 0;
  padding: 0;
  background: transparent;
  margin: 1em 0 0.4em;
}

@media screen and (min-width: 700px) {
  .story-display__quote blockquote {
    margin: 1.3em 0 0.4em;
  }
}

@media screen and (min-width: 1100px) {
  .story-display__quote blockquote {
    font-size: 40px;
    width: auto;
  }
}

.story-display__quote blockquote:before {
  content: none;
}

.story-display__attribution {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}

@media screen and (min-width: 1100px) {
  .story-display__attribution {
    font-size: 25px;
  }
}

.story-display__attribution a {
  background: transparent;
  position: relative;
  padding-right: 15px;
}

@media screen and (min-width: 1100px) {
  .story-display__attribution a {
    padding-right: 20px;
  }
}

.story-display__attribution a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 6px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

@media screen and (min-width: 1100px) {
  .story-display__attribution a:after {
    margin-bottom: 8px;
  }
}

.story-display__attribution a:hover {
  color: #4d2177;
  background: transparent;
}

.story-display__attribution a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.story-display__subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}

@media screen and (min-width: 1100px) {
  .story-display__subtitle {
    font-size: 20px;
  }
}

.accordion__header p {
  margin-top: 0;
}

.expand-collapse-all {
  border-bottom: 2px solid #e3e3e3;
  margin: 15px -15px 0;
  padding: 0 15px 15px;
}

@media screen and (min-width: 700px) {
  .expand-collapse-all {
    margin: 15px -40px 0;
    padding: 0 40px 15px;
  }
}

@media screen and (min-width: 1201px) {
  .expand-collapse-all {
    margin: 15px -80px 0;
    padding: 0 80px 20px;
  }
}

.expand-collapse-all a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  margin-right: 35px;
}

@media screen and (min-width: 700px) {
  .expand-collapse-all a {
    font-size: 15px;
  }
}

.expand-collapse-all a:hover {
  color: #000000;
  background: transparent;
}

.expand-collapse-all a:hover:after {
  background: url(../assets/icons/black-full.svg);
}

.expand-collapse-all a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 7px;
  margin-top: -3px;
  margin-left: 7px;
  background: url(../assets/icons/black.svg);
}

.accordion {
  position: relative;
}

.accordion-container .accordion {
  margin: 0 -15px;
  border-bottom: 2px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .accordion-container .accordion {
    margin: 0 -40px;
  }
}

@media screen and (min-width: 1201px) {
  .accordion-container .accordion {
    margin: 0 -80px;
  }
}

.accordion__toggle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  padding: 20px 15px 20px 45px;
  display: block;
}

@media screen and (min-width: 700px) {
  .accordion__toggle {
    font-size: 18px;
    padding: 20px 40px 20px 70px;
  }
}

@media screen and (min-width: 1100px) {
  .accordion__toggle {
    font-size: 20px;
    padding: 25px 80px;
  }
}

.accordion__toggle:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 6px;
  width: 10px;
  height: 7px;
  margin-top: -1px;
  margin-left: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

@media screen and (min-width: 700px) {
  .accordion__toggle:before {
    left: 21px;
  }
}

@media screen and (min-width: 1100px) {
  .accordion__toggle:before {
    top: 37px;
  }
}

.accordion__toggle.active:before {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion__toggle:hover {
  color: #000000;
  background: transparent;
}

.accordion__toggle:hover:before {
  background-image: url(../assets/icons/black-full.svg);
}

.accordion__content {
  font-size: 13px;
  display: none;
  padding: 0 15px 25px 45px;
  margin-top: -15px;
}

@media screen and (min-width: 700px) {
  .accordion__content {
    font-size: 15px;
    padding: 0 40px 15px 70px;
  }
}

@media screen and (min-width: 1100px) {
  .accordion__content {
    padding: 0 80px 15px 80px;
  }
}

.accordion__back-to-top {
  color: #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 700px) {
  .accordion__back-to-top {
    font-size: 16px;
  }
}

.accordion__back-to-top:hover {
  background: transparent;
  color: #000000;
}

.accordion__back-to-top:hover:after {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 7px;
  margin-top: -3px;
  margin-left: 7px;
  background: url(../assets/icons/black.svg);
  position: static;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.accordion__back-to-top:after {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 7px;
  margin-top: -3px;
  margin-left: 7px;
  background: url(../assets/icons/black.svg);
  position: static;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.twitter-pull h2 {
  display: inline-block;
  margin-right: 17px;
  margin-bottom: 5px;
  margin-top: 0;
}

.twitter-pull {
  margin: 50px 0;
}

@media screen and (min-width: 700px) {
  .twitter-pull {
    margin: 50px -20px;
  }
}

@media screen and (min-width: 1100px) {
  .twitter-pull {
    margin: 80px 0;
  }
}

.twitter-pull .twitter__follow {
  margin-top: -6px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 1100px) {
  .twitter-pull .twitter__follow {
    margin-top: -16px;
  }
}

.tweets {
  padding-left: 27px;
}

@media screen and (min-width: 700px) {
  .tweets {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1100px) {
  .tweets {
    margin: 20px -70px;
  }
}

.twitter-pull.animate .tweet {
  opacity: 1;
}

.tweet {
  font-size: 13px;
  margin: 25px 0;
}

@media screen and (min-width: 700px) {
  .tweet {
    font-size: 15px;
    width: calc(50% - 45px);
  }
  .tweet:last-child {
    display: none;
  }
}

@media screen and (min-width: 1100px) {
  .tweet {
    width: calc(33.33% - 57px);
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .tweet:nth-child(2) {
    -webkit-transition-delay: 150ms;
         -o-transition-delay: 150ms;
            transition-delay: 150ms;
  }
  .tweet:last-child {
    display: block;
    -webkit-transition-delay: 300ms;
         -o-transition-delay: 300ms;
            transition-delay: 300ms;
  }
}

.tweet:before {
  width: 17px;
  height: 14px;
  background: url(../assets/icons/twitter-purple.svg) no-repeat;
  background-size: 100%;
  top: 0.3em;
  left: -27px;
}

.tweet__username {
  font-weight: 500;
  margin-bottom: 0.5em;
}

.tweet__date {
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.7em;
}

.instagram-pull h2 {
  display: inline-block;
  margin-right: 17px;
  margin-bottom: 5px;
  margin-top: 0;
}

@media screen and (min-width: 700px) {
  .instagram-pull {
    margin: 50px -20px;
  }
}

@media screen and (min-width: 1100px) {
  .instagram-pull {
    margin: 100px 0px;
  }
}

.instagram-pull .instagram__follow {
  margin-top: -6px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 1100px) {
  .instagram-pull .instagram__follow {
    margin-top: -16px;
  }
}

.instagram-wrap {
  margin: 20px -15px;
  overflow-x: scroll;
}

@media screen and (min-width: 700px) {
  .instagram-wrap {
    margin: 30px -20px;
    overflow: visible;
  }
}

@media screen and (min-width: 1100px) {
  .instagram-wrap {
    margin-left: -276px;
    max-width: 1600px;
    width: 100vw;
    margin-top: 75px;
  }
}

.instagram-wrap > div {
  width: 400%;
  white-space: nowrap;
}

@media screen and (min-width: 700px) {
  .instagram-wrap > div {
    width: auto;
  }
}

.instagram-post__tile {
  width: calc(25% - 55px);
  display: inline-block;
  margin-right: 40px;
}

@media screen and (min-width: 700px) {
  .instagram-post__tile {
    width: 25%;
    margin: 0;
    vertical-align: top;
  }
  .instagram-post__tile:nth-child(even) {
    margin-top: 17px;
  }
}

@media screen and (min-width: 1100px) {
  .instagram-post__tile {
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .instagram-post__tile:nth-child(2) {
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .instagram-post__tile:nth-child(3) {
    -webkit-transition-delay: 300ms;
         -o-transition-delay: 300ms;
            transition-delay: 300ms;
  }
  .instagram-post__tile:nth-child(4) {
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .instagram-post__tile:nth-child(even) {
    margin-top: 30px;
  }
}

.instagram-post__tile a {
  display: block;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .instagram-post__tile a:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 18px;
    height: 18px;
    background: url(../assets/icons/instagram-white.svg);
    z-index: 1000;
  }
}

.instagram-post__tile a:hover {
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.instagram-pull.animate .instagram-post__tile {
  opacity: 1;
}

@media screen and (min-width: 700px) {
  .program-list {
    margin-bottom: 72px;
  }
}

@media screen and (min-width: 1100px) {
  .program-list {
    margin-bottom: 103px;
  }
}

.program-list ul, .program-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list ul::before, .program-list li::before {
  content: none;
}

.program-list:not(.animate) li {
  opacity: 0;
}

.program-list__header h2 {
  margin-bottom: -14px;
}

@media screen and (min-width: 700px) {
  .program-list__header h2 {
    margin-bottom: -12px;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__header h2 {
    margin-bottom: -10px;
  }
}

.program-list__body {
  margin: 24px -15px 0;
  border-top: 2px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .program-list__body {
    margin: 30px -40px 0;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__body {
    margin: 42px -79px 0;
  }
}

.program-list__body li {
  padding: 15px 15px 12px;
  border-bottom: 2px solid #e3e3e3;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.program-list__body li:nth-child(1) {
  -webkit-transition-delay: 150ms;
       -o-transition-delay: 150ms;
          transition-delay: 150ms;
}

.program-list__body li:nth-child(2) {
  -webkit-transition-delay: 300ms;
       -o-transition-delay: 300ms;
          transition-delay: 300ms;
}

.program-list__body li:nth-child(3) {
  -webkit-transition-delay: 450ms;
       -o-transition-delay: 450ms;
          transition-delay: 450ms;
}

.program-list__body li:nth-child(4) {
  -webkit-transition-delay: 600ms;
       -o-transition-delay: 600ms;
          transition-delay: 600ms;
}

.program-list__body li:nth-child(5) {
  -webkit-transition-delay: 750ms;
       -o-transition-delay: 750ms;
          transition-delay: 750ms;
}

.program-list__body li:nth-child(6) {
  -webkit-transition-delay: 900ms;
       -o-transition-delay: 900ms;
          transition-delay: 900ms;
}

.program-list__body li:nth-child(7) {
  -webkit-transition-delay: 1050ms;
       -o-transition-delay: 1050ms;
          transition-delay: 1050ms;
}

.program-list__body li:nth-child(8) {
  -webkit-transition-delay: 1200ms;
       -o-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

.program-list__body li:nth-child(9) {
  -webkit-transition-delay: 1350ms;
       -o-transition-delay: 1350ms;
          transition-delay: 1350ms;
}

.program-list__body li:nth-child(10) {
  -webkit-transition-delay: 1500ms;
       -o-transition-delay: 1500ms;
          transition-delay: 1500ms;
}

.program-list__body li:nth-child(11) {
  -webkit-transition-delay: 1650ms;
       -o-transition-delay: 1650ms;
          transition-delay: 1650ms;
}

.program-list__body li:nth-child(12) {
  -webkit-transition-delay: 1800ms;
       -o-transition-delay: 1800ms;
          transition-delay: 1800ms;
}

.program-list__body li:nth-child(13) {
  -webkit-transition-delay: 1950ms;
       -o-transition-delay: 1950ms;
          transition-delay: 1950ms;
}

.program-list__body li:nth-child(14) {
  -webkit-transition-delay: 2100ms;
       -o-transition-delay: 2100ms;
          transition-delay: 2100ms;
}

.program-list__body li:nth-child(15) {
  -webkit-transition-delay: 2250ms;
       -o-transition-delay: 2250ms;
          transition-delay: 2250ms;
}

.program-list__body li:nth-child(16) {
  -webkit-transition-delay: 2400ms;
       -o-transition-delay: 2400ms;
          transition-delay: 2400ms;
}

.program-list__body li:nth-child(17) {
  -webkit-transition-delay: 2550ms;
       -o-transition-delay: 2550ms;
          transition-delay: 2550ms;
}

.program-list__body li:nth-child(18) {
  -webkit-transition-delay: 2700ms;
       -o-transition-delay: 2700ms;
          transition-delay: 2700ms;
}

.program-list__body li:nth-child(19) {
  -webkit-transition-delay: 2850ms;
       -o-transition-delay: 2850ms;
          transition-delay: 2850ms;
}

.program-list__body li:nth-child(20) {
  -webkit-transition-delay: 3000ms;
       -o-transition-delay: 3000ms;
          transition-delay: 3000ms;
}

.program-list__body li:nth-child(21) {
  -webkit-transition-delay: 3150ms;
       -o-transition-delay: 3150ms;
          transition-delay: 3150ms;
}

.program-list__body li:nth-child(22) {
  -webkit-transition-delay: 3300ms;
       -o-transition-delay: 3300ms;
          transition-delay: 3300ms;
}

.program-list__body li:nth-child(23) {
  -webkit-transition-delay: 3450ms;
       -o-transition-delay: 3450ms;
          transition-delay: 3450ms;
}

.program-list__body li:nth-child(24) {
  -webkit-transition-delay: 3600ms;
       -o-transition-delay: 3600ms;
          transition-delay: 3600ms;
}

.program-list__body li:nth-child(25) {
  -webkit-transition-delay: 3750ms;
       -o-transition-delay: 3750ms;
          transition-delay: 3750ms;
}

@media screen and (min-width: 700px) {
  .program-list__body li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 40px 24px;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__body li {
    padding: 24px 79px 26px;
  }
}

@media screen and (min-width: 700px) {
  .program-list__name {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60.8%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 60.8%;
            flex: 0 0 60.8%;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__name {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 68.3%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 68.3%;
            flex: 0 0 68.3%;
  }
}

.program-list__name h3, .program-list__name .faculty-list__text h2, .faculty-list__text .program-list__name h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (min-width: 700px) {
  .program-list__name h3, .program-list__name .faculty-list__text h2, .faculty-list__text .program-list__name h2 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__name h3, .program-list__name .faculty-list__text h2, .faculty-list__text .program-list__name h2 {
    font-size: 25px;
  }
}

.program-list__name h3 a, .program-list__name .faculty-list__text h2 a, .faculty-list__text .program-list__name h2 a {
  background: transparent;
}

.program-list__name h3 a:after, .program-list__name .faculty-list__text h2 a:after, .faculty-list__text .program-list__name h2 a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 6px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

@media screen and (min-width: 1100px) {
  .program-list__name h3 a:after, .program-list__name .faculty-list__text h2 a:after, .faculty-list__text .program-list__name h2 a:after {
    margin-left: 10px;
  }
}

.program-list__name h3 a:hover, .program-list__name .faculty-list__text h2 a:hover, .faculty-list__text .program-list__name h2 a:hover {
  color: #4d2177;
}

.program-list__name h3 a:hover:after, .program-list__name .faculty-list__text h2 a:hover:after, .faculty-list__text .program-list__name h2 a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.program-list__type {
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .program-list__type {
    margin-top: 3px;
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .program-list__type {
    margin-top: 9px;
  }
}

.stats-3up {
  margin: 32px -15px;
  padding: 18px 15px 69px;
  background-color: #3f0084;
  background-size: cover;
  background-position: center center;
  background-blend-mode: soft-light;
  position: relative;
}

@media screen and (min-width: 700px) {
  .stats-3up {
    margin: 32px -40px;
    padding: 16px 40px 45px;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up {
    margin-left: -276px;
    margin-bottom: 173px;
    padding: 78px 40px 104px;
    width: 100vw;
    max-width: 1600px;
  }
}

.stats-3up:not(.animate) li {
  opacity: 0;
}

.stats-3up:not(.animate) .stats-3up__divider {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

@media screen and (min-width: 700px) {
  .stats-3up:not(.animate) .stats-3up__divider {
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
  }
}

.stats-3up ul, .stats-3up li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-3up ul::before, .stats-3up li::before {
  content: none;
}

.stats-3up h2 {
  margin-bottom: -3px;
  color: #FFFFFF;
  position: relative;
}

@media screen and (min-width: 700px) {
  .stats-3up h2 {
    margin-bottom: -12px;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up h2 {
    margin-bottom: -10px;
  }
}

.stats-3up p {
  color: #FFFFFF;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .stats-3up__header {
    width: 60.5%;
    margin: 0 auto;
  }
}

.stats-3up__stats li {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.stats-3up__stats li:nth-child(1) {
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}

.stats-3up__stats li:nth-child(2) {
  -webkit-transition-delay: 150ms;
       -o-transition-delay: 150ms;
          transition-delay: 150ms;
}

.stats-3up__stats li:nth-child(3) {
  -webkit-transition-delay: 300ms;
       -o-transition-delay: 300ms;
          transition-delay: 300ms;
}

@media screen and (min-width: 700px) {
  .stats-3up__stats {
    margin: 49px -20px;
  }
  .stats-3up__stats ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .stats-3up__stats li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up__stats {
    margin: 89px 80px;
  }
}

.stats-3up__stat {
  padding: 26px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 60px;
  font-weight: 1000;
  text-align: center;
  line-height: 1;
  color: #9ef7ff;
}

@media screen and (min-width: 700px) {
  .stats-3up__stat {
    margin-top: -11px;
    padding: 0;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up__stat {
    margin-top: -3px;
    font-size: 80px;
  }
}

.stats-3up__text {
  text-align: center;
  color: #FFFFFF;
}

@media screen and (min-width: 700px) {
  .stats-3up__text {
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up__text {
    font-size: 20px;
    margin-top: 5px;
  }
}

.stats-3up__cta {
  margin: 10px 0 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .stats-3up__cta {
    margin: 10px 0 -7px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up__cta {
    margin: 15px 0 -4px;
    font-size: 25px;
  }
}

.stats-3up__cta a {
  color: white;
  background: transparent;
}

.stats-3up__cta a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: transparent url(../assets/icons/white.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 6px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

@media screen and (min-width: 1100px) {
  .stats-3up__cta a:after {
    margin-left: 10px;
  }
}

.stats-3up__cta a:hover {
  background-color: transparent;
}

.stats-3up__cta a:hover:after {
  background-image: url(../assets/icons/white-full.svg);
}

.stats-3up__divider {
  height: 2px;
  background-color: #FFFFFF;
  opacity: 0.5;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease 450ms;
  transition: -webkit-transform 0.3s ease 450ms;
  -o-transition: transform 0.3s ease 450ms;
  transition: transform 0.3s ease 450ms;
  transition: transform 0.3s ease 450ms, -webkit-transform 0.3s ease 450ms;
}

@media screen and (min-width: 700px) {
  .stats-3up__divider {
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background-color: white;
    opacity: 0.5;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
  }
}

.stats-3up__button {
  margin: 55px 0 0;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .stats-3up__button {
    margin: 59px 0 0;
  }
}

@media screen and (min-width: 1100px) {
  .stats-3up__button {
    margin: -5px 0 0;
  }
}

.stats-3up__button .outline-cta {
  border-top: none;
  color: #FFFFFF;
}

.stats-3up__button .outline-cta::before {
  content: "";
  width: 74%;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.stats-3up__button .outline-cta::after {
  width: 11%;
  right: -1px;
}

.stats-3up__button .outline-cta:hover::before {
  width: 83%;
}

.stats-3up__button .outline-cta:hover::after {
  width: 20%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.no-backgroundblendmode .stats-3up:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4d2177;
  opacity: 0.85;
  z-index: 0;
}

.carousel ul, .carousel li {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.carousel ul::before, .carousel li::before {
  content: none;
}

.carousel h2 {
  margin-top: 32px;
  margin-bottom: -15px;
}

@media screen and (min-width: 700px) {
  .carousel h2 {
    margin-bottom: -12px;
  }
}

@media screen and (min-width: 1100px) {
  .carousel h2 {
    margin-bottom: -9px;
  }
}

.carousel figure {
  margin: 0;
}

.carousel img {
  width: 100%;
}

.carousel__header {
  margin-bottom: 22px;
}

@media screen and (min-width: 700px) {
  .carousel__header {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 1100px) {
  .carousel__header {
    margin-bottom: 64px;
  }
}

.carousel__slides {
  position: relative;
  margin: 0 -15px;
}

@media screen and (min-width: 700px) {
  .carousel__slides {
    margin: 0 -40px;
  }
}

@media screen and (min-width: 1100px) {
  .carousel__slides {
    width: 100vw;
    margin: 0 0 0 -276px;
    max-width: 1600px;
  }
}

.carousel__slide {
  margin-right: 12vw;
}

@media screen and (min-width: 700px) {
  .carousel__slide {
    margin-right: 13.3vw;
  }
}

@media screen and (min-width: 1100px) {
  .carousel__slide {
    margin-right: 98px;
    max-width: 1600px;
  }
}

.carousel__slide a {
  color: #093ea7;
  background: #FFFFFF;
}

.carousel__caption {
  position: relative;
  left: 15px;
  margin: 0;
  padding: 8px 23px;
  background-color: #0041a3;
  font-size: 13px;
  font-style: normal;
  color: #FFFFFF;
  line-height: 1.8;
}

@media screen and (min-width: 700px) {
  .carousel__caption {
    left: 71px;
    width: 67.1vw;
    padding: 8px 23px 13px;
    font-size: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .carousel__caption {
    left: 201px;
    width: 62.4vw;
    padding: 8px 23px 12px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.carousel .slick-list {
  width: 95.1vw;
  overflow: visible;
}

@media screen and (min-width: 700px) {
  .carousel .slick-list {
    width: 94.2vw;
  }
}

@media screen and (min-width: 1100px) {
  .carousel .slick-list {
    width: 92.15vw;
  }
}

@media screen and (min-width: 1900px) {
  .carousel .slick-list {
    width: 100%;
  }
}

.carousel button.slick-arrow {
  position: absolute;
  right: 11.1vw;
  width: 14.1vw;
  height: 14.1vw;
  max-width: 64px;
  max-height: 64px;
  font-size: 0;
  z-index: 1;
}

@media screen and (min-width: 700px) {
  .carousel button.slick-arrow {
    right: 14.3vw;
  }
}

@media screen and (min-width: 1100px) {
  .carousel button.slick-arrow {
    right: 11.3vw;
    width: 9vw;
    height: 9vw;
    max-width: 114px;
    max-height: 114px;
  }
}

@media screen and (min-width: 1600px) {
  .carousel button.slick-arrow {
    left: 82.5vw;
  }
}

@media screen and (min-width: 1855px) {
  .carousel button.slick-arrow {
    left: 1530px;
  }
}

@media screen and (min-width: 1900px) {
  .carousel button.slick-arrow {
    left: 1445px;
  }
}

.carousel button.slick-arrow:hover::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.carousel button.slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1600px) {
  .carousel button.slick-arrow {
    left: 0;
  }
}

.carousel button.slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.carousel button.slick-prev {
  top: 30.5vw;
}

@media screen and (min-width: 700px) {
  .carousel button.slick-prev {
    top: 25.7vw;
  }
}

@media screen and (min-width: 1100px) {
  .carousel button.slick-prev {
    top: 25vw;
  }
}

.carousel button.slick-prev::before {
  background-image: url(../assets/icons/play-circle.svg);
}

.carousel button.slick-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(../assets/icons/black.svg);
  background-size: 11px 7px;
}

@media screen and (min-width: 1100px) {
  .carousel button.slick-prev::after {
    background-size: 16px 12px;
  }
}

.carousel button.slick-next {
  top: 32px;
}

@media screen and (min-width: 700px) {
  .carousel button.slick-next {
    top: 75px;
  }
}

@media screen and (min-width: 1100px) {
  .carousel button.slick-next {
    top: 156px;
  }
}

.carousel button.slick-next::before {
  background-image: url(../assets/icons/play-circle.svg);
}

.carousel button.slick-next::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(../assets/icons/black.svg);
  background-size: 11px 7px;
  -webkit-transform: scaleX(-1) rotate(90deg);
      -ms-transform: scaleX(-1) rotate(90deg);
          transform: scaleX(-1) rotate(90deg);
}

@media screen and (min-width: 1100px) {
  .carousel button.slick-next::after {
    background-size: 16px 12px;
  }
}

@media screen and (min-width: 700px) {
  .home-featured-space {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 40px -40px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px) {
  .home-featured-space {
    width: 100vw;
    margin-left: -201px;
    position: relative;
    max-width: 1600px;
  }
  .home-featured-space .home-featured-block:first-child:after,
  .home-featured-space .home-featured-block:nth-child(2):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #e3e3e3;
    -webkit-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    transition: all 250ms linear;
  }
  .home-featured-space .home-featured-block:nth-child(2):after {
    -webkit-transition-delay: 250ms;
         -o-transition-delay: 250ms;
            transition-delay: 250ms;
  }
  .home-featured-space:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 0;
    height: 0;
    width: 1px;
    background: #e3e3e3;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
  }
}

.home-featured-block {
  margin: 0 -15px;
  padding: 10px 15px 20px;
  border-bottom: 1px solid #e3e3e3;
}

@media screen and (min-width: 700px) {
  .home-featured-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 50%;
    margin: 0;
    border-bottom: 0;
    padding: 20px 30px 45px 40px;
    position: relative;
  }
  .home-featured-block .home-featured__background {
    background-color: #093ea7;
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
  .home-featured-block:hover .home-featured__background, .home-featured-block.focusin .home-featured__background {
    opacity: 1;
  }
  .home-featured-block:hover h2,
  .home-featured-block:hover .home-featured__caption,
  .home-featured-block:hover .home-featured__ctas a, .home-featured-block.focusin h2,
  .home-featured-block.focusin .home-featured__caption,
  .home-featured-block.focusin .home-featured__ctas a {
    color: #FFFFFF;
  }
  .home-featured-block:hover .home-featured__ctas a:after, .home-featured-block.focusin .home-featured__ctas a:after {
    background-image: url(../assets/icons/white.svg);
  }
  .home-featured-block:first-child, .home-featured-block:nth-child(2) {
    border-bottom: 1px solid #e3e3e3;
  }
  .home-featured-block:first-child h2, .home-featured-block:nth-child(2) h2 {
    margin-top: 0;
  }
  .home-featured-block:nth-child(odd) {
    border-right: 1px solid #e3e3e3;
  }
}

@media screen and (min-width: 1100px) {
  .home-featured-block {
    padding: 0 100px 90px 100px;
    position: relative;
    opacity: 0;
    -webkit-transition: all 300ms 500ms;
    -o-transition: all 300ms 500ms;
    transition: all 300ms 500ms;
  }
  .home-featured-block:nth-child(2) {
    -webkit-transition-delay: 700ms;
         -o-transition-delay: 700ms;
            transition-delay: 700ms;
  }
  .home-featured-block:nth-child(3) {
    -webkit-transition-delay: 800ms;
         -o-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .home-featured-block:nth-child(4) {
    -webkit-transition-delay: 900ms;
         -o-transition-delay: 900ms;
            transition-delay: 900ms;
  }
  .home-featured-block:first-child, .home-featured-block:nth-child(2) {
    border-bottom: 0;
  }
  .home-featured-block:first-child h2, .home-featured-block:nth-child(2) h2 {
    margin-top: 0.7em;
  }
  .home-featured-block:nth-child(odd) {
    border-right: 0;
  }
  .home-featured-block:last-child, .home-featured-block:nth-last-child(2) {
    padding-bottom: 90px;
  }
}

.home-featured-block h2 {
  font-size: 30px;
  margin-bottom: 0.3em;
}

@media screen and (min-width: 700px) {
  .home-featured-block h2 {
    font-size: 40px;
    margin-top: 0.7em;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px) {
  .home-featured-block h2 {
    font-size: 70px;
    font-weight: 400;
    width: 100%;
  }
}

.no-backgroundblendmode .home-featured-block .home-featured__background:after {
  content: "";
  background: rgba(6, 60, 166, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 1100px) {
  .home-featured-space.animate .home-featured-block {
    opacity: 1;
  }
  .home-featured-space.animate .home-featured-block:after {
    width: 100%;
  }
  .home-featured-space.animate:before {
    height: 100%;
  }
}

.home-featured__caption {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 1em;
}

@media screen and (min-width: 700px) {
  .home-featured__caption {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .home-featured__caption {
    font-size: 25px;
    width: 100%;
  }
}

@media screen and (min-width: 700px) {
  .home-featured__ctas {
    margin-top: auto;
  }
}

.home-featured__ctas a {
  margin-right: 30px;
}

.home-featured__ctas a:last-child {
  margin-right: 0;
}

.homepage-happenings {
  margin-bottom: -50px;
}

.homepage-happenings h2 {
  color: #000000;
  font-size: 45px;
  line-height: 1.15;
  text-align: center;
  margin: 0.7em 0 0.45em;
}

@media screen and (min-width: 700px) {
  .homepage-happenings h2 {
    font-size: 50px;
    margin: 0.9em 0 0.6em;
  }
}

@media screen and (min-width: 1100px) {
  .homepage-happenings h2 {
    font-size: 90px;
  }
}

.homepage-happenings h3, .homepage-happenings .faculty-list__text h2, .faculty-list__text .homepage-happenings h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

@media screen and (min-width: 1100px) {
  .homepage-happenings h3, .homepage-happenings .faculty-list__text h2, .faculty-list__text .homepage-happenings h2 {
    font-size: 70px;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
}

.homepage-happenings h3 a, .homepage-happenings .faculty-list__text h2 a, .faculty-list__text .homepage-happenings h2 a {
  color: #FFFFFF;
  font-weight: 400;
  padding-left: 65px;
  background: transparent;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .homepage-happenings h3 a, .homepage-happenings .faculty-list__text h2 a, .faculty-list__text .homepage-happenings h2 a {
    padding-left: 80px;
  }
}

.homepage-happenings h3 a:hover:before, .homepage-happenings .faculty-list__text h2 a:hover:before, .faculty-list__text .homepage-happenings h2 a:hover:before, .homepage-happenings h3 a:hover:after, .homepage-happenings .faculty-list__text h2 a:hover:after, .faculty-list__text .homepage-happenings h2 a:hover:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #FFFFFF;
}

.homepage-happenings h3 a:hover:after, .homepage-happenings .faculty-list__text h2 a:hover:after, .faculty-list__text .homepage-happenings h2 a:hover:after {
  background: black;
}

.homepage-happenings h3 a:before, .homepage-happenings .faculty-list__text h2 a:before, .faculty-list__text .homepage-happenings h2 a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 35px;
  height: 35px;
  background: url(../assets/icons/notch-circle-brightblue.svg) no-repeat;
  background-size: 100%;
  border-radius: 100em;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (min-width: 1100px) {
  .homepage-happenings h3 a:before, .homepage-happenings .faculty-list__text h2 a:before, .faculty-list__text .homepage-happenings h2 a:before {
    width: 45px;
    height: 45px;
    top: 21px;
  }
}

.homepage-happenings h3 a:after, .homepage-happenings .faculty-list__text h2 a:after, .faculty-list__text .homepage-happenings h2 a:after {
  content: "";
  display: block;
  position: absolute;
  left: 17px;
  top: 15px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #FFFFFF;
  width: 2px;
  height: 14px;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (min-width: 1100px) {
  .homepage-happenings h3 a:after, .homepage-happenings .faculty-list__text h2 a:after, .faculty-list__text .homepage-happenings h2 a:after {
    width: 2px;
    height: 18px;
    left: 21px;
    top: 34px;
  }
}

@media screen and (min-width: 700px) {
  .happenings__news-events {
    margin: 0 -40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1100px) {
  .happenings__news-events {
    margin: 0 0 0 -201px;
    width: 100vw;
    max-width: 1600px;
  }
}

.happenings__event-date {
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-right: 20px;
}

@media screen and (min-width: 1100px) {
  .happenings__event-date {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 45px;
  }
}

.happenings__event-day {
  color: #9ef7ff;
  font-size: 40px;
  font-weight: 700;
}

@media screen and (min-width: 1100px) {
  .happenings__event-day {
    font-size: 50px;
  }
}

.happenings__event-month {
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
}

@media screen and (min-width: 1100px) {
  .happenings__event-month {
    font-size: 30px;
    margin-left: 17px;
    margin-top: 9px;
  }
}

.happenings__events {
  color: #FFFFFF;
  margin: 0 -15px;
  padding: 0 15px 15px;
  background: black url(../assets/images/events-background.jpg);
  background-size: cover;
  overflow: hidden;
}

@media screen and (min-width: 700px) {
  .happenings__events {
    margin: 0;
    width: 50%;
    padding: 5px 20px 30px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .happenings__events {
    padding: 25px 90px 130px 100px;
  }
}

.happenings__event {
  overflow: auto;
  padding-top: 7px;
  padding-bottom: 15px;
  position: relative;
}

.happenings__event:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  -webkit-transition: all 300ms 300ms;
  -o-transition: all 300ms 300ms;
  transition: all 300ms 300ms;
}

@media screen and (min-width: 1100px) {
  .happenings__event {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.happenings__event:last-child:after {
  content: none;
}

@media screen and (min-width: 1100px) {
  .happenings__events-wrap {
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
  }
}

@media screen and (min-width: 1100px) {
  .animate.homepage-happenings h3, .animate.homepage-happenings .faculty-list__text h2, .faculty-list__text .animate.homepage-happenings h2 {
    opacity: 1;
  }
}

.animate .happenings__events-wrap {
  opacity: 1;
}

.animate .happenings__events-wrap .happenings__event:after {
  width: 100%;
}

.happenings__event__details {
  overflow: hidden;
}

.happenings__event-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  margin-top: 0.8em;
}

@media screen and (min-width: 1100px) {
  .happenings__event-title {
    font-size: 20px;
    margin-bottom: 0.2em;
  }
}

.happenings__event-title a {
  color: #FFFFFF;
  background: transparent;
  position: relative;
  padding-right: 20px;
}

.happenings__event-title a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/white.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  bottom: 0.35em;
  right: 2px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

.happenings__event-title a:hover {
  color: #FFFFFF;
  background: transparent;
}

.happenings__event-title a:hover:after {
  background-image: url(../assets/icons/white-full.svg);
}

.happenings__event-time {
  font-size: 13px;
}

@media screen and (min-width: 1100px) {
  .happenings__event-time {
    font-size: 15px;
  }
}

.happenings__event-location {
  font-size: 13px;
}

@media screen and (min-width: 1100px) {
  .happenings__event-location {
    font-size: 15px;
  }
}

.happenings__news {
  margin: 0 -15px;
  padding: 0 15px 15px;
  background: url(../assets/images/news-background.jpg);
  background-size: cover;
  overflow: hidden;
}

@media screen and (min-width: 700px) {
  .happenings__news {
    margin: 0;
    width: 50%;
    padding: 5px 20px 30px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .happenings__news {
    padding: 25px 90px 130px 100px;
  }
}

.happenings__news h3, .happenings__news .faculty-list__text h2, .faculty-list__text .happenings__news h2 {
  -webkit-transition: all 300ms 300ms;
  -o-transition: all 300ms 300ms;
  transition: all 300ms 300ms;
}

.happenings__news h3 a, .happenings__news .faculty-list__text h2 a, .faculty-list__text .happenings__news h2 a {
  color: #000000;
}

.happenings__news h3 a:before, .happenings__news .faculty-list__text h2 a:before, .faculty-list__text .happenings__news h2 a:before {
  background: url(../assets/icons/notch-circle-black.svg) no-repeat;
  background-size: 100%;
}

.happenings__news h3 a:after, .happenings__news .faculty-list__text h2 a:after, .faculty-list__text .happenings__news h2 a:after {
  background: #000000;
}

.happenings__news-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  margin-top: 1em;
}

@media screen and (min-width: 1100px) {
  .happenings__news-title {
    font-size: 25px;
    margin-bottom: 0.5em;
    margin-top: 1.6em;
  }
}

.happenings__news-title a {
  background: transparent;
  position: relative;
  padding-right: 20px;
}

.happenings__news-title a:after {
  content: "";
  width: 12px;
  height: 7px;
  background: url(../assets/icons/black.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  right: 2px;
  bottom: 0.35em;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

.happenings__news-title a:hover {
  color: #000000;
  background: transparent;
}

.happenings__news-title a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.happenings__news-date {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

@media screen and (min-width: 1100px) {
  .happenings__news-date {
    font-size: 16px;
  }
}

.happenings__news-date:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 4px;
  background: #093ea7;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 10px;
}

.happenings__news-wrap {
  overflow: hidden;
}

.happenings__news-item {
  margin-bottom: 30px;
  -webkit-transition: all 300ms 300ms;
  -o-transition: all 300ms 300ms;
  transition: all 300ms 300ms;
}

@media screen and (min-width: 1100px) {
  .happenings__news-item {
    opacity: 0;
  }
}

.animate .happenings__news-item {
  opacity: 1;
}

.home-hero {
  margin: 0 -15px;
  position: relative;
  background: #000;
}

@media screen and (min-width: 700px) {
  .home-hero {
    margin: 0 -40px;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero {
    max-width: 1600px;
    width: 100vw;
    margin-left: -200px;
  }
}

.home-hero h1 {
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 600;
  position: absolute;
  bottom: 110px;
  border: 0;
  padding: 0;
  margin: 0 15px;
}

@media screen and (min-width: 700px) {
  .home-hero h1 {
    position: relative;
    bottom: 0;
    margin-bottom: 40px;
  }
  .home-hero h1:after {
    content: none;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero h1 {
    font-size: 100px;
    padding: 0 95px;
    margin-bottom: 57px;
    -webkit-animation: fadeIn 500ms both 500ms;
            animation: fadeIn 500ms both 500ms;
  }
}

.home-hero__ctas {
  text-align: center; /* added to get 'Request Info' text visible in circle button on mobile - 20 March 2020 */
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -15px;
  padding: 0 0 0 15px;
}

@media screen and (min-width: 700px) {
  .home-hero__ctas {
    margin-top: 0;
    display: block;
    right: 40px;
    margin-right: 0;
    top: 13vh;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__ctas {
    margin-right: -35px;
    top: 80px;
    opacity: 0;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    -webkit-animation: fadeIn 300ms both 500ms;
            animation: fadeIn 300ms both 500ms;
  }
}

.home-hero__ctas li {
  background: #f1f1f1;  /* added to make background stay on - 20 March 2020 */
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 25px;
  border-radius: 100em;
  -webkit-transition: all 300ms 150ms;
  -o-transition: all 300ms 150ms;
  transition: all 300ms 150ms;
}

@media screen and (min-width: 700px) {
  .home-hero__ctas li {
    width: 75px;
    height: 75px;
    margin-right: 0;
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__ctas li {
    font-size: 20px;
    width: 125px;
    height: 125px;
    margin-right: 72px;
    margin-bottom: 2vh;
  }
}

.home-hero__ctas li:before {
  content: none;
}

.home-hero__ctas li:hover {
  background: #9ef7ff;
}

.home-hero__ctas li:hover a {
  color: #000000;
  -webkit-transition: all 300ms 100ms;
  -o-transition: all 300ms 100ms;
  transition: all 300ms 100ms;
}

.home-hero__ctas li:hover a:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-image: url(../assets/icons/blue-circle.svg);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.home-hero__ctas li:nth-child(2) a:before {
  -webkit-transform: rotate(72deg);
      -ms-transform: rotate(72deg);
          transform: rotate(72deg);
}

.home-hero__ctas li:nth-child(2):hover a:before {
  -webkit-transform: rotate(117deg);
      -ms-transform: rotate(117deg);
          transform: rotate(117deg);
}

.home-hero__ctas li:nth-child(3) a:before {
  -webkit-transform: rotate(-250deg);
      -ms-transform: rotate(-250deg);
          transform: rotate(-250deg);
}

.home-hero__ctas li:nth-child(3):hover a:before {
  -webkit-transform: rotate(-205deg);
      -ms-transform: rotate(-205deg);
          transform: rotate(-205deg);
}

.home-hero__ctas li a {
  color: #000;  /* changed to make text black when not hovering - 20 March 2020 */
  background: transparent;
}

.home-hero__ctas li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent url(../assets/icons/white-circle.svg) no-repeat center;
  background-size: 100%;
  border-radius: 100em;
  z-index: 0;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.home-hero__image {
  position: relative;
  max-height: 93vh;
}

@media screen and (min-width: 700px) {
  .home-hero__image {
    padding-top: 230px;
    position: static;
    max-height: inherit;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__image {
    padding-top: 55vh;
  }
}

.home-hero__image img {
  width: 100%;
}

@media screen and (min-width: 700px) {
  .home-hero__image img {
    position: absolute;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: 150%;
    top: 0;
  }
}

@media screen and (min-width: 700px) {
  .home-hero__tabs:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 10000;
    background: #FFFFFF;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__tabs:before {
    width: 0;
    -webkit-animation: expandIn 500ms 800ms both;
            animation: expandIn 500ms 800ms both;
  }
}

.home-hero__tablist {
  background: #093ea7 url(../assets/images/grid-overlay.jpg) no-repeat center;
  background-size: cover;
  background-blend-mode: overlay;
}

@media screen and (min-width: 700px) {
  .home-hero__tablist {
    background: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 10px 0px;
  }
  .home-hero__tablist:after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    background: #FFFFFF;
    height: 1px;
  }
}

@media screen and (min-width: 700px) and (min-width: 1100px) {
  .home-hero__tablist:after {
    content: none;
  }
}

@media screen and (min-width: 700px) {
  .home-hero__tablist:before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    background: #FFFFFF;
    width: 1px;
  }
}

@media screen and (min-width: 700px) and (min-width: 1100px) {
  .home-hero__tablist:before {
    opacity: 0;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__tablist {
    padding: 0px;
  }
}

.home-hero__tablist a {
  color: #FFFFFF;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  padding: 25px 60px 25px 15px;
  background: #093ea7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  position: relative;
}

.home-hero__tablist a:hover {
  background: #093ea7;
}

.home-hero__tablist a:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../assets/icons/white.svg) no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: inline-block;
  position: absolute;
  margin-left: 5px;
  margin-top: 13px;
  -webkit-transition: background-image 200ms;
  -o-transition: background-image 200ms;
  transition: background-image 200ms;
}

.home-hero__tablist a:hover:after {
  background-image: url(../assets/icons/white-full.svg);
}

@media screen and (min-width: 700px) {
  .home-hero__tablist a {
    width: 50%;
    border-bottom: 0;
    padding: 25px 60px 25px 40px;
    min-height: 102px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__tablist a {
    font-size: 25px;
    width: 25%;
    padding: 40px 35px 40px 55px;
    position: relative;
    opacity: 0;
    -webkit-animation: fadeIn 300ms both 1000ms;
            animation: fadeIn 300ms both 1000ms;
  }
  .home-hero__tablist a:nth-child(2) {
    -webkit-animation-delay: 1200ms;
            animation-delay: 1200ms;
  }
  .home-hero__tablist a:nth-child(3) {
    -webkit-animation-delay: 1300ms;
            animation-delay: 1300ms;
  }
  .home-hero__tablist a:nth-child(4) {
    -webkit-animation-delay: 1400ms;
            animation-delay: 1400ms;
  }
  .home-hero__tablist a:after {
    content: "";
    top: 45px;
    bottom: 40px;
    right: 0;
    width: 1px;
    background: #FFFFFF;
    opacity: 0.62;
    position: absolute;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    height: auto;
    margin: 0;
  }
  .home-hero__tablist a:last-child:after {
    content: none;
  }
}

.home-hero-tabpanels,
.home-close__panels {
  display: none;
}

.open-panel .home-hero-tabpanels,
.open-panel .home-close__panels {
  display: block;
}

.open-panel .home-hero__image {
  display: none;
}

.open-panel .home-hero__tabs {
  position: fixed;
  top: 49px;
  bottom: 0;
  overflow: auto;
  z-index: 1000;
  width: 100%;
  opacity: 1;
}

@media screen and (min-width: 700px) {
  .open-panel .home-hero__tabs {
    top: 60px;
    background: #fff;
  }
}

@media screen and (min-width: 1100px) {
  .open-panel .home-hero__tabs {
    background: #000;
    max-width: 1600px;
  }
}

.open-panel .home-hero__tabs .home-hero__tabs-inner {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 700px) {
  .open-panel .home-hero__tabs:before {
    opacity: 0;
  }
}

@media screen and (min-width: 1100px) {
  .open-panel .home-hero__panel:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    opacity: 1;
    z-index: 1;
    background: transparent -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.89)), to(rgba(0, 0, 0, 0)));
    background: transparent -o-linear-gradient(bottom, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
    background: transparent linear-gradient(0deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.open-panel .home-hero__tablist {
  background: none;
}

.open-panel .home-hero__tablist a {
  background: #fff;
  position: relative;
  z-index: 100;
}

.open-panel .home-hero__tablist a:hover {
  background: #fff;
}

@media screen and (min-width: 700px) {
  .open-panel .home-hero__tablist {
    padding: 0;
  }
  .open-panel .home-hero__tablist:before {
    background: #e3e3e3;
    bottom: 0;
    z-index: 1000;
  }
  .open-panel .home-hero__tablist:after {
    content: none;
  }
}

@media screen and (min-width: 1100px) {
  .open-panel .home-hero__tablist {
    position: relative;
  }
  .open-panel .home-hero__tablist a {
    background: transparent;
  }
  .open-panel .home-hero__tablist a:hover {
    background: transparent;
  }
  .open-panel .home-hero__tablist:before {
    content: none;
  }
}

.open-panel .home-hero__tablist a {
  color: #000000;
  border-top: 1px solid rgba(227, 227, 227, 0.63);
}

.open-panel .home-hero__tablist a:last-child {
  border-bottom: 1px solid rgba(227, 227, 227, 0.63);
}

@media screen and (min-width: 700px) {
  .open-panel .home-hero__tablist a:nth-child(3) {
    border-bottom: 1px solid rgba(227, 227, 227, 0.63);
  }
}

@media screen and (min-width: 1100px) {
  .open-panel .home-hero__tablist a {
    color: #FFFFFF;
    border-top: 0;
  }
  .open-panel .home-hero__tablist a[aria-selected="true"] {
    background: #093ea7;
    mix-blend-mode: hard-light;
  }
  .open-panel .home-hero__tablist a[aria-selected="true"]:after {
    content: none;
  }
}

.open-panel .home-hero__tablist a:after {
  background-image: url(../assets/icons/black.svg);
}

@media screen and (min-width: 1100px) {
  .open-panel .home-hero__tablist a:after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    height: auto;
  }
}

.open-panel .home-hero__tablist a:hover:after {
  background-image: url(../assets/icons/black-full.svg);
}

.open-hero .header {
  top: 0;
  position: fixed;
  width: 100%;
}

.open-hero {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.home-close__panels {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  background: transparent url(../assets/icons/X-white.svg) bottom left no-repeat;
  background-size: 14px 14px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

@media screen and (min-width: 700px) {
  .home-close__panels {
    background: transparent url(../assets/icons/X-blue.svg) bottom left no-repeat;
    background-size: 14px 14px;
  }
}

@media screen and (min-width: 1100px) {
  .home-close__panels {
    top: 82px;
    right: 22px;
    background-size: 22px 22px;
    -webkit-transition: nne;
    -o-transition: nne;
    transition: nne;
  }
}

.home-close__panels:hover {
  background-image: url(../assets/icons/x-white-full.svg);
}

@media screen and (min-width: 700px) {
  .home-close__panels:hover {
    background-image: url(../assets/icons/X-blue-full.svg);
  }
}

.home-close__panels:after {
  content: none;
}

.home-hero__tabs {
  top: 0;
}

@media screen and (min-width: 700px) {
  .home-hero__tabs {
    position: relative;
  }
}

.home-hero__panel__image {
  color: #FFFFFF;
  padding: 100px 15px 30px;
  background-color: #093ea7;
  background-size: cover;
  background-blend-mode: overlay;
}

@media screen and (min-width: 700px) {
  .home-hero__panel__image {
    font-size: 15px;
    width: 50%;
    padding: 65px 20px 50px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__panel__image {
    font-size: 20px;
    background: none;
    width: 66%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 170px 50px 30px 100px;
  }
  .home-hero__panel__image .home-hero__panel__caption {
    position: relative;
  }
  .home-hero__panel__image .home-hero__panel__caption:before {
    content: "";
    position: absolute;
    top: -170px;
    left: -100px;
    right: -1000%;
    bottom: -30px;
    background: #093ea7;
    mix-blend-mode: hard-light;
  }
  .home-hero__panel__image .home-hero__panel__caption h2,
  .home-hero__panel__image .home-hero__panel__caption p {
    position: relative;
  }
  .home-hero__panel__image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 10;
    -webkit-animation: slideOut 700ms both 100ms;
            animation: slideOut 700ms both 100ms;
  }
  .home-hero__panel__image:before {
    content: "";
    position: absolute;
    top: 0;
    left: -17%;
    right: 0;
    bottom: 0px;
    z-index: 0;
    background-image: inherit;
    background-size: cover;
  }
}

.no-backgroundblendmode .home-hero__panel__image .home-hero__panel__caption:before {
  background: rgba(9, 62, 167, 0.75);
}

.no-backgroundblendmode .open-panel .home-hero__tablist a[aria-selected="true"] {
  background: rgba(9, 62, 167, 0.75);
}

.home-hero__panel h2 {
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}

@media screen and (min-width: 1100px) {
  .home-hero__panel h2 {
    font-size: 100px;
  }
}

@media screen and (min-width: 700px) {
  .home-hero__panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home-hero__panel p {
  margin: 0.5em 0 1em;
}

@media screen and (min-width: 700px) {
  .home-hero__panel p {
    margin: 0.4em 0 1.7em;
  }
}

.home-hero__panel .circle-cta {
  color: #FFFFFF;
}

.home-hero__panel .circle-cta:after {
  background-image: url(../assets/icons/white.svg);
}

.home-hero__panel__quote {
  background: #FFFFFF;
  overflow: hidden;
  padding: 0 15px 30px;
}

@media screen and (min-width: 700px) {
  .home-hero__panel__quote {
    width: 50%;
    padding: 30px 45px 45px;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__panel__quote {
    position: relative;
    padding: 160px 65px 120px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-animation: slideIn 500ms both 1300ms;
            animation: slideIn 500ms both 1300ms;
  }
}

.home-hero__panel__quote blockquote {
  color: #000000;
  font-size: 27px;
  text-align: left;
  margin: 0;
  padding: 0;
  background: transparent;
  margin: 1em 0 0.4em;
}

@media screen and (min-width: 700px) {
  .home-hero__panel__quote blockquote {
    margin: 1.3em 0 0.4em;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__panel__quote blockquote {
    font-size: 40px;
    line-height: 1.3;
    width: auto;
    margin: 1.3em 0 0.9em;
    opacity: 0;
    -webkit-animation: fadeIn 300ms 1800ms both;
            animation: fadeIn 300ms 1800ms both;
  }
}

.home-hero__panel__quote blockquote:before {
  content: none;
}

.home-hero__panel__attribution {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
}

@media screen and (min-width: 700px) {
  .home-hero__panel__attribution {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 1100px) {
  .home-hero__panel__attribution {
    font-size: 20px;
    opacity: 0;
    -webkit-animation: fadeIn 300ms 1800ms both;
            animation: fadeIn 300ms 1800ms both;
  }
}

.home-hero__panel__subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}

@media screen and (min-width: 1100px) {
  .home-hero__panel__subtitle {
    font-size: 20px;
    opacity: 0;
    -webkit-animation: fadeIn 300ms 1800ms both;
            animation: fadeIn 300ms 1800ms both;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes expandIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes expandIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes slideOut {
  0% {
    right: 0px;
  }
  100% {
    right: -100%;
  }
}

@keyframes slideOut {
  0% {
    right: 0px;
  }
  100% {
    right: -100%;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.alert {
  padding: 23px 15px;
  overflow: hidden;
  background: #F57148;
  position: relative;
}

@media screen and (min-width: 700px) {
  .alert {
    padding: 25px 40px;
  }
}

@media screen and (min-width: 1100px) {
  .alert {
    padding: 40px 300px 40px 205px;
  }
}

.alert__header {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0.6em;
  padding-right: 40px;
}

@media screen and (min-width: 700px) {
  .alert__header {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .alert__header {
    font-size: 25px;
  }
}

.alert__header a {
  color: #000000;
}

.alert__close {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 15px;
  height: 15px;
  border: 0;
  background: url(../assets/icons/x-black.svg) no-repeat;
  background-size: 15px 15px;
}

@media screen and (min-width: 700px) {
  .alert__close {
    top: 30px;
    right: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .alert__close {
    width: 20px;
    height: 20px;
    top: 50px;
    right: 200px;
    background-size: 19px 19px;
  }
}

.alert__close:after {
  content: none;
}

.alert__close:hover {
  background: url(../assets/icons/x-black-full.svg) no-repeat;
  background-size: 15px 15px;
}

@media screen and (min-width: 1100px) {
  .alert__close:hover {
    background-size: 19px 19px;
  }
}

.alert__caption {
  font-size: 13px;
}

@media screen and (min-width: 700px) {
  .alert__caption {
    font-size: 15px;
  }
}

/*# sourceMappingURL=maps/main.css.map */