@charset "UTF-8";
/*
Theme Name: alumni UBC 2021
Theme URI: http://alumni.ubc.ca 
Author: Elizabeth Powell
Author URI: http://elizabethpowell.net 
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alumniubc
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

alumniubc is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ 
*/
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-Italic.woff2") format("woff2"), url("./assets/fonts/Merriweather-Italic.woff") format("woff"), url("./assets/fonts/Merriweather-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-Light.woff2") format("woff2"), url("./assets/fonts/Merriweather-Light.woff") format("woff"), url("./assets/fonts/Merriweather-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-Bold.woff2") format("woff2"), url("./assets/fonts/Merriweather-Bold.woff") format("woff"), url("./assets/fonts/Merriweather-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-LightItalic.woff2") format("woff2"), url("./assets/fonts/Merriweather-LightItalic.woff") format("woff"), url("./assets/fonts/Merriweather-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-Regular.woff2") format("woff2"), url("./assets/fonts/Merriweather-Regular.woff") format("woff"), url("./assets/fonts/Merriweather-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-Black.woff2") format("woff2"), url("./assets/fonts/Merriweather-Black.woff") format("woff"), url("./assets/fonts/Merriweather-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-BoldItalic.woff2") format("woff2"), url("./assets/fonts/Merriweather-BoldItalic.woff") format("woff"), url("./assets/fonts/Merriweather-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather";
  src: url("./assets/fonts/Merriweather-BlackItalic.woff2") format("woff2"), url("./assets/fonts/Merriweather-BlackItalic.woff") format("woff"), url("./assets/fonts/Merriweather-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
/*
  Convert pixel values to rem units
  @param      num     pixel value to convert (no unit)
  @return             rem adjusted value
*/
/* ... */
.ubc-modal {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ubc-modal.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2001;
}
.ubc-modal.closing {
  opacity: 0;
  pointer-events: none;
}
.ubc-modal.closing .ubc-spinner {
  display: none;
}
.ubc-modal-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: solid 1px #3e4246;
  background: white;
  margin-bottom: 15px;
  cursor: pointer;
  margin-left: auto;
}
.ubc-modal-close svg {
  height: 12px;
  width: 12px;
}
.ubc-modal-close svg line {
  stroke: #e8850b;
}
.ubc-modal-content {
  position: relative;
}
.ubc-modal-video-player {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.ubc-modal-video-wrap {
  background-color: black;
  position: relative;
  height: 0;
  width: 70vw;
  padding-bottom: 56.25%;
}
.ubc-modal-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ubc-modal-video-wrap > iframe,
.ubc-modal-video-wrap #ubc-modal-vimeo-wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ubc-modal-ctrls, .ubc-modal-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ubc-modal .ubc-modal-ctrls.hidden {
  display: none;
}
.ubc-modal-timeline {
  width: 100%;
}
.ubc-modal-time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}
.ubc-modal-time-sep, .ubc-modal-duration {
  color: #3e4246;
}
.ubc-modal-img-wrap {
  display: none;
  position: relative;
}
.ubc-modal-img-wrap img {
  width: auto;
  max-width: 80vw;
  max-height: 80vh;
}
.ubc-modal .SwiperBarWrapper {
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.2);
}
.ubc-modal .SwiperBarWrapper .swiper-bar {
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  background: #e8850b;
}
.ubc-modal .ubc-play-btn {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
.ubc-modal .ubc-play-btn {
  color: white;
  border: none;
  background: none;
}
.ubc-modal.vid-loaded .ubc-play-btn.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.ubc-modal.vid-loaded .ubc-modal-video-wrap {
  max-width: 87.5rem;
}
.ubc-modal.vid-loaded .ubc-modal-video-wrap:hover .ubc-play-btn {
  opacity: 1;
  pointer-events: auto;
}
.ubc-modal .ubc-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.ubc-modal .plyr {
  position: relative;
  height: 0;
  width: 70vw;
  padding-bottom: 56.25%;
}
.ubc-modal.modal-vid-active .ubc-modal-video-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ubc-modal.modal-img-active .ubc-modal-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid.grid-bigbox {
  position: relative;
}

.grid-content {
  /*background: rgba(0,0,0,0.1);*/
  color: #000;
  margin: 10px;
  padding: 10px 0;
}

.grid .grid-content {
  border-bottom: 2px solid #ddd;
}

.grid .grid-image + .grid-content, .slider-layout-bottom .slider-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* top: 0; */
  /* display: none; */
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
  max-height: 100%;
  margin: 0;
  border: none;
}

.grid .grid-image + .grid-content .grid-title, .slider-layout-bottom .slider-caption h2 {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.grid .grid-image + .grid-content .entry-date {
  margin-bottom: 0;
}

.grid-title, .slider-layout-bottom .slider-caption h2 {
  font-size: 1.15em;
  margin-top: 0;
  margin-bottom: 0.25em;
  color: inherit;
  text-transform: none;
}

@media screen and (min-width: 1280px) {
  .grid-title {
    font-size: 1.35em;
  }
}
.grid:hover .grid-content {
  /* display: block; */
}

/*.grid-image:empty {
	height: 0;
	padding-bottom: 56.25%;
}*/
.grid-image img, .content-slider-frame img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.grid-list {
  padding-bottom: 0.15em;
}

.grid-list-item > h3 {
  color: inherit;
  line-height: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-transform: none;
  font-size: 1.2em;
}

.grid-list-item p {
  margin-bottom: 0.5em;
}

.grid-list a + a .grid-list-item > h3.button.see-more {
  padding-top: 5px;
  padding-bottom: 5px;
  border: none;
}

.grid-list a + a .grid-list-item > h3 {
  padding-top: 0.5em;
  border-top: 1px solid;
  -o-border-image: -o-linear-gradient(325.12deg, #e69400 0, #c86700 100%);
     border-image: linear-gradient(124.88deg, #e69400 0, #c86700 100%);
  border-image-slice: 1;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.boxes.panel-row-style .so-panel .widget-title {
  background: #464547;
  border-radius: 50px;
  color: white;
  font-family: "Whitney SSm A", "Whitney SSm B", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  line-height: normal;
  margin-bottom: 10px;
}

.boxes.panel-row-style .so-panel a {
  text-decoration: none;
}

.boxes.panel-row-style .so-panel .widget-title a {
  border: 0;
}

.boxes.panel-row-style .so-panel .widget-title a:after {
  content: " »";
}

.boxes.panel-row-style .so-panel.widget_rss > ul {
  list-style: none;
  margin-bottom: 0;
}

.boxes.panel-row-style .panel-grid-cell .so-widget-sow-image h2 {
  font-size: 14px;
  background: #002145;
  color: #fff;
  margin-top: -5em;
  width: 75%;
  position: relative;
  z-index: 1000;
  top: 100%;
  padding: 5px 10px;
}

.panel-layout .boxes a.button {
  border: none;
  display: inline-block;
  font-weight: 600;
  color: #002145;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.008125rem;
  -webkit-font-smoothing: subpixel-antialiased;
  background: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0;
  display: block;
  text-align: center;
  margin: 20px auto;
}
.panel-layout .boxes a.button::after {
  content: "\f054";
  font-family: "FontAwesome";
  color: #faab18;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.panel-layout .boxes a.button:hover::after {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
  margin-left: 25px;
}

.sow-editor-list p {
  margin: 0;
  padding-top: 0.5em;
  font-size: 1.2em;
  font-weight: 500;
}

.sow-editor-list hr {
  background: -o-linear-gradient(325.12deg, #e69400 0, #c86700 100%);
  background: linear-gradient(124.88deg, #e69400 0, #c86700 100%);
  margin: 0;
  margin-top: 0.5em;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.75em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.flex-row .flex-item {
  word-break: break-word;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .flex-row .flex-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 599px) {
  .flex-row .flex-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
input[type=submit].gform_button {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  color: white;
  border: none;
  position: relative;
  display: inline-block;
  border-radius: 1.5625rem;
  padding: 0.875rem 2.375rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 0.8125rem;
  letter-spacing: 0.008125rem;
  cursor: pointer;
  min-width: 10.3125rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}
input[type=submit].gform_button:hover {
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  border: none;
}

.gform_wrapper.gravity-theme select.gfield_select, .gform_wrapper.gravity-theme select {
  padding: 9.5px 8px;
}

/* 

EPOWELL Some notes:
- Using the -moz-box-sizing prefix because several members of the alumni UBC office are still using Firefox 18.

Breakpoints:

1440px
1280px
1020px
800px
340px

*/
/* --------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
-------------------------------------------------------------- */
/*--------------------------------------------------------------
# Normalize
-------------------------------------------------------------- */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
  font-size: 100%;
}

body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6 {
  /* font-size-adjust: 0.5; */
}

body,
button,
input,
select,
textarea {
  color: #464547;
  font-family: "Whitney SSm A", "Whitney SSm B", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1 {
  font-size: 38px;
  font-family: "Merriweather";
  font-weight: 300;
  color: #002145;
  margin-top: 0;
}

h2 {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  font-weight: 500;
  color: #002145;
}

h3 {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  color: #002145;
}

h4 {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #faab18;
  margin-bottom: 4px;
}

h5 {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  color: #002145;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

p:empty {
  display: none;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.full-width, .full-width * {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Colours
--------------------------------------------------------------*/
a {
  color: #000;
}

a:visited {
  color: #606060;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:not([href]) {
  cursor: default;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit !important;
}

hr {
  background-color: #ccc;
}

.readmore, .close, .content-area .button, .nav-previous > a, .nav-next > a, .flickr-gallery-next, .flickr-gallery-prev {
  color: #325E7A;
}

.content-area .button, .nav-previous > a, .nav-next > a, .flickr-gallery-next, .flickr-gallery-prev {
  border-color: #325E7A;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  border-color: #aaa #bbb #bbb;
  -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #e7e7e8;
  border-radius: 0;
}

select {
  border: 1px solid #E7E7E8;
  background: #fff;
}

select[multiple] {
  height: auto;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

div.wpcf7-response-output {
  clear: both;
}

.wpcf7-form .form-layout-horizontal p {
  float: left;
  margin-right: 1em;
}

.wpcf7-form.invalid .form-layout-horizontal p {
  min-height: 5em;
}

.wpcf7-form p + .column {
  clear: left;
}

.wpcf7 .form-layout-horizontal span.wpcf7-form-control-wrap {
  display: block;
  vertical-align: top;
}

.wpcf7-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.wpcf7-form fieldset legend {
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.wpcf7-form fieldset p {
  float: none;
  margin-right: 0;
}

.wpcf7-form fieldset .wpcf7-list-item {
  display: block;
}

.wpcf7-form .vertical-list .wpcf7-list-item {
  display: block;
}

.wpcf7-number {
  width: 3em;
}

span.wpcf7-list-item {
  margin-left: 0;
}

.label {
  min-width: 12em;
  display: inline-block;
}

form fieldset {
  margin: 1em auto;
}

form fieldset legend {
  font-weight: 600;
  white-space: normal;
}

.content-area .wpcf7 fieldset fieldset legend {
  padding-left: 1em;
}

.content-area .wpcf7 label {
  font-weight: 600;
}

.content-area .wpcf7 fieldset label {
  font-weight: normal;
  margin-right: 0.5em;
}

.content-area .wpcf7 fieldset.name:after {
  clear: left;
}

.content-area .wpcf7 fieldset.name p, fieldset.address p, .content-area .wpcf7 fieldset.degree p {
  float: left;
}

.content-area .wpcf7 fieldset p.instructions {
  float: none;
}

.content-area .wpcf7 span.wpcf7-list-item {
  display: block;
}

.content-area .wpcf7 fieldset span.wpcf7-form-control-wrap {
  margin-left: 0;
}

.content-area .wpcf7 fieldset {
  margin: 1em auto 0;
}

.content-area .wpcf7 span.wpcf7-list-item-label {
  font-weight: normal;
}

.content-area .wpcf7 fieldset.list-horizontal span.wpcf7-list-item {
  display: inline;
}

.content-area .wpcf7 .form-layout-columns p {
  clear: left;
  float: left;
}

.content-area .wpcf7 .form-layout-columns label {
  display: block;
  clear: left;
  width: 10em;
  float: left;
}

.content-area .wpcf7 .form-layout-columns .wpcf7-list-item > label {
  width: auto;
}

.content-area .wpcf7 .form-layout-columns .wpcf7-form-control-wrap {
  float: left;
  display: block;
  padding-top: 0.1em;
}

.content-area .wpcf7 .form-layout-columns span.example {
  float: left;
  display: block;
  margin-left: 1em;
  font-size: 0.9em;
  line-height: 2em;
  vertical-align: bottom;
}

.content-area .wpcf7 .form-layout-columns span.instructions {
  display: block;
  float: left;
  margin-left: 10em;
  clear: left;
}

.content-area .wpcf7 .required {
  color: #B00000;
}

.content-area .wpcf7 .form-layout-columns fieldset {
  clear: left;
  padding: 0;
  margin: 0;
}

.content-area .wpcf7 .form-layout-columns fieldset legend {
  margin-left: 0;
}

.content-area .wpcf7 .form-layout-columns fieldset.alignleft {
  clear: none;
}

.oldie .content-area .wpcf7 .form-layout-columns fieldset legend {
  margin-left: -7px;
}

.oldie .content-area .wpcf7 .form-layout-columns fieldset span.wpcf7-form-control-wrap {
  margin-left: 0.5em;
}

.oldie .content-area .wpcf7 .form-layout-columns fieldset span.wpcf7-form-control-wrap textarea {
  max-width: 300px;
}

.content-area .wpcf7 .form-layout-columns fieldset.list-horizontal label {
  display: inline;
  clear: none;
  width: auto;
  float: none;
}

.content-area .wpcf7 .form-layout-columns fieldset.list-horizontal legend {
  display: block;
  clear: left;
  width: 10em;
  float: left;
  padding: 2px 0;
  text-indent: 0;
}

.content-area .wpcf7 .form-layout-columns fieldset.list-horizontal legend + p {
  display: block;
  clear: none;
  float: left;
  margin-left: 1em;
  margin-top: 0;
  width: 300px;
}

.content-area .wpcf7 .form-layout-columns fieldset.list-horizontal legend + p .wpcf7-form-control-wrap {
  float: none;
}

.content-area .wpcf7 .form-layout-columns label.full-width, .content-area .wpcf7 .full-width label, .content-area .wpcf7 .form-layout-columns .full-width label {
  width: auto;
}

.content-area .wpcf7 .form-layout-columns .full-width span.wpcf7-list-item-label {
  font-weight: 600;
}

.content-area .wpcf7 .form-layout-columns .full-width .wpcf7-form-control-wrap, .content-area .wpcf7 .full-width .wpcf7-list-item {
  margin-left: 0;
}

.content-area .wpcf7 .wpcf7-response-output {
  clear: left;
}

.content-area .wpcf7 .form-layout-columns fieldset {
  overflow: hidden;
  padding-bottom: 0.5em;
  padding-left: 10em;
  position: relative;
}

.content-area .wpcf7 .form-layout-columns fieldset legend {
  display: block;
  left: 0;
  padding-bottom: 0.5em;
  position: absolute;
  white-space: normal;
  width: 10em;
}

.content-area .wpcf7 .form-layout-columns fieldset.name > p, .content-area .wpcf7 .form-layout-columns fieldset.address > p {
  clear: none;
}

.content-area .wpcf7 .form-layout-columns fieldset.name > p label, .content-area .wpcf7 .form-layout-columns fieldset.address > p label {
  display: block;
  font-weight: normal;
  width: auto;
  float: none;
  clear: none;
}

.content-area .wpcf7 .form-layout-columns fieldset.name input, .content-area .wpcf7 .form-layout-columns fieldset.address input {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), (max-width: 480px) {
  .content-area .wpcf7 input[size], .content-area .wpcf7 textarea {
    width: 90%;
  }

  .content-area .wpcf7 .form-layout-columns label {
    float: none;
    width: auto;
  }

  .content-area .wpcf7 .form-layout-columns fieldset {
    padding-left: 0;
  }

  .content-area .wpcf7 .form-layout-columns fieldset legend {
    position: static;
  }
}
/* END FORMS */
/* Layout */
.site-content {
  background: #fff;
  position: relative;
  overflow-x: hidden;
  z-index: 0;
  min-height: 950px;
}

.entry-body {
  margin: 0 auto;
  padding: 0 15px;
  min-height: 500px;
}
@media screen and (min-width: 1300px) {
  .entry-body {
    padding: 0;
  }
}

.entry-body, .entry-image, .breadcrumbs, .page-header, .archive-body, .search .hentry, .singular .entry-title, .comments-area,
.has-hero-image .entry-title span, .has-header-image .entry-title span, .has-featured-gallery .entry-title span, .header-content .entry-title span {
  max-width: 1270px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

h2 a, h2 a:visited {
  color: inherit;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.breadcrumb-navigation {
  padding: 15px;
}

.breadcrumbs {
  margin: 0 auto;
}
.breadcrumbs a {
  color: #000;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin: 0 2em 1.5em 0;
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 2em 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.size-medium.alignleft,
.size-medium.alignright {
  max-width: 50%;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
/* .clear:before, */
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.entry-footer:before,
.entry-footer:after,
.row:before,
.row:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.entry-footer:after,
.row:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/* Footer */
.site-footer {
  padding-top: 3%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#content figure a {
  display: inline-block;
  overflow: hidden;
}
#content figure a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
#content figure a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.entry-header {
  padding-top: 0;
}

/* Header */
.singular .entry-title {
  font-weight: normal;
  text-transform: none;
  margin: 0.25em auto;
  position: relative;
  -ms-hyphens: auto;
      hyphens: auto;
}

.featured-gallery > li {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (min-width: 800px) {
  .has-hero-image .entry-image > img, .has-header-image .entry-image img {
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    max-width: none;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .has-hero-image .entry-image img {
    min-height: 235px;
    min-width: 940px;
    width: 100%;
  }

  .has-hero-image .entry-image, .has-hero-image .header-content .entry-header-content {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 1;
    max-width: none;
  }

  .singular .entry-title, .page-header .entry-title {
    font-size: 2em;
    -ms-hyphens: manual;
        hyphens: manual;
  }

  .has-hero-image .entry-title, .has-header-image .entry-title, .has-featured-gallery .entry-title, .header-content .entry-title {
    color: #fff;
    line-height: 1.25em;
    text-align: left;
    width: 100%;
    max-width: none;
    z-index: 200;
    padding: 0.15em 60px 1em;
    margin: 0;
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
  }

  .has-hero-image .entry-title span, .has-header-image .entry-title span, .has-featured-gallery .entry-title span, .header-content .entry-title span {
    display: block;
    margin: 0 auto;
  }

  .has-featured-gallery .entry-header {
    height: 0;
    margin: 0 auto;
    max-width: 1680px;
    padding-bottom: 42.86%;
  }

  .has-featured-gallery .featured-gallery {
    max-height: 720px;
    max-width: 1680px;
    height: auto;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .has-featured-gallery .featured-gallery .slides img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1080px) {
  .has-hero-image .entry-title,
.has-header-image .entry-title,
.has-featured-gallery .entry-title,
.header-content .entry-title {
    font-size: 2.75em;
  }

  .has-hero-image .entry-title > a,
.has-header-image .entry-title > a,
.header-content .entry-title > a {
    color: #fff;
    border: 0;
  }

  .has-hero-image .entry-image > img {
    min-height: 400px;
    min-width: 1600px;
  }

  .entry-content, .breadcrumbs, .page-header, .archive-body, .search .hentry, .site-header-container, .singular .entry-title, .main-navigation ul {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .has-featured-gallery .entry-header {
    height: 720px;
    max-width: 1680px;
    padding-bottom: 0;
  }
}
/* Content */
.singular .entry-content {
  padding-bottom: 25px;
  clear: left;
}

.callout > *:last-child, .feature > *:last-child, .content-part > *:last-child, .offset-row > *:last-child {
  margin-bottom: 0;
}

.archive .hentry {
  width: 57%;
}

.archive .entry-header {
  float: left;
  width: 100%;
}

.archive .entry-title {
  text-transform: none;
}

.archive .entry-content {
  clear: left;
}

.has-hero-image .entry-title span, .has-featured-gallery .entry-title span {
  width: 100%;
  float: none;
}

.page-template-full-width .page .entry-content,
.page-template-full-width .page .entry-sidebar {
  width: 100%;
  float: none;
}

.entry-content ul li {
  margin-bottom: 0.5em;
  padding-right: 1em;
}

.entry-content ul ul {
  margin-top: 0.5em;
}

.content-area a {
  color: #464547;
  text-decoration: underline;
}

.content-area h4 a {
  text-decoration: none;
}

.more-tag {
  margin-left: 0.5em;
}

@media screen and (min-width: 800px) {
  .entry-body .entry-before {
    float: right;
    width: 40%;
  }
}
.social-share {
  border: 2px solid #faab18;
  border-radius: 50px;
  display: inline-block;
  padding: 10px 25px;
  color: #464547;
  font-weight: 600;
  margin-bottom: 25px;
}

.social-share > a {
  display: inline-block;
  border: 0;
}

.social-share-title {
  margin-right: 50px;
}

.social-share .fa {
  width: 2em;
  color: #464547;
  line-height: 1.5em;
  text-align: center;
  border: 0;
  font-size: 16px;
}

/* Footer */
.singular .entry-footer {
  background: #939598;
  color: #fff;
  padding: 3em 0;
  padding: 3rem 0;
}

.singular .entry-footer .widget_nav_menu {
  background: #939598 none repeat scroll 0 0;
  width: 50%;
  margin: 0 auto;
}

.singular .entry-footer .widget_nav_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.singular .entry-footer .widget_nav_menu ul li {
  margin: 0.25em 0;
  font-weight: normal;
}

.singular .entry-footer .widget_nav_menu ul ul.sub-menu {
  font-size: 0.9em;
  margin-left: 10px;
  text-transform: none;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  -o-column-break-inside: avoid;
  -ms-column-break-inside: avoid;
  column-break-inside: avoid;
  break-inside: avoid-column;
  display: none;
}

.singular .entry-footer .widget_nav_menu li.current-menu-item ul.sub-menu,
.singular .entry-footer .widget_nav_menu li.current-menu-ancestor ul.sub-menu {
  display: table;
  /* Desperately trying to make firefox not break this */
}

.singular .entry-footer .widget_nav_menu .menu {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
}

.singular .entry-footer .widget_nav_menu .menu a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.singular .entry-footer .widget_nav_menu .menu li.current-menu-item > a:after {
  content: "✓";
  display: inline-block;
  margin-left: 0.5em;
}

.singular .entry-footer .widget_nav_menu h2.widget-title,
.singular .entry-footer .widget_nav_menu h2.widget-title + div {
  float: left;
  margin: 1%;
}

.singular .entry-footer .widget_nav_menu h2.widget-title {
  width: 32%;
  font-size: 1.25em;
  text-transform: uppercase;
  color: inherit;
}

.singular .entry-footer .widget_nav_menu h2.widget-title + div {
  width: 64%;
}

.entry-sidebar {
  float: right;
  width: 40%;
  margin-top: 2%;
}

@media screen and (max-width: 800px) {
  .singular .entry-content, .archive .hentry, .entry-sidebar, .site-footer {
    float: none !important;
    width: 100% !important;
  }
}
.back-to-top {
  float: right;
  margin-top: 15px;
  font-size: 11px;
}

.no-style {
  border: none !important;
  text-decoration: none !important;
  font-weight: normal !important;
}

.no-style::after {
  content: none !important;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0;
}

.byline,
.updated:not(.published) {
  display: none;
}

.singular .byline,
.group-blog .byline {
  display: inline;
}

.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin: 2em 0;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-container.flickrcom {
  height: auto;
  padding: 0;
}

.embed-container.flickrcom iframe {
  position: static;
}

.archive .entry-thumbnail {
  float: right;
  width: 250px;
  max-width: 25%;
}

@media screen and (min-width: 1020px) {
  .archive .entry-thumbnail {
    margin-top: 2.5em;
    position: relative;
    left: 5.25%;
    max-width: none;
    margin-right: -250px;
  }
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
  font-size: 0;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0 1% 1%;
}

.gallery-columns-2 .gallery-item {
  max-width: 48%;
}

.gallery-columns-3 .gallery-item {
  max-width: 31.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 23%;
}

.gallery-columns-5 .gallery-item {
  max-width: 18%;
}

.gallery-columns-6 .gallery-item {
  max-width: 14.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 12.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 10.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 9.11%;
}

.gallery-caption {
  display: block;
}

/* WIDGETS */
.so-widget-ubcdae-tile-widget > a {
  color: inherit;
  text-decoration: none;
}

/* Columns */
.column {
  float: left;
  margin-left: 0;
  margin-right: 3%;
}

.column.last {
  margin-right: 0;
}

.column.last + .column {
  margin-left: 0;
  clear: left;
}

.row .column {
  margin-right: 0;
}

.row .column + .column {
  margin-left: 3%;
}

.column.quarter {
  width: 22.75%;
}

.column.three-quarter {
  width: 72.25%;
}

.column.third {
  width: 31.333%;
}

.column.two-third {
  width: 62.666%;
}

.column.half {
  width: 48.5%;
}

.column > *:first-child {
  margin-top: 0;
}

@media screen and (max-width: 800px) {
  body, button, input, select, textarea {
    font-size: 0.85rem;
  }

  .column {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
    clear: both;
  }

  .singular .entry-footer .widget_nav_menu {
    width: 100%;
  }
}
.clearleft {
  clear: left;
}

.clearright {
  clear: right;
}

.clearboth {
  clear: both;
}

.content-part {
  clear: both;
  padding: 3em 0;
  padding: 3rem 0;
}

.entry-content > .content-part:first-child {
  padding-top: 0;
}

.alternating-row, .offset-row {
  clear: both;
  float: left;
  width: 100%;
  padding: 1em 0;
}

.content-part:nth-child(even),
.panel-grid:nth-child(even) .alternating-row,
.alternating-row:nth-child(even),
.offset-row {
  background: #E7E7E8 none repeat scroll 0 0;
  position: relative;
}

.content-part:nth-child(even):before,
.content-part:nth-child(even):after,
.alternating-row:nth-child(even):before,
.alternating-row:nth-child(even):after,
.panel-grid:nth-child(even) .alternating-row:before,
.panel-grid:nth-child(even) .alternating-row:after,
.offset-row:before,
.offset-row:after {
  content: "";
  position: absolute;
  background: #E7E7E8;
  /* Match the background */
  top: 0;
  bottom: 0;
  width: 9999px;
  /* some huge width */
  display: block;
}

.content-part:nth-child(even):before,
.alternating-row:nth-child(even):before,
.panel-grid:nth-child(even) .alternating-row:before,
.offset-row:before {
  right: 100%;
}

.content-part:nth-child(even):after,
.alternating-row:nth-child(even):after,
.panel-grid:nth-child(even) .alternating-row:after,
.offset-row:after {
  left: 100%;
}

/* Page-Specific Styles */
.home .entry-header, .home .breadcrumb-navigation {
  display: none;
}

/* FlexSlider */
.flexslider {
  border: 0;
  border-radius: 0;
  margin-bottom: 3%;
}

.flexslider .slides > li {
  max-width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.flex-control-thumbs li {
  width: 12.5%;
  float: none;
  padding: 0;
  margin: 0;
}

.flex-control-thumbs li::before {
  content: none;
}

.flex-direction-nav {
  display: none;
}

@media screen and (min-width: 860px) {
  .flex-direction-nav {
    display: block;
  }

  .flex-direction-nav a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    margin: -50px 0px 0px;
  }

  .flexslider .flex-next, .flexslider .flex-prev {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    height: 100px;
    opacity: 1;
    text-align: center;
    width: 40px;
  }

  .flexslider .flex-prev {
    left: 0px;
  }

  .flexslider .flex-next {
    right: 0px;
  }

  .flex-direction-nav a::before {
    color: #fff;
    line-height: 100px;
    font-size: 60px;
  }

  .flex-direction-nav a.flex-prev::before {
    content: "〈" !important;
  }

  .flex-direction-nav a.flex-next::before {
    content: "〉" !important;
  }

  .flex-control-thumbs {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1080px;
    overflow-x: auto;
    padding: 0;
    position: absolute;
    right: 0;
    vertical-align: bottom;
    white-space: nowrap;
    width: auto;
    opacity: 0;
    -webkit-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
  }

  .flexslider:hover .flex-control-thumbs {
    height: auto;
    -webkit-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
    opacity: 1;
  }

  .flex-control-thumbs li {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: inline-block;
    float: none;
    margin: 0;
    max-height: 100%;
    padding: 5px;
    vertical-align: bottom;
    width: auto;
  }

  .flex-control-thumbs li + li {
    padding-left: 0;
  }

  .flex-control-thumbs img {
    max-width: 100px;
  }
}
/* Styles */
.logo, .circle {
  border-radius: 50%;
  overflow: hidden;
}

.logo .sow-image-container {
  background: #fff none repeat scroll 0 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}

.logo .sow-image-container img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.callout, .feature {
  padding: 1em;
  background: #eee;
  margin-bottom: 1em;
  margin-top: 1.5em;
}

.soldout, .sold-out {
  color: red;
  font-weight: 600;
}

.readmore, .close {
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.readmore:after, .accordion-trigger:after {
  content: " »";
  vertical-align: text-bottom;
}

.content-area .button, .nav-previous > a, .nav-next > a, .flickr-gallery-next, .flickr-gallery-prev {
  border: 1px solid #325E7A;
  display: inline-block;
  font-weight: 600;
  padding: 0.3em 0.75em;
  text-decoration: none;
}

.content-area .button {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  color: white;
  border: none;
  position: relative;
  display: inline-block;
  border-radius: 1.5625rem;
  line-height: 0.8125rem;
  letter-spacing: 0.008125rem;
  cursor: pointer;
  min-width: 10.3125rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  padding: 0.875rem 2.375rem;
  text-align: center;
  font-size: 0.8125rem;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

@media screen and (max-width: 768px) {
  .content-area .button {
    padding: 0.625rem 1.425rem;
    min-width: 9.375rem;
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}
.content-area .button:hover {
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  border: none;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

/* SiteOrigin Widgets */
.sow-image-grid-image {
  max-width: 100%;
}

.sow-slider-base .sow-slide-nav a {
  border: none;
}

ul.sow-slider-images {
  margin: 0;
  padding: 0;
}

a[href^=mailto] {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  vertical-align: top;
}

.sow-slider-base ul.sow-slider-images li.sow-slider-image {
  max-width: 100%;
  padding: 0;
}

.sow-slider-base .sow-slider-pagination li:before {
  content: none;
}

/* PrettyPhoto */
.alumni-ubc-prettyPhoto .pp_content_container {
  padding: 0;
}

div.alumni-ubc-prettyPhoto .pp_content_container, div.alumni-ubc-prettyPhoto .pp_content {
  background: transparent;
  color: #fff;
}

.alumni-ubc-prettyPhoto a.pp_expand, a.pp_contract {
  top: 30px;
  right: 60px;
}

.alumni-ubc-prettyPhoto div.ppt,
.alumni-ubc-prettyPhoto .pp_content_container {
  margin: 0 20px;
}

.alumni-ubc-prettyPhoto a.pp_close {
  right: 20px;
}

.header-content .entry-header {
  position: relative;
}

.header-content .entry-header .entry-header-content {
  z-index: 10;
}

.header-content .entry-header:hover .entry-title {
  display: none;
}

@media screen and (max-width: 600px) {
  .panel-grid-cell:empty {
    display: none;
  }

  .singular .entry-footer .widget_nav_menu h2.widget-title, .singular .entry-footer .widget_nav_menu h2.widget-title + div {
    width: auto;
    float: none;
    margin: 0;
  }
}
.nosidebar p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.vr-container {
  height: 600px;
  max-width: 1200px;
  max-height: 600px;
  position: relative;
  margin: 0 auto;
}

/* General Tile styles */
.tile-image-container {
  position: relative;
}

.tile-overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #002145;
  opacity: 0;
}

.tile-content {
  height: 390px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: rgba(83, 86, 90, 0.34902) 0px 1px 5px 0px;
          box-shadow: rgba(83, 86, 90, 0.34902) 0px 1px 5px 0px;
}

.tile-link {
  text-decoration: none;
}

/* Hover CSS */
.tile-content:hover {
  -webkit-box-shadow: rgba(83, 86, 90, 0.34902) -2px 2px 20px 0px;
          box-shadow: rgba(83, 86, 90, 0.34902) -2px 2px 20px 0px;
}

.tile-content:hover > .tile-image-container {
  opacity: 1;
}

.tile-content:hover > .tile-image-container .overlay-play-button {
  opacity: 1;
}

.tile-content:hover > .tile-image-container .tile-overlay-tint {
  opacity: 0.5;
}

/*Pulse CSS*/
.overlay-play-button {
  position: absolute;
  width: 65px;
  height: 65px;
  top: 25%;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  /*Pulse animation*/
  border-radius: 50%;
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 white;
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px white;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 white;
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* UBC 100 STYLES */
/*--------------------------------------------------------------
# TRACKER WIDGET
-------------------------------------------------------------- */
#ubc-100-counter {
  color: white;
  font-size: 16px;
  position: absolute;
  text-align: center;
  top: 95%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

#tracker-container {
  position: relative;
  line-height: 0;
}

#current-progress {
  color: #002145;
  font-size: 200px;
}

#remaining-progress {
  position: absolute;
  color: #BCBEC0;
  font-size: 200px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.tracker {
  text-align: center;
  font-size: 400px;
  font-weight: 900;
  line-height: 0.79em;
}

.tracker-top-copy {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 25px;
}

.tracker-bottom-copy {
  text-align: center;
  margin-top: 10px;
  color: #FFA300;
  font-size: 1.9em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .tracker-bottom-copy {
    font-size: 1.9em;
  }
}
.dinners-100-faq {
  list-style-type: none;
}

.dinners-100-faq li h3 {
  color: #404040;
}

.dinners-100-faq .accordion-trigger:after, .dinners-100-planning-toolkit .accordion-trigger:after {
  display: none;
}

.dinners-100-planning-toolkit h2 {
  color: #404040;
}

.dinners-100-page .tile-info {
  text-align: center;
  padding: 10px;
}

.dinners-100-page .tile-info .title {
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: 500;
}

.dinners-100-page .tile-content {
  height: 430px;
}

@media screen and (min-width: 768px) {
  .dinners-100-page .tile-content {
    height: 480px;
  }
}
.dinners-100-page .tile {
  margin-bottom: 25px;
}

.dinners-100-page .more-button {
  text-align: center;
  border: 1px solid black;
  border-radius: 2px;
  padding: 10px 15px;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}

.dinners-100-page .more-button:hover {
  background: #002145;
  color: white;
}

.dinners-100-page .tile-image {
  height: 250px;
}

.dinners-100-page .host-dinner .tile-image {
  background: url("/wp/wp-content/themes/alumni-ubc-2016/assets/images/host-dinner.jpg") center no-repeat;
  background-size: cover;
}

.dinners-100-page .find-dinner .tile-image {
  background: url("/wp/wp-content/themes/alumni-ubc-2016/assets/images/find-dinner.jpg") center no-repeat;
  background-size: cover;
}

.dinners-100-page .overlay-play-button {
  top: 35%;
}

.masonry {
  margin: 1.5em 0;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: 0.85em;
}

.masonry-item {
  display: inline-block;
  background: #fff;
  padding: 1em;
  margin: 0 0 1.5em;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 4px 0 #ccc;
          box-shadow: 2px 2px 4px 0 #ccc;
  border: 1px solid #ccc;
}

@media only screen and (min-width: 400px) {
  .masonry {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (min-width: 700px) {
  .masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}
@media only screen and (min-width: 900px) {
  .masonry {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }
}
@media only screen and (min-width: 1100px) {
  .masonry {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }
}
/* New entries for redeign ... but there is modification for existing CSS parts too */
h1.header-image {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 60pt;
  line-height: 74pt;
  margin-bottom: 75pt;
  color: white;
}

h2.header-image {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24pt;
  line-height: 70pt;
  margin-bottom: 15pt;
  color: #faab18;
}

h6.bio-titles {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15pt;
  line-height: 18pt;
  margin-top: 20pt;
  margin-bottom: 12pt;
  color: #faab18;
}

h7.sidebar-head {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20pt;
  line-height: 22pt;
  margin-bottom: 12pt;
  color: #002145;
}

.entry-body {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

p.body-main {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-bottom: 15pt;
  color: #464547;
}

p.body-names-tilesbody {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-top: 5pt;
  margin-bottom: 25pt;
  color: #eaebec;
}

p.tiles-firstimage {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-bottom: 30pt;
  color: #464547;
}

p.tiles-firstimage {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-bottom: 30pt;
  color: #eaebec;
}

p.headerimage {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28pt;
  line-height: 32pt;
  margin-bottom: 24pt;
  color: white;
}

p.sidebar-body {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16pt;
  line-height: 20pt;
  margin-bottom: 10pt;
  color: #eaebec;
}

p.body-homepage-large {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26pt;
  line-height: 36pt;
  margin-bottom: 20pt;
  color: #002145;
}

p.body-homepage {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-bottom: 30pt;
  color: #464547;
}

.dropdownmenu-nav-head {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14pt;
  line-height: 16pt;
  margin-bottom: 20pt;
  color: #002145;
}

.nav-menu .sub-menu .dropdownmenu-nav-body {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #002145;
  padding: 0;
}

.footermenu-nav {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20pt;
  line-height: 24pt;
  margin-bottom: 10pt;
  color: white;
}

.breadcrumbs {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
  line-height: 14pt;
  font-style: italic;
}

.wp-block-separator {
  border-bottom: none;
  background-color: #464547;
  margin-top: 30px;
}

.wp-block-separator.gradient {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  border: none;
  height: 2px;
}

.gradient {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
}

.gradient-border-top {
  border-top-style: solid;
  border-top-width: 2px;
  -o-border-image: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%) 1;
     border-image: linear-gradient(124.88deg, #E69400 0%, #C86700 100%) 1;
}

.gradient-border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  -o-border-image: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%) 1;
     border-image: linear-gradient(124.88deg, #E69400 0%, #C86700 100%) 1;
}

.wp-block-group.has-background {
  padding: 1.25em 2.375em;
}
.wp-block-group.has-background h1, .wp-block-group.has-background h2, .wp-block-group.has-background h3, .wp-block-group.has-background h4, .wp-block-group.has-background h5, .wp-block-group.has-background h6 {
  margin-top: 0;
}

figure.wp-block-image {
  padding: 14px 0;
}

.wp-block-image.no-padding img {
  padding: 0;
}

.wp-block-image.no-top-padding img {
  padding-top: 0;
}

.wp-block-image.no-bottom-padding img {
  padding-bottom: 0;
}

@media screen and (min-width: 600px) {
  .mobile-only {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .desktop-only {
    display: none;
  }
}
/* Tests for website revamp */
h3.sidebar_testing {
  background: #DDA129;
  color: #FFF;
  padding: 2% 5%;
}

img.desaturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/* This should go into the theme files */
h2, h3 {
  text-transform: none;
}

@media screen and (min-width: 1020px) {
  .main-navigation .primary-menu .nav-menu > li,
.main-navigation .external-menu .nav-menu > li {
    min-height: 4em;
  }
}
.has-hero-image.siteorigin-panels .entry-content {
  padding-top: 0;
}

.sow-slider-captions .slider-caption h2 {
  text-transform: none;
}

.rss-widget-icon {
  vertical-align: middle !important;
  display: inline;
  padding-bottom: 0.2em;
}

.ow-button-base a {
  line-height: 1.25em;
}

.site-footer #sow-editor-3 {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: block;
  margin: 0;
  background: #ffc20e;
  color: #002145;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px;
  z-index: 999;
}

.site-footer #sow-editor-3 p {
  max-width: none;
  margin: 0;
}

.site-footer #sow-editor-3 .button {
  background: #fff;
  padding: 5px 10px;
  display: inline-block;
  text-decoration: none;
  margin-left: 0.5em;
}

/* End Code for Survey Prompt */
/* Callout styling */
.callout .bg--red {
  background: rgba(255, 0, 0, 0.3);
}

.callout .bg--red h1, .callout .bg--red h2, .callout .bg--red h3, .callout .bg--red h4, .callout .bg--red h5, .callout .bg--red h6 {
  color: initial;
}

/* End callout styling */
.main-navigation a, .menu-toggle {
  color: #fff;
}

.main-navigation-wrapper, .primary-menu ul ul.sub-menu > li {
  background: #002145;
}

.main-navigation .primary-menu .current-menu-item > a,
.main-navigation .secondary-menu .current-menu-item > a {
  color: #DDA129;
  text-shadow: 0.2px 0 0 currentColor;
}

.main-navigation .primary-menu .sub-menu .current-menu-item > a,
.main-navigation .secondary-menu .sub-menu .current-menu-item > a {
  text-shadow: 1px 0 0 currentColor;
}

.main-navigation .primary-menu .current-menu-ancestor > a,
.main-navigation .secondary-menu .current-menu-ancestor > a {
  text-shadow: none;
}

.main-navigation .primary-menu .menu-item.active > a,
.main-navigation .secondary-menu .menu-item.active > a {
  text-shadow: 0.2px 0 0 currentColor;
}

.site-header-container li > a,
.secondary-menu > li > a {
  color: white;
}

.site-header-container, .main-navigation, .secondary-menu {
  margin: 0 auto;
  max-width: 980px;
}

.main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
  max-width: 980px;
}

@media screen and (min-width: 1280px) {
  .site-header-container, .main-navigation, .secondary-menu {
    margin: 0 auto;
    max-width: 1220px;
  }

  .nav-menu .sub-menu > ul {
    max-width: 1220px;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
    max-width: 1220px;
  }
}
@media screen and (min-width: 1440px) {
  .site-header-container, .main-navigation, .secondary-menu, .nav-menu .sub-menu > ul {
    max-width: 1400px;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
    max-width: 1400px;
  }
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.nav-menu {
  padding: 0;
  margin: 0;
}

.nav-menu, .nav-menu li {
  position: static;
}

.nav-menu > .menu-item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.nav-menu > .menu-item .sub-menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item > a:focus {
  text-shadow: 0.2px 0 0 currentColor;
}

.social-media .nav-menu > .menu-item > a:hover,
.social-media .nav-menu > .menu-item > a:focus {
  text-shadow: none;
}

.nav-menu > .menu-item.menu-item-38161 > a:hover,
.nav-menu > .menu-item.menu-item-38161 > a:focus {
  text-shadow: none;
}

.social-media .nav-menu > .menu-item .sub-menu a {
  display: inline-block;
}

.social-media .nav-menu, .social-media .nav-menu li {
  position: relative;
}

.social-media ul.sub-menu a {
  width: 12em;
  max-width: 100%;
  color: #002145;
}

.social-media .menu-item-37803 ul.sub-menu a {
  width: 8em;
}

.social-media .nav-menu .menu-item > a .fa:hover {
  color: #faab18;
}

.social-media .nav-menu .menu-item > .menu-item-no-link {
  padding-bottom: 10px;
}

.social-media .nav-menu .menu-item.active > .menu-item-no-link::before {
  padding: 0;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-bottom: 0.375rem solid rgba(255, 255, 255, 0.95);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 110;
}

.primary-menu .nav-menu > .menu-item,
.secondary-menu .nav-menu > .menu-item,
.external-menu .nav-menu > .menu-item {
  padding: 0;
  position: relative;
}

.primary-menu .nav-menu > .menu-item > a,
.secondary-menu .nav-menu > .menu-item > a {
  padding: 12px 25px 12px;
}

.external-menu .nav-menu > .menu-item > a {
  padding: 12.5px 8px;
}

.external-menu .nav-menu > .menu-item:first-child > a {
  padding: 12.5px 8px 12.5px 25px;
}

.main-navigation-wrapper {
  border-top: 1px solid white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.main-navigation-wrapper.sticky-header {
  position: fixed;
  top: 0;
}

.sticky-stuffer {
  display: block;
  height: 0;
}

.mobile-menu-open .main-navigation {
  max-height: calc(100vh - 120px);
  overflow-y: scroll;
}

.main-navigation .menu-wrapper {
  border-top: 1px solid white;
}

.main-navigation .nav-menu .menu-item .sub-menu {
  display: none;
}

.main-navigation .nav-menu .menu-item.active .sub-menu {
  display: block;
}

.main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
  display: block;
  width: 100%;
  margin: 25px;
}

.main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container > ul {
  width: 100%;
}

.main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item {
  width: 100%;
  margin-bottom: 1.25rem;
}

.main-navigation > .primary-menu .nav-menu .nav-main-item .sub-menu {
  display: none;
}

.main-navigation > .primary-menu .nav-menu .nav-main-item.active .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-navigation > .primary-menu .nav-menu .sub-menu li a,
.main-navigation > .secondary-menu .nav-menu .sub-menu li a {
  color: #002145;
}

.main-navigation > .primary-menu .nav-menu .sub-menu .grandchild-sub-menu li a:hover {
  text-shadow: 1px 0 0 currentColor;
}

.main-navigation .primary-menu .nav-menu.current-menu-ancestor .menu-item li a {
  text-shadow: 1px 0 0 currentColor;
}

.main-navigation > .secondary-menu .nav-menu .nav-main-item.active .sub-menu {
  display: block;
}

.primary-menu .nav-menu .nav-main-item.active a.nav-main-link::before {
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-bottom: 0.375rem solid white;
  position: absolute;
  content: "";
  bottom: 0;
  right: 31px;
}

.secondary-menu .nav-menu .menu-item.active > .nav-main-link::before {
  padding: 0;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-bottom: 0.375rem solid rgba(255, 255, 255, 0.95);
  position: absolute;
  content: "";
  bottom: 0;
  right: 31px;
  z-index: 10;
}

.secondary-menu .nav-menu > .menu-item-37048.active > .nav-main-link::before,
.secondary-menu .nav-menu > .menu-item-43164.active > .nav-main-link::before {
  content: none;
}

.main-navigation > .external-menu .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-navigation .nav-menu .sub-menu .banner-container > a::after {
  font-family: none !important;
  content: none !important;
  padding-left: 0 !important;
}

.nav-menu {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: white;
}

.social-media .nav-menu {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}

.secondary-menu .nav-menu .sub-menu > li {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 1.25rem;
}

.nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item {
  padding-right: 25px;
}

.nav-menu .sub-menu .grandchild-sub-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-menu ul.sub-menu ul.sub-menu {
  margin-top: 0;
  padding-top: 0;
  top: 0;
}

.nav-drop-item {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.875rem;
}
.nav-drop-item:hover .nav-drop-item-separator {
  -webkit-animation: 0.6s ease-out underline-animation;
          animation: 0.6s ease-out underline-animation;
}
@-webkit-keyframes underline-animation {
  from {
    width: 0;
  }
  to {
    width: 2.75rem;
  }
}
@keyframes underline-animation {
  from {
    width: 0;
  }
  to {
    width: 2.75rem;
  }
}

.nav-drop-item-separator {
  display: block;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  width: 44px;
  height: 3px;
  margin: 6px 0 12.5px;
}
body.touch-menu .nav-drop-item-separator, body.touch-device .nav-drop-item-separator {
  display: none;
}

.no-js .nav-menu li:hover > ul,
.no-js .nav-menu li.focus > ul {
  display: block;
}

.no-js .nav-menu ul li:hover > ul,
.no-js .nav-menu ul li.focus > ul {
  display: block;
}

.main-navigation-wrapper {
  clear: both;
  display: block;
  float: left;
  width: 100%;
  position: relative;
  z-index: 10;
}

.main-navigation ul {
  list-style: none;
  z-index: 1;
}

.main-navigation .nav-menu {
  padding: 12px 0;
}

/* Small menu. */
.main-navigation.toggled .menu-wrapper {
  display: block;
}

.menu-toggle {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 5px 10px 0;
  text-shadow: none;
  display: none;
  position: relative;
  z-index: 999;
  margin-left: auto;
}

.main-navigation-wrapper .hamburger-button-wrapper {
  display: block;
}

.main-navigation-wrapper .hamburger-button {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  margin: 0 20px 0 auto;
}

.main-navigation-wrapper .hamburger-button div,
.main-navigation-wrapper .hamburger-button:after,
.main-navigation-wrapper .hamburger-button:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  content: " ";
}

.main-navigation-wrapper .hamburger-button div {
  -webkit-transform: translate(-50%, 250%);
      -ms-transform: translate(-50%, 250%);
          transform: translate(-50%, 250%);
}

.main-navigation-wrapper .hamburger-button:before {
  -webkit-transform: translate(-50%, -350%);
      -ms-transform: translate(-50%, -350%);
          transform: translate(-50%, -350%);
}

.main-navigation-wrapper .hamburger-button:after {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.external-menu .menu a::after {
  content: none !important;
}

.secondary-menu .sub-menu {
  background: white;
}

.secondary-menu .sub-menu > li > a {
  color: #002145;
}

.secondary-menu .nav-menu li {
  text-transform: none;
}

.secondary-menu .nav-menu.clear::after {
  display: none;
}

.main-navigation .primary-menu .nav-menu .menu-item.active .nav-main-link::after {
  -webkit-transform: translate(-20%, 0%) rotate(135deg);
      -ms-transform: translate(-20%, 0%) rotate(135deg);
          transform: translate(-20%, 0%) rotate(135deg);
  border-bottom: 0.125rem solid #faab18;
  border-left: 0.125rem solid #e8850b;
}

.main-navigation .secondary-menu .nav-menu .menu-item.active .nav-main-link::after {
  -webkit-transform: translate(-20%, 0%) rotate(135deg);
      -ms-transform: translate(-20%, 0%) rotate(135deg);
          transform: translate(-20%, 0%) rotate(135deg);
  border-bottom: 0.125rem solid #faab18;
  border-left: 0.125rem solid #e8850b;
}

#menu-item-38161 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12.5px 25px;
}

#menu-item-38161 a {
  position: relative;
  display: inline-block;
  border-radius: 1.5625rem;
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 0.8125rem;
  letter-spacing: 0.008125rem;
  cursor: pointer;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  color: white;
  border: none;
  white-space: nowrap;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

#menu-item-38161 a:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.banner-container {
  position: relative;
  width: 100%;
  max-width: 26.25rem;
}
.banner-container .banner {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 26.25rem;
  margin-bottom: 25px;
}
.banner-container .banner:hover .image-wrapper .image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.banner-container .banner .image-wrapper {
  overflow: hidden;
  position: relative;
}
.banner-container .banner .image-wrapper .image {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding-top: 56%;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.banner-container .banner .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: -o-linear-gradient(15deg, #002145, transparent);
  background: linear-gradient(75deg, #002145, transparent);
}
.banner-container .banner .content {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  position: absolute;
  width: 18rem;
  bottom: 0;
  left: 0;
  padding: 25px;
  margin-bottom: 0;
  z-index: 6;
}
@media screen and (max-width: 450px) {
  .banner-container .banner .content {
    padding: 1.125rem 25px;
  }
}
.banner-container .banner .content > p {
  width: 64%;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.banner-container .banner .content > span {
  color: white;
}
@media screen and (max-width: 450px) {
  .banner-container .banner .content > span {
    padding-top: 5px;
  }
}
.banner-container .banner .content > span:after {
  margin-top: 0.625rem;
}

.nav-menu > .menu-item .sub-menu .banner-apple-store-link {
  display: inline-block;
  width: 120px;
}

.nav-menu > .menu-item .sub-menu .banner-google-play-link {
  display: inline-block;
  width: 120px;
}

.bg-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  content: " ";
}
.bg-overlay.active {
  display: block;
}

.main-navigation-wrapper {
  position: absolute;
}

.menu-toggle {
  display: block;
}

.main-navigation .menu-wrapper {
  display: none;
  position: static;
  font-size: 14px;
  width: 100%;
  float: none;
}

.mainmenu-nav {
  font-size: 0.875rem;
}

.main-navigation > .primary-menu .nav-menu .sub-menu {
  position: static;
  width: 100%;
  left: 0;
  top: 100%;
  background: white;
  padding: 0;
  overflow: hidden;
}

.nav-drop-item-separator {
  display: none;
}

.dropdownmenu-nav-body:not(.dropdownmenu-nav-grandchild-link) {
  display: none;
}

.social-media .nav-menu ul.sub-menu {
  display: none;
  margin-bottom: 0;
  padding: 25px;
}

.secondary-menu .nav-menu ul.sub-menu {
  margin-bottom: 0;
  padding-left: 25px;
  overflow: hidden;
}

.secondary-menu .nav-menu ul.sub-menu::before {
  content: "";
  padding: 2px;
}

.social-media .nav-menu ul.sub-menu {
  padding: 0;
}

.nav-menu .sub-menu .sub-menu-content-container > ul {
  display: block;
  margin-bottom: 0;
  padding: 0;
}

.nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item {
  max-width: none;
}
.nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item p {
  max-width: none;
}

.main-navigation .primary-menu .nav-menu > .menu-item .nav-main-link::after {
  position: absolute;
  right: 0;
  top: 46%;
  -webkit-transform: translate(0%, -46%) rotate(-45deg);
      -ms-transform: translate(0%, -46%) rotate(-45deg);
          transform: translate(0%, -46%) rotate(-45deg);
  width: 0.25rem;
  height: 0.25rem;
  border-bottom: 0.078125rem solid currentColor;
  border-left: 0.078125rem solid currentColor;
  content: " ";
  width: 0.625rem;
  height: 0.625rem;
  border-bottom: 0.125rem solid white;
  border-left: 0.125rem solid white;
  margin-right: 30px;
  -webkit-transform: translate(-47.5%, -50%) rotate(225deg);
      -ms-transform: translate(-47.5%, -50%) rotate(225deg);
          transform: translate(-47.5%, -50%) rotate(225deg);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.main-navigation .secondary-menu .nav-menu > .menu-item > a::after {
  position: absolute;
  right: 0;
  top: 46%;
  -webkit-transform: translate(0%, -46%) rotate(-45deg);
      -ms-transform: translate(0%, -46%) rotate(-45deg);
          transform: translate(0%, -46%) rotate(-45deg);
  width: 0.25rem;
  height: 0.25rem;
  border-bottom: 0.078125rem solid currentColor;
  border-left: 0.078125rem solid currentColor;
  content: " ";
  width: 0.625rem;
  height: 0.625rem;
  border-bottom: 0.125rem solid white;
  border-left: 0.125rem solid white;
  margin-right: 30px;
  -webkit-transform: translate(-47.5%, -50%) rotate(225deg);
      -ms-transform: translate(-47.5%, -50%) rotate(225deg);
          transform: translate(-47.5%, -50%) rotate(225deg);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.main-navigation .secondary-menu .nav-menu > .menu-item-37048 > a::after,
.main-navigation .secondary-menu .nav-menu > .menu-item-43164 > a::after {
  border: none;
  display: none;
}

.nav-menu .menu-item {
  max-width: none;
}

.nav-menu .sub-menu .nav-drop-item {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
}
.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul {
  margin-bottom: 0;
  padding-left: 0;
}
.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item {
  padding: 0 0 14px;
}
.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item:first-child {
  padding: 14px 0 14px;
}
.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item:last-child {
  padding: 0;
}
.nav-menu .sub-menu .nav-drop-item:hover .nav-drop-item-separator {
  -webkit-animation: 0.6s ease-out underline-animation;
          animation: 0.6s ease-out underline-animation;
}
@keyframes underline-animation {
  from {
    width: 0;
  }
  to {
    width: 2.75rem;
  }
}

.nav-menu .sub-menu .nav-drop-item > a:hover {
  text-shadow: 1px 0 0 currentColor;
}

.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu {
  text-shadow: none;
}

.nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > a:hover {
  text-shadow: 1px 0 0 currentColor;
}

.mobile-arrow {
  display: block;
  width: 80px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container > ul {
    width: calc(100% - 26.5rem);
  }
}
@media screen and (min-width: 1020px) {
  .main-navigation .nav-menu {
    padding: 0;
  }

  .main-navigation .secondary-menu .current-menu-item > a {
    color: white;
  }

  .nav-menu .sub-menu .nav-drop-item > a:hover {
    text-shadow: none;
  }

  .main-navigation-wrapper {
    border-top: 1px solid white;
  }

  .nav-menu ul.sub-menu {
    left: auto;
    margin-left: 0;
    padding-left: 0;
    padding-top: 1px;
    position: absolute;
    top: 100%;
    z-index: 99999;
    font-weight: normal;
    display: none;
  }

  .nav-menu .sub-menu .nav-drop-item {
    font-weight: 600;
  }

  .main-navigation .primary-menu .current-menu-item > a {
    text-shadow: none;
  }

  .main-navigation .primary-menu .grandchild-sub-menu .nav-drop-item.current-menu-item > a {
    text-shadow: 1px 0 0 currentColor;
  }

  .main-navigation .primary-menu .current-menu-item > .nav-main-link {
    text-shadow: 0.2px 0 0 currentColor;
  }

  .nav-menu ul.sub-menu ul.sub-menu {
    left: 100%;
  }

  .nav-menu ul ul {
    left: -999em;
    top: 0;
  }

  .nav-menu > .menu-item > .sub-menu a {
    display: inline-block;
  }

  .main-navigation .nav-menu li {
    float: left;
    text-transform: none;
    left: 1px;
  }

  .main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0;
    border-bottom: 0;
  }

  .main-navigation .menu-wrapper {
    border-top: 0;
  }

  .main-navigation .nav-menu > li {
    font-weight: 600;
  }

  .main-navigation .primary-menu .sub-menu .current-menu-item > a {
    text-shadow: 0.2px 0 0 currentColor;
  }

  .main-navigation .secondary-menu .sub-menu .current-menu-item > a {
    text-shadow: 1px 0 0 currentColor;
  }

  .primary-menu .nav-menu > .menu-item,
.secondary-menu .nav-menu > .menu-item,
.external-menu .nav-menu > .menu-item {
    padding: 0;
    position: static;
  }

  .primary-menu .nav-menu > .menu-item > a,
.external-menu .nav-menu > .menu-item > a {
    text-decoration: none;
    padding: 30px 0;
  }

  .external-menu .nav-menu > .menu-item:first-child > a {
    padding: 30px 0;
  }

  .nav-menu .sub-menu a {
    padding: 0;
  }

  .nav-menu:not(#social-media) > .menu-item {
    padding: 0;
  }

  .secondary-menu .nav-menu > .menu-item > a {
    padding: 0;
    padding-bottom: 10px;
  }

  .secondary-menu .nav-menu .sub-menu > li {
    font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
  }

  .primary-menu .nav-menu .nav-main-item a.nav-main-link {
    position: relative;
    padding-right: 16px;
  }

  .primary-menu .nav-menu .nav-main-item.active a.nav-main-link::before {
    right: 0;
  }

  .main-navigation .primary-menu {
    border-right: 1px solid white;
  }

  .main-navigation .external-menu {
    padding-left: 2%;
  }

  .main-navigation .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
  }

  .main-navigation .primary-menu .nav-menu {
    height: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .main-navigation .primary-menu .nav-menu > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 8%;
  }

  .main-navigation .external-menu .nav-menu > li {
    font-weight: 600;
    text-transform: none;
    margin-right: 0;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item {
    width: 25%;
  }

  .main-navigation .secondary-menu.menu-wrapper {
    position: absolute;
    bottom: 100%;
    width: 100%;
    margin: 40px auto 10px;
    z-index: 10;
    padding: 0;
  }

  .main-navigation .menu-wrapper {
    padding: 0;
  }

  .main-navigation .menu-wrapper:last-child {
    margin-bottom: 0;
    padding-left: 2%;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu .sub-menu-content-container {
    margin: 0 auto;
  }

  .main-navigation > .primary-menu .nav-menu .nav-main-item .sub-menu {
    display: none;
  }

  .main-navigation > .primary-menu .nav-menu .nav-main-item.active .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .secondary-menu .sub-menu {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 4px 4px rgba(62, 66, 70, 0.1);
            box-shadow: 0px 0px 4px 4px rgba(62, 66, 70, 0.1);
  }

  .secondary-menu .nav-menu ul.sub-menu {
    padding: 12px;
    z-index: 5;
  }

  .secondary-menu .nav-menu ul.sub-menu::before {
    content: none;
  }

  .secondary-menu .nav-menu .menu-item.active > .nav-main-link::before {
    right: auto;
    left: 4px;
  }

  .secondary-menu .nav-menu {
    float: right;
  }

  .secondary-menu ul.nav-menu {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    text-align: right;
  }

  .secondary-menu .nav-menu > li {
    float: none;
    list-style: none;
    margin-right: 0;
    max-width: none;
    font-weight: 600;
    display: inline-block;
    text-align: left;
    padding: 0;
  }

  .secondary-menu ul ul.sub-menu {
    padding: 0;
  }

  .secondary-menu .nav-menu ul.sub-menu > li {
    display: block;
    float: none;
    padding: 0;
  }

  .secondary-menu .nav-menu ul.sub-menu > li > a:hover,
.secondary-menu .nav-menu ul.sub-menu > li > a:focus {
    text-shadow: 1px 0 0 currentColor;
  }

  .secondary-menu .nav-menu ul.sub-menu > li::after {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    margin: 8px 0;
    background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
    background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  }

  .secondary-menu .nav-menu ul.sub-menu > li:last-child::after {
    display: none;
  }

  .secondary-menu ul li:hover > ul,
.secondary-menu ul li.focus > ul {
    left: auto;
  }

  .secondary-menu ul ul li:hover > ul,
.secondary-menu ul ul li.focus > ul {
    left: 100%;
  }

  .main-navigation .external-menu .nav-menu > li:first-child {
    margin-left: 0;
  }

  .site-header-container .social-search {
    margin-top: 40px;
  }

  .banner-container .banner .content {
    margin-bottom: 25px;
  }

  .banner-container .banner {
    width: 26.25rem;
    height: 16.25rem;
    margin-bottom: 0;
  }

  .main-navigation-wrapper {
    position: relative;
  }

  .menu-toggle {
    display: none;
  }

  .main-navigation .menu-wrapper {
    display: block;
    font-size: inherit;
  }

  .main-navigation > .primary-menu .nav-menu .menu-item.active .sub-menu {
    padding: 37.5px 0;
  }

  .nav-drop-item-separator {
    display: block;
  }

  .dropdownmenu-nav-body:not(.dropdownmenu-nav-grandchild-link) {
    display: block;
  }

  .main-navigation .menu-wrapper {
    margin-bottom: 0;
  }

  .main-navigation > .primary-menu .nav-menu .sub-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    display: none;
    background: white;
    padding: 37.5px 0;
  }

  .nav-menu .sub-menu .sub-menu-content-container > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.5em;
  }

  .nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item {
    max-width: 46rem;
  }
  .nav-menu .sub-menu .sub-menu-content-container > ul > .nav-drop-item p {
    max-width: 46rem;
  }

  .nav-menu .menu-item {
    max-width: 46rem;
  }

  .nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul {
    padding-left: 0;
  }
  .nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item {
    padding: 0 0 4px;
  }
  .nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item:first-child {
    padding: 0 0 4px;
  }
  .nav-menu .sub-menu .nav-drop-item .grandchild-sub-menu > ul > .nav-drop-item:last-child {
    padding: 0;
  }

  .main-navigation .primary-menu .nav-menu > .menu-item .nav-main-link::after {
    position: absolute;
    right: 0;
    top: 46%;
    -webkit-transform: translate(0%, -46%) rotate(-45deg);
        -ms-transform: translate(0%, -46%) rotate(-45deg);
            transform: translate(0%, -46%) rotate(-45deg);
    width: 0.25rem;
    height: 0.25rem;
    border-bottom: 0.078125rem solid currentColor;
    border-left: 0.078125rem solid currentColor;
    content: " ";
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    margin-right: 0;
    right: 0.2rem;
  }

  .main-navigation .secondary-menu .nav-menu > .menu-item > a::after {
    display: none;
  }

  .mobile-arrow {
    display: none;
  }

  #menu-item-38161 a {
    padding: 0.875rem 1rem;
    font-weight: 600;
  }

  .main-navigation-wrapper .hamburger-button-wrapper {
    display: none;
  }

  .main-navigation .primary-menu .nav-menu .menu-item.active .nav-main-link::after {
    -webkit-transform: translate(-20%, -20%) rotate(135deg);
        -ms-transform: translate(-20%, -20%) rotate(135deg);
            transform: translate(-20%, -20%) rotate(135deg);
    border-bottom: 0.078125rem solid white;
    border-left: 0.078125rem solid white;
  }

  .main-navigation .primary-menu .nav-menu > .current-menu-item.active .nav-main-link::after {
    border-bottom: 0.078125rem solid #faab18;
    border-left: 0.078125rem solid #e8850b;
  }
}
@media screen and (min-width: 1280px) {
  .main-navigation .primary-menu .nav-menu > li {
    margin-right: 11%;
  }
}
@media screen and (min-width: 1440px) {
  .main-navigation .primary-menu .nav-menu > li {
    margin-right: 5%;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1440px) {
  .main-navigation .external-menu .menu > li {
    margin-left: 3%;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site {
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.site-header {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  position: relative;
  margin-bottom: 41px;
  z-index: 100;
}

.site-header-container {
  margin: 20px auto;
  position: relative;
  padding: 0 30px;
}

.site-branding {
  height: auto;
}

.site-branding img {
  position: relative;
  width: auto;
  max-width: 275px;
  max-height: 60px;
  left: -10px;
}

.site-branding, .social-search, .search-form, .social-media {
  width: 100%;
  float: none;
  margin-bottom: 5px;
}

.social-media ul {
  padding: 0;
  margin: 0;
}

.site-header-container .search-field {
  width: 100%;
  border-radius: 24px;
  outline: none;
  padding: 4px 16px;
  border: none;
}

.site-header-container .search-field::-webkit-input-placeholder {
  color: #e8850b;
}

.site-header-container .search-field::-moz-placeholder {
  color: #e8850b;
}

.site-header-container .search-field:-ms-input-placeholder {
  color: #e8850b;
}

.site-header-container .search-field::-ms-input-placeholder {
  color: #e8850b;
}

.site-header-container .search-field::placeholder {
  color: #e8850b;
}

.site-header-container .search-form .search-submit {
  display: none;
}

.social-media {
  padding-left: 0;
  width: 50%;
  float: none;
  height: 25px;
  margin-top: 0;
  margin-bottom: 20px;
}

.social-media ul {
  list-style-type: none;
  font-size: 20px;
  line-height: 1.25em;
  text-align: right;
}

.social-media ul li {
  display: inline-block;
}

.social-media ul li + li {
  margin-left: 0.1em;
}

.social-media ul li a {
  padding: 0;
}
.social-media ul li a:hover {
  text-decoration: none;
}

.social-media ul.sub-menu {
  font-size: 0.875rem;
  position: absolute;
  top: 35px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0px 0px 4px 4px rgba(62, 66, 70, 0.1);
          box-shadow: 0px 0px 4px 4px rgba(62, 66, 70, 0.1);
  z-index: 100;
}

.social-media ul.sub-menu a {
  max-width: 100%;
  display: block;
  padding: 0;
}

.social-media .nav-menu ul.sub-menu {
  padding: 12px;
}

.social-media .nav-menu ul.sub-menu > .menu-item::after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  margin: 8px 0;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
}

.social-media .nav-menu ul.sub-menu > .menu-item:last-child::after {
  display: none;
}

.social-media ul.sub-menu .menu-item > a:hover,
.social-media ul.sub-menu .menu-item > a:focus {
  text-shadow: 1px 0 0 currentColor;
}

.social-media .nav-menu ul.sub-menu li {
  text-align: left;
}

.site-header-container .social-media .nav-menu ul.sub-menu li a {
  color: #002145;
}

@media screen and (min-width: 600px) {
  .site-branding {
    float: left;
    height: 60px;
    padding-right: 2%;
    width: 50%;
    z-index: 100;
  }

  .secondary-menu .nav-menu {
    min-width: 40%;
  }

  .social-search {
    width: 100%;
    float: right;
  }

  .search-form {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 5px;
  }

  .search-form label {
    position: relative;
  }
}
@media screen and (min-width: 1020px) {
  .site-header {
    margin-bottom: 0;
  }

  .site-header-container {
    height: 120px;
    padding: 0;
  }

  .site-branding img {
    position: absolute;
    bottom: 0;
    z-index: 100;
  }

  .main-navigation .primary-menu {
    width: 58%;
    float: left;
  }

  .main-navigation .external-menu {
    width: 42%;
    float: left;
  }

  .social-search {
    width: 40%;
    float: right;
  }

  .search-form {
    width: 60%;
    margin-left: -16px;
    margin-right: -16px;
  }

  .social-media .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .social-media {
    width: 45%;
  }

  .social-media ul.sub-menu {
    right: auto;
  }

  .social-media .nav-menu .menu-item.active > .menu-item-no-link::before {
    left: 4px;
  }
}
.clf-header #ubc7-search-box .btn:hover {
  background-color: #2f5d7c !important;
  border-color: #2f5d7c;
  color: #fff;
}

.clf-header #ubc7-search-box .btn {
  background-color: #002145;
  border: 1px solid #191938;
  border-color: rgba(25, 25, 56, 0.5);
  border-color: #002145;
  border-radius: 0;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}

#ubc7-search-box input {
  width: 270px;
}

.clf-header {
  display: none;
}

.clf-header input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(82, 168, 236, 0.6);
}

.site-footer .site-info {
  margin: 0 auto;
  max-width: 1080px;
}

@media screen and (min-width: 1280px) {
  .site-footer .site-info {
    margin: 0 auto;
    max-width: 1220px;
  }
}
@media screen and (min-width: 1440px) {
  .site-footer .site-info {
    max-width: 1400px;
  }
}
.site-footer {
  padding: 25px 15px;
  background: #002145;
  color: white;
}
.site-footer a {
  color: white;
  text-decoration: none;
}
.site-footer a.menu-item-no-link {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
}
.site-footer a.menu-item-no-link:hover {
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:active, .site-footer a:focus, .site-footer a:visited {
  color: white;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer ul {
  list-style-type: none;
  padding-left: 0;
  padding-top: 0;
  margin-top: 0;
}
.site-footer li {
  line-height: 25px;
}
.site-footer .menu-item-has-children {
  margin-bottom: 15px;
}
.site-footer #footer-left, .site-footer #footer-right-1, .site-footer #footer-right-2 {
  width: 100%;
  float: left;
}

@media screen and (min-width: 1020px) {
  .site-footer {
    font-size: 14px;
  }
  .site-footer #menu-footer {
    margin: 0;
    padding: 0;
  }
  .site-footer #text-7 {
    width: 60%;
    padding-right: 2%;
  }
  .site-footer #text-7 .textwidget {
    width: 67.5%;
  }
  .site-footer #nav_menu-4 {
    width: 40%;
    padding-right: 0;
  }
  .site-footer #menu-footer > li {
    float: left;
    width: 50%;
    list-style-type: none;
    padding-right: 1em;
  }
  .site-footer #footer-left {
    width: 60%;
  }
  .site-footer #footer-right-1, .site-footer #footer-right-2 {
    width: 20%;
  }
}
.calendar {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.calendar .header .month-year {
  font-size: 20px;
  font-weight: bold;
  color: #636e73;
  padding: 20px 0;
}

.calendar .days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  position: relative;
}

.calendar .days .day_name {
  width: 14.2857142857%;
  padding: 20px;
  text-transform: uppercase;
  font-size: 16px;
  color: #818589;
  color: #fff;
  z-index: 10;
}

.calendar .days .day_name:nth-child(7) {
  border: none;
}

.calendar .days .day_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 14.2857142857%;
  border-right: 1px solid #e6e9ea;
  border-bottom: 1px solid #e6e9ea;
  padding: 15px;
  color: #faab18;
  min-height: 100px;
  font-weight: 500;
}

.calendar .days .day_num span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.calendar .days .day_num .event {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  padding: 3px 6px;
  border-radius: 4px;
  background-color: #f7c30d;
  color: #fff;
  word-wrap: break-word;
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.calendar .days .day_num .event.green {
  background-color: #51ce57;
}

.calendar .days .day_num .event.blue {
  background-color: #518fce;
}

.calendar .days .day_num .event.red {
  background-color: #ce5151;
}

.calendar .days .day_num:nth-child(7n+1) {
  border-left: 1px solid #e6e9ea;
}

.calendar .days .day_num:hover {
  background-color: #fdfdfd;
}

.calendar .days .day_num.ignore {
  background-color: #fdfdfd;
  color: #ced2d4;
  cursor: inherit;
}

.calendar .days .day_num.selected {
  background-color: #f1f2f3;
  cursor: inherit;
}

.calendar-gradient {
  width: 100%;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  padding: 30px;
  position: absolute;
}

#mobile-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #faab18;
}
#mobile-calendar .calendar-gradient {
  border-radius: 50px;
}
#mobile-calendar .days .day_name {
  text-align: center;
  font-size: 16px;
  padding: 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mobile-calendar .days .day_num {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  min-height: 50px;
}
#mobile-calendar .days .day_num a {
  text-decoration: none;
}
#mobile-calendar .days .day_num span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
}
#mobile-calendar .days .day_num.has_event span {
  color: white;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  border-radius: 100%;
  height: 35px;
  width: 35px;
}
#mobile-calendar .days .day_num:nth-child(7n+1) {
  border-left: none;
}
#mobile-calendar .days .day_num.selected {
  background-color: initial;
}
#mobile-calendar .days .day_num.selected span {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #f1f2f3;
}
#mobile-calendar .days .day_num.ignore {
  font-size: 20px;
}

#mobile-event-list {
  margin-bottom: 35px;
}

.mobile-event-wrapper {
  color: #002145;
  font-size: 16px;
  border-bottom: 1px solid #faab18;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-event-wrapper .mobile-event-date {
  font-weight: 600;
  margin-left: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 113px;
          flex: 0 0 113px;
}
.mobile-event-wrapper .mobile-event-date a {
  color: #002145;
}
.mobile-event-wrapper .mobile-event-title {
  color: #002145;
  margin-left: 25px;
}

@media screen and (min-width: 1021px) {
  #desktop-calendar {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 1px solid #faab18;
    border-right: 1px solid #faab18;
    border-bottom: 1px solid #faab18;
  }

  #mobile-calendar, #mobile-event-list {
    display: none;
  }
}
.homepage {
  position: relative;
}

.homepage .content {
  max-width: 1270px;
  margin: 0 auto;
}

.homepage .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  min-height: 25rem;
  text-decoration: none;
}

.homepage .header .header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.homepage .header .header-image.with-mobile-image {
  display: none;
}

.homepage .header .header-mobile-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.homepage .header .left-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#002145), color-stop(50%, transparent));
  background: -o-linear-gradient(left, #002145 0%, transparent 50%);
  background: linear-gradient(90deg, #002145 0%, transparent 50%);
  z-index: 5;
}

@media screen and (max-width: 1019px) {
  .homepage .header .left-shadow {
    background: -webkit-gradient(linear, left top, right top, from(#002145), to(transparent));
    background: -o-linear-gradient(left, #002145 0%, transparent 100%);
    background: linear-gradient(90deg, #002145 0%, transparent 100%);
  }
}
.homepage .header .top-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#002145), color-stop(15%, transparent));
  background: -o-linear-gradient(top, #002145 0%, transparent 15%);
  background: linear-gradient(180deg, #002145 0%, transparent 15%);
  z-index: 5;
}

.homepage .header .header-content {
  position: absolute;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 30px;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 5;
}

.homepage .header .header-image-title {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1.25;
  margin: 0 0 0.9375rem;
  color: white;
}

.homepage .header .header-image-description {
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  color: white;
}

.homepage .footer {
  width: 100%;
}

.homepage .footer .sns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 150px;
  margin: 100px 0;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .footer .sns-content-container {
  display: block;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
}

.homepage .footer .sns-label {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  width: 100%;
  margin: 0 0 12px;
  font-size: 1.75rem;
  text-align: center;
  color: white;
}

.homepage .footer .sns-icon-list-wrapper {
  width: 100%;
}

.homepage .footer .sns-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homepage .footer .sns-icon-submenu-listitem {
  width: 7.5rem;
  padding: 5px;
}

.homepage .footer .sns-icon-listitem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: #002145;
  background-color: white;
  border-radius: 24px;
  margin-right: 12px;
}

.homepage .footer .sns-icon-listitem:hover .sns-icon-submenu {
  display: block;
}

.homepage .footer .sns-icon-submenu {
  display: none;
  position: absolute;
  width: 7.5rem;
  top: 100%;
  left: 0;
  padding: 0;
  border: 1px solid #002145;
  font-size: 0.875rem;
  background-color: white;
  list-style: none;
  text-align: right;
}

.homepage .footer .sns-icon-listitem a {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #002145;
}

.homepage .footer .sns-icon-listitem:last-child {
  margin-right: 0;
}

.homepage .footer .sns-container .sns-content-container {
  max-width: 1270px;
}

.homepage .special-announcement-header {
  background: white;
  padding: 25px 15px;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Merriweather";
}
.homepage .special-announcement-header a {
  text-decoration: underline;
}
.homepage .special-announcement-header p {
  margin-bottom: 0;
}

@media screen and (min-width: 480px) {
  .homepage .header .header-image-description {
    font-size: 1.0625rem;
    line-height: 1.6rem;
  }

  .homepage .header .header-image.with-mobile-image {
    display: block;
  }

  .homepage .header .header-mobile-image {
    display: none;
  }

  .homepage .header .header-content {
    top: 40px;
  }

  .homepage .footer .sns-icon-listitem {
    margin-right: 24px;
  }
}
@media screen and (min-width: 780px) {
  .homepage .footer .sns-container {
    height: 120px;
  }

  .homepage .footer .sns-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .homepage .header .header-content {
    top: 100px;
  }

  .homepage .footer .sns-label {
    width: 50%;
  }

  .homepage .footer .sns-icon-list-wrapper {
    width: 50%;
  }

  .homepage .footer .sns-label {
    font-size: 2rem;
    margin: 0;
  }
}
@media screen and (min-width: 800px) {
  .singular .homepage .has-sidebar .entry-content, .singular .homepage .has-post-thumbnail .entry-content, .singular .homepage .entry-title span {
    width: 100%;
    float: none;
  }
}
@media screen and (min-width: 1020px) {
  .homepage .special-announcement-header {
    max-width: 980px;
    padding: 25px 0px;
  }

  .homepage .header .header-content {
    padding: 0;
  }

  .homepage .header .header-image-title {
    font-size: 2.8rem;
    line-height: 3.45rem;
    margin: 0 0 4.375rem;
    color: white;
  }

  .homepage .header {
    min-height: 36.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .homepage .special-announcement-header {
    max-width: 1220px;
    padding: 25px 0;
  }

  .homepage .header .header-content {
    max-width: 1220px;
  }
}
@media screen and (min-width: 1440px) {
  .homepage .special-announcement-header {
    max-width: 1400px;
    padding: 25px 0;
  }

  .homepage .header .header-content {
    max-width: 1400px;
  }
}
.single-alumniubc_events .event-header .event-title {
  width: 60%;
  float: left;
}
.single-alumniubc_events .event-header .event-sidebar {
  width: 40%;
  float: left;
  margin-bottom: 25px;
}
.single-alumniubc_events .event-header .social-share {
  margin-top: 10px;
}
.single-alumniubc_events .grey-bg {
  background: #eee;
}

@media screen and (max-width: 768px) {
  .single-alumniubc_events .event-header {
    margin-bottom: 25px;
  }
  .single-alumniubc_events .event-header .event-title {
    float: none;
    width: 100%;
  }
  .single-alumniubc_events .event-header .event-sidebar {
    width: 100%;
    float: none;
    text-align: center;
  }
}
#alumni-journals-page label {
  display: inline-block;
  width: 12em;
  font-weight: 600;
}
#alumni-journals-page .checkbox label {
  width: auto;
  font-weight: normal;
  display: inline;
}
#alumni-journals-page span.required-label {
  color: red;
}
#alumni-journals-page #error {
  color: red;
  margin-bottom: 10px;
}
#alumni-journals-page #dob_picker {
  cursor: pointer;
}
#alumni-journals-page .ui-datepicker {
  z-index: 1000 !important;
}
#alumni-journals-page .disclaimer {
  margin: 50px auto;
}

.search-page-header {
  margin-top: 50px;
}

.AwardFilters {
  display: inline-block;
  margin-bottom: 20px;
}
.AwardFilters .award-filter-heading {
  font-size: 18px;
  font-weight: 600;
  margin-right: 25px;
}
.AwardFilters #award-filter-dropdown {
  font-size: 16px;
  padding: 0 5px;
}

.awards-block a {
  text-decoration: none;
}
.awards-block .award {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  display: none;
}
.awards-block .award a {
  display: block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.awards-block .award a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  display: block;
  margin: 0 auto;
}
.awards-block .award a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.awards-block .award.visible {
  display: block;
}
.awards-block .award .award-title {
  margin-top: 10px;
  margin-bottom: 35px;
}

.award-filter {
  font-weight: normal;
  cursor: pointer;
  margin: 10px 0;
}
.award-filter.active {
  font-weight: 600;
}
.award-filter.active::after {
  content: "\f00d";
  font-family: "FontAwesome";
  font-size: 12px;
  float: right;
  font-weight: 100;
}

@media screen and (max-width: 766px) {
  .awards-block .award {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.CoachFilters {
  display: inline-block;
  margin-bottom: 20px;
}
.CoachFilters .coach-filter-heading {
  font-size: 18px;
  font-weight: 600;
  margin-right: 25px;
}
.CoachFilters #coach-filter-dropdown {
  font-size: 16px;
  padding: 0 5px;
}

.coaches-block a {
  text-decoration: none;
}
.coaches-block .coach {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  display: none;
}
.coaches-block .coach a {
  display: block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.coaches-block .coach a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  display: block;
  margin: 0 auto;
}
.coaches-block .coach a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.coaches-block .coach.visible {
  display: block;
}
.coaches-block .coach .coach-title {
  margin-top: 10px;
  margin-bottom: 35px;
}

.coach-filter {
  font-weight: normal;
  cursor: pointer;
  margin: 10px 0;
}
.coach-filter.active {
  font-weight: 600;
}
.coach-filter.active::after {
  content: "\f00d";
  font-family: "FontAwesome";
  font-size: 12px;
  float: right;
  font-weight: 100;
}

@media screen and (max-width: 766px) {
  .coaches-block .coach {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.contests a {
  text-decoration: none;
}
.contests .contest {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
}
.contests .contest a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.contests .contest a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  display: block;
}
.contests .contest a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.contests .contest .closing-date {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .contests .contest {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 599px) {
  .contests .contest {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.CtaBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto;
}
.CtaBtn a {
  text-decoration: none;
}

.event-date-box-block {
  background: #ffefd6;
  -o-border-image: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
     border-image: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  border-image-slice: 1;
  border-top: 2px solid;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding: 20px;
  margin: 25px auto;
}
.event-date-box-block .UbcCtaBtn {
  margin: 20px auto;
  text-decoration: none;
}

.Expandable {
  margin: 28px auto;
}
.Expandable img {
  border-bottom-style: solid;
  border-bottom-width: 3px;
  -o-border-image: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%) 1;
     border-image: linear-gradient(124.88deg, #E69400 0%, #C86700 100%) 1;
}
.Expandable.active .heading:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.Expandable .above-heading p {
  margin-bottom: 5px;
}
.Expandable .heading {
  position: relative;
  padding-top: 5px;
  border-top: 1px solid #ccc;
  cursor: pointer;
}
.Expandable .heading:after {
  font-family: "FontAwesome";
  content: "\f078";
  color: #faab18;
  font-size: 18px;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 1rem;
}
.Expandable .heading p {
  margin: 0;
  max-width: none;
}
.Expandable .body {
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Expandable .body p {
  margin: 1rem auto;
  max-width: none;
}

.featured-events a {
  text-decoration: none;
}
.featured-events .event {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
}
.featured-events .event a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.featured-events .event a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  display: block;
}
.featured-events .event a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-events .event .event-date {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .featured-events .event {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 599px) {
  .featured-events .event {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.header-image-block {
  position: relative;
  margin-bottom: 30px;
}
.header-image-block .header-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#002145), color-stop(50%, transparent));
  background-image: -o-linear-gradient(left, #002145, transparent 50%);
  background-image: linear-gradient(to right, #002145, transparent 50%);
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.header-image-block .header-image img {
  display: block;
}
.header-image-block .header-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-image-block .header-content h1 {
  font-family: "Merriweather";
  font-weight: 300;
  font-size: 3.5rem;
  color: white;
  line-height: normal;
  margin-bottom: 0;
}
.header-image-block .header-content .subheading {
  font-weight: 600;
  font-size: 25px;
  color: #faab18;
}

@media screen and (max-width: 599px) {
  .header-image-block .header-content h1 {
    font-size: 25px;
  }
  .header-image-block .header-content .subheading {
    font-size: 16px;
  }
}
.tiles-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.tiles-grid.less-than-5 {
  grid-auto-flow: column;
  grid-template-columns: initial;
}
.tiles-grid .tile {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 30px;
  max-width: 275px;
}
.tiles-grid .tile a {
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.tiles-grid .tile a img {
  display: block;
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.tiles-grid .tile a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.tiles-grid .tile .chevron-right {
  border: none;
  display: inline-block;
  font-weight: 600;
  color: #002145;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.008125rem;
  -webkit-font-smoothing: subpixel-antialiased;
}
.tiles-grid .tile .chevron-right:hover .fa-chevron-right {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
}
.tiles-grid .tile .chevron-right .fa-chevron-right {
  color: #faab18;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tiles-grid .tile .title {
  font-size: 18px;
  font-weight: 600;
  color: #faab18;
  margin: 10px auto;
}

@media screen and (min-width: 600px) and (max-width: 819px) {
  .tiles-grid {
    grid-template-columns: auto auto;
  }
  .tiles-grid.less-than-5 {
    grid-template-columns: auto auto;
    grid-auto-flow: row;
  }
}
@media screen and (max-width: 599px) {
  .tiles-grid {
    display: grid;
    grid-template-columns: auto;
  }
  .tiles-grid.less-than-5 {
    grid-auto-flow: row;
  }
  .tiles-grid .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
  }
  .tiles-grid .tile a {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .tiles-grid .tile .text-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    margin-left: 5px;
  }
}
.upcoming-events a {
  text-decoration: none;
}
.upcoming-events .event {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
}
.upcoming-events .event a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.upcoming-events .event a img {
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
  display: block;
}
.upcoming-events .event a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.upcoming-events .event-date {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .upcoming-events .event:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .upcoming-events .event {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 599px) {
  .upcoming-events .event {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.UbcAccordionItem {
  -webkit-transition: background 0.1s ease-out;
  -o-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
}
.UbcAccordionItem .top {
  padding: 37.5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: border 0.1s ease-out;
  -o-transition: border 0.1s ease-out;
  transition: border 0.1s ease-out;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .UbcAccordionItem .top {
    padding: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .top {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 12.5px 0;
  }
}
.UbcAccordionItem .top .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 90%;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .top .heading {
    display: block;
  }
}
.UbcAccordionItem .top .heading:hover {
  opacity: 0.8;
}
.UbcAccordionItem .top .heading h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  padding-left: 37.5px;
  line-height: 1.5;
  margin-right: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .top .heading h2 {
    font-size: 1.125rem;
    width: 90%;
    margin: 0;
    padding-left: 0;
  }
}
.UbcAccordionItem .top .heading h5 {
  font-weight: normal;
  font-style: italic;
  font-size: 0.9375rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .top .heading h5 {
    font-size: 0.875rem;
    position: relative;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    padding: 12.5px 0;
  }
}
.UbcAccordionItem .top .icon {
  margin-left: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.UbcAccordionItem .top .icon .UbcCtaBtn.with-plus::before,
.UbcAccordionItem .top .icon .UbcCtaBtn.with-plus::after {
  background: #002145;
}
.UbcAccordionItem .bottom {
  height: 0.0625rem;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out, opacity 0.3s ease-out;
  -o-transition: height 0.3s ease-out, opacity 0.3s ease-out;
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
  border-bottom: solid 0.0625rem rgba(0, 33, 69, 0.35);
}
.UbcAccordionItem .bottom > div {
  padding: 0 0 75px 37.5px;
  width: 85%;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .UbcAccordionItem .bottom > div {
    padding: 0 0 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .bottom > div {
    padding: 0 0 25px 0;
  }
}
.UbcAccordionItem .bottom > div > p {
  max-width: 50rem;
  color: #464547 !important;
}
.UbcAccordionItem.active .top {
  border-color: transparent;
}
.UbcAccordionItem.active .top .UbcCtaBtn.with-plus {
  border-color: white;
}
.UbcAccordionItem.active .top .UbcCtaBtn.with-plus:before {
  opacity: 0;
}
.UbcAccordionItem.active .top h2 {
  font-weight: 700;
}
.UbcAccordionItem.active .top h5 {
  font-weight: 600;
}
.UbcAccordionItem.active .bottom {
  display: block;
  opacity: 1;
}
.UbcAccordionItem.no-tag .top h2 {
  padding-left: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.008125rem;
  line-height: 1.5625rem;
  margin-bottom: -0.625rem;
}
.UbcAccordionItem.no-tag .top h2::after {
  content: "";
  display: block;
  position: relative;
  margin-top: 0.625rem;
  height: 0.1875rem;
  width: 2.75rem;
  margin-bottom: -0.8125rem;
  background: transparent;
  -webkit-transition: background 0.3s ease-out;
  -o-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.UbcAccordionItem.no-tag .bottom > div {
  padding: 0;
}
.UbcAccordionItem.no-tag.active .top h2::after {
  background: #e8850b;
}

.UbcAccordionItem .bottom .content p:nth-of-type(2) {
  margin-top: 0;
}
.UbcAccordionItem .bottom .content p {
  margin: 37.5px 0;
  color: #464547 !important;
}
.UbcAccordionItem .bottom .content blockquote {
  padding-left: 37.5px;
  border-left: solid 0.0625rem #002145;
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .bottom .content blockquote {
    padding-left: 25px;
  }
}
.UbcAccordionItem .bottom .content blockquote,
.UbcAccordionItem .bottom .content blockquote p {
  color: #464547 !important;
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.010625rem;
}
.UbcAccordionItem .bottom .content ul:not(.items) {
  list-style: disc;
  padding: 0;
  margin-left: 50px;
  margin-bottom: 1rem;
}
.UbcAccordionItem .bottom .content ul:not(.items) li {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.00875rem;
  line-height: 1.75rem;
  width: 100%;
  color: #464547 !important;
}
.UbcAccordionItem .bottom .content a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .UbcAccordionItem .bottom .content {
    padding: 0 25px;
  }
}
.UbcAccordionItem .bottom .content code > br {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .UbcAccordionItem .bottom .content p {
    margin: 25px 0;
  }
}
.UbcAccordionItem .bottom .content a.UbcCtaBtn {
  text-decoration: none;
}

.CommentForm .fund-comment-form {
  padding: 75px 75px;
  background: #002145;
  max-width: 62rem;
  margin: 0 auto 75px;
}
.CommentForm .fund-comment-form #reply-title,
.CommentForm .fund-comment-form .logged-in-as,
.CommentForm .fund-comment-form .comment-notes,
.CommentForm .fund-comment-form .comment-form-comment,
.CommentForm .fund-comment-form .comment-form-author {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .CommentForm .fund-comment-form {
    margin-bottom: 0;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .CommentForm .fund-comment-form {
    padding: 50px 50px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1601px) {
  .CommentForm .fund-comment-form {
    margin: 0 auto 75px !important;
  }
}

.CommentForm .fund-comment-form form .acf-comment-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.CommentForm .fund-comment-form form .acf-field:not(.acf-field-textarea) {
  width: calc(50% - 75px);
}
@media screen and (min-width: 1021px) and (max-width: 1261px) {
  .CommentForm .fund-comment-form form .acf-field:not(.acf-field-textarea) {
    width: calc(50% - 50px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .CommentForm .fund-comment-form form .acf-field:not(.acf-field-textarea) {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .CommentForm .fund-comment-form form .acf-field:not(.acf-field-textarea) {
    width: 100%;
  }
}

.CommentForm .fund-comment-form form .acf-field-textarea {
  width: 100%;
}

.CommentForm .fund-comment-form form .acf-field .acf-label label {
  font-weight: normal;
  color: white;
}

.CommentForm .fund-comment-form form input[type=text],
.CommentForm .fund-comment-form form input[type=url],
.CommentForm .fund-comment-form form textarea {
  background: transparent;
  outline: none;
  border: none;
  border-bottom: solid 0.0625rem white;
  color: white;
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
}

.CommentForm .fund-comment-form form textarea {
  border: solid 0.0625rem white;
  margin-top: 0.625rem;
}

.CommentForm .fund-comment-form form .acf-icon.-globe.-small {
  display: none;
}

.CommentForm .fund-comment-form form input[type=url] {
  padding-left: 0;
}

.CommentForm .fund-comment-form form .acf-required {
  color: white;
}

.CommentForm .fund-comment-form form .form-submit {
  text-align: center;
  padding: 37.5px 0 0;
}

@media screen and (min-width: 769px) and (max-width: 800px) {
  .CommentForm .fund-comment-form form .acf-image-uploader .hide-if-value {
    max-width: 240px;
  }
}

.CommentForm .fund-comment-form form .acf-image-uploader p {
  color: white;
}
.CommentForm .fund-comment-form form .acf-image-uploader p .acf-button {
  text-decoration: underline;
  display: inline-block;
  margin-left: 8px;
}

.CommentForm .fund-comment-form form input[type=submit] {
  position: relative;
  display: inline-block;
  border-radius: 1.5625rem;
  border: 0.125rem solid white;
  padding: 0.875rem 2.375rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 0.9375rem;
  letter-spacing: 0.008125rem;
  cursor: pointer;
  min-width: 10.3125rem;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  background: transparent;
  color: white;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 500;
}
.CommentForm .fund-comment-form form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  .CommentForm .fund-comment-form form input[type=submit] {
    padding: 0.625rem 1.425rem;
    min-width: 9.375rem;
    font-size: 1rem;
    line-height: 1rem;
  }
}

.CommentForm .fund-comment-form form .acf-repeater.-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.CommentForm .fund-comment-form form .acf-repeater.-table thead,
.CommentForm .fund-comment-form form .acf-repeater.-table .acf-repeater .acf-row-handle.order {
  display: none;
}
.CommentForm .fund-comment-form form .acf-repeater.-table .acf-actions {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: -1.5625rem;
  font-size: 0.875rem;
  text-decoration: underline;
  font-style: italic;
}
.CommentForm .fund-comment-form form .acf-repeater.-table > table {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 10px;
  border: none;
}
.CommentForm .fund-comment-form form .acf-repeater.-table .acf-actions a {
  color: white;
}

.CommentForm .fund-comment-form form .acf-field-repeater {
  border-bottom: solid 0.0625rem white;
}
.CommentForm .fund-comment-form form .acf-repeater .acf-row-handle.order {
  display: none;
}
.CommentForm .fund-comment-form form .acf-repeater > table,
.CommentForm .fund-comment-form form .table.acf-table,
.CommentForm .fund-comment-form form .acf-table > tbody > tr > th,
.CommentForm .fund-comment-form form .acf-table > tbody > tr > td,
.CommentForm .fund-comment-form form .acf-table > thead > tr > th,
.CommentForm .fund-comment-form form .acf-table > thead > tr > td,
.CommentForm .fund-comment-form form a.acf-icon {
  background: transparent;
  border: none;
}
.CommentForm .fund-comment-form form label.acf-basic-uploader {
  color: white;
}
.CommentForm .fund-comment-form form .acf-repeater .acf-row-handle .acf-icon {
  display: block;
  position: static;
}
.CommentForm .fund-comment-form form .acf-repeater .acf-row-handle .acf-icon.-duplicate {
  display: none;
}
.CommentForm .fund-comment-form form .acf-row-handle.remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.125rem;
}
@media screen and (min-width: 1021px) and (max-width: 1261px) {
  .CommentForm .fund-comment-form form .acf-row-handle.remove {
    width: 2.25rem;
  }
}
.CommentForm .fund-comment-form form a.acf-icon {
  margin: 0;
}

.CommentForm .fund-comment-form form .acf-field span.error-message {
  color: #faab18;
  display: none;
  padding-top: 0.3125rem;
  font-size: 0.75rem;
}

.CommentForm .fund-comment-form form .acf-field.invalid input[type=text],
.CommentForm .fund-comment-form form .acf-field.invalid input[type=url] {
  border-bottom: solid 0.0625rem #faab18;
}
.CommentForm .fund-comment-form form .acf-field.invalid textarea {
  border: solid 0.0625rem #faab18;
}
.CommentForm .fund-comment-form form .acf-field.invalid span.error-message {
  display: block;
}

@media screen and (max-width: 768px) {
  .CommentForm .Copy .container {
    padding: 25px 0;
  }
}
.CommentForm .Copy h2.h2 {
  margin-bottom: 12.5px;
}
.CommentForm .Copy .wysiwyg-content {
  line-height: 1.3;
}

.Copy {
  padding: 75px 0;
}
.Copy p {
  margin: 37.5px 0;
  color: #464547 !important;
}
.Copy blockquote {
  padding-left: 37.5px;
  border-left: solid 0.0625rem #002145;
}
@media screen and (max-width: 768px) {
  .Copy blockquote {
    padding-left: 25px;
  }
}
.Copy blockquote,
.Copy blockquote p {
  color: #464547 !important;
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.010625rem;
}
.Copy ul:not(.items) {
  list-style: disc;
  padding: 0;
  margin-left: 50px;
  margin-bottom: 1rem;
}
.Copy ul:not(.items) li {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.00875rem;
  line-height: 1.75rem;
  width: 100%;
  color: #464547 !important;
}
.Copy a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .Copy {
    padding: 0 25px;
  }
}
.Copy code > br {
  display: none;
}
@media screen and (max-width: 768px) {
  .Copy {
    padding: 25px 0;
  }
}

.Copy .container {
  margin-right: 75px;
  margin-left: 75px;
  width: calc(100% - 150px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .Copy .container {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .Copy .container {
    width: calc(100% - 50px);
    margin-left: 25px;
    margin-right: 25px;
  }
  .Copy .container .body-width-full {
    padding: 0;
  }
}
@media screen and (min-width: 1601px) {
  .Copy .container {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.Copy .container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.Copy .container > div p {
  width: 50%;
  margin-top: 37.5px;
  line-height: 1.65;
  color: #464547 !important;
}
@media screen and (max-width: 768px) {
  .Copy .container > div p {
    width: 100%;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
  }
}
.Copy .container p.expanded {
  -webkit-transition: height 0.3s ease-out, opacity 0.3s ease-out;
  -o-transition: height 0.3s ease-out, opacity 0.3s ease-out;
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
  height: 0px;
  overflow: hidden;
  opacity: 0;
}
.Copy .container p.expanded.active {
  opacity: 1;
}
.Copy .container .read-more {
  margin-top: 25px;
  padding-right: 25px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.006875rem;
  line-height: 1.5625rem;
  position: relative;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.Copy .container .read-more:after {
  color: #e8850b;
  position: absolute;
  right: 0;
  top: 46%;
  -webkit-transform: translate(0%, -46%) rotate(-45deg);
      -ms-transform: translate(0%, -46%) rotate(-45deg);
          transform: translate(0%, -46%) rotate(-45deg);
  width: 0.25rem;
  height: 0.25rem;
  border-bottom: 0.078125rem solid currentColor;
  border-left: 0.078125rem solid currentColor;
  content: " ";
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid currentColor;
  border-left: 0.1875rem solid currentColor;
  top: 25%;
  -webkit-transform: translate(0%, -25%) rotate(-45deg);
      -ms-transform: translate(0%, -25%) rotate(-45deg);
          transform: translate(0%, -25%) rotate(-45deg);
}
.Copy .container .read-more.open::after {
  top: 70%;
  -webkit-transform: translate(0%, -70%) rotate(135deg);
      -ms-transform: translate(0%, -70%) rotate(135deg);
          transform: translate(0%, -70%) rotate(135deg);
}
.Copy .container .read-more:hover {
  opacity: 0.8;
}

.Copy.text-align-center .container {
  max-width: 52.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Copy.text-align-left {
  text-align: left;
}
.Copy.text-align-left .UbcCtaBtn.underline {
  width: 100%;
}

.Copy.text-align-center {
  text-align: center;
}

.Copy.text-align-right {
  text-align: right;
}

.Copy.text-align-left h4 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.Copy.text-align-center h4 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Copy.text-align-right h4 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.Copy h2 {
  color: currentColor;
  max-width: 53.75rem;
  width: 100%;
}

.Copy.text-align-center h2 {
  margin: 0 auto;
  text-align: center;
}

.Copy h4 {
  margin-bottom: 0.625rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Copy h3 {
    font-size: 1.1875rem;
  }
}

.Copy p {
  margin-top: 25px;
  padding-right: 75px;
  color: #464547 !important;
}
@media screen and (max-width: 768px) {
  .Copy p {
    margin-top: 12.5px;
    padding-right: 0;
  }
}
.Copy p.width-full {
  max-width: 61.875rem;
  padding-right: 0;
}

.Copy .body-width-full {
  max-width: 61.875rem;
  padding-right: 0;
}
.Copy .body-width-full p {
  padding-right: 0;
}

.Copy .body-width-full p,
.Copy .body-width-half p {
  margin: 37.5px 0;
  color: #464547 !important;
}
.Copy .body-width-full blockquote,
.Copy .body-width-half blockquote {
  padding-left: 37.5px;
  border-left: solid 0.0625rem #002145;
}
@media screen and (max-width: 768px) {
  .Copy .body-width-full blockquote,
.Copy .body-width-half blockquote {
    padding-left: 25px;
  }
}
.Copy .body-width-full blockquote,
.Copy .body-width-full blockquote p,
.Copy .body-width-half blockquote,
.Copy .body-width-half blockquote p {
  color: #464547 !important;
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.010625rem;
}
.Copy .body-width-full ul:not(.items),
.Copy .body-width-half ul:not(.items) {
  list-style: disc;
  padding: 0;
  margin-left: 50px;
  margin-bottom: 1rem;
}
.Copy .body-width-full ul:not(.items) li,
.Copy .body-width-half ul:not(.items) li {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.00875rem;
  line-height: 1.75rem;
  width: 100%;
  color: #464547 !important;
}
.Copy .body-width-full a,
.Copy .body-width-half a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .Copy .body-width-full,
.Copy .body-width-half {
    padding: 0 25px;
  }
}
.Copy .body-width-full code > br,
.Copy .body-width-half code > br {
  display: none;
}

.Copy .body-width-half,
.Copy p.width-half {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .Copy .body-width-half,
.Copy p.width-half {
    max-width: 100%;
  }
}

.Copy.columns-2:not(.text-align-center) p {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .Copy.columns-2:not(.text-align-center) p {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}

.Copy .UbcCtaBtn {
  color: currentColor;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .Copy .UbcCtaBtn {
    margin-top: 25px;
  }
}

.Copy.split-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0;
  padding-bottom: 0;
  margin-right: -1.25rem;
}
@media screen and (max-width: 768px) {
  .Copy.split-text {
    padding-right: 0;
    margin-right: 0;
    padding: 25px 0;
  }
  .Copy.split-text .UbcCtaBtn {
    margin-top: 0;
  }
}
@media screen and (min-width: 1601px) {
  .Copy.split-text {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.Copy.split-text .words-pre,
.Copy.split-text .words-post {
  opacity: 0.9;
  color: #E9EDF4;
  font-size: 8.5rem;
  line-height: 6.8125rem;
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .Copy.split-text .words-pre,
.Copy.split-text .words-post {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .Copy.split-text .words-pre,
.Copy.split-text .words-post {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .Copy.split-text .words-pre {
    margin-left: 25px;
  }
}
.Copy.split-text .container {
  max-width: 28.75rem;
  width: 100%;
  padding: 0 37.5px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .Copy.split-text .container {
    max-width: none;
    padding: 0 25px;
  }
}
.Copy.split-text .container p {
  margin: 0;
  padding-right: 0;
}
.Copy.split-text .container .h2 {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.023125rem;
  line-height: 1.4;
  padding-bottom: 18.75px;
}
@media screen and (max-width: 768px) {
  .Copy.split-text .container .h2 {
    font-size: 1.625rem;
    letter-spacing: 0.020625rem;
  }
}

.Copy .wysiwyg-content {
  display: block;
  overflow: hidden;
}
.Copy .wysiwyg-content.active > p:first-of-type {
  margin-top: 0;
}

.UbcCtaBtn {
  position: relative;
  display: inline-block;
  border-radius: 1.5625rem;
  border: 0.125rem solid currentColor;
  padding: 0.875rem 2.375rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 0.8125rem;
  letter-spacing: 0.008125rem;
  cursor: pointer;
  min-width: 10.3125rem;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media screen and (max-width: 768px) {
  .UbcCtaBtn {
    padding: 0.625rem 1.425rem;
    min-width: 9.375rem;
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}
.UbcCtaBtn:not(.underline):not(.arrow) {
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.UbcCtaBtn:not(.underline):not(.arrow):hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.UbcCtaBtn.arrow {
  display: block;
  border: none;
  border-radius: 0;
  color: #002145;
  font-size: 0.8125rem;
  letter-spacing: 0.008125rem;
  -webkit-font-smoothing: subpixel-antialiased;
  background: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0;
  min-width: 0;
}
.UbcCtaBtn.arrow::after {
  content: "\f054";
  font-family: "FontAwesome";
  color: #faab18;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.UbcCtaBtn.arrow:hover::after {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
  margin-left: 25px;
}

.UbcCtaBtn.underline {
  border: none;
  border-radius: 0;
  padding: 0.875rem 0;
  min-width: initial;
  text-align: left;
  font-weight: 600;
  color: #002145;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .UbcCtaBtn.underline {
    font-size: 0.8125rem;
    letter-spacing: 0.0075rem;
    line-height: 1.85;
  }
}
.UbcCtaBtn.underline:hover:after {
  -webkit-animation: 0.6s ease-out underline-animation;
          animation: 0.6s ease-out underline-animation;
}
@keyframes underline-animation {
  from {
    width: 0;
  }
  to {
    width: 2.75rem;
  }
}
.UbcCtaBtn.underline:after {
  content: "";
  display: block;
  position: relative;
  margin-top: 0.8125rem;
  height: 0.1875rem;
  width: 2.75rem;
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
}

.UbcCtaBtn.with-plus {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  min-width: auto;
  padding: 0.875rem;
  background: transparent;
  border: none;
}
.UbcCtaBtn.with-plus:before, .UbcCtaBtn.with-plus:after {
  content: "";
  position: absolute;
  background: #e8850b;
}
.UbcCtaBtn.with-plus:before {
  left: 50%;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 0.125rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.UbcCtaBtn.with-plus:after {
  top: 50%;
  left: 0.5rem;
  right: 0.5rem;
  height: 0.125rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.UbcCtaBtn.no-text {
  border-color: rgba(70, 69, 71, 0.4);
}

.UbcCtaBtn.solid {
  background: white;
  border-color: transparent;
  color: #002145;
  font-weight: 600;
}

.UbcCtaBtn.gradient {
  background: -o-linear-gradient(325.12deg, #E69400 0%, #C86700 100%);
  background: linear-gradient(124.88deg, #E69400 0%, #C86700 100%);
  color: white;
  border: none;
}

a.UbcCtaBtn:hover {
  text-decoration: none;
}

.ubc-extra-info {
  width: 100%;
}
.ubc-extra-info h4 {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.75;
  text-transform: none;
  color: #002145;
  margin-bottom: 0;
  padding-bottom: 18.75px;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info h4 {
    padding: 12.5px 0;
  }
}
.ubc-extra-info .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
  padding: 37.5px 0;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .content {
    padding: 25px 0;
  }
}
.ubc-extra-info .content .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.ubc-extra-info .content .heading:hover {
  opacity: 0.8;
}
.ubc-extra-info .content .heading h4 {
  cursor: pointer;
}
.ubc-extra-info .content .heading .icon {
  margin: -0.25rem 0 0 auto;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .content .heading .icon {
    margin: 0.5rem 0 0 auto;
  }
}
.ubc-extra-info .dropdowns,
.ubc-extra-info .buttons {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ubc-extra-info .buttons {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .buttons {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 25px 0;
    border-bottom: solid 0.0625rem rgba(0, 33, 69, 0.3);
  }
}
.ubc-extra-info .dropdowns {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .dropdowns {
    width: 100%;
    display: block;
  }
}
.ubc-extra-info .dropdowns ul {
  height: 0rem;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
.ubc-extra-info .dropdowns ul li {
  padding-bottom: 18.75px;
}
.ubc-extra-info .dropdowns ul li p {
  font-size: 0.875rem;
}
.ubc-extra-info .dropdowns ul li a:hover {
  text-decoration: underline;
}
.ubc-extra-info .dropdowns ul li p br {
  display: none;
}
.ubc-extra-info .dropdowns.col-1 {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .dropdowns.col-1 {
    width: 100%;
  }
}
.ubc-extra-info .dropdowns.col-1 .dropdown {
  width: 100%;
}
.ubc-extra-info .dropdown {
  margin-bottom: 18.75px;
  border-bottom: solid 0.0625rem rgba(0, 33, 69, 0.3);
}
.ubc-extra-info .dropdown.active .UbcCtaBtn:before {
  display: none;
}
.ubc-extra-info .dropdowns .dropdown,
.ubc-extra-info .buttons .UbcCtaBtn {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .dropdowns .dropdown,
.ubc-extra-info .buttons .UbcCtaBtn {
    width: 100%;
    margin-bottom: 0;
  }
}
.ubc-extra-info .share-container {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 35%;
  margin-left: auto;
  margin-bottom: -50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .share-container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.ubc-extra-info .share-container h4 {
  border-bottom: solid 0.0625rem rgba(0, 33, 69, 0.3);
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .share-container h4 {
    display: none;
  }
}
.ubc-extra-info .share-container.align-left {
  margin-left: 5%;
}
.ubc-extra-info .share-container ul.social-media {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .share-container ul.social-media {
    max-width: 18.75rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 25px;
  }
}
.ubc-extra-info .share-container ul.social-media li {
  border-radius: 50%;
  overflow: hidden;
  width: 2.125rem;
  height: 2.125rem;
  margin-right: 25px;
  background: #eaebec;
  color: #002145;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.ubc-extra-info .share-container ul.social-media li:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  .ubc-extra-info .share-container ul.social-media li {
    width: 2.8125rem;
    height: 2.8125rem;
    margin-right: 0;
  }
}
.ubc-extra-info .share-container ul.social-media li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 40%;
}
.ubc-extra-info .share-container .fb {
  background-image: url("./assets/img/social-icons/fb.png");
  background-size: auto 50%;
}
.ubc-extra-info .share-container .tt {
  background-image: url("./assets/img/social-icons/tt.png");
}
.ubc-extra-info .share-container .in {
  background-image: url("./assets/img/social-icons/in.png");
}
.ubc-extra-info .share-container .yt {
  background-image: url("./assets/img/social-icons/yt.png");
  background-size: auto 60%;
}

.faculty-members {
  padding: 75px 0;
  margin-right: 75px;
  width: 100%;
  display: none;
}
.faculty-members.mobile {
  padding: 50px 25px 12.5px 25px;
}
@media screen and (max-width: 1020px) {
  .faculty-members.mobile {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .faculty-members.mobile {
    padding: 75px 75px;
  }
}
.faculty-members.desktop {
  position: relative;
  max-width: 15.625rem;
  padding-top: 25px;
}
@media screen and (min-width: 1021px) {
  .faculty-members.desktop {
    display: block;
  }
}
.faculty-members.desktop:before, .faculty-members.desktop:after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
}
.faculty-members.desktop:before {
  height: 75px;
  top: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(white, rgba(255, 255, 255, 0));
  background: linear-gradient(white, rgba(255, 255, 255, 0));
}
.faculty-members.desktop:after {
  height: 100px;
  bottom: 75px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), white);
  background: linear-gradient(rgba(255, 255, 255, 0), white);
}
@media screen and (min-width: 1601px) {
  .faculty-members.desktop {
    max-width: 21.25rem;
    margin-right: 0;
    margin-left: auto;
  }
}
.faculty-members.desktop .faculty-members-heading {
  margin-top: 50px;
}
.faculty-members.desktop .faculty-members-wrap {
  overflow: scroll;
  height: 100%;
  position: relative;
  width: 100%;
}
.faculty-members.desktop .faculty-members-content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding-right: 20px;
}
.faculty-members.desktop ul {
  padding-bottom: 75px;
}
.faculty-members-heading {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.faculty-members li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faculty-member {
  padding: 1.25rem 0;
  border-bottom: solid 1px rgba(70, 69, 71, 0.5);
  font-weight: normal;
  line-height: 1.5;
  position: relative;
}
.faculty-member span {
  display: inline-block;
  margin-bottom: 0.3125rem;
}
.faculty-member a {
  color: #e8850b;
  text-decoration: underline;
}
.faculty-member-name {
  color: #002145;
  font-size: 1rem;
}
.faculty-member-position, .faculty-member-phone, .faculty-member-email {
  color: #464547;
  font-size: 0.875rem;
}
.faculty-member-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease-out;
  -o-transition: max-height 0.25s ease-out;
  transition: max-height 0.25s ease-out;
}
.faculty-member .UbcCtaBtn.with-plus {
  position: absolute;
  top: 18px;
  right: -6px;
}
.faculty-member.active .faculty-member-contact {
  max-height: 60px;
}
.faculty-member.active .UbcCtaBtn.with-plus:before {
  opacity: 0;
}

.Header {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: white;
}
.touch-device .Header {
  height: 100% !important;
}
@media screen and (max-width: 768px) {
  .Header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 25px;
  }
}
@media screen and (max-width: 1260px) {
  .Header {
    height: 100% !important;
  }
}
@media screen and (max-width: 1600px) {
  .Header {
    max-height: 800px;
  }
}
@media screen and (min-width: 1601px) {
  .Header {
    padding: 0 75px 0 75px;
  }
}
.Header .Header-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  display: none;
}
@media screen and (max-width: 540px) {
  .Header .Header-bg.header-bg-mobile {
    display: block;
  }
}
@media screen and (min-width: 541px) {
  .Header .Header-bg.header-bg-large {
    display: block;
  }
}

.Header[data-size="0.75"] {
  min-height: 31.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1020px) {
  .Header[data-size="0.75"] {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto !important;
    min-height: 28.125rem;
  }
}
@media screen and (max-width: 768px) {
  .Header[data-size="0.75"] {
    min-height: 25rem;
  }
}
@media screen and (min-width: 1601px) {
  .Header[data-size="0.75"] {
    min-height: 40.625rem;
  }
}

.Header[data-size="0.65"] {
  min-height: 25rem;
}
.Header[data-size="0.65"] h1 {
  letter-spacing: 0;
  font-size: 4.375rem;
  line-height: 5.625rem;
}
@media screen and (max-width: 1020px) {
  .Header[data-size="0.65"] h1 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media screen and (min-width: 1261px) {
  .Header[data-size="0.65"] {
    min-height: 31.25rem;
  }
}
@media screen and (min-width: 1601px) {
  .Header[data-size="0.65"] {
    min-height: 37.5rem;
  }
}

.Header[data-size="0.55"] {
  min-height: 18.75rem;
}
@media screen and (min-width: 1261px) {
  .Header[data-size="0.55"] {
    min-height: 25rem;
  }
}
@media screen and (min-width: 1601px) {
  .Header[data-size="0.55"] {
    min-height: 31.25rem;
  }
}
.Header[data-size="0.55"] h1 {
  font-size: 3.75rem;
  line-height: 5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1020px) {
  .Header[data-size="0.55"] h1 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}

.Header.minimal {
  min-height: 0;
  background: none !important;
}

.Header .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: -o-linear-gradient(45deg, #002145, transparent);
  background: linear-gradient(45deg, #002145, transparent);
}

.Header.minimal .shadow {
  display: none;
}

.Header .content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .Header .content {
    padding: 25px 0;
  }
  .Header .content.no-breadcrumbs {
    margin-top: 10%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .Header .content {
    padding: 37.5px 50px;
  }
}
@media screen and (min-width: 1021px) and (max-width: 1261px) {
  .Header .content {
    padding: 75px 50px;
  }
}
@media screen and (min-width: 1261px) and (max-width: 1601px) {
  .Header .content {
    padding: 75px 150px;
  }
}
@media screen and (min-width: 1601px) {
  .Header .content {
    max-width: 1400px;
    width: calc(100% - 150px);
    margin: 0 auto;
    padding: 0;
  }
}

.Header.minimal .content {
  padding: 75px 150px 37.5px;
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .Header.minimal .content {
    padding: 75px 125px 37.5px;
  }
}
@media screen and (min-width: 1601px) {
  .Header.minimal .content {
    padding: 75px 75px 37.5px;
  }
}
@media screen and (max-width: 768px) {
  .Header.minimal .content {
    padding: 25px 0;
  }
}

.Header h1 {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .Header h1 {
    margin-bottom: 1.25rem;
    max-width: 75%;
  }
}
@media screen and (min-width: 451px) and (max-width: 769px) {
  .Header h1 {
    max-width: 65%;
  }
}

.Header.minimal h1 {
  max-width: 100%;
  color: #002145;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 3.75rem;
}

.Header h6 {
  margin-bottom: 0.625rem;
  color: white;
}

.Header.minimal h6 {
  color: #e8850b;
}

.Header p {
  max-width: 31.25rem;
  color: white;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.015rem;
  line-height: 1.875rem;
}
@media screen and (max-width: 768px) {
  .Header p {
    font-size: 1.25rem;
  }
}

.Header.minimal p {
  display: none;
}

.Header .UbcCtaBtn,
.Header .video-cta {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .Header .UbcCtaBtn,
.Header .video-cta {
    margin-top: 1.875rem;
  }
}

.Header.minimal .UbcCtaBtn {
  display: none;
}

.Header .video-cta > span {
  margin-left: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.008125rem;
  line-height: 1.75;
}
.Header .video-cta .ubc-play-btn {
  color: white;
}
.Header .video-cta .ubc-play-btn .ubc-play-btn-circle {
  background: white;
}
.Header .video-cta .ubc-play-btn .cta-icon-play {
  color: #e8850b;
}

.Header .header-img-caption {
  z-index: 10;
}
.Header .header-img-caption.align-top {
  bottom: auto;
  top: 0.625rem;
}

.Header > .header-img-caption {
  position: absolute;
  bottom: 0.625rem;
  left: 1.5rem;
}
@media screen and (max-width: 1020px) {
  .Header > .header-img-caption {
    display: none;
  }
  .Header > .header-img-caption.align-top {
    display: block;
  }
}

.Header .content .header-img-caption {
  margin-top: 5px;
}
@media screen and (min-width: 1021px) {
  .Header .content .header-img-caption {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .Header .content .header-img-caption.align-top {
    display: none;
  }
}

.ubc-img-caption {
  padding: 0.5rem 0;
  margin: 0 25px 0 0;
  position: relative;
}
.ubc-img-caption:hover .ubc-caption-full {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.ubc-img-caption .info-icon {
  position: relative;
  margin-right: 3px;
  top: 2px;
}
.ubc-img-caption .ubc-caption-text {
  display: block;
  color: #464547;
  font-size: 0.875rem;
  line-height: 1.4;
}
.ubc-img-caption .ubc-caption-full {
  position: absolute;
  padding-top: 2px;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.ubc-img-caption .ubc-caption-full .ubc-caption-full-inner {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  background-color: #3F3F3F;
}
.ubc-img-caption .ubc-caption-full .ubc-caption-full-inner:before {
  content: "";
  border-radius: 1px;
  display: inline-block;
  height: 16px;
  width: 16px;
  position: absolute;
  top: -4px;
  left: 18px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #3F3F3F;
}
.ubc-img-caption .ubc-caption-full .ubc-caption-text {
  color: white;
}
.ubc-img-caption.reveal-top .ubc-caption-full {
  bottom: 100%;
  top: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.ubc-img-caption.reveal-top .ubc-caption-full-inner:before {
  top: auto;
  bottom: -8px;
}
.ubc-img-caption.reveal-top:hover .ubc-caption-full {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.ubc-img-caption.light .ubc-caption-short {
  color: white;
}
.ubc-img-caption.light .ubc-caption-short rect, .ubc-img-caption.light .ubc-caption-short path {
  fill: white;
}

@media screen and (min-width: 769px) and (max-width: 1021px) {
  .UbcInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.UbcInfo .tag {
  color: #e8850b;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .UbcInfo .tag {
    padding-right: 0;
    padding-bottom: 5px;
  }
}
.UbcInfo p, .UbcInfo .p {
  color: #002145;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.009375rem;
  line-height: 1.4;
}
.UbcInfo p.contact-info, .UbcInfo .p.contact-info {
  margin: 0;
  padding: 0;
}
.UbcInfo p.contact-info a, .UbcInfo .p.contact-info a {
  text-decoration: underline;
}
.UbcInfo a.underline:after {
  content: "";
  display: block;
  position: relative;
  margin-top: 0.75rem;
  height: 0.1875rem;
  width: 2.75rem;
  background: #faab18;
}
@media screen and (max-width: 768px) {
  .UbcInfo a.underline:after {
    margin-top: 0.625rem;
  }
}

.ubc-media-content {
  height: auto;
  margin: auto auto 0 auto;
  position: relative;
}
.ubc-media-content p {
  display: block;
  min-height: 1.25rem;
  height: 100%;
  padding: 25px 0;
  max-width: 90%;
  color: #464547 !important;
}
@media screen and (max-width: 768px) {
  .ubc-media-content p {
    margin: 0 0 0.625rem 0;
    padding-right: calc(0% + rem( 10 ));
  }
}
.ubc-media-content .ubc-media-bg-img {
  padding: 30% 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 769px) {
  .ubc-media-content .ubc-media-bg-img {
    padding: 20% 0;
  }
}
.ubc-media-content .ubc-play-btn {
  position: absolute;
}
.ubc-media-content .ubc-play-btn .ubc-play-btn-circle {
  background: #e8850b;
}
.ubc-media-content .ubc-play-btn .cta-icon-play {
  width: 0;
  height: 0;
  border-top: 0.375rem solid transparent;
  border-left: 0.75rem solid white;
  border-bottom: 0.375rem solid transparent;
  border-right: none;
}
@media screen and (min-width: 769px) {
  .ubc-media-content .ubc-play-btn {
    bottom: 2.5rem;
    left: 2.5rem;
  }
}

.UbcPromo {
  position: relative;
}
.UbcPromo:hover .image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (min-width: 1601px) {
  .UbcPromo > a {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
  }
}

.UbcPromo .image-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .UbcPromo .image-wrapper {
    width: calc(100% - 25px);
  }
}
.UbcPromo .image-wrapper .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: -o-linear-gradient(45deg, #002145, transparent);
  background: linear-gradient(45deg, #002145, transparent);
  opacity: 0.85;
}

.UbcPromo .image {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  margin-left: auto;
  height: 100%;
}

.UbcPromo .ubc-img-caption {
  position: absolute;
  bottom: 0.625rem;
  left: 50px;
}
@media screen and (min-width: 1261px) {
  .UbcPromo .ubc-img-caption {
    left: 160px;
  }
}

.UbcPromo .bgs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.UbcPromo .bgs .bg.top,
.UbcPromo .bgs .bg.bottom {
  width: calc(100% - 75px);
  margin-left: auto;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .UbcPromo .bgs .bg.top,
.UbcPromo .bgs .bg.bottom {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .UbcPromo .bgs .bg.top,
.UbcPromo .bgs .bg.bottom {
    width: 100%;
  }
}

.UbcPromo .bgs .bg.top {
  height: 45%;
}

.UbcPromo .bgs .bg.bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.UbcPromo .banner-content {
  position: relative;
  min-height: 240px;
  padding: 25px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  margin-left: 150px;
}
@media screen and (max-width: 768px) {
  .UbcPromo .banner-content {
    padding: 37.5px 25px;
    margin-left: 50px;
  }
}
@media screen and (min-width: 451px) {
  .UbcPromo .banner-content {
    min-height: 300px;
  }
}
@media screen and (min-width: 1021px) {
  .UbcPromo .banner-content {
    min-height: 420px;
  }
}
.UbcPromo .banner-content .UbcCtaBtn.underline {
  color: white;
}

.UbcPromo .banner-content .top,
.UbcPromo .banner-content .bottom {
  padding: 37.5px 0;
}

@media screen and (max-width: 768px) {
  .UbcPromo .banner-content .bottom {
    padding-top: 12.5px;
  }
}

.UbcPromo .banner-content .top > * {
  max-width: 25rem;
}
@media screen and (max-width: 768px) {
  .UbcPromo .banner-content .top > * {
    max-width: 100%;
  }
}
.UbcPromo .banner-content .top h3 {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.025625rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .UbcPromo .banner-content .top h3 {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 2.375rem;
  }
}
.UbcPromo .banner-content .top p {
  color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 768px) {
  .UbcPromo .banner-content .top p {
    display: none;
  }
}

.UbcPromo > a {
  display: block;
  position: relative;
}

.UbcSearch.active h3,
.UbcSearch.active .row.active .selected-items {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
}
.UbcSearch.active h3 span,
.UbcSearch.active .row.active .selected-items span {
  color: white;
}
.UbcSearch.active .bg {
  z-index: 1;
  visibility: visible;
}

.UbcSearch .item {
  font-weight: normal;
}

.UbcSearch h3 {
  font-family: "Merriweather";
  font-weight: 300;
  font-style: normal;
  font-size: 1.25rem;
  letter-spacing: 0;
  color: #002145;
}
@media screen and (max-width: 768px) {
  .UbcSearch h3 {
    font-size: 1rem;
    letter-spacing: 0.00875rem;
    line-height: 1.5rem;
  }
}

.UbcSearch h2 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.025625rem;
  line-height: 1.75;
  padding: 0;
  font-family: "Whitney SSm A", "Whitney SSm B", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .UbcSearch h2 {
    font-size: 1.625rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

.UbcSearch .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.UbcSearch .row.active h2 {
  position: relative;
  z-index: 2;
  color: white;
}

.UbcSearch .dropdown {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .UbcSearch .dropdown.active {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.UbcSearch .dropdown.active .dropdown-items {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.UbcSearch .dropdown .btn-add {
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.UbcSearch .dropdown .btn-add:hover {
  opacity: 0.8;
}

.UbcSearch .dropdown .btn-add,
.UbcSearch .dropdown .dropdown-items .item,
.UbcSearch .selected-items .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.375rem;
  line-height: 3.75rem;
  line-height: 3.5rem;
  color: #C3C0C0;
  margin: 0 0 0 11.25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .UbcSearch .dropdown .btn-add,
.UbcSearch .dropdown .dropdown-items .item,
.UbcSearch .selected-items .item {
    font-size: 1.875rem;
    letter-spacing: 0;
    line-height: 2.375rem;
  }
}
.UbcSearch .dropdown .btn-add.hidden,
.UbcSearch .dropdown .dropdown-items .item.hidden,
.UbcSearch .selected-items .item.hidden {
  display: none;
}

.UbcSearch .selected-items .item {
  color: #002145;
  font-weight: 400;
}
.UbcSearch .selected-items .item span {
  position: relative;
}
.UbcSearch .selected-items .item .icon {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .UbcSearch .selected-items .item {
    margin-left: 0.25rem;
  }
}
.UbcSearch .selected-items .item span::after {
  content: "";
  background: #e8850b;
  height: 0.25rem;
  width: 100%;
  position: absolute;
  bottom: 0.875rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .UbcSearch .selected-items .item span::after {
    bottom: 0.4375rem;
  }
}

.UbcSearch .dropdown .dropdown-items {
  display: none;
}
.UbcSearch .dropdown .dropdown-items .item {
  color: rgba(255, 255, 255, 0.6);
}
.UbcSearch .dropdown .dropdown-items .item.selected {
  display: none;
}
@media screen and (max-width: 768px) {
  .UbcSearch .dropdown .dropdown-items .item {
    margin: 0;
    text-decoration: underline;
  }
}
.UbcSearch .dropdown .dropdown-items .item .icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .UbcSearch .dropdown .dropdown-items .item .icon {
    display: block;
  }
}
.UbcSearch .dropdown .dropdown-items .item:hover {
  color: white;
  text-decoration: underline;
}
.UbcSearch .dropdown .dropdown-items .item:hover .icon {
  display: block;
}

.UbcSearch .dropdown.active .dropdown-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.UbcSearch .bg {
  content: "";
  position: fixed;
  background: rgba(0, 33, 69, 0.95);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
}

.ubc-spinner {
  display: inline-block;
  position: relative;
  width: 5rem;
  height: 5rem;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
  pointer-events: none;
  opacity: 0;
}
.ubc-spinner.show {
  opacity: 1;
}
.ubc-spinner div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: reme(8);
  border: reme(8) solid #fff;
  border-radius: 50%;
  -webkit-animation: ubc-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: ubc-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.ubc-spinner div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.ubc-spinner div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.ubc-spinner div :nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@-webkit-keyframes ubc-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ubc-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.SwiperBarWrapper {
  position: relative;
  margin: 50px 0;
  width: 100%;
  height: 0.125rem;
  background: rgba(62, 66, 70, 0.3);
}
@media screen and (max-width: 768px) {
  .SwiperBarWrapper {
    height: 0.1875rem;
    margin: 25px 0 50px;
  }
}
.SwiperBarWrapper .swiper-bar {
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 50%;
  height: 0.125rem;
  background: #002145;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .SwiperBarWrapper .swiper-bar {
    top: 0.09375rem;
    height: 0.1875rem;
  }
}

.Thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}
.Thumbnail:after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 60px);
  background: white;
}
@media screen and (min-width: 769px) and (max-width: 1021px) {
  .Thumbnail:after {
    top: 35px;
    height: calc(100% - 35px);
  }
}
@media screen and (max-width: 768px) {
  .Thumbnail:after {
    top: 35px;
    height: calc(100% - 35px);
  }
}

.Thumbnail .image {
  width: calc(100% - 60px);
  height: 0;
  padding-top: 56%;
  background-size: cover;
  background-position: center center;
  margin-left: auto;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .Thumbnail .image {
    width: calc(100% - 25px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .Thumbnail .image {
    width: calc(100% - 35px);
  }
}

.Thumbnail .content {
  padding: 37.5px 60px 37.5px;
}
@media screen and (min-width: 769px) and (max-width: 1261px) {
  .Thumbnail .content {
    padding: 37.5px 35px 37.5px;
  }
}
@media screen and (max-width: 768px) {
  .Thumbnail .content {
    padding: 25px 25px 25px;
  }
}
.Thumbnail .content h3 {
  padding: 12.5px 0;
  font-weight: normal;
  color: #002145;
}
@media screen and (max-width: 768px) {
  .Thumbnail .content h3 {
    font-size: 1.5rem;
  }
}
.Thumbnail .content p {
  color: #464547 !important;
}

.Thumbnail .content .UbcCtaBtn {
  margin: 25px 0 0;
}

.Thumbnail > a {
  display: block;
  overflow: hidden;
}
.Thumbnail > a .image {
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  -o-transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.Thumbnail > a:hover .image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}