/* =========================================
TABLE OF CONTENTS
--------------------------------------------
1 - DEFAULTS AND SITEWIDE STYLING
    - HEADINGS
    - FONTS
    - BUTTONS AND LINKS
    - FORM STYLING DEFAULTS
    - DRUPAL / BOOTSTRAP ANOMALIES
    - CK EDITOR
    - TEMPORARY STUFF TO BE REMOVED AT SOME POINT
2 - NAVIGATION
3 - HOMEPAGE SLIDER
4 - HOMEPAGE ITEMS
    - FOCUS AREAS
    - WHATS NEW SLIDER PANELS
    - QUICK LINKS PANELS
    - STRATEGIC PLAN
5 - INTERIOR PAGE GENERAL STYLING
    - BASIC TEXT BLOCK
    - IMAGE AND TEXT BLOCKS
    - INTERNAL SLIDESHOW AND SINGULAR IMAGE
    - ACCORDIAN
    - TABS LAYOUT
    - TWO COLUMNS WITH OR WITHOUT IMAGEhomep
    - SLIDE SHOW CONTENT TYPE
    - GALLERY CONTENT TYPE
    - TEXT AND FULL WIDTH IMAGEl
    - CHART TABLE
    - DECISION TREE ENQUIRY
    - MULTI COLUMN LAYOUT
    - MINI PANELS
6 - SECTION SPECIFIC STYLING
    - TRAINING
    - CAREER DEVELOPMENT
    - WORKFORCE DEVELOPMENT
    - ONLINE SERVICES
    - ABOUT US
    - NOMINAL HOURS
7 - FOOTER
========================================= */
/* CSS Document */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-16px); }
  60% {
    -webkit-transform: translateY(-8px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-16px); }
  60% {
    transform: translateY(-8px); } }
/* =========================================
1 - DEFAULTS AND SITEWIDE STYLING
========================================= */
html {
  /* THIS IS THE BASE FONT SIZE FROM WHICH ALL 'REM' VALUES ARE CALCULATED */
  font-size: 16px; }

body {
  font-family: Calibri, Arial, Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  margin: 0px;
  min-width: 320px;
  position: relative; }

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Calibri, Arial, Tahoma, sans-serif;
  font-weight: 300;
  color: #40657E;
  line-height: 110%; }
  h1 strong, h1 b,
  h2 strong,
  h2 b,
  h3 strong,
  h3 b,
  h4 strong,
  h4 b,
  h5 strong,
  h5 b,
  h6 strong,
  h6 b {
    font-weight: normal; }
  h1.faux_hidden,
  h2.faux_hidden,
  h3.faux_hidden,
  h4.faux_hidden,
  h5.faux_hidden,
  h6.faux_hidden {
    height: 0px;
    padding: 0px;
    margin: 0px;
    font-size: 0px;
    line-height: 0px; }

h1 {
  font-size: 2.875rem;
  margin: 10px 0px 20px 0px; }

h2 {
  font-size: 2.375rem;
  margin: 20px 0px 4px 0px; }

h3 {
  font-size: 1.75rem;
  margin: 20px 0px 4px 0px; }

h4 {
  font-size: 1.625rem;
  margin: 20px 0px 4px 0px; }

h5 {
  font-size: 1.375rem;
  margin: 20px 0px 4px 0px; }

h6 {
  font-size: 1.25rem;
  margin: 20px 0px 4px 0px; }

@media only screen and (max-width: 667px) {
  h1,
  h2,
  h3,
  h4 {
    line-height: 100%; }

  h1 {
    font-size: 2.375rem; }

  h2 {
    font-size: 1.75rem; }

  h3 {
    font-size: 1.625rem; }

  h4 {
    font-size: 1.375rem; }

  h5 {
    font-size: 1.3125rem; }

  h6 {
    font-size: 1.25rem; } }
/* FONTS */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

p,
div,
span,
input,
select {
  font-family: Calibri, Arial, Tahoma, sans-serif; }

a {
  color: #40657E; }
  a:hover {
    color: #2F4A5B; }

b, strong {
  font-weight: bold; }

.content {
  font-size: 1rem; }

:focus {
  outline: none; }

.emphasis_text {
  font-size: 150%; }

.footnote_text {
  font-size: 75%; }

/* BUTTONS AND LINKS */
a {
  position: relative; }

.opensNewWindow:after {
  position: relative;
  top: 0px;
  content: "\f08e";
  font-family: "FontAwesome";
  padding-left: 4px;
  font-size: 78%; }

.opensNewWindow.flyout:before {
  display: none;
  /* I've hidden this because it overflows the page width when longish links are at the edge of the page */
  position: absolute;
  z-index: 499;
  top: -55%;
  left: 0%;
  padding: 8px 20px;
  background: #F3F3F3;
  border: solid 2px #A7B8BC;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  color: transparent;
  content: attr(href);
  white-space: pre-wrap;
  word-break: normal;
  font-size: 1.0rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
  transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  pointer-events: auto; }

.opensNewWindow.flyout:hover:before,
.opensNewWindow.flyout:focus:before {
  color: #2F4A5B;
  opacity: 1;
  -webkit-transition-delay: 0s, 0s, 0s, 0.1s;
  transition-delay: 0s, 0s, 0s, 0.1s;
  -webkit-transform: scale(1) translateY(-75%);
  transform: scale(1) translateY(-75%); }

.acronym {
  position: relative;
  border-bottom: dashed 1px; }
  .acronym:before {
    position: absolute;
    z-index: -1;
    box-sizing: border-box;
    width: 280px;
    bottom: 0px;
    left: calc(50% - 140px);
    text-align: center;
    font-style: normal;
    padding: 9px 13px 8px 13px;
    background: #FFFFFF;
    border: solid 2px #E4E4E4;
    color: transparent;
    content: attr(data-content);
    white-space: pre-wrap;
    word-break: normal;
    font-size: rem(14);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, color 0.3s, transform 0.3s;
    -webkit-transform: scale(0.5) translateY(60px);
    -ms-transform: scale(0.5) translateY(60px);
    transform: scale(0.5) translateY(60px);
    pointer-events: auto; }
  .acronym:hover:before, .acronym:focus:before, .acronym.open:hover:before, .acronym.open:focus:before {
    color: #414141;
    opacity: 1;
    z-index: 499;
    -webkit-transition-delay: 0s, 0s, 0s, 0.1s;
    transition-delay: 0s, 0s, 0s, 0.1s;
    -webkit-transform: scale(1) translateY(-24px);
    -ms-transform: scale(1) translateY(-24px);
    transform: scale(1) translateY(-24px); }
  .acronym.anchored-left:before {
    left: 0px !important; }
  .acronym.anchored-right:before {
    left: auto !important;
    right: 0px; }
  .acronym:hover {
    cursor: help; }

a .acronym,
h1 .acronym,
h2 .acronym,
h3 .acronym,
h4 .acronym,
h5 .acronym,
h6 .acronym,
.accordian-heading .acronym {
  border-bottom: none; }
  a .acronym:before,
  h1 .acronym:before,
  h2 .acronym:before,
  h3 .acronym:before,
  h4 .acronym:before,
  h5 .acronym:before,
  h6 .acronym:before,
  .accordian-heading .acronym:before {
    display: none !important; }
  a .acronym:hover,
  h1 .acronym:hover,
  h2 .acronym:hover,
  h3 .acronym:hover,
  h4 .acronym:hover,
  h5 .acronym:hover,
  h6 .acronym:hover,
  .accordian-heading .acronym:hover {
    cursor: inherit !important; }

@media only screen and (max-width: 767px) {
  .acronym:before {
    width: 240px;
    font-size: rem(12); }
  .acronym:hover:before, .acronym:focus:before {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }
#skip-link a:focus {
  display: block;
  text-align: center;
  padding: 14px 0px; }

@media only screen and (max-width: 667px) {
  #skip-link {
    display: none; }
    #skip-link a {
      display: none !important; } }
a.social {
  font-family: Calibri, Arial, Tahoma, sans-serif;
  font-weight: 300;
  display: inline-block;
  line-height: 38px;
  margin-left: 16px;
  margin-bottom: 16px;
  color: #2F4A5B;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  a.social:before {
    content: "\f00d";
    font-family: "FontAwesome";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    top: 4px;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background: #2F4A5B;
    text-align: center;
    line-height: 38px;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-right: 8px; }
  a.social.twitter:before {
    content: "\f099"; }
  a.social.facebook:before {
    content: "\f09a"; }
  a.social.linkedin:before {
    content: "\f0e1"; }
  a.social.youtube:before {
    content: "\f167"; }
  a.social.flickr:before {
    content: "\f16e"; }
  a.social.instagram:before {
    content: "\f16d"; }
  a.social:hover {
    color: #40657E; }
    a.social:hover:before {
      text-decoration: none;
      color: #FFFFFF;
      background: #40657E; }
  a.social:after {
    display: none; }

.file_info {
  font-size: 78%; }

.url_info i:before {
  display: inline-block;
  content: "\f05a";
  font-family: "FontAwesome";
  font-size: 70%;
  font-style: normal;
  margin-left: 8px;
  color: #FF6600;
  opacity: 0.5;
  cursor: pointer; }
.url_info i:hover:before {
  opacity: 1; }

.url_info_window {
  display: none; }

.ui-widget-content {
  border: solid 2px #527f94;
  border-radius: 6px;
  background: #FFFFFF;
  padding: 8px 20px;
  width: auto !important;
  display: inline-block !important; }
  .ui-widget-content .ui-widget-header {
    border: 0px;
    color: #40657E;
    font-size: 1.25rem; }
    .ui-widget-content .ui-widget-header .ui-button {
      float: right;
      border: 0px;
      padding: 0px;
      background: #DDDDDD; }
      .ui-widget-content .ui-widget-header .ui-button .ui-button-text {
        display: none; }
  .ui-widget-content .ui-widget-content {
    border: 0px;
    border-radius: 0px;
    padding: 8px 0px;
    white-space: nowrap;
    font-size: 1.125rem; }
    .ui-widget-content .ui-widget-content span {
      font-size: 1rem;
      display: block;
      color: #2F4A5B; }

.read-more:after,
.read-more-text:after {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 10px;
  top: 1px;
  margin-left: 6px;
  content: " ";
  opacity: 0.8;
  background-image: url(../images/arrow-right.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
.read-more:hover:after,
.read-more-text:hover:after {
  opacity: 1; }

.contains-read-more a:after {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 10px;
  top: 1px;
  margin-left: 6px;
  content: " ";
  opacity: 0.8;
  background-image: url(../images/arrow-right.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
.contains-read-more a:hover:after {
  opacity: 1; }

.button {
  display: inline-block;
  padding: 10px 20px;
  color: #FFFFFF;
  background: #40657E;
  border: 0px; }
  .button:focus, .button:hover {
    cursor: pointer;
    color: #FFFFFF;
    background: #2F4A5B;
    outline: none; }

.contains-button a {
  display: inline-block;
  padding: 10px 20px;
  color: #FFFFFF;
  background: #40657E;
  border: 0px; }
  .contains-button a:focus, .contains-button a:hover {
    cursor: pointer;
    color: #FFFFFF;
    background: #2F4A5B;
    outline: none; }

/* FORM STYLING DEFAULTS */
.node-webform form .webform-progressbar {
  margin: 0 auto 40px auto; }
.node-webform form select::-ms-expand {
  display: none; }
.node-webform form .form-item {
  vertical-align: top; }
  .node-webform form .form-item label {
    color: #414141;
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 3px; }
    .node-webform form .form-item label span.form-required {
      color: #40657E; }
  .node-webform form .form-item .description {
    font-size: 0.875rem;
    margin-top: -3px;
    margin-bottom: 3px; }
  .node-webform form .form-item input,
  .node-webform form .form-item select,
  .node-webform form .form-item textarea {
    box-sizing: border-box;
    border: solid 1px #A9A9A9;
    border-radius: 0px;
    width: 100%;
    padding: 6px 8px 6px 8px;
    color: #666666;
    font-size: 1rem;
    font-weight: 300;
    line-height: 21px;
    background: #FFFFFF;
    outline: none;
    appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none; }
  .node-webform form .form-item.webform-component-textarea .form-textarea-wrapper textarea {
    min-height: 100px; }
  .node-webform form .form-item.webform-component-textarea .form-textarea-wrapper .grippie {
    display: none; }
  .node-webform form .form-item.webform-component-textarea .description {
    margin-top: 3px; }
  .node-webform form .form-item.webform-component-date .select_wrap, .node-webform form .form-item.webform-component-time .select_wrap, .node-webform form .form-item.webform-component-select .select_wrap {
    position: relative;
    display: inline-block !important; }
    .node-webform form .form-item.webform-component-date .select_wrap select[style], .node-webform form .form-item.webform-component-time .select_wrap select[style], .node-webform form .form-item.webform-component-select .select_wrap select[style] {
      display: block !important; }
    .node-webform form .form-item.webform-component-date .select_wrap select, .node-webform form .form-item.webform-component-time .select_wrap select, .node-webform form .form-item.webform-component-select .select_wrap select {
      position: relative;
      z-index: 5;
      padding: 0px 40px 0px 8px;
      height: 32px; }
    .node-webform form .form-item.webform-component-date .select_wrap:after, .node-webform form .form-item.webform-component-time .select_wrap:after, .node-webform form .form-item.webform-component-select .select_wrap:after {
      position: absolute;
      top: 0px;
      right: 0px;
      font-family: "FontAwesome";
      content: "\f0d7";
      width: 30px;
      color: #FFFFFF;
      background: #40657E;
      font-size: 1rem;
      line-height: 18px;
      text-align: center;
      padding: 7px 0px;
      z-index: 6;
      pointer-events: none; }
  .node-webform form .form-item.webform-component-date .chosen-container, .node-webform form .form-item.webform-component-time .chosen-container, .node-webform form .form-item.webform-component-select .chosen-container {
    display: none !important; }
  .node-webform form .form-item .form-radios .form-item, .node-webform form .form-item.webform-component-radios .form-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px; }
    .node-webform form .form-item .form-radios .form-item input, .node-webform form .form-item.webform-component-radios .form-item input {
      display: inline-block;
      vertical-align: top;
      margin-top: 6px;
      width: auto;
      padding: 6px;
      border: solid 1px #A9A9A9;
      border-radius: 20px; }
      .node-webform form .form-item .form-radios .form-item input:checked, .node-webform form .form-item.webform-component-radios .form-item input:checked {
        background: #8BB921; }
  .node-webform form .form-item.webform-component-time .form-type-radio {
    margin: 3px 0px 4px 10px; }
    .node-webform form .form-item.webform-component-time .form-type-radio label {
      margin-right: 0px; }
  .node-webform form .form-item.webform-component-file {
    padding: 8px 16px 16px 16px;
    border: 1px solid #A9A9A9;
    background: #FFFFFF; }
    .node-webform form .form-item.webform-component-file .form-managed-file input {
      width: auto;
      border: 0px;
      padding: 0px;
      background: #FFFFFF;
      font-size: 1rem; }
    .node-webform form .form-item.webform-component-file .form-managed-file input[type=submit] {
      display: inline-block;
      padding: 10px 20px;
      color: #FFFFFF;
      background: #40657E;
      border: 0px;
      padding: 6px 12px; }
      .node-webform form .form-item.webform-component-file .form-managed-file input[type=submit]:focus, .node-webform form .form-item.webform-component-file .form-managed-file input[type=submit]:hover {
        cursor: pointer;
        color: #FFFFFF;
        background: #2F4A5B;
        outline: none; }
    .node-webform form .form-item.webform-component-file .description {
      display: none; }
.node-webform form fieldset.form-wrapper {
  padding: 8px 16px 16px 16px;
  margin: 0px;
  border: 1px solid #A9A9A9;
  background: #FFFFFF;
  /*
  legend {
    margin-left: -10px;
    span {
      padding: 2px 10px;
      color: $blue;
      font-size: 1.125rem;
      background: $white;
      border-left: solid 1px #A9A9A9;
      border-right: solid 1px #A9A9A9;
      border-top: solid 1px #A9A9A9;
    }
  }
  */ }
  .node-webform form fieldset.form-wrapper legend {
    margin-bottom: 6px;
    float: left;
    width: 100%; }
    .node-webform form fieldset.form-wrapper legend span {
      padding: 0px;
      color: #414141;
      font-size: 1.125rem; }
  .node-webform form fieldset.form-wrapper .fieldset-wrapper .fieldset-description[style] {
    margin-top: 0px !important; }
  .node-webform form fieldset.form-wrapper .fieldset-wrapper .fieldset-description {
    margin-bottom: 12px; }
  .node-webform form fieldset.form-wrapper .fieldset-wrapper .tabledrag-toggle-weight-wrapper {
    display: none; }
  .node-webform form fieldset.form-wrapper .fieldset-wrapper table {
    margin-bottom: 4px; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper table thead {
      display: none; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper table a.tabledrag-handle {
      display: none; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper table input[type=submit] {
      display: inline-block;
      padding: 10px 20px;
      color: #FFFFFF;
      background: #40657E;
      border: 0px;
      border: 0px;
      padding: 4px 12px; }
      .node-webform form fieldset.form-wrapper .fieldset-wrapper table input[type=submit]:focus, .node-webform form fieldset.form-wrapper .fieldset-wrapper table input[type=submit]:hover {
        cursor: pointer;
        color: #FFFFFF;
        background: #2F4A5B;
        outline: none; }
  .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item {
    margin: 0px; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item label {
      color: #414141; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item .file-widget input {
      width: auto;
      border: 0px;
      padding: 0px;
      background: #FFFFFF;
      font-size: 1rem; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item .file-widget input[type=submit] {
      display: inline-block;
      padding: 10px 20px;
      color: #FFFFFF;
      background: #40657E;
      border: 0px;
      padding: 6px 12px; }
      .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item .file-widget input[type=submit]:focus, .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item .file-widget input[type=submit]:hover {
        cursor: pointer;
        color: #FFFFFF;
        background: #2F4A5B;
        outline: none; }
    .node-webform form fieldset.form-wrapper .fieldset-wrapper .form-item.webform-component-multiple-file .description {
      display: none; }
.node-webform form .form-actions input {
  display: inline-block;
  padding: 10px 20px;
  color: #FFFFFF;
  background: #40657E;
  border: 0px;
  border: 0px;
  font-size: 1.125rem; }
  .node-webform form .form-actions input:focus, .node-webform form .form-actions input:hover {
    cursor: pointer;
    color: #FFFFFF;
    background: #2F4A5B;
    outline: none; }

/* DRUPAL / BOOTSTRAP ANOMALIES */
a:hover,
a:focus {
  text-decoration: inherit; }

span.baec5a81-e4d6-4674-97f3-e9220f0136c1 > a,
span.baec5a81-e4d6-4674-97f3-e9220f0136c1 > a[style] {
  display: none !important; }

div.node-unpublished {
  background-color: #FFE6E6 !important; }

body.logged-in div.node-in_draft {
  position: relative; }
  body.logged-in div.node-in_draft:after {
    content: " ";
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 100%;
    background-color: #FFDDBB;
    visibility: visible !important;
    z-index: 1; }
  body.logged-in div.node-in_draft:before {
    content: "This content block is currently in draft and is not publicly visible.  To make it visible, edit the block and untick the 'In draft' checkbox within the Publishing options.";
    position: absolute;
    display: block;
    top: -36px;
    left: 0px;
    width: 100%;
    padding: 8px 0px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    background-color: #FFDDBB;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  body.logged-in div.node-in_draft:hover:before {
    opacity: 1; }

.contextual-links-wrapper ul {
  padding: 0px !important;
  margin: 0px !important; }
  .contextual-links-wrapper ul li {
    font-size: 1rem !important; }
    .contextual-links-wrapper ul li:before {
      display: none !important; }
    .contextual-links-wrapper ul li.node-delete, .contextual-links-wrapper ul li.node-pdf, .contextual-links-wrapper ul li.layout, .contextual-links-wrapper ul li.manage-display {
      display: none; }

#user-login,
#user-register,
#user-password {
  width: 1170px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  #user-login input,
  #user-register input,
  #user-password input {
    max-width: 100%; }

@media only screen and (max-width: 1200px) {
  #user-login, #user-register, #user-password {
    width: 970px; } }
@media only screen and (max-width: 991px) {
  #user-login, #user-register, #user-password {
    width: 750px; } }
#dept_login {
  padding-left: 15px; }

#dept_login_button {
  font-size: 1.2em;
  text-align: center;
  background-color: #2F4B5B;
  color: #fff;
  padding: 10px; }

/* CK EDITOR */
.cke_editable .c-panel-heading {
  background-color: #E6E6E6 !important;
  margin-bottom: 2px;
  font-size: 1.25rem !important;
  line-height: 140% !important; }
  .cke_editable .c-panel-heading p, .cke_editable .c-panel-heading h2, .cke_editable .c-panel-heading h3, .cke_editable .c-panel-heading h4, .cke_editable .c-panel-heading h5, .cke_editable .c-panel-heading b, .cke_editable .c-panel-heading strong {
    font-weight: normal !important;
    font-size: 1.25rem !important;
    margin: 0px !important; }
.cke_editable .c-panel-content {
  background-color: #F6F6F6 !important;
  margin-top: 0px;
  margin-bottom: 10px; }
  .cke_editable .c-panel-content p {
    margin: 0px 0px 16px 0px; }

#main-content .rteindent1,
#main-content .rteindent2,
#main-content .rteindent3,
#main-content .rteindent4 {
  margin-left: 0px; }
#main-content .rtejustify {
  text-align: left; }

@media only screen and (max-width: 991px) {
  #main-content .rtejustify {
    text-align: left; } }
/* TEMPORARY STUFF TO BE REMOVED AT SOME POINT */
.c-hide-me {
  display: none; }

/* =========================================
2 - NAVIGATION
========================================= */
#navigation {
  position: relative;
  float: left;
  width: 100%;
  padding: 0px;
  background: #2F4A5B;
  font-family: Calibri, Arial, Tahoma, sans-serif;
  font-weight: 300;
  /* MOBILE MENU */ }
  #navigation .main_menu {
    float: left;
    width: 100%;
    background-color: #2F4A5B; }
    #navigation .main_menu ul {
      padding: 0px 30px;
      margin: 0px; }
      #navigation .main_menu ul > li {
        float: left;
        margin: 0px;
        list-style: none; }
        #navigation .main_menu ul > li > a {
          float: left;
          font-size: 1.25rem;
          font-weight: 300;
          padding: 12px 20px;
          color: #D7DBDF;
          border-right: solid 1px #40657E; }
        #navigation .main_menu ul > li:first-child > a {
          border-left: solid 1px #40657E; }
        #navigation .main_menu ul > li a:focus,
        #navigation .main_menu ul > li a:hover {
          background-color: #527f94;
          color: #FFFFFF; }
        #navigation .main_menu ul > li.active > a, #navigation .main_menu ul > li.active-trail > a, #navigation .main_menu ul > li.dropdown.open.active > a {
          background-color: #213C48;
          color: #FFFFFF; }
          #navigation .main_menu ul > li.active > a:hover, #navigation .main_menu ul > li.active-trail > a:hover, #navigation .main_menu ul > li.dropdown.open.active > a:hover {
            background-color: #527f94; }
        #navigation .main_menu ul > li.dropdown > .dropdown-toggle .caret {
          display: inline-block;
          font-size: 0px;
          border: 0px;
          width: 11px;
          height: 11px;
          margin-top: 11px;
          margin-left: 6px;
          opacity: 0.75;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          #navigation .main_menu ul > li.dropdown > .dropdown-toggle .caret:before {
            display: inline-block;
            width: 11px;
            height: 11px;
            font-size: 1rem;
            content: " ";
            background-image: url(../images/arrow-down.svg);
            background-size: 100% 100%;
            background-repeat: no-repeat; }
        #navigation .main_menu ul > li.dropdown > .dropdown-toggle:hover .caret {
          opacity: 1; }
        #navigation .main_menu ul > li.dropdown.active > .dropdown-toggle .caret {
          opacity: 1; }
        #navigation .main_menu ul > li.dropdown.open > .dropdown-toggle {
          background-color: #527f94; }
          #navigation .main_menu ul > li.dropdown.open > .dropdown-toggle .caret {
            opacity: 1; }
            #navigation .main_menu ul > li.dropdown.open > .dropdown-toggle .caret:before {
              /* background-image: url(../images/arrow-up.svg); */ }
        #navigation .main_menu ul > li .column_wrapper {
          display: none;
          position: absolute;
          top: 100%;
          left: 0px;
          width: 100%;
          background-color: #527f94;
          border: 0px;
          border-bottom: 0px;
          box-shadow: none;
          z-index: 10;
          overflow: hidden; }
          #navigation .main_menu ul > li .column_wrapper:before {
            content: " ";
            position: absolute;
            top: 0px;
            left: 0%;
            width: 100%;
            height: 100%;
            background-color: #527f94;
            z-index: -1;
            -webkit-box-shadow: inset 0px 30px 50px -20px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: inset 0px 30px 50px -20px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0px 30px 50px -20px rgba(0, 0, 0, 0.2);
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -spec-transition: all 0.5s ease;
            transition: all 0.5s ease; }
          #navigation .main_menu ul > li .column_wrapper .column_wrapper_inner {
            float: left;
            width: 100%;
            padding: 20px 10px;
            background-image: url(../images/header-bg.png);
            background-position: 100% 100%;
            background-repeat: no-repeat;
            background-size: contain; }
          #navigation .main_menu ul > li .column_wrapper .column {
            float: left;
            padding: 0px 30px; }
            #navigation .main_menu ul > li .column_wrapper .column.two_columns {
              width: 50%; }
            #navigation .main_menu ul > li .column_wrapper .column.three_columns {
              width: 33.3%; }
          #navigation .main_menu ul > li .column_wrapper ul {
            padding: 0px; }
            #navigation .main_menu ul > li .column_wrapper ul li,
            #navigation .main_menu ul > li .column_wrapper ul > li {
              float: left;
              width: 100%; }
              #navigation .main_menu ul > li .column_wrapper ul li > a,
              #navigation .main_menu ul > li .column_wrapper ul > li > a {
                display: block;
                width: 100%;
                font-size: 1.125rem;
                line-height: 20px;
                font-weight: 300;
                color: #FFFFFF;
                padding: 12px 20px;
                border-top: solid 1px rgba(255, 255, 255, 0.8);
                border-left: 0px;
                border-right: 0px;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -spec-transition: all 0.3s ease;
                transition: all 0.3s ease; }
              #navigation .main_menu ul > li .column_wrapper ul li a:focus,
              #navigation .main_menu ul > li .column_wrapper ul li a:hover,
              #navigation .main_menu ul > li .column_wrapper ul > li a:focus,
              #navigation .main_menu ul > li .column_wrapper ul > li a:hover {
                background-color: rgba(255, 255, 255, 0.8);
                color: #2F4A5B; }
              #navigation .main_menu ul > li .column_wrapper ul li.active > a, #navigation .main_menu ul > li .column_wrapper ul li.dropdown.open.active > a,
              #navigation .main_menu ul > li .column_wrapper ul > li.active > a,
              #navigation .main_menu ul > li .column_wrapper ul > li.dropdown.open.active > a {
                background-color: rgba(255, 255, 255, 0.8);
                color: #2F4A5B; }
              #navigation .main_menu ul > li .column_wrapper ul li:first-child > a,
              #navigation .main_menu ul > li .column_wrapper ul > li:first-child > a {
                padding: 12px 20px;
                border-top: 0px;
                border-left: 0px;
                border-right: 0px; }
        #navigation .main_menu ul > li.home-icon {
          position: relative; }
          #navigation .main_menu ul > li.home-icon a {
            font-size: 0px;
            padding: 18px 0px 16px 0px; }
            #navigation .main_menu ul > li.home-icon a:before {
              content: "\f015";
              font-family: "FontAwesome";
              display: block;
              font-weight: normal;
              width: 40px;
              font-size: 1.125rem;
              line-height: 100%;
              text-align: center;
              text-indent: 0px; }
        #navigation .main_menu ul > li.c-icon-menu {
          float: right;
          margin-left: 4px; }
          #navigation .main_menu ul > li.c-icon-menu a {
            width: 54px;
            text-indent: -9999px;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 60%;
            border-left: 0px;
            border-right: 0px; }
          #navigation .main_menu ul > li.c-icon-menu.c-individuals a {
            background-image: url("../images/menu-icon-individuals-white.svg");
            background-size: 52%; }
          #navigation .main_menu ul > li.c-icon-menu.c-employers a {
            background-image: url("../images/menu-icon-employers-white.svg");
            background-size: 55%; }
          #navigation .main_menu ul > li.c-icon-menu.c-trainers a {
            background-image: url("../images/menu-icon-trainers-white.svg");
            background-size: 66%; }
          #navigation .main_menu ul > li.c-icon-menu > .dropdown-menu {
            display: none !important; }
    #navigation .main_menu.sticky {
      position: fixed;
      width: 100%;
      left: 0;
      top: 0;
      z-index: 1000;
      border-top: 0; }
  #navigation .mobile_menu {
    display: none; }
    #navigation .mobile_menu .mobile-menu-toggle {
      display: block;
      text-align: center;
      background: #2F4A5B;
      line-height: 0px; }
    #navigation .mobile_menu .menu {
      display: none;
      padding: 0px;
      margin: 0px;
      list-style: none;
      width: 100%; }
      #navigation .mobile_menu .menu li {
        padding: 0px;
        margin: 0px;
        list-style: none !important; }
        #navigation .mobile_menu .menu li a {
          position: relative;
          display: block;
          color: #FFFFFF;
          background: #40657E;
          font-size: 1.25rem;
          line-height: 100%;
          padding: 11px 24px;
          border-bottom: solid 1px #49738f;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          #navigation .mobile_menu .menu li a:hover {
            background: #2F4A5B; }
          #navigation .mobile_menu .menu li a .expander {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 44px;
            height: 44px;
            font-size: 0px;
            background: #F3F3F3;
            text-align: center; }
            #navigation .mobile_menu .menu li a .expander:before {
              display: block;
              width: 100%;
              height: 100%;
              padding-left: 10%;
              font-family: "FontAwesome";
              content: "\f054";
              font-size: 24px;
              line-height: 44px;
              color: #40657E;
              -webkit-transform: rotate(0deg);
              -ms-transform: rotate(0deg);
              transform: rotate(0deg);
              -webkit-transition: all 0.3s ease;
              -moz-transition: all 0.3s ease;
              -spec-transition: all 0.3s ease;
              transition: all 0.3s ease; }
            #navigation .mobile_menu .menu li a .expander.opened {
              background: #FFFFFF; }
              #navigation .mobile_menu .menu li a .expander.opened:before {
                -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                transform: rotate(90deg); }
          #navigation .mobile_menu .menu li a:last-child a {
            border-bottom: 0px; }
        #navigation .mobile_menu .menu li ul li a {
          color: #40657E;
          background: #FFFFFF;
          border-bottom: solid 1px #d7d7d7;
          font-size: 1.125rem;
          line-height: 100%;
          padding: 12px 24px 12px 48px; }
          #navigation .mobile_menu .menu li ul li a:hover {
            color: #2F4A5B;
            background: #F3F3F3; }

@media only screen and (max-width: 1200px) {
  #navigation .main_menu ul > li > a {
    font-size: 1.125rem;
    padding: 12px 16px; }
  #navigation .main_menu ul > li.dropdown > .dropdown-toggle .caret {
    width: 10px;
    height: 10px;
    margin-top: 5px; }
  #navigation .main_menu ul > li.home-icon a {
    padding: 16px 0px 15px 0px; }
  #navigation .main_menu ul > li.c-icon-menu {
    margin-left: 1px; }
    #navigation .main_menu ul > li.c-icon-menu.c-individuals a, #navigation .main_menu ul > li.c-icon-menu.c-employers a {
      background-size: 50%; }
    #navigation .main_menu ul > li.c-icon-menu.c-trainers a {
      background-size: 66%; } }
@media only screen and (max-width: 1084px) {
  #navigation .main_menu ul > li > a {
    font-size: 1rem;
    padding: 12px 12px; }
  #navigation .main_menu ul > li.home-icon a {
    padding: 14px 0px 14px 0px; } }
@media only screen and (max-width: 991px) {
  #navigation {
    float: none; }
    #navigation .main_menu {
      display: none; }
    #navigation .mobile_menu {
      display: block; } }
.burgermenu {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background-color: #2F4A5B; }
  .burgermenu:focus {
    outline: none; }
  .burgermenu span {
    display: block;
    position: absolute;
    top: 21px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #FFFFFF;
    transition: background 0s 0.3s; }
    .burgermenu span::before, .burgermenu span::after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #FFFFFF;
      content: "";
      transition-duration: 0.3s, 0.3s;
      transition-delay: 0.3s, 0s; }
    .burgermenu span::before {
      top: -10px;
      transition-property: top, transform; }
    .burgermenu span::after {
      bottom: -10px;
      transition-property: bottom, transform; }

.active .burgermenu {
  background-color: #40657E; }
  .active .burgermenu span {
    background: none; }
    .active .burgermenu span::before, .active .burgermenu span::after {
      transition-delay: 0s, 0.3s; }
    .active .burgermenu span::before {
      top: 0;
      transform: rotate(45deg); }
    .active .burgermenu span::after {
      bottom: 0;
      transform: rotate(-45deg); }

/* SIDE NAV */
#i-nav {
  position: absolute;
  left: -40px;
  top: 180px;
  width: 22px;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #i-nav ul {
    padding: 0px;
    margin: 0px;
    list-style: none; }
    #i-nav ul li {
      position: relative;
      width: 22px;
      height: 22px;
      overflow: hidden;
      margin-bottom: 12px; }
      #i-nav ul li:before {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 22px;
        height: 22px;
        content: " ";
        border-radius: 40px;
        border: solid 1px transparent;
        background: transparent;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 6; }
      #i-nav ul li:after {
        position: absolute;
        top: 4px;
        left: 4px;
        width: 14px;
        height: 14px;
        content: " ";
        border-radius: 40px;
        border: solid 1px rgba(255, 255, 255, 0.5);
        background: rgba(47, 74, 91, 0.6);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 7; }
      #i-nav ul li:hover {
        overflow: visible; }
        #i-nav ul li:hover:after {
          border: solid 1px rgba(255, 255, 255, 0);
          background: rgba(255, 255, 255, 0.3); }
        #i-nav ul li:hover a {
          left: -6px;
          opacity: 1; }
      #i-nav ul li.active:before {
        border: solid 1px #68A2BA; }
      #i-nav ul li.active:after {
        background: #2f4a5b; }
      #i-nav ul li.active:hover:before {
        border: solid 1px transparent; }
      #i-nav ul li.active:hover:after {
        background: rgba(255, 255, 255, 0.8); }
      #i-nav ul li a {
        position: absolute;
        top: -4px;
        left: 26px;
        opacity: 0;
        display: block;
        white-space: nowrap;
        color: #FFFFFF;
        background: #2F4A5B;
        border-radius: 40px;
        line-height: 16px;
        padding: 7px 16px 7px 34px;
        text-decoration: none;
        z-index: 5;
        -webkit-transition: left 0.4s ease, opacity 0.6s ease;
        -moz-transition: left 0.4s ease, opacity 0.6s ease;
        -spec-transition: left 0.4s ease, opacity 0.6s ease;
        transition: left 0.4s ease, opacity 0.6s ease; }
  #i-nav.fixed {
    position: fixed;
    opacity: 1;
    left: 20px; }
    #i-nav.fixed.fixedToBottom {
      position: absolute;
      top: auto; }

@media only screen and (max-width: 1024px) {
  #i-nav.fixed {
    left: 6px !important; } }
@media only screen and (max-width: 991px) {
  #i-nav {
    display: none; } }
/* =========================================
3 - HOMEPAGE SLIDER
========================================= */
.homepage-slider {
  width: 100%;
  padding: 0px;
  display: none;
  overflow: hidden; }
  .homepage-slider .slick-slider {
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: element;
    user-select: initial; }
  .homepage-slider .slick-dotted.slick-slider {
    margin-bottom: 0px; }
  .homepage-slider .field-item {
    margin-bottom: 0px !important; }
  .homepage-slider .slide-item {
    float: left;
    width: 100%;
    position: relative;
    background-position: center center;
    background-size: cover; }
    .homepage-slider .slide-item .slide-overlay {
      position: absolute;
      box-sizing: border-box;
      top: 10%;
      left: 0px;
      width: 50%;
      min-width: 700px;
      background: rgba(47, 74, 91, 0.9);
      padding: 36px 100px 36px 100px; }
      .homepage-slider .slide-item .slide-overlay h2 {
        color: #FFFFFF;
        font-size: 2.125rem;
        line-height: 100%;
        margin-top: 0px; }
      .homepage-slider .slide-item .slide-overlay p {
        color: #FFFFFF;
        font-size: 1.25rem;
        line-height: 120%;
        /*
        &:last-child {
          margin-bottom: 0px;
        }
        */ }
      .homepage-slider .slide-item .slide-overlay .read-more-wrapper {
        margin-top: -16px;
        text-align: right; }
        .homepage-slider .slide-item .slide-overlay .read-more-wrapper a {
          color: rgba(255, 255, 255, 0.85); }
          .homepage-slider .slide-item .slide-overlay .read-more-wrapper a:hover {
            color: #FFFFFF; }
          .homepage-slider .slide-item .slide-overlay .read-more-wrapper a.opensNewWindow:after {
            color: rgba(139, 185, 33, 0.85); }
          .homepage-slider .slide-item .slide-overlay .read-more-wrapper a.opensNewWindow:hover:after {
            color: #8BB921; }
    .homepage-slider .slide-item > img {
      width: 100%;
      height: auto;
      min-height: 400px; }
  .homepage-slider .slick-dots-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    height: 16px;
    bottom: 20px;
    text-align: right;
    padding: 0px 40px 0px 0px; }
    .homepage-slider .slick-dots-wrapper div.ss_status {
      position: relative;
      display: inline-block;
      vertical-align: top;
      background-color: transparent;
      width: 16px;
      height: 16px;
      margin: 0 5px;
      padding: 0;
      cursor: pointer; }
      .homepage-slider .slick-dots-wrapper div.ss_status span {
        width: 16px;
        height: 16px;
        font-size: 0;
        line-height: 0;
        display: block;
        cursor: pointer;
        color: transparent;
        outline: none; }
        .homepage-slider .slick-dots-wrapper div.ss_status span:before {
          font-family: "FontAwesome";
          content: "\f04c";
          color: #FFFFFF;
          font-size: 13px;
          line-height: 16px; }
        .homepage-slider .slick-dots-wrapper div.ss_status span.paused:before {
          content: "\f04b"; }
  .homepage-slider .slick-dots {
    position: relative;
    width: auto;
    height: 16px;
    bottom: 0px;
    padding: 0px !important;
    text-align: right;
    vertical-align: top;
    display: inline-block !important; }
    .homepage-slider .slick-dots[style] {
      display: inline-block !important; }
    .homepage-slider .slick-dots li {
      vertical-align: top;
      width: 16px;
      height: 16px; }
      .homepage-slider .slick-dots li button {
        width: 16px;
        height: 16px; }
        .homepage-slider .slick-dots li button:before {
          opacity: 1;
          width: 16px;
          height: 16px;
          content: " ";
          border-radius: 40px;
          background: transparent;
          border: solid 2px #FFFFFF;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .homepage-slider .slick-dots li button:hover:before {
          background: rgba(255, 255, 255, 0.8) !important; }
      .homepage-slider .slick-dots li.slick-active button:before {
        top: 1px;
        left: 1px;
        width: 14px;
        height: 14px;
        background: #FFFFFF; }
  .homepage-slider .field-collection-view-links {
    display: none; }
  .homepage-slider .action-links {
    display: none; }

.bars-graphic {
  text-align: right;
  padding-top: 3px; }
  .bars-graphic img {
    width: 80%;
    height: auto; }

@media only screen and (max-width: 667px) {
  .bars-graphic {
    display: none; } }
.front-page-social-media {
  width: 300px;
  font-size: 1rem;
  color: #FFFFFF;
  margin-top: -35px; }
  .front-page-social-media p {
    font-family: Calibri, Arial, Tahoma, sans-serif;
    font-weight: 300;
    margin: 0px 0px 16px 0px;
    line-height: 120%; }
    .front-page-social-media p a {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      color: #B6C0C6; }
      .front-page-social-media p a:hover {
        color: #FFFFFF; }
  .front-page-social-media ul.social-media-list {
    padding: 10px;
    margin: 0px !important;
    list-style: none; }
    .front-page-social-media ul.social-media-list li {
      display: inline-block; }
      .front-page-social-media ul.social-media-list li a {
        display: block;
        line-height: 38px;
        width: 44px;
        height: 44px;
        overflow: hidden; }
        .front-page-social-media ul.social-media-list li a:before {
          content: "\f00d";
          font-family: "FontAwesome";
          display: inline-block;
          position: relative;
          top: 4px;
          width: 38px;
          height: 38px;
          border-radius: 100px;
          background: #40657E;
          text-align: center;
          line-height: 38px;
          font-size: 1.5rem;
          color: #FFFFFF;
          margin-right: 16px; }
        .front-page-social-media ul.social-media-list li a.twitter:before {
          content: "\f099"; }
        .front-page-social-media ul.social-media-list li a.facebook:before {
          content: "\f09a"; }
        .front-page-social-media ul.social-media-list li a.linkedin:before {
          content: "\f0e1"; }
        .front-page-social-media ul.social-media-list li a.youtube:before {
          content: "\f167"; }
        .front-page-social-media ul.social-media-list li a.instagram:before {
          content: "\f16d"; }
        .front-page-social-media ul.social-media-list li a:hover:before {
          text-decoration: none;
          color: #2F4A5B; }
        .front-page-social-media ul.social-media-list li a:after {
          display: none; }

@media only screen and (max-width: 991px) {
  .homepage-slider .slick-dotted.slick-slider {
    margin-bottom: 40px; }
  .homepage-slider .slide-item .slide-overlay {
    min-width: 500px;
    padding: 30px 40px 30px 40px; }
    .homepage-slider .slide-item .slide-overlay h2 {
      font-size: 1.75rem; }
    .homepage-slider .slide-item .slide-overlay p {
      font-size: 1.125rem;
      line-height: 115%; }
    .homepage-slider .slide-item .slide-overlay .read-more-wrapper {
      margin-top: 0px; }
  .homepage-slider .slide-item > img {
    min-height: 360px; }
  .homepage-slider .slick-dots-wrapper {
    height: 0px;
    bottom: -16px;
    left: 13px;
    text-align: center; }
    .homepage-slider .slick-dots-wrapper div.ss_status {
      background: #FFFFFF; }
      .homepage-slider .slick-dots-wrapper div.ss_status span {
        position: relative;
        top: 3px; }
        .homepage-slider .slick-dots-wrapper div.ss_status span:before {
          color: #40657E;
          font-size: 15px; }
    .homepage-slider .slick-dots-wrapper .slick-dots {
      padding: 0px !important;
      margin: 0px !important; }
      .homepage-slider .slick-dots-wrapper .slick-dots li {
        width: 16px;
        height: 16px;
        /*
            button {
              width: 14px;
              height: 14px;
              &:after {
                opacity: 1;
                width: 14px;
                height: 14px;
                content: " ";
                border-radius: 40px;
                background: transparent;
                border: solid 2px $blue;
                @include transition(all 0.3s ease);
              }
              &:hover {
                &:after {
                  background: rgba($blue, 0.8) !important;
                }
              }
            }
            &.slick-active {
              button {
                &:after {
                  background: $blue;
                }
              }
            }
        */ }
        .homepage-slider .slick-dots-wrapper .slick-dots li:before {
          display: none !important; }
        .homepage-slider .slick-dots-wrapper .slick-dots li button {
          border-radius: 100px;
          color: #000;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .homepage-slider .slick-dots-wrapper .slick-dots li button:before {
            position: absolute;
            top: 0px;
            left: -2px;
            width: 22px;
            height: 22px;
            content: " ";
            border-radius: 40px;
            border: solid 1px transparent;
            background: transparent;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -spec-transition: all 0.3s ease;
            transition: all 0.3s ease; }
          .homepage-slider .slick-dots-wrapper .slick-dots li button:after {
            position: absolute;
            top: 4px;
            right: 0px;
            width: 14px;
            height: 14px;
            content: " ";
            border-radius: 40px;
            border: solid 1px rgba(255, 255, 255, 0.5);
            background: rgba(47, 74, 91, 0.6);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -spec-transition: all 0.3s ease;
            transition: all 0.3s ease; }
          .homepage-slider .slick-dots-wrapper .slick-dots li button:hover:after {
            background: #2f4a5b; }
        .homepage-slider .slick-dots-wrapper .slick-dots li.slick-active button:before {
          border: solid 1px #68A2BA; }
        .homepage-slider .slick-dots-wrapper .slick-dots li.slick-active button:after {
          background: #2f4a5b; } }
@media only screen and (max-width: 667px) {
  .homepage-slider .slide-item .slide-overlay {
    top: auto;
    bottom: 0px;
    width: 100%;
    min-width: 0px;
    padding: 16px 30px 16px 30px; }
    .homepage-slider .slide-item .slide-overlay h2 {
      font-size: 1.5rem;
      margin-bottom: 0px; }
    .homepage-slider .slide-item .slide-overlay p {
      display: none; }
  .homepage-slider .slide-item > img {
    min-height: 300px; }

  .front-page-social-media ul.social-media-list {
    padding-top: 30px; } }
/* =========================================
4 - HOMEPAGE ITEMS
========================================= */
/* FOCUS AREAS */
.focus-areas-holder {
  background: #FFFFFF;
  padding: 30px 0px 50px 0px; }
  .focus-areas-holder .focus-areas {
    font-size: 0px; }
    .focus-areas-holder .focus-areas .focus-area-item {
      display: inline-block;
      vertical-align: top;
      font-size: 1rem;
      width: 30%;
      margin-right: 5%;
      background-image: url("../images/focus-area-shadow.png");
      background-position: 100% 0%;
      background-size: 15% 100%;
      background-repeat: no-repeat;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .focus-areas-holder .focus-areas .focus-area-item a {
        display: block;
        width: 85%;
        min-height: 316px;
        padding: 40px 24px 24px 24px;
        background-color: #F4F4F4;
        background-image: -webkit-linear-gradient(#FCFCFC, #EBEBEB);
        background-image: linear-gradient(#FCFCFC, #EBEBEB); }
        .focus-areas-holder .focus-areas .focus-area-item a .icon {
          display: block;
          text-align: center;
          padding: 0px 0px 20px 0px; }
          .focus-areas-holder .focus-areas .focus-area-item a .icon img {
            width: auto;
            max-height: 60px; }
        .focus-areas-holder .focus-areas .focus-area-item a .title {
          display: block;
          text-align: center;
          color: #40657E;
          font-size: 1.625rem;
          line-height: 100%;
          padding: 0px 0px 16px 0px; }
        .focus-areas-holder .focus-areas .focus-area-item a .content {
          display: block;
          text-align: center;
          font-size: 1.125rem;
          line-height: 120%;
          padding: 0px; }
          .focus-areas-holder .focus-areas .focus-area-item a .content p {
            margin: 0px;
            font-size: 1.125rem;
            line-height: 120%; }
      .focus-areas-holder .focus-areas .focus-area-item:nth-child(3n) {
        margin-right: 0px; }
      .focus-areas-holder .focus-areas .focus-area-item:hover {
        background-position: 90% 0%;
        background-size: 6% 100%; }
        .focus-areas-holder .focus-areas .focus-area-item:hover a .icon img {
          -webkit-animation-duration: 1s;
          animation-duration: 1s;
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          -webkit-animation-name: bounce;
          animation-name: bounce; }
  .focus-areas-holder h2 {
    text-align: center;
    font-style: italic;
    font-size: 1.625rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 0px; }

@media only screen and (max-width: 1200px) {
  .focus-areas-holder {
    padding: 40px 0px 40px 0px; }
    .focus-areas-holder .focus-areas .focus-area-item {
      width: 32%;
      margin-right: 2%; }
      .focus-areas-holder .focus-areas .focus-area-item a {
        min-height: 304px; }
        .focus-areas-holder .focus-areas .focus-area-item a .title {
          font-size: 1.5rem; }
        .focus-areas-holder .focus-areas .focus-area-item a .content {
          font-size: 1rem; } }
@media only screen and (max-width: 991px) {
  .focus-areas-holder {
    padding: 30px 0px 30px 0px; }
    .focus-areas-holder .focus-areas .focus-area-item {
      background-image: none; }
      .focus-areas-holder .focus-areas .focus-area-item a {
        width: 100%;
        min-height: 314px;
        padding: 36px 20px 24px 20px;
        -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
        .focus-areas-holder .focus-areas .focus-area-item a .title {
          font-size: 1.375rem; } }
@media only screen and (max-width: 667px) {
  .focus-areas-holder .focus-areas .focus-area-item {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px; }
    .focus-areas-holder .focus-areas .focus-area-item a {
      position: relative;
      width: 100%;
      min-height: 0px;
      padding: 20px 20px 20px 20px; }
      .focus-areas-holder .focus-areas .focus-area-item a .icon {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 80px;
        padding-bottom: 0px; }
      .focus-areas-holder .focus-areas .focus-area-item a .title,
      .focus-areas-holder .focus-areas .focus-area-item a .content {
        box-sizing: border-box;
        width: 100%;
        padding-left: 100px;
        text-align: left; }
  .focus-areas-holder h2 {
    margin-top: 20px;
    font-size: 1.375rem; } }
@media only screen and (max-width: 480px) {
  .focus-areas-holder .focus-areas .focus-area-item a {
    padding: 30px 20px 20px 20px; }
    .focus-areas-holder .focus-areas .focus-area-item a .icon {
      position: relative;
      top: 0px;
      left: 0px;
      width: 100%;
      padding-bottom: 16px; }
    .focus-areas-holder .focus-areas .focus-area-item a .title,
    .focus-areas-holder .focus-areas .focus-area-item a .content {
      padding-left: 0px;
      text-align: center; } }
/* CARDS LAYOUT */
.cards-container .text_above {
  margin-bottom: 16px !important; }
.cards-container .text_above,
.cards-container .text_below {
  font-size: 1.125rem; }

/* END CARDS LAYOUT */
/* WHATS NEW SLIDER PANELS */
.whats-new-holder {
  background: #F3F3F3;
  padding: 105px 0px 110px 0px; }

.blog-container {
  font-size: 0px;
  padding: 0px 100px; }
  .blog-container .blog-panel {
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 1rem;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px; }
    .blog-container .blog-panel .blog-image {
      position: relative;
      display: block;
      /*height: 365px;*/
      height: 301px;
      background-position: center center;
      background-size: cover; }
      .blog-container .blog-panel .blog-image:after {
        bottom: 0px;
        left: 30px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #FFFFFF;
        border-width: 16px; }
    .blog-container .blog-panel .blog-content {
      display: block;
      background: #FFFFFF;
      padding: 40px 20px;
      /*min-height: 365px;*/
      min-height: 301px; }
      .blog-container .blog-panel .blog-content .blog-title {
        display: block;
        color: #40657E;
        margin: 0px 0px 0px 0px;
        font-size: 1.5rem;
        line-height: 100%; }
      .blog-container .blog-panel .blog-content .blog-date {
        display: block;
        color: #666666;
        margin: 0px 0px 20px 0px;
        font-style: italic; }
      .blog-container .blog-panel .blog-content .blog-text {
        display: block;
        margin: 0px 0px 20px 0px;
        font-size: 1.25rem;
        line-height: 100%; }
        .blog-container .blog-panel .blog-content .blog-text p {
          margin: 0px; }
      .blog-container .blog-panel .blog-content .blog-text-height-limit {
        height: 176px;
        overflow: hidden; }
      .blog-container .blog-panel .blog-content .home-panel-card {
        min-height: 230px;
        overflow: hidden;
        height: 230px; }
      .blog-container .blog-panel .blog-content .read_more {
        display: block;
        font-size: 1.125rem; }
        .blog-container .blog-panel .blog-content .read_more:after {
          position: relative;
          display: inline-block;
          width: 11px;
          height: 10px;
          top: 1px;
          margin-left: 6px;
          content: " ";
          opacity: 0.8;
          background-image: url(../images/arrow-right.svg);
          background-size: 100% 100%;
          background-repeat: no-repeat;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .blog-container .blog-panel .blog-content .read_more:hover:after {
          opacity: 1; }
    .blog-container .blog-panel.panel1 {
      width: 32%;
      margin-right: 2%;
      background: #2F4A5B;
      text-align: center;
      color: #FFFFFF;
      font-weight: 300;
      /*padding: 153px 60px;*/
      padding: 89px 30px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .blog-container .blog-panel.panel1 .blog-content {
        background: transparent;
        padding: 0px; }
        .blog-container .blog-panel.panel1 .blog-content .blog-title {
          margin: 0px 0px 29px 0px;
          font-size: 2.5rem;
          color: #FFFFFF; }
        .blog-container .blog-panel.panel1 .blog-content .blog-text {
          margin: 0px 0px 57px 0px;
          color: rgba(255, 255, 255, 0.75);
          font-size: 1.875rem;
          line-height: 130%; }
        .blog-container .blog-panel.panel1 .blog-content .read_more_container a {
          color: rgba(255, 255, 255, 0.75);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .blog-container .blog-panel.panel1 .blog-content .read_more_container a:hover {
            color: white; }
      .blog-container .blog-panel.panel1:after {
        display: none; }
      .blog-container .blog-panel.panel1:hover {
        background: #263c4a; }
    .blog-container .blog-panel.panel2 {
      width: 32%;
      margin-right: 2%; }
    .blog-container .blog-panel.panel3 {
      width: 32%; }
    .blog-container .blog-panel.panel4 {
      width: 66%;
      margin-right: 2%; }
      .blog-container .blog-panel.panel4 .blog-image {
        width: 50%;
        float: right; }
        .blog-container .blog-panel.panel4 .blog-image:after {
          bottom: auto;
          top: 30px;
          left: 0px;
          border-bottom-color: transparent;
          border-left-color: #FFFFFF; }
      .blog-container .blog-panel.panel4 .blog-content {
        width: 50%;
        float: left;
        /*min-height: 365px;*/
        min-height: 301px; }
    .blog-container .blog-panel.panel5, .blog-container .blog-panel.panel6, .blog-container .blog-panel.panel7, .blog-container .blog-panel.panel8 {
      width: 32%;
      /*.blog-content { min-height: 365px; }*/ }
      .blog-container .blog-panel.panel5 .blog-image, .blog-container .blog-panel.panel6 .blog-image, .blog-container .blog-panel.panel7 .blog-image, .blog-container .blog-panel.panel8 .blog-image {
        display: none; }
      .blog-container .blog-panel.panel5 .blog-content, .blog-container .blog-panel.panel6 .blog-content, .blog-container .blog-panel.panel7 .blog-content, .blog-container .blog-panel.panel8 .blog-content {
        min-height: 301px; }
    .blog-container .blog-panel.panel6, .blog-container .blog-panel.panel7 {
      margin-right: 2%; }
    .blog-container .blog-panel:after {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      content: "";
      background: transparent; }
    .blog-container .blog-panel:hover:after {
      background: rgba(0, 0, 0, 0.1); }

#whats_new_list {
  margin-bottom: 30px; }
  #whats_new_list .news-archive-item {
    padding-bottom: 20px !important;
    border-bottom: solid 2px #E4E4E4;
    margin-bottom: 20px;
    font-size: 0px; }
    #whats_new_list .news-archive-item .image {
      display: inline-block;
      vertical-align: top;
      width: 21%;
      margin-right: 4%; }
      #whats_new_list .news-archive-item .image img {
        width: 100%;
        height: auto; }
    #whats_new_list .news-archive-item .content {
      display: inline-block;
      vertical-align: top;
      width: 75%;
      font-size: 1.125rem; }
      #whats_new_list .news-archive-item .content .meta_data {
        color: #888888;
        font-size: 1rem;
        margin-bottom: 10px; }
      #whats_new_list .news-archive-item .content .summary p.larger_text {
        font-size: 1.125rem !important; }
      #whats_new_list .news-archive-item .content .full_article {
        display: none; }
      #whats_new_list .news-archive-item .content .read_more {
        font-size: 0px; }
        #whats_new_list .news-archive-item .content .read_more .read_more_container {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          text-align: right;
          font-size: 1.125rem; }
          #whats_new_list .news-archive-item .content .read_more .read_more_container a {
            transition: all 0.3s ease; }
        #whats_new_list .news-archive-item .content .read_more .social_sharing {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          text-align: left; }
          #whats_new_list .news-archive-item .content .read_more .social_sharing a {
            display: inline-block;
            margin-right: 10px;
            cursor: pointer;
            font-size: 0px;
            transition: all 0.3s ease; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a:before {
              display: inline-block;
              vertical-align: middle;
              content: "\f05a";
              font-family: "FontAwesome";
              font-style: normal;
              font-size: 1.75rem;
              color: #666666;
              transition: all 0.3s ease; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a.facebook:before {
              color: #3b5998;
              content: "\f230"; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a.twitter:before {
              color: #1da1f2;
              content: "\f081"; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a.linkedin:before {
              color: #0077b5;
              content: "\f08c"; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a.instagram:before {
              color: #0077b5;
              content: "\f16d"; }
            #whats_new_list .news-archive-item .content .read_more .social_sharing a.email:before {
              content: "\f0e0";
              font-size: 1.825rem;
              margin-top: -2px; }
    #whats_new_list .news-archive-item.without_image .content {
      width: 100%; }

#whats_new_archive_links_bottom {
  margin-bottom: 30px; }
  #whats_new_archive_links_bottom p {
    text-align: center; }

#whats_new_archive_links {
  position: relative;
  margin-bottom: 20px; }
  #whats_new_archive_links ul {
    padding-left: 0px !important; }
  #whats_new_archive_links .contextual-links-wrapper {
    display: none !important; }
  #whats_new_archive_links .floater {
    padding: 16px 20px 4px 20px;
    background: #F3F3F3; }
    #whats_new_archive_links .floater.sticky {
      position: fixed;
      top: 0;
      z-index: 9;
      border-top: 0; }

#whats_news_h1 {
  display: inline-block; }

#whats_new_news_subscribe {
  float: right; }

#events_list {
  margin-bottom: 30px; }
  #events_list .event-archive-item {
    padding-bottom: 20px !important;
    border-bottom: solid 2px #E4E4E4;
    margin-bottom: 20px;
    font-size: 0px; }
    #events_list .event-archive-item .image {
      display: inline-block;
      vertical-align: top;
      width: 21%;
      margin-right: 4%; }
      #events_list .event-archive-item .image img {
        width: 100%;
        height: auto; }
    #events_list .event-archive-item .content {
      display: inline-block;
      vertical-align: top;
      width: 75%;
      font-size: 1.125rem; }
      #events_list .event-archive-item .content .meta_data {
        color: #888888;
        font-size: 1rem;
        margin-bottom: 10px; }
      #events_list .event-archive-item .content .summary p.larger_text {
        font-size: 1.125rem !important; }
      #events_list .event-archive-item .content .full_article {
        display: none; }
      #events_list .event-archive-item .content .read_more {
        font-size: 0px; }
        #events_list .event-archive-item .content .read_more .read_more_container {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          text-align: right;
          font-size: 1.125rem; }
          #events_list .event-archive-item .content .read_more .read_more_container a {
            transition: all 0.3s ease; }
        #events_list .event-archive-item .content .read_more .social_sharing {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          text-align: left; }
          #events_list .event-archive-item .content .read_more .social_sharing a {
            display: inline-block;
            margin-right: 10px;
            cursor: pointer;
            font-size: 0px;
            transition: all 0.3s ease; }
            #events_list .event-archive-item .content .read_more .social_sharing a:before {
              display: inline-block;
              vertical-align: middle;
              content: "\f05a";
              font-family: "FontAwesome";
              font-style: normal;
              font-size: 1.75rem;
              color: #666666;
              transition: all 0.3s ease; }
            #events_list .event-archive-item .content .read_more .social_sharing a.facebook:before {
              color: #3b5998;
              content: "\f230"; }
            #events_list .event-archive-item .content .read_more .social_sharing a.twitter:before {
              color: #1da1f2;
              content: "\f081"; }
            #events_list .event-archive-item .content .read_more .social_sharing a.linkedin:before {
              color: #0077b5;
              content: "\f08c"; }
            #events_list .event-archive-item .content .read_more .social_sharing a.instagram:before {
              color: #0077b5;
              content: "\f16d"; }
            #events_list .event-archive-item .content .read_more .social_sharing a.email:before {
              content: "\f0e0";
              font-size: 1.825rem;
              margin-top: -2px; }
    #events_list .event-archive-item.without_image .content {
      width: 100%; }

#events_archive_links_bottom {
  margin-bottom: 30px; }
  #events_archive_links_bottom p {
    text-align: center; }

.node-webform form .hidden_field {
  display: none; }

.span100 {
  float: left;
  width: 100%; }

.span85 {
  float: left;
  width: 85%; }

.span15 {
  float: left;
  width: 15%; }

.node-event {
  padding-bottom: 20px; }
  .node-event .item_content {
    float: left;
    width: 100%;
    margin: 0px 0px 20px 0px; }
    .node-event .item_content .meta_data {
      margin-bottom: 12px; }
      .node-event .item_content .meta_data > div {
        margin-bottom: 4px; }
      .node-event .item_content .meta_data b {
        font-weight: 400; }
    .node-event .item_content .summary {
      margin-bottom: 16px; }
      .node-event .item_content .summary .summary_title {
        font-weight: 400;
        margin-bottom: 4px; }
    .node-event .item_content .read_more {
      margin-bottom: 16px;
      font-size: 0px; }
      .node-event .item_content .read_more .read_more_container {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        text-align: right;
        font-size: rem(16); }
        .node-event .item_content .read_more .read_more_container a.button {
          display: inline-block;
          padding: 10px 20px;
          color: #FFFFFF;
          background: #40657E;
          border: 0px; }
          .node-event .item_content .read_more .read_more_container a.button:focus, .node-event .item_content .read_more .read_more_container a.button:hover {
            cursor: pointer;
            color: #FFFFFF;
            background: #2F4A5B;
            outline: none; }
      .node-event .item_content .read_more .social_sharing {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        text-align: left; }
        .node-event .item_content .read_more .social_sharing a {
          display: inline-block;
          margin-right: 10px;
          cursor: pointer;
          font-size: 0px;
          transition: all 0.3s ease; }
          .node-event .item_content .read_more .social_sharing a:before {
            display: inline-block;
            vertical-align: middle;
            content: "\f05a";
            font-family: "FontAwesome";
            font-style: normal;
            font-size: 1.75rem;
            color: #666666;
            transition: all 0.3s ease; }
          .node-event .item_content .read_more .social_sharing a.facebook:before {
            color: #3b5998;
            content: "\f230"; }
          .node-event .item_content .read_more .social_sharing a.twitter:before {
            color: #1da1f2;
            content: "\f081"; }
          .node-event .item_content .read_more .social_sharing a.linkedin:before {
            color: #0077b5;
            content: "\f08c"; }
          .node-event .item_content .read_more .social_sharing a.instagram:before {
            color: #0077b5;
            content: "\f16d"; }
          .node-event .item_content .read_more .social_sharing a.email:before {
            content: "\f0e0";
            font-size: 1.825rem;
            margin-top: -2px; }
    .node-event .item_content .sessions {
      margin-bottom: 20px; }
      .node-event .item_content .sessions .session_section_title {
        margin-bottom: 4px; }
      .node-event .item_content .sessions .booking_status .checkbox_wrap {
        position: relative; }
        .node-event .item_content .sessions .booking_status .checkbox_wrap input {
          visibility: hidden; }
          .node-event .item_content .sessions .booking_status .checkbox_wrap input[type=checkbox]:checked + label {
            background: #40657E;
            border: solid 1px #40657E; }
            .node-event .item_content .sessions .booking_status .checkbox_wrap input[type=checkbox]:checked + label:after {
              opacity: 1;
              border: 3px solid #FFFFFF;
              border-top: none;
              border-right: none; }
        .node-event .item_content .sessions .booking_status .checkbox_wrap label {
          cursor: pointer;
          position: absolute;
          width: 22px;
          height: 22px;
          top: 0;
          left: 0;
          background: #F3F3F3;
          border: solid 1px #d7d7d7; }
          .node-event .item_content .sessions .booking_status .checkbox_wrap label:after {
            opacity: 0.2;
            content: '';
            position: absolute;
            width: 11px;
            height: 6px;
            background: transparent;
            top: 6px;
            left: 5px;
            border: 3px solid #666666;
            border-top: none;
            border-right: none;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -spec-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -spec-transition: all 0.3s ease;
            transition: all 0.3s ease; }
          .node-event .item_content .sessions .booking_status .checkbox_wrap label:hover:after {
            border: 3px solid #40657E;
            border-top: none;
            border-right: none;
            opacity: 1; }
        .node-event .item_content .sessions .booking_status .checkbox_wrap span {
          display: inline-block;
          padding-left: 30px;
          line-height: 24px;
          font-size: rem(14);
          font-weight: 400; }
      .node-event .item_content .sessions .session_title {
        font-size: rem(14); }
      .node-event .item_content .sessions .session_start_time_and_location {
        font-size: rem(14); }
      .node-event .item_content .sessions .session_description {
        font-size: rem(14); }
        .node-event .item_content .sessions .session_description :last-child {
          margin-bottom: 0px; }
    .node-event .item_content .event_registration_form_button {
      text-align: center; }
      .node-event .item_content .event_registration_form_button a {
        display: inline-block;
        padding: 10px 20px;
        color: #FFFFFF;
        background: #40657E;
        border: 0px; }
        .node-event .item_content .event_registration_form_button a:focus, .node-event .item_content .event_registration_form_button a:hover {
          cursor: pointer;
          color: #FFFFFF;
          background: #2F4A5B;
          outline: none; }
    .node-event .item_content .event-booking-details {
      margin-bottom: 20px;
      line-height: 150%; }
      .node-event .item_content .event-booking-details b {
        display: inline-block;
        min-width: 90px;
        font-weight: 400; }
    .node-event .item_content .event_registration_form {
      margin-top: 20px; }
    @media only screen and (max-width: 991px) {
      .node-event .item_content {
        float: none;
        width: 100%;
        font-size: rem(12); }
        .node-event .item_content .meta_data .span20 {
          margin-bottom: 0px !important; }
        .node-event .item_content .sessions table th,
        .node-event .item_content .sessions table td {
          display: block;
          width: 100%;
          border-bottom: 0px !important; } }

.news-ticker-container .blog-container {
  padding: 0px; }
  .news-ticker-container .blog-container .blog-panel {
    width: 33.3%;
    margin-left: 10px;
    margin-right: 10px; }
    .news-ticker-container .blog-container .blog-panel .blog-content {
      text-align: left; }
.news-ticker-container .slick-dots-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 16px;
  bottom: -30px;
  padding: 0px;
  text-align: center; }
  .news-ticker-container .slick-dots-wrapper div.ss_status {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: transparent;
    width: 16px;
    height: 22px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .news-ticker-container .slick-dots-wrapper div.ss_status span {
      width: 16px;
      height: 22px;
      font-size: 0;
      line-height: 0;
      display: block;
      cursor: pointer;
      color: #000;
      outline: none;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .news-ticker-container .slick-dots-wrapper div.ss_status span:before {
        font-family: "FontAwesome";
        content: "\f04c";
        color: rgba(47, 74, 91, 0.6);
        font-size: 13px;
        line-height: 22px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .news-ticker-container .slick-dots-wrapper div.ss_status span.paused:before {
        content: "\f04b"; }
      .news-ticker-container .slick-dots-wrapper div.ss_status span:hover:before {
        color: #2F4A5B; }
.news-ticker-container .slick-dots {
  padding: 0px !important;
  margin: 0px !important;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  bottom: auto; }
  .news-ticker-container .slick-dots li {
    width: 16px;
    height: 16px;
    /*
        button {
          width: 14px;
          height: 14px;
          &:after {
            opacity: 1;
            width: 14px;
            height: 14px;
            content: " ";
            border-radius: 40px;
            background: transparent;
            border: solid 2px $blue;
            @include transition(all 0.3s ease);
          }
          &:hover {
            &:after {
              background: rgba($blue, 0.8) !important;
            }
          }
        }
        &.slick-active {
          button {
            &:after {
              background: $blue;
            }
          }
        }
    */ }
    .news-ticker-container .slick-dots li:before {
      display: none !important; }
    .news-ticker-container .slick-dots li button {
      border-radius: 100px;
      color: #000;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .news-ticker-container .slick-dots li button:before {
        position: absolute;
        top: 0px;
        left: -2px;
        width: 22px;
        height: 22px;
        content: " ";
        border-radius: 40px;
        border: solid 1px transparent;
        background: transparent;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .news-ticker-container .slick-dots li button:after {
        position: absolute;
        top: 4px;
        right: 0px;
        width: 14px;
        height: 14px;
        content: " ";
        border-radius: 40px;
        border: solid 1px rgba(255, 255, 255, 0.5);
        background: rgba(47, 74, 91, 0.6);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .news-ticker-container .slick-dots li button:hover:after {
        background: #2f4a5b; }
    .news-ticker-container .slick-dots li.slick-active button:before {
      border: solid 1px #68A2BA; }
    .news-ticker-container .slick-dots li.slick-active button:after {
      background: #2f4a5b; }
  .news-ticker-container .slick-dots li {
    vertical-align: top; }

@media only screen and (max-width: 1200px) {
  .blog-container {
    padding: 0px; }
    .blog-container .blog-panel .blog-image {
      height: 301px; }
    .blog-container .blog-panel .blog-content, .blog-container .blog-panel.panel4 .blog-content, .blog-container .blog-panel.panel5 .blog-content, .blog-container .blog-panel.panel6 .blog-content, .blog-container .blog-panel.panel7 .blog-content, .blog-container .blog-panel.panel8 .blog-content {
      min-height: 301px; }
    .blog-container .blog-panel.panel1 {
      padding: 89px 30px; } }
@media only screen and (max-width: 991px) {
  .whats-new-holder {
    padding: 40px 0px 40px 0px; }

  .blog-container .blog-panel .blog-image {
    display: none; }
  .blog-container .blog-panel .blog-content, .blog-container .blog-panel.panel4 .blog-content, .blog-container .blog-panel.panel5 .blog-content, .blog-container .blog-panel.panel6 .blog-content, .blog-container .blog-panel.panel7 .blog-content, .blog-container .blog-panel.panel8 .blog-content {
    width: 100%;
    min-height: 0px;
    padding: 24px 30px; }
    .blog-container .blog-panel .blog-content .blog-text-height-limit, .blog-container .blog-panel.panel4 .blog-content .blog-text-height-limit, .blog-container .blog-panel.panel5 .blog-content .blog-text-height-limit, .blog-container .blog-panel.panel6 .blog-content .blog-text-height-limit, .blog-container .blog-panel.panel7 .blog-content .blog-text-height-limit, .blog-container .blog-panel.panel8 .blog-content .blog-text-height-limit {
      height: auto; }
    .blog-container .blog-panel .blog-content .home-panel-card, .blog-container .blog-panel.panel4 .blog-content .home-panel-card, .blog-container .blog-panel.panel5 .blog-content .home-panel-card, .blog-container .blog-panel.panel6 .blog-content .home-panel-card, .blog-container .blog-panel.panel7 .blog-content .home-panel-card, .blog-container .blog-panel.panel8 .blog-content .home-panel-card {
      min-height: 0px;
      height: auto; }
  .blog-container .blog-panel.panel1 {
    padding: 0px; }
    .blog-container .blog-panel.panel1 .blog-content {
      padding: 24px 30px; }
      .blog-container .blog-panel.panel1 .blog-content .blog-title {
        font-size: 2rem;
        margin: 0px 0px 16px 0px; }
      .blog-container .blog-panel.panel1 .blog-content .blog-text {
        font-size: 1.5rem;
        margin: 0px 0px 20px 0px;
        line-height: 120%; }
  .blog-container .blog-panel.panel1, .blog-container .blog-panel.panel2, .blog-container .blog-panel.panel3, .blog-container .blog-panel.panel4, .blog-container .blog-panel.panel5, .blog-container .blog-panel.panel6, .blog-container .blog-panel.panel7, .blog-container .blog-panel.panel8 {
    width: 100%;
    margin-right: 0px; } }
@media only screen and (max-width: 991px) {
  .news-ticker-container .blog-container .blog-panel .blog-image {
    display: block; } }
@media only screen and (max-width: 667px) {
  .whats-new-holder {
    padding: 40px 0px 40px 0px; }

  .blog-container .blog-panel .blog-content .blog-title, .blog-container .blog-panel.panel4 .blog-content .blog-title, .blog-container .blog-panel.panel5 .blog-content .blog-title, .blog-container .blog-panel.panel6 .blog-content .blog-title, .blog-container .blog-panel.panel7 .blog-content .blog-title, .blog-container .blog-panel.panel8 .blog-content .blog-title {
    font-size: 1.375rem; }
  .blog-container .blog-panel .blog-content .blog-date, .blog-container .blog-panel.panel4 .blog-content .blog-date, .blog-container .blog-panel.panel5 .blog-content .blog-date, .blog-container .blog-panel.panel6 .blog-content .blog-date, .blog-container .blog-panel.panel7 .blog-content .blog-date, .blog-container .blog-panel.panel8 .blog-content .blog-date {
    margin: 0px 0px 16px 0px; }
  .blog-container .blog-panel .blog-content .blog-text, .blog-container .blog-panel.panel4 .blog-content .blog-text, .blog-container .blog-panel.panel5 .blog-content .blog-text, .blog-container .blog-panel.panel6 .blog-content .blog-text, .blog-container .blog-panel.panel7 .blog-content .blog-text, .blog-container .blog-panel.panel8 .blog-content .blog-text {
    font-size: 1.125rem;
    margin: 0px 0px 16px 0px; }
  .blog-container .blog-panel .blog-content .read_more, .blog-container .blog-panel.panel4 .blog-content .read_more, .blog-container .blog-panel.panel5 .blog-content .read_more, .blog-container .blog-panel.panel6 .blog-content .read_more, .blog-container .blog-panel.panel7 .blog-content .read_more, .blog-container .blog-panel.panel8 .blog-content .read_more {
    font-size: 1rem; }
  .blog-container .blog-panel.panel1 .blog-content .blog-title {
    font-size: 1.75rem; }
  .blog-container .blog-panel.panel1 .blog-content .blog-text {
    font-size: 1.25rem;
    margin: 0px 0px 16px 0px;
    line-height: 110%; }

  .whats-new-article .image {
    float: none;
    width: 100%;
    margin-left: 0px;
    margin-bottom: 20px; }
    .whats-new-article .image img {
      display: block;
      margin: 0 auto;
      max-width: 360px !important; } }
@media only screen and (max-width: 480px) {
  #whats_new_list .news-archive-item .image {
    display: none; }
  #whats_new_list .news-archive-item .content {
    width: 100%; } }
/* QUICK LINKS PANELS */
.quick-links-holder {
  background: #E4E4E4;
  padding: 70px 0px 90px 0px; }
  .quick-links-holder .view-content {
    font-size: 0px; }
  .quick-links-holder h2 {
    text-align: center;
    margin-bottom: 10px; }
  .quick-links-holder .c-quick-links-tagline {
    text-align: center;
    font-size: 1.75rem;
    line-height: 125%;
    font-weight: 300;
    color: #414141;
    margin-bottom: 50px; }
  .quick-links-holder .quick-links-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 24.25%;
    height: 201px;
    margin-right: 1%;
    margin-bottom: 12px;
    font-size: 1rem;
    overflow: hidden; }
    .quick-links-holder .quick-links-item:nth-child(4n) {
      margin-right: 0px; }
    .quick-links-holder .quick-links-item:nth-child(4n+1) {
      clear: both; }
    .quick-links-holder .quick-links-item .intro-wrapper {
      display: block;
      width: 100%;
      height: 100%; }
      .quick-links-holder .quick-links-item .intro-wrapper span {
        position: absolute;
        top: 30%;
        left: 0px;
        width: 100%;
        color: #FFFFFF;
        font-size: 2.5rem;
        text-align: center;
        z-index: 10; }
      .quick-links-holder .quick-links-item .intro-wrapper img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: auto;
        z-index: 9; }
    .quick-links-holder .quick-links-item a {
      display: block;
      -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0);
      -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0);
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0);
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -spec-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .quick-links-holder .quick-links-item a .quick-links-item-image {
        position: relative;
        display: block;
        overflow: hidden; }
        .quick-links-holder .quick-links-item a .quick-links-item-image:before {
          content: " ";
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          opacity: 0;
          z-index: 3;
          background: rgba(255, 255, 255, 0.5);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .quick-links-holder .quick-links-item a .quick-links-item-image img {
          box-sizing: border-box;
          width: 100%;
          height: auto;
          border: solid 1px #A7B8BC; }
        .quick-links-holder .quick-links-item a .quick-links-item-image .quick-links-item-content {
          position: absolute;
          top: 100%;
          left: 0px;
          width: 100%;
          height: 100%;
          box-sizing: border-box;
          padding: 20px;
          display: block;
          color: #FFFFFF;
          background: rgba(64, 101, 126, 0.9);
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -spec-transition: all 0.5s ease;
          transition: all 0.5s ease;
          z-index: 4; }
      .quick-links-holder .quick-links-item a .quick-links-item-title {
        /* display: table; */
        display: none;
        width: 100%;
        height: 76px;
        text-align: center;
        background: #FFFFFF;
        font-size: 1.64rem;
        line-height: 100%;
        color: #4D738A;
        text-decoration: none; }
        .quick-links-holder .quick-links-item a .quick-links-item-title span {
          display: table-cell;
          vertical-align: middle;
          width: 100%;
          height: 100%; }
      .quick-links-holder .quick-links-item a:hover {
        -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
        .quick-links-holder .quick-links-item a:hover .quick-links-item-image .quick-links-item-content {
          top: 0%; }
        .quick-links-holder .quick-links-item a:hover .quick-links-item-title {
          text-decoration: none; }
      .quick-links-holder .quick-links-item a.other-hovered .quick-links-item-image:before {
        opacity: 1; }

@media only screen and (max-width: 1200px) {
  .quick-links-holder .quick-links-item {
    height: 168px; }
    .quick-links-holder .quick-links-item .intro-wrapper span {
      font-size: 2.0rem; }
    .quick-links-holder .quick-links-item a .quick-links-item-image .quick-links-item-content {
      line-height: 120%; }
    .quick-links-holder .quick-links-item a .quick-links-item-title {
      font-size: 1.375rem; } }
@media only screen and (max-width: 991px) {
  .quick-links-holder .quick-links-item {
    width: 32%;
    margin-right: 2%; }
    .quick-links-holder .quick-links-item:nth-child(4n) {
      margin-right: 2%; }
    .quick-links-holder .quick-links-item:nth-child(4n+1) {
      clear: none; }
    .quick-links-holder .quick-links-item:nth-child(3n) {
      margin-right: 0px; }
    .quick-links-holder .quick-links-item:nth-child(3n+1) {
      clear: both; }
    .quick-links-holder .quick-links-item a .quick-links-item-image .quick-links-item-content {
      padding: 15px;
      font-size: 0.938rem; }
    .quick-links-holder .quick-links-item a .quick-links-item-title {
      font-size: 1.25rem;
      height: 64px; } }
@media only screen and (max-width: 767px) {
  .quick-links-holder .quick-links-item {
    height: auto; }
    .quick-links-holder .quick-links-item .intro-wrapper span {
      top: 40px; }
    .quick-links-holder .quick-links-item .intro-wrapper img {
      position: relative; } }
@media only screen and (max-width: 667px) {
  .quick-links-holder .quick-links-item {
    width: 48%;
    margin-right: 4%; }
    .quick-links-holder .quick-links-item:nth-child(3n) {
      margin-right: 4%; }
    .quick-links-holder .quick-links-item:nth-child(3n+1) {
      clear: none; }
    .quick-links-holder .quick-links-item:nth-child(2n) {
      margin-right: 0px; }
    .quick-links-holder .quick-links-item:nth-child(2n+1) {
      clear: both; }
    .quick-links-holder .quick-links-item a .quick-links-item-title {
      height: 60px; }
    .quick-links-holder .quick-links-item a .quick-links-item-image .quick-links-item-content {
      display: none; }
    .quick-links-holder .quick-links-item a:hover {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; } }
@media only screen and (max-width: 480px) {
  .quick-links-holder .quick-links-item {
    width: 100%;
    margin-right: 0%; }
    .quick-links-holder .quick-links-item .intro-wrapper {
      height: 60px;
      background: #2F4A5B; }
      .quick-links-holder .quick-links-item .intro-wrapper span {
        position: relative;
        display: block;
        top: 0px;
        font-size: 1.625rem;
        line-height: 60px; }
      .quick-links-holder .quick-links-item .intro-wrapper img {
        display: none; }
    .quick-links-holder .quick-links-item a .quick-links-item-title {
      display: table;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .quick-links-holder .quick-links-item a .quick-links-item-image {
      display: none; }
    .quick-links-holder .quick-links-item a:hover {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
      .quick-links-holder .quick-links-item a:hover .quick-links-item-title {
        background: #40657E;
        color: #FFFFFF; } }
/* STRATEGIC PLAN */
.strategic-plan-holder {
  background: #FFFFFF;
  padding: 70px 0px 90px 0px;
  text-align: right; }
  .strategic-plan-holder h2 {
    margin-bottom: 10px; }
  .strategic-plan-holder .block-nodeblock > .container + .content {
    width: 1170px;
    margin: 0 auto;
    padding: 0px 15px; }
  .strategic-plan-holder p {
    padding-left: 12%;
    font-size: 1.125rem; }
    .strategic-plan-holder p.first_element {
      margin-top: 0px; }

@media only screen and (max-width: 1200px) {
  .strategic-plan-holder .block-nodeblock > .container + .content {
    width: 970px; }
  .strategic-plan-holder p {
    padding-left: 0%; } }
@media only screen and (max-width: 991px) {
  .strategic-plan-holder {
    padding: 30px 0px 10px 0px; }
    .strategic-plan-holder .block-nodeblock > .container + .content {
      width: 750px; } }
@media only screen and (max-width: 767px) {
  .strategic-plan-holder .block-nodeblock > .container + .content {
    width: 100%; } }
@media only screen and (max-width: 667px) {
  .strategic-plan-holder p {
    font-size: 1rem; } }
@media only screen and (max-width: 480px) {
  .strategic-plan-holder {
    text-align: left; }
    .strategic-plan-holder p:last-child {
      text-align: right; } }
/* =========================================
5 - INTERIOR PAGE GENERAL STYLING
========================================= */
.innerpage-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }
  .innerpage-header img {
    width: 100%;
    height: auto;
    min-height: 80px; }

@media only screen and (max-width: 667px) {
  .innerpage-header img {
    min-height: 60px; } }
.innerpage-header-social-media {
  width: 300px;
  font-size: 1rem;
  color: #2F4A5B; }
  .innerpage-header-social-media p {
    font-family: Calibri, Arial, Tahoma, sans-serif;
    font-weight: 300;
    margin: 0px 0px 16px 0px;
    line-height: 120%; }
    .innerpage-header-social-media p a {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      color: #B6C0C6; }
      .innerpage-header-social-media p a:hover {
        color: #FFFFFF; }
  .innerpage-header-social-media ul.social-media-list {
    padding: 10px 10px 3px 10px;
    margin: 0px !important;
    list-style: none; }
    .innerpage-header-social-media ul.social-media-list li {
      display: inline-block; }
      .innerpage-header-social-media ul.social-media-list li a {
        display: block;
        line-height: 38px;
        width: 44px;
        height: 44px;
        overflow: hidden; }
        .innerpage-header-social-media ul.social-media-list li a:before {
          content: "\f00d";
          font-family: "FontAwesome";
          display: inline-block;
          position: relative;
          top: 4px;
          width: 38px;
          height: 38px;
          border-radius: 100px;
          background: #FFFFFF;
          text-align: center;
          line-height: 38px;
          font-size: 1.5rem;
          color: #2F4A5B;
          margin-right: 16px; }
        .innerpage-header-social-media ul.social-media-list li a.twitter:before {
          content: "\f099"; }
        .innerpage-header-social-media ul.social-media-list li a.facebook:before {
          content: "\f09a"; }
        .innerpage-header-social-media ul.social-media-list li a.linkedin:before {
          content: "\f0e1"; }
        .innerpage-header-social-media ul.social-media-list li a.youtube:before {
          content: "\f167"; }
        .innerpage-header-social-media ul.social-media-list li a.instagram:before {
          content: "\f16d"; }
        .innerpage-header-social-media ul.social-media-list li a:hover:before {
          text-decoration: none;
          color: #FFFFFF;
          background: #2F4A5B; }
        .innerpage-header-social-media ul.social-media-list li a:after {
          display: none; }

.breadcrumbs-container {
  padding: 12px 0px;
  border-bottom: solid 1px #E4E4E4;
  margin-bottom: 20px; }
  .breadcrumbs-container .breadcrumb {
    padding-bottom: 0px;
    /*
    a {
      padding-right: 8px;
      border-right: solid 1px #AAAAAA;
      margin-right: 8px;
    }
    */ }
    .breadcrumbs-container .breadcrumb .crumbs-separator {
      color: #666666; }
  .breadcrumbs-container .easy-breadcrumb_segment-separator {
    color: #666666; }

body.not-front h2 {
  margin-top: 0px; }
body.not-front #main-content p {
  /* text-align: justify; */
  margin: 0px 0px 16px 0px;
  font-size: 1.125rem; }
body.not-front #main-content p + ul, body.not-front #main-content p + ol {
  margin-top: -16px; }
body.not-front #main-content ul,
body.not-front #main-content ol {
  margin-top: 0px;
  margin-bottom: 16px;
  padding-left: 20px; }
  body.not-front #main-content ul li,
  body.not-front #main-content ol li {
    font-size: 1.125rem; }
    body.not-front #main-content ul li ul,
    body.not-front #main-content ul li ol,
    body.not-front #main-content ol li ul,
    body.not-front #main-content ol li ol {
      margin-top: 0px;
      margin-bottom: 6px; }
  body.not-front #main-content ul.search-results,
  body.not-front #main-content ol.search-results {
    padding-left: 0px; }
body.not-front #main-content ul li {
  position: relative;
  list-style-type: none;
  /*
  list-style-image: url('../images/icon-unordered_list.svg');
  */ }
  body.not-front #main-content ul li:before {
    font-family: "FontAwesome";
    position: absolute;
    font-size: 45%;
    margin-left: -20px;
    margin-top: 0.5rem;
    content: '\f111'; }
body.not-front #main-content img {
  max-width: 100%;
  height: auto; }
  body.not-front #main-content img[style*="left"] {
    margin-top: 6px !important;
    margin-left: 0px !important;
    margin-right: 20px !important;
    margin-bottom: 20px !important; }
  body.not-front #main-content img[style*="right"] {
    margin-top: 6px !important;
    margin-left: 20px !important;
    margin-right: 0px !important;
    margin-bottom: 20px !important; }
body.not-front #main-content iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%; }
body.not-front #main-content .image_credit {
  /* text-align: left; */
  font-size: 0.8125rem; }
body.not-front #main-content .larger_text {
  font-size: 1.25rem; }
body.not-front #main-content .text_above {
  margin-bottom: 32px; }
  body.not-front #main-content .text_above:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both; }
body.not-front #main-content table {
  float: none !important;
  min-width: 25%;
  border-spacing: 0px;
  border: 0px !important; }
  body.not-front #main-content table[style] {
    width: auto !important;
    border: 0px !important;
    padding: 0px !important;
    background: 0px !important;
    background-color: 0px !important; }
  body.not-front #main-content table caption {
    display: none; }
  body.not-front #main-content table thead th {
    padding: 5px 10px 5px 10px;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: 300;
    color: #FFFFFF;
    background: #2F4A5B;
    border-bottom: solid 3px #FFFFFF; }
    body.not-front #main-content table thead th * {
      margin: 0px; }
  body.not-front #main-content table tbody {
    border: 0px; }
    body.not-front #main-content table tbody tr {
      padding: 0px;
      border: 0px; }
      body.not-front #main-content table tbody tr th {
        padding: 5px 10px 5px 10px;
        box-sizing: border-box;
        font-size: 1.125rem;
        font-weight: 300;
        color: #FFFFFF;
        background: #2F4A5B;
        border-bottom: solid 3px #FFFFFF; }
        body.not-front #main-content table tbody tr th * {
          margin: 0px; }
      body.not-front #main-content table tbody tr td {
        padding: 7px 10px;
        font-size: 1.125rem;
        box-sizing: border-box; }
        body.not-front #main-content table tbody tr td a:before {
          display: none !important; }
        body.not-front #main-content table tbody tr td h1, body.not-front #main-content table tbody tr td h2, body.not-front #main-content table tbody tr td h3, body.not-front #main-content table tbody tr td h4, body.not-front #main-content table tbody tr td h5, body.not-front #main-content table tbody tr td h6 {
          margin-top: 0px !important; }
body.not-front #main-content table:not(.plain) tbody tr:nth-child(2n+0) {
  background: #FFFFFF; }
body.not-front #main-content table:not(.plain) tbody tr:nth-child(2n+1) {
  background: #F3F3F3; }
body.not-front #main-content table:not(.plain) tbody tr td.active {
  background: transparent; }
body.not-front #main-content table:not(.plain) tbody tr td[style] {
  background-color: transparent !important; }
body.not-front #main-content .container .region .container {
  padding: 0px !important;
  width: auto; }
body.not-front #main-content .region > .block-nodeblock:nth-child(1) .node {
  padding-top: 0px; }
body.not-front #main-content .c-node-updated {
  display: none; }
body.not-front #main-content .c-last-updated {
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 0.875rem; }
body.not-front #main-content .slick-slider {
  text-align: center;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }
body.not-front #main-content .slick-list.draggable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
body.not-front #search-content {
  margin-bottom: 30px; }
  body.not-front #search-content ul,
  body.not-front #search-content ol {
    margin-top: 0px;
    padding-left: 0px; }
    body.not-front #search-content ul.search-results,
    body.not-front #search-content ol.search-results {
      padding-left: 0px; }
  body.not-front #search-content .search-form .container-inline label {
    font-size: 1.125rem;
    font-weight: 300;
    padding-right: 6px; }
  body.not-front #search-content .search-form .container-inline input[type="text"] {
    border: solid 1px #40657E;
    padding: 5px 10px;
    border-radius: 0px;
    background-image: none !important; }
  body.not-front #search-content .search-form .container-inline input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    color: #FFFFFF;
    background: #40657E;
    border: 0px;
    border-radius: 0px;
    padding: 6px 20px; }
    body.not-front #search-content .search-form .container-inline input[type="submit"]:focus, body.not-front #search-content .search-form .container-inline input[type="submit"]:hover {
      cursor: pointer;
      color: #FFFFFF;
      background: #2F4A5B;
      outline: none; }
  body.not-front #search-content .search-form + ul {
    padding-left: 20px; }
  body.not-front #search-content .no_search_results {
    display: none;
    margin: 30px 0px 30px 0px;
    padding: 20px;
    background: #F3F3F3;
    border: solid 1px #40657E;
    text-align: center; }
body.not-front .c-main-content .item-list ul.pager {
  padding: 0px !important;
  margin: 10px 0px 40px 0px !important; }
  body.not-front .c-main-content .item-list ul.pager li {
    margin: 0px; }

@media only screen and (max-width: 991px) {
  body.not-front #main-content {
    overflow: hidden; }
    body.not-front #main-content .table_wrapper {
      overflow-x: auto; } }
@media only screen and (max-width: 768px) {
  body.not-front #main-content .item-list ul.pager li,
  body.not-front #search-content .item-list ul.pager li {
    margin: 0px; } }
@media only screen and (max-width: 667px) {
  body.not-front #main-content p {
    text-align: inherit;
    margin: 0px 0px 20px 0px;
    font-size: 1rem; }
  body.not-front #main-content .larger_text {
    font-size: 1.125rem; }
  body.not-front #main-content ul li,
  body.not-front #main-content ol li {
    font-size: 1rem; } }
/* adjust stuff for a logged in user */
body.logged-in.not-front #main-content .region > .block-nodeblock:nth-child(2) .node {
  padding-top: 0px; }

/* BASIC TEXT BLOCK */
.basic-text-block-container {
  padding: 80px 0px 70px 0px; }
  .basic-text-block-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
    .basic-text-block-container img[style*="left"] {
      margin-right: 20px; }
    .basic-text-block-container img[style*="right"] {
      margin-left: 20px; }

@media only screen and (max-width: 991px) {
  .basic-text-block-container {
    padding: 30px 0px 20px 0px; }
    .basic-text-block-container img {
      display: block;
      margin-left: auto;
      margin-right: auto; }
      .basic-text-block-container img[style] {
        float: none !important; } }
/* IMAGE AND TEXT BLOCKS */
.text-and-image-container {
  padding: 80px 0px 50px 0px; }
  .text-and-image-container img {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
  .text-and-image-container .first_element {
    margin-top: 0px; }
  .text-and-image-container .field-type-image {
    margin-top: 6px; }
  .text-and-image-container .col-md-12 .field-type-image .field-item {
    text-align: center; }
    .text-and-image-container .col-md-12 .field-type-image .field-item img {
      width: auto;
      height: auto;
      max-width: 600px;
      max-height: 400px; }
  .text-and-image-container .slick-slider {
    margin-bottom: 60px; }
    .text-and-image-container .slick-slider .slick-slide {
      margin: 0px 3px; }
  .text-and-image-container .slick-dots-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    height: 16px;
    bottom: -30px;
    padding: 0px;
    text-align: center; }
    .text-and-image-container .slick-dots-wrapper div.ss_status {
      position: relative;
      display: inline-block;
      vertical-align: top;
      background-color: transparent;
      width: 16px;
      height: 22px;
      margin: 0 5px;
      padding: 0;
      cursor: pointer; }
      .text-and-image-container .slick-dots-wrapper div.ss_status span {
        width: 16px;
        height: 22px;
        font-size: 0;
        line-height: 0;
        display: block;
        cursor: pointer;
        color: #000;
        outline: none;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .text-and-image-container .slick-dots-wrapper div.ss_status span:before {
          font-family: "FontAwesome";
          content: "\f04c";
          color: rgba(47, 74, 91, 0.6);
          font-size: 13px;
          line-height: 22px;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .text-and-image-container .slick-dots-wrapper div.ss_status span.paused:before {
          content: "\f04b"; }
        .text-and-image-container .slick-dots-wrapper div.ss_status span:hover:before {
          color: #2F4A5B; }
  .text-and-image-container .slick-dots {
    padding: 0px !important;
    margin: 0px !important;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    bottom: auto; }
    .text-and-image-container .slick-dots li {
      width: 16px;
      height: 16px;
      /*
          button {
            width: 14px;
            height: 14px;
            &:after {
              opacity: 1;
              width: 14px;
              height: 14px;
              content: " ";
              border-radius: 40px;
              background: transparent;
              border: solid 2px $blue;
              @include transition(all 0.3s ease);
            }
            &:hover {
              &:after {
                background: rgba($blue, 0.8) !important;
              }
            }
          }
          &.slick-active {
            button {
              &:after {
                background: $blue;
              }
            }
          }
      */ }
      .text-and-image-container .slick-dots li:before {
        display: none !important; }
      .text-and-image-container .slick-dots li button {
        border-radius: 100px;
        color: #000;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .text-and-image-container .slick-dots li button:before {
          position: absolute;
          top: 0px;
          left: -2px;
          width: 22px;
          height: 22px;
          content: " ";
          border-radius: 40px;
          border: solid 1px transparent;
          background: transparent;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .text-and-image-container .slick-dots li button:after {
          position: absolute;
          top: 4px;
          right: 0px;
          width: 14px;
          height: 14px;
          content: " ";
          border-radius: 40px;
          border: solid 1px rgba(255, 255, 255, 0.5);
          background: rgba(47, 74, 91, 0.6);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .text-and-image-container .slick-dots li button:hover:after {
          background: #2f4a5b; }
      .text-and-image-container .slick-dots li.slick-active button:before {
        border: solid 1px #68A2BA; }
      .text-and-image-container .slick-dots li.slick-active button:after {
        background: #2f4a5b; }
    .text-and-image-container .slick-dots li {
      vertical-align: top; }

@media only screen and (max-width: 991px) {
  .text-and-image-container {
    padding: 30px 0px 20px 0px; } }
/* INTERNAL SLIDESHOW AND SINGULAR IMAGE */
.field-type-image {
  text-align: center; }
  .field-type-image .field-items .field-item img {
    display: none;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }

.field-collection-container,
.field-collection-view {
  padding: 0px;
  margin: 0px;
  border-bottom: 0px; }

/* ACCORDIAN */
.accordian-heading {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 3px 20px 3px 36px;
  font-size: 1.1875rem !important;
  font-weight: 300;
  line-height: 22px !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .accordian-heading p, .accordian-heading h1 h2, .accordian-heading h3, .accordian-heading h4, .accordian-heading h5, .accordian-heading h6, .accordian-heading b, .accordian-heading strong {
    font-weight: 300;
    font-size: 1.1875rem !important;
    margin: 0px !important; }
  .accordian-heading:before {
    position: absolute;
    margin-top: 1px;
    margin-left: -32px;
    content: "\f067";
    font-family: "FontAwesome";
    width: 20px;
    height: 20px;
    background: #40657E;
    color: #FFFFFF;
    text-align: center;
    font-size: 10px;
    line-height: 20px; }
  .accordian-heading.open {
    margin-bottom: 0px !important; }
    .accordian-heading.open:before {
      content: "\f068"; }
  .accordian-heading:hover {
    cursor: pointer; }

.accordian-content {
  padding: 8px 24px 20px 36px;
  font-size: 1.125rem;
  margin-bottom: 10px;
  /*
  h1 h2, h3, h4, h5, h6 {
    font-weight: 300;
    font-size: 1.125rem !important;
    b, strong {
      font-weight: 300;
      font-size: 1.125rem !important;
    }
  }
  */ }
  .accordian-content.open {
    margin-bottom: 10px; }
  .accordian-content .first_element {
    margin-top: 0px !important; }
  .accordian-content p:last-child {
    margin-bottom: 0px !important; }
  .accordian-content img {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }

.col-md-6 .accordian-heading,
.col-md-6 .accordian-content {
  width: 98%; }
.col-md-6:nth-child(2n) .accordian-heading,
.col-md-6:nth-child(2n) .accordian-content {
  margin-left: 2%; }

@media only screen and (max-width: 991px) {
  .col-md-6 .accordian-heading,
  .col-md-6 .accordian-content {
    width: 100%; }
  .col-md-6:nth-child(2n) .accordian-heading,
  .col-md-6:nth-child(2n) .accordian-content {
    margin-left: 0%; } }
/* TABS LAYOUT */
.tabs-layout-container {
  padding: 80px 0px 100px 0px; }
  .tabs-layout-container .tabs-wrapper {
    position: relative;
    padding: 0px !important;
    margin: 20px 0px 0px 0px !important;
    list-style: none;
    background: #F7F7F7;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
    .tabs-layout-container .tabs-wrapper li {
      position: static !important;
      display: inline-block;
      vertical-align: top;
      width: 100%;
      font-size: 0px;
      margin-right: 0px;
      margin-bottom: 0px; }
      .tabs-layout-container .tabs-wrapper li:before {
        display: none !important; }
      .tabs-layout-container .tabs-wrapper li .tab_title {
        position: relative;
        display: inline-block;
        background: #F3F3F3;
        top: 0px;
        left: 0px;
        width: 24%;
        padding: 16px 24px;
        color: #40657E;
        font-size: 1.1875rem;
        font-weight: 300;
        line-height: 110%;
        cursor: pointer;
        border-bottom: solid 1px #E4E4E4;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -spec-transition: background 0.3s ease;
        transition: background 0.3s ease; }
        .tabs-layout-container .tabs-wrapper li .tab_title:hover {
          background: #E4E4E4; }
      .tabs-layout-container .tabs-wrapper li .tab_content {
        position: absolute;
        opacity: 0;
        display: inline-block;
        width: 76%;
        top: 0px;
        left: 24%;
        background: #FFFFFF;
        overflow: hidden;
        font-size: 0px;
        z-index: 2;
        border-left: solid 1px #E4E4E4; }
        .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text {
          display: inline-block;
          vertical-align: top;
          width: 50%;
          padding: 16px 30px;
          font-size: 1rem; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text img {
            -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
            -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text .first_element {
            margin-top: 0px; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul,
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol {
            margin-top: -16px !important;
            list-style: disc; }
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul.first_element,
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol.first_element {
              margin-top: 0px !important; }
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul li,
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol li {
              position: relative !important;
              display: list-item; }
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul li:before,
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol li:before {
                display: block !important; }
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul li ul, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ul li ol,
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol li ul,
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text ol li ol {
                margin-top: 0px !important; }
        .tabs-layout-container .tabs-wrapper li .tab_content.text_text .tab_content_text {
          padding: 16px 30px 16px 15px; }
          .tabs-layout-container .tabs-wrapper li .tab_content.text_text .tab_content_text:first-child {
            padding: 16px 15px 16px 30px; }
        .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image {
          position: relative;
          display: inline-block;
          vertical-align: top;
          width: 50%;
          max-height: 500px; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image img {
            width: 100%;
            max-width: 100%;
            height: auto; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image:after {
            left: 0px;
            top: 30px;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border-left-color: #ffffff;
            border-width: 30px;
            margin-top: 15px; }
        .tabs-layout-container .tabs-wrapper li .tab_content.image-left .tab_content_image:after {
          border-left-color: transparent;
          border-right-color: #FFFFFF;
          left: auto;
          right: 0px; }
        .tabs-layout-container .tabs-wrapper li .tab_content.no-image .tab_content_text {
          width: 100%; }
      .tabs-layout-container .tabs-wrapper li.active .tab_title {
        background: #FFFFFF;
        cursor: auto; }
        .tabs-layout-container .tabs-wrapper li.active .tab_title:after {
          position: absolute;
          content: " ";
          top: 0px;
          left: 100%;
          width: 2px;
          height: 100%;
          background: #FFFFFF;
          z-index: 4; }
      .tabs-layout-container .tabs-wrapper li.active .tab_content {
        z-index: 3; }
      .tabs-layout-container .tabs-wrapper li:after {
        content: " ";
        display: block;
        clear: both;
        width: 100%; }

@media only screen and (max-width: 991px) {
  .tabs-layout-container {
    padding: 30px 0px 30px 0px; }
    .tabs-layout-container .tabs-wrapper {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      background: transparent; }
      .tabs-layout-container .tabs-wrapper[style] {
        height: auto !important; }
      .tabs-layout-container .tabs-wrapper li {
        display: block;
        margin-right: 0px;
        margin-bottom: 0px;
        width: 100%;
        max-width: 100%; }
        .tabs-layout-container .tabs-wrapper li .tab_title {
          top: 0px;
          left: 0px;
          width: 100%;
          cursor: auto;
          border-bottom: 0px;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          margin-bottom: 10px;
          padding: 3px 20px 3px 36px;
          color: #414141;
          font-size: 1.1875rem !important;
          line-height: 22px !important;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .tabs-layout-container .tabs-wrapper li .tab_title:before {
            position: absolute;
            margin-top: 1px;
            margin-left: -32px;
            content: "\f067";
            font-family: "FontAwesome";
            width: 20px;
            height: 20px;
            background: #40657E;
            color: #FFFFFF;
            text-align: center;
            font-size: 10px;
            line-height: 20px; }
          .tabs-layout-container .tabs-wrapper li .tab_title:hover {
            cursor: pointer; }
        .tabs-layout-container .tabs-wrapper li .tab_content {
          position: relative;
          width: 100%;
          top: 0px;
          left: 0px;
          margin-top: 0px;
          margin-bottom: 10px;
          border-left: 0px;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          padding: 8px 24px 0px 36px;
          font-size: 1rem; }
          .tabs-layout-container .tabs-wrapper li .tab_content p:last-child {
            margin-bottom: 0px !important; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text {
            padding: 0px 0px 20px 0px;
            width: 100%; }
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h1 h2, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h3, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h4, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h5, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h6 {
              font-weight: 300;
              font-size: 1.125rem !important; }
              .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h1 h2 b, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h1 h2 strong, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h3 b, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h3 strong, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h4 b, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h4 strong, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h5 b, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h5 strong, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h6 b, .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text h6 strong {
                font-weight: 300;
                font-size: 1.125rem !important; }
          .tabs-layout-container .tabs-wrapper li .tab_content.text_text .tab_content_text,
          .tabs-layout-container .tabs-wrapper li .tab_content.text_text .tab_content_text:first-child {
            padding: 0px 0px 20px 0px; }
          .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image {
            padding: 0px 0px 0px 0px;
            max-height: none; }
            .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image:after {
              display: none; }
        .tabs-layout-container .tabs-wrapper li.active .tab_title {
          margin-bottom: 0px; }
          .tabs-layout-container .tabs-wrapper li.active .tab_title:before {
            content: "\f068"; }
          .tabs-layout-container .tabs-wrapper li.active .tab_title:hover {
            cursor: pointer; }
        .tabs-layout-container .tabs-wrapper li.active .tab_content {
          margin-bottom: 10px; } }
@media only screen and (max-width: 767px) {
  .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text,
  .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image {
    width: 100%; }
    .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_text:after,
    .tabs-layout-container .tabs-wrapper li .tab_content .tab_content_image:after {
      display: none; } }
/* TWO COLUMNS WITH OR WITHOUT IMAGE */
.two-column-full-width-container {
  padding: 80px 0px 100px 0px; }
  .two-column-full-width-container img {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
  .two-column-full-width-container .first_element {
    margin-top: 0px; }
  .two-column-full-width-container .text_above {
    margin-bottom: 16px !important; }
  .two-column-full-width-container .col-md-2 .first_element,
  .two-column-full-width-container .col-md-4 .first_element,
  .two-column-full-width-container .col-md-5 .first_element,
  .two-column-full-width-container .col-md-6 .first_element {
    margin-top: 0px; }
  .two-column-full-width-container .col-md-2 .field-type-image,
  .two-column-full-width-container .col-md-4 .field-type-image,
  .two-column-full-width-container .col-md-5 .field-type-image,
  .two-column-full-width-container .col-md-6 .field-type-image {
    margin-top: 6px; }
  .two-column-full-width-container .col-md-2 p:last-child,
  .two-column-full-width-container .col-md-4 p:last-child,
  .two-column-full-width-container .col-md-5 p:last-child,
  .two-column-full-width-container .col-md-6 p:last-child {
    margin-bottom: 0px !important; }
  .two-column-full-width-container .col-md-2 img,
  .two-column-full-width-container .col-md-4 img,
  .two-column-full-width-container .col-md-5 img,
  .two-column-full-width-container .col-md-6 img {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
  .two-column-full-width-container .col-md-2 {
    text-align: left !important; }
    .two-column-full-width-container .col-md-2 * {
      text-align: left !important; }

@media only screen and (max-width: 991px) {
  .two-column-full-width-container {
    padding: 30px 0px 50px 0px; }
    .two-column-full-width-container .col-md-4,
    .two-column-full-width-container .col-md-6 {
      margin-bottom: 20px;
      clear: both; } }
/* SLIDE SHOW CONTENT TYPE */
.slide-show-container {
  padding: 80px 0px 100px 0px; }
  .slide-show-container .slide-show {
    margin-top: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3); }
    .slide-show-container .slide-show .slide-show-slide {
      display: none;
      position: relative;
      font-size: 0px; }
      .slide-show-container .slide-show .slide-show-slide .slide-show-text {
        display: inline-block;
        text-align: justify;
        vertical-align: top;
        width: 50%;
        box-sizing: border-box;
        padding: 30px 30px 60px 30px;
        font-size: 1rem; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-text .first_element {
          margin-top: 0px !important; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-text p:last-child {
          margin-bottom: 0px !important; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-text.full_width {
          width: 100%; }
      .slide-show-container .slide-show .slide-show-slide .slide-show-image {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 50%; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-image img {
          width: 100%;
          height: auto;
          margin-bottom: 0px !important; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-image:after {
          left: 0px;
          top: 30px;
          border: solid transparent;
          content: " ";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          border-color: rgba(255, 255, 255, 0);
          border-left-color: #ffffff;
          border-width: 30px;
          margin-top: 15px; }
    .slide-show-container .slide-show .slick-list[style] {
      padding: 0px !important; }
  .slide-show-container .slick-dotted.slick-slider {
    margin-bottom: 0px; }
  .slide-show-container .slick-dots {
    padding: 0px !important;
    margin: 0px !important;
    padding: 0px 0px 0px 30px !important;
    bottom: 30px;
    text-align: left; }
    .slide-show-container .slick-dots li {
      width: 16px;
      height: 16px;
      /*
          button {
            width: 14px;
            height: 14px;
            &:after {
              opacity: 1;
              width: 14px;
              height: 14px;
              content: " ";
              border-radius: 40px;
              background: transparent;
              border: solid 2px $blue;
              @include transition(all 0.3s ease);
            }
            &:hover {
              &:after {
                background: rgba($blue, 0.8) !important;
              }
            }
          }
          &.slick-active {
            button {
              &:after {
                background: $blue;
              }
            }
          }
      */ }
      .slide-show-container .slick-dots li:before {
        display: none !important; }
      .slide-show-container .slick-dots li button {
        border-radius: 100px;
        color: #000;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .slide-show-container .slick-dots li button:before {
          position: absolute;
          top: 0px;
          left: -2px;
          width: 22px;
          height: 22px;
          content: " ";
          border-radius: 40px;
          border: solid 1px transparent;
          background: transparent;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .slide-show-container .slick-dots li button:after {
          position: absolute;
          top: 4px;
          right: 0px;
          width: 14px;
          height: 14px;
          content: " ";
          border-radius: 40px;
          border: solid 1px rgba(255, 255, 255, 0.5);
          background: rgba(47, 74, 91, 0.6);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .slide-show-container .slick-dots li button:hover:after {
          background: #2f4a5b; }
      .slide-show-container .slick-dots li.slick-active button:before {
        border: solid 1px #68A2BA; }
      .slide-show-container .slick-dots li.slick-active button:after {
        background: #2f4a5b; }
  .slide-show-container .action-links,
  .slide-show-container .field-collection-view-links {
    display: none; }
  .slide-show-container .field-collection-container .field-items .field-item {
    margin-bottom: 0px; }

@media only screen and (max-width: 991px) {
  .slide-show-container {
    padding: 30px 0px 80px 0px; }
    .slide-show-container .slide-show {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
      .slide-show-container .slide-show .slide-show-slide .slide-show-text {
        width: 100%;
        padding: 0px 0px 10px 0px; }
      .slide-show-container .slide-show .slide-show-slide .slide-show-image {
        width: 100%; }
        .slide-show-container .slide-show .slide-show-slide .slide-show-image:after {
          display: none; }
    .slide-show-container .slick-dots {
      bottom: -30px; } }
@media only screen and (max-width: 767px) {
  .slide-show-container .slick-slider .slick-track[style] {
    width: auto !important; }
  .slide-show-container .slick-slider .slick-track .slick-slide {
    display: block;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px; }
    .slide-show-container .slick-slider .slick-track .slick-slide[style] {
      left: 0px !important;
      opacity: 1 !important; }
  .slide-show-container .slide-show {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  .slide-show-container .slick-dots[style] {
    display: none !important; }
  .slide-show-container .field-collection-container .field-items .field-item {
    margin-bottom: 20px; } }
/* GALLERY CONTENT TYPE */
.gallery-container {
  padding: 80px 0px 100px 0px; }
  .gallery-container .gallery-main {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3); }
    .gallery-container .gallery-main .slide-show-slide {
      display: none; }
    .gallery-container .gallery-main .slide-show-image img {
      margin: 0 auto !important; }
    .gallery-container .gallery-main .slide-show-text {
      position: absolute;
      bottom: 0px;
      left: 0px;
      width: 100%;
      box-sizing: border-box;
      padding: 12px 30px;
      background: rgba(47, 74, 91, 0.85);
      color: #FFFFFF;
      text-align: left; }
      .gallery-container .gallery-main .slide-show-text span {
        float: left;
        font-size: 1.125rem;
        line-height: 140%;
        padding-right: 10px;
        border-right: solid 1px rgba(255, 255, 255, 0.75);
        margin-right: 10px; }
      .gallery-container .gallery-main .slide-show-text p {
        margin-bottom: 12px !important; }
        .gallery-container .gallery-main .slide-show-text p:last-child {
          margin-bottom: 0px !important; }
  .gallery-container .gallery-nav .slide-show-slide {
    display: none; }
  .gallery-container .gallery-nav .slide-show-image {
    position: relative;
    height: 208px;
    overflow: hidden; }
    .gallery-container .gallery-nav .slide-show-image img {
      display: block;
      position: absolute;
      top: 0px;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -moz-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      -o-transform: translate(-50%, 0%);
      -spec-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%);
      width: auto;
      max-width: none !important;
      height: 100% !important;
      min-width: 100%;
      min-height: 100%;
      border: solid 0px #2F4A5B;
      -ms-interpolation-mode: bicubic;
      margin-bottom: 0px !important; }
    .gallery-container .gallery-nav .slide-show-image.portrait img {
      top: 50%;
      left: 0px;
      -webkit-transform: translate(0%, -50%);
      -moz-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      -o-transform: translate(0%, -50%);
      -spec-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
      width: 100% !important;
      height: auto !important; }
    .gallery-container .gallery-nav .slide-show-image:hover {
      cursor: pointer; }
  .gallery-container .gallery-nav .slide-show-text {
    display: none; }
  .gallery-container .gallery-nav .slick-list[style] {
    padding: 0px !important; }
  .gallery-container .gallery-nav .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
    border: solid 0px transparent;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -spec-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .gallery-container .gallery-nav .slick-slide .slide-show-image:before {
      content: " ";
      position: absolute;
      top: 0px;
      left: 0px;
      display: block;
      width: 100%;
      height: 100%;
      background: #000000;
      opacity: 0.35;
      z-index: 50;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .gallery-container .gallery-nav .slick-slide .slide-show-image:hover:before {
      opacity: 0; }
    .gallery-container .gallery-nav .slick-slide.slick-current {
      border: solid 0px #2F4A5B; }
      .gallery-container .gallery-nav .slick-slide.slick-current .slide-show-image:before {
        opacity: 0; }
  .gallery-container .slick-arrow.slick-prev {
    left: -5px; }
    .gallery-container .slick-arrow.slick-prev:before {
      content: "\f053";
      padding-right: 2px; }
  .gallery-container .slick-arrow.slick-next {
    right: -5px; }
    .gallery-container .slick-arrow.slick-next:before {
      content: "\f054";
      padding-left: 2px; }
  .gallery-container .slick-arrow.slick-prev, .gallery-container .slick-arrow.slick-next {
    z-index: 1;
    background: #2F4A5B;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    line-height: 30px;
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .gallery-container .slick-arrow.slick-prev:before, .gallery-container .slick-arrow.slick-next:before {
      font-family: "FontAwesome";
      color: #FFFFFF;
      opacity: 1;
      font-size: 18px;
      line-height: 32px; }
    .gallery-container .slick-arrow.slick-prev:hover, .gallery-container .slick-arrow.slick-next:hover {
      opacity: 1; }
    .gallery-container .slick-arrow.slick-prev.slick-disabled[style], .gallery-container .slick-arrow.slick-next.slick-disabled[style] {
      display: none !important; }
  .gallery-container .slick-dots {
    padding: 0px !important;
    margin: 0px !important; }
    .gallery-container .slick-dots li {
      width: 16px;
      height: 16px;
      /*
          button {
            width: 14px;
            height: 14px;
            &:after {
              opacity: 1;
              width: 14px;
              height: 14px;
              content: " ";
              border-radius: 40px;
              background: transparent;
              border: solid 2px $blue;
              @include transition(all 0.3s ease);
            }
            &:hover {
              &:after {
                background: rgba($blue, 0.8) !important;
              }
            }
          }
          &.slick-active {
            button {
              &:after {
                background: $blue;
              }
            }
          }
      */ }
      .gallery-container .slick-dots li:before {
        display: none !important; }
      .gallery-container .slick-dots li button {
        border-radius: 100px;
        color: #000;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -spec-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .gallery-container .slick-dots li button:before {
          position: absolute;
          top: 0px;
          left: -2px;
          width: 22px;
          height: 22px;
          content: " ";
          border-radius: 40px;
          border: solid 1px transparent;
          background: transparent;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .gallery-container .slick-dots li button:after {
          position: absolute;
          top: 4px;
          right: 0px;
          width: 14px;
          height: 14px;
          content: " ";
          border-radius: 40px;
          border: solid 1px rgba(255, 255, 255, 0.5);
          background: rgba(47, 74, 91, 0.6);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .gallery-container .slick-dots li button:hover:after {
          background: #2f4a5b; }
      .gallery-container .slick-dots li.slick-active button:before {
        border: solid 1px #68A2BA; }
      .gallery-container .slick-dots li.slick-active button:after {
        background: #2f4a5b; }
  .gallery-container .action-links,
  .gallery-container .field-collection-view-links {
    display: none; }
  .gallery-container .field-collection-container .field-items .field-item {
    margin-bottom: 0px; }

@media only screen and (max-width: 1200px) {
  .gallery-container .gallery-nav .slide-show-image {
    height: 168px; } }
@media only screen and (max-width: 991px) {
  .gallery-container {
    padding: 30px 0px 30px 0px; }
    .gallery-container .gallery-main .slide-show-image img {
      width: 100%;
      height: auto; }
    .gallery-container .gallery-nav .slide-show-image {
      height: 150px; } }
@media only screen and (max-width: 667px) {
  .gallery-container .gallery-nav .slide-show-image {
    height: auto; }
    .gallery-container .gallery-nav .slide-show-image img {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      width: 100%;
      height: auto !important;
      min-width: 0px;
      min-height: 0px; } }
/* TEXT AND FULL WIDTH IMAGE */
.text-with-wide-image-background-container {
  position: relative; }
  .text-with-wide-image-background-container.image-overlaid .wide-image {
    display: none; }
  .text-with-wide-image-background-container.image-overlaid .background-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 450px;
    background-position: top center;
    background-size: cover;
    z-index: 0; }
  .text-with-wide-image-background-container.image-overlaid .content {
    position: relative;
    margin-top: 240px;
    margin-bottom: 30px;
    padding: 36px 40px 36px 40px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.2);
    z-index: 1; }
    .text-with-wide-image-background-container.image-overlaid .content img {
      -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
    .text-with-wide-image-background-container.image-overlaid .content .first_element {
      margin-top: 0px; }
  .text-with-wide-image-background-container.image-separate .background-image {
    display: none; }
  .text-with-wide-image-background-container.image-separate .wide-image img {
    width: 100%;
    height: auto; }
  .text-with-wide-image-background-container.image-separate .content {
    padding: 30px 0px 30px 0px; }

@media only screen and (max-width: 767px) {
  .text-with-wide-image-background-container.image-overlaid .background-image, .text-with-wide-image-background-container.image-separate .background-image {
    display: none; }
  .text-with-wide-image-background-container.image-overlaid .wide-image, .text-with-wide-image-background-container.image-separate .wide-image {
    display: block; }
    .text-with-wide-image-background-container.image-overlaid .wide-image img, .text-with-wide-image-background-container.image-separate .wide-image img {
      width: 100%;
      height: auto; }
  .text-with-wide-image-background-container.image-overlaid .content, .text-with-wide-image-background-container.image-separate .content {
    margin-top: 0px;
    padding: 20px 0px 10px 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; } }
/* CHART TABLE */
.chart-table-container .chart-table-block .chart-toggle {
  margin-bottom: 20px;
  text-align: right; }
  .chart-table-container .chart-table-block .chart-toggle span.unshown {
    display: none; }
.chart-table-container .chart-table-block .chart-table-wrapper .chart-title {
  font-size: 1.25rem;
  color: #2F4A5B;
  margin-bottom: 12px; }
.chart-table-container .chart-table-block .chart-graphic-wrapper.chart-image img {
  max-width: 100%;
  height: auto; }
.chart-table-container .chart-table-block .chart-graphic-wrapper.chart-image .image_credit {
  text-align: center !important; }
.chart-table-container .chart-table-block .chart-graphic-wrapper .chart-canvas {
  background: #FFFFFF; }
  .chart-table-container .chart-table-block .chart-graphic-wrapper .chart-canvas.isPie {
    max-width: 500px;
    margin: 0 auto; }
  .chart-table-container .chart-table-block .chart-graphic-wrapper .chart-canvas.isGraph {
    max-width: 1000px;
    margin: 0 auto; }
.chart-table-container .chart-table-block .chart-footnote {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 120%; }
  .chart-table-container .chart-table-block .chart-footnote.forGraphic.isPie {
    max-width: 600px;
    margin: 12px auto 0 auto; }
  .chart-table-container .chart-table-block .chart-footnote.forGraphic.isGraph {
    max-width: 1000px;
    margin: 12px auto 0 auto; }

@media only screen and (max-width: 991px) {
  .chart-table-container .chart-table-block .chart-table-wrapper .chart-table {
    overflow-x: auto; } }
/* DECISION TREE ENQUIRY */
.decision-tree-enquiry-container .question {
  font-size: 1.375rem;
  color: #40657E;
  margin-bottom: 4px; }
  .decision-tree-enquiry-container .question.second {
    display: none; }
.decision-tree-enquiry-container .path_options ul {
  padding-left: 0px !important;
  list-style: none; }
  .decision-tree-enquiry-container .path_options ul li:before {
    display: none !important; }
  .decision-tree-enquiry-container .path_options ul li span {
    display: block;
    background: #FFFFFF;
    border-bottom: solid 2px #E4E4E4;
    font-size: 1.125rem;
    line-height: 120%;
    padding: 6px 10px 6px 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .decision-tree-enquiry-container .path_options ul li span:before {
      content: "\f00c";
      font-family: "FontAwesome";
      width: 18px;
      color: #CCCCCC;
      display: inline-block;
      position: relative;
      text-align: center;
      margin-right: 10px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .decision-tree-enquiry-container .path_options ul li span:hover {
      cursor: pointer;
      background: #F3F3F3; }
      .decision-tree-enquiry-container .path_options ul li span:hover:before {
        color: #8BB921; }
    .decision-tree-enquiry-container .path_options ul li span.active:before {
      color: #8BB921; }
    .decision-tree-enquiry-container .path_options ul li span.active:hover:before {
      content: "\f00d";
      color: #BB0000; }
.decision-tree-enquiry-container .path_option {
  display: none; }
  .decision-tree-enquiry-container .path_option .c-panel-heading {
    display: block;
    background: #FFFFFF;
    border-bottom: solid 2px #E4E4E4;
    font-size: 1.125rem;
    line-height: 120%;
    padding: 6px 10px 6px 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .decision-tree-enquiry-container .path_option .c-panel-heading:before {
      content: "\f00c";
      font-family: "FontAwesome";
      width: 18px;
      color: #CCCCCC;
      display: inline-block;
      position: relative;
      text-align: center;
      margin-right: 10px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .decision-tree-enquiry-container .path_option .c-panel-heading:hover {
      cursor: pointer;
      background: #F3F3F3; }
      .decision-tree-enquiry-container .path_option .c-panel-heading:hover:before {
        color: #8BB921; }
    .decision-tree-enquiry-container .path_option .c-panel-heading.active:before {
      color: #8BB921; }
    .decision-tree-enquiry-container .path_option .c-panel-heading.active:hover:before {
      content: "\f00d";
      color: #BB0000; }
  .decision-tree-enquiry-container .path_option .c-panel-content {
    display: none; }
  .decision-tree-enquiry-container .path_option.endpoint {
    margin-top: 16px; }
.decision-tree-enquiry-container .form_question {
  display: none;
  margin-bottom: 16px; }
  .decision-tree-enquiry-container .form_question .form_controls span {
    margin-right: 20px;
    display: block;
    background: #FFFFFF;
    border-bottom: solid 2px #E4E4E4;
    font-size: 1.125rem;
    line-height: 120%;
    padding: 6px 10px 6px 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -spec-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 16px; }
    .decision-tree-enquiry-container .form_question .form_controls span:before {
      content: "\f00c";
      font-family: "FontAwesome";
      width: 18px;
      color: #CCCCCC;
      display: inline-block;
      position: relative;
      text-align: center;
      margin-right: 10px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .decision-tree-enquiry-container .form_question .form_controls span:hover {
      cursor: pointer;
      background: #F3F3F3; }
      .decision-tree-enquiry-container .form_question .form_controls span:hover:before {
        color: #8BB921; }
    .decision-tree-enquiry-container .form_question .form_controls span.active:before {
      color: #8BB921; }
    .decision-tree-enquiry-container .form_question .form_controls span.active:hover:before {
      content: "\f00d";
      color: #BB0000; }
    .decision-tree-enquiry-container .form_question .form_controls span.yes:before, .decision-tree-enquiry-container .form_question .form_controls span.yes:hover:before {
      content: "\f00c"; }
    .decision-tree-enquiry-container .form_question .form_controls span.no:before, .decision-tree-enquiry-container .form_question .form_controls span.no:hover:before {
      content: "\f00d"; }
    .decision-tree-enquiry-container .form_question .form_controls span.no:hover:before {
      color: #BB0000; }
    .decision-tree-enquiry-container .form_question .form_controls span.yes.selected:before {
      color: #8BB921; }
    .decision-tree-enquiry-container .form_question .form_controls span.no.selected:before {
      color: #BB0000; }
.decision-tree-enquiry-container .form_container {
  display: none; }
.decision-tree-enquiry-container .form_noenquiry {
  display: none;
  font-size: 1.125rem; }

/* MULTI COLUMN LAYOUT */
.multi-column-layout-container .text_above {
  margin-bottom: 16px !important; }
.multi-column-layout-container .multi-column-section {
  margin-bottom: 16px; }
  .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items {
    font-size: 0px;
    margin-left: -15px;
    margin-right: -15px; }
    .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item {
      font-size: 1.125rem;
      margin-bottom: 0px;
      display: inline-block;
      vertical-align: top;
      box-sizing: border-box;
      padding-left: 15px;
      padding-right: 15px; }
      .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item .first_element {
        margin-top: 0px; }
      .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item p:last-child {
        margin-bottom: 0px; }
      .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item img {
        -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
      .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item .column-image {
        text-align: center; }
  .multi-column-layout-container .multi-column-section.cols-1 > .field-collection-container > .field-name-field-column > .field-items > .field-item {
    width: 100%; }
  .multi-column-layout-container .multi-column-section.cols-2 > .field-collection-container > .field-name-field-column > .field-items > .field-item {
    width: 50%; }
    .multi-column-layout-container .multi-column-section.cols-2 > .field-collection-container > .field-name-field-column > .field-items > .field-item:nth-child(2n+1) {
      clear: both; }
  .multi-column-layout-container .multi-column-section.cols-3 > .field-collection-container > .field-name-field-column > .field-items > .field-item {
    width: 33.33%; }
    .multi-column-layout-container .multi-column-section.cols-3 > .field-collection-container > .field-name-field-column > .field-items > .field-item:nth-child(3n+1) {
      clear: both; }
  .multi-column-layout-container .multi-column-section.cols-4 > .field-collection-container > .field-name-field-column > .field-items > .field-item {
    width: 25%; }
    .multi-column-layout-container .multi-column-section.cols-4 > .field-collection-container > .field-name-field-column > .field-items > .field-item:nth-child(4n+1) {
      clear: both; }
  .multi-column-layout-container .multi-column-section.cols-5 > .field-collection-container > .field-name-field-column > .field-items > .field-item {
    width: 20%; }
    .multi-column-layout-container .multi-column-section.cols-5 > .field-collection-container > .field-name-field-column > .field-items > .field-item:nth-child(5n+1) {
      clear: both; }

@media only screen and (max-width: 991px) {
  .multi-column-layout-container .multi-column-section {
    margin-bottom: 0px; }
    .multi-column-layout-container .multi-column-section > .field-collection-container > .field-name-field-column > .field-items > .field-item {
      width: 100% !important;
      margin-bottom: 16px; } }
/* POD LAYOUT */
.pod-layout-container .text_above {
  margin-bottom: 16px !important; }

.pod-items-container .field-name-field-pod > .field-items {
  font-size: 0px; }
  .pod-items-container .field-name-field-pod > .field-items > .field-item {
    display: inline-block;
    vertical-align: top;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 20px;
    font-size: 1rem; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(4n) {
      margin-right: 0px; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(4n+1) {
      clear: both; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item a {
      display: block;
      -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -spec-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .pod-items-container .field-name-field-pod > .field-items > .field-item a:before, .pod-items-container .field-name-field-pod > .field-items > .field-item a:after {
        display: none !important; }
      .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image {
        position: relative;
        display: block;
        overflow: hidden; }
        .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image:before {
          content: " ";
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          opacity: 0;
          z-index: 3;
          background: rgba(255, 255, 255, 0.5);
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image img {
          box-sizing: border-box;
          width: 100%;
          height: auto;
          border: solid 1px #A7B8BC; }
        .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content {
          position: absolute;
          top: 100%;
          left: 0px;
          width: 100%;
          height: 100%;
          box-sizing: border-box;
          padding: 20px;
          display: block;
          color: #FFFFFF;
          background: rgba(64, 101, 126, 0.9);
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -spec-transition: all 0.5s ease;
          transition: all 0.5s ease;
          z-index: 4; }
      .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-title {
        display: table;
        width: 100%;
        padding: 12px 10px 14px 10px;
        text-align: center;
        background: #40657E;
        color: #FFFFFF;
        font-size: 1.25rem;
        line-height: 100%;
        text-decoration: none; }
      .pod-items-container .field-name-field-pod > .field-items > .field-item a:hover {
        -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3); }
        .pod-items-container .field-name-field-pod > .field-items > .field-item a:hover .quick-links-item-image .quick-links-item-content {
          top: 0%; }
        .pod-items-container .field-name-field-pod > .field-items > .field-item a:hover .quick-links-item-title {
          text-decoration: none; }
      .pod-items-container .field-name-field-pod > .field-items > .field-item a.other-hovered .quick-links-item-image:before {
        opacity: 1; }
.pod-items-container ul.field-collection-view-links {
  display: none; }
.pod-items-container ul.action-links {
  display: none; }

.pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item {
  width: 48%;
  margin-right: 4%; }
  .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(2n) {
    margin-right: 0px; }
  .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1) {
    clear: both; }
.pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item {
  width: 31.33%;
  margin-right: 3%; }
  .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n) {
    margin-right: 0px; }
  .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n+1) {
    clear: both; }
.pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item {
  width: 23.5%;
  margin-right: 2%; }
  .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n) {
    margin-right: 0px; }
  .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n+1) {
    clear: both; }

@media only screen and (max-width: 1200px) {
  .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content {
    line-height: 120%; } }
@media only screen and (max-width: 991px) {
  .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item {
    width: 48%;
    margin-right: 4%; }
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n) {
      margin-right: 4%; }
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n+1) {
      clear: none; }
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(2n) {
      margin-right: 0px; }
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1) {
      clear: both; }

  .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item {
    width: 48%;
    margin-right: 4%; }
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n) {
      margin-right: 4%; }
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n+1) {
      clear: none; }
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(2n) {
      margin-right: 0px; }
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1) {
      clear: both; }
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content {
      padding: 15px;
      font-size: 0.938rem; } }
@media only screen and (max-width: 667px) {
  .pod-items-container .field-name-field-pod > .field-items > .field-item,
  .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item,
  .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item,
  .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item {
    width: 100%;
    margin-right: 0%; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(4n),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(4n),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(4n),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n) {
      margin-right: 0%; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(4n+1),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(4n+1),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(4n+1),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(4n+1) {
      clear: none; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(3n),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(3n),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(3n) {
      margin-right: 0%; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(3n+1),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(3n+1),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(3n+1),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(3n+1) {
      clear: none; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(2n),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(2n),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(2n),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(2n) {
      margin-right: 0px; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item:nth-child(2n+1),
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1),
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1),
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item:nth-child(2n+1) {
      clear: none; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content,
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content,
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content,
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item a .quick-links-item-image .quick-links-item-content {
      display: none; }
    .pod-items-container .field-name-field-pod > .field-items > .field-item a:hover,
    .pod-items-container.per_row_2 .field-name-field-pod > .field-items > .field-item a:hover,
    .pod-items-container.per_row_3 .field-name-field-pod > .field-items > .field-item a:hover,
    .pod-items-container.per_row_4 .field-name-field-pod > .field-items > .field-item a:hover {
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; } }
/* GLOSSARY */
body.not-front #main-content .alphabet-sort {
  text-align: center; }
  body.not-front #main-content .alphabet-sort ul#glossary-links li {
    display: inline-block;
    vertical-align: top; }
    body.not-front #main-content .alphabet-sort ul#glossary-links li:before {
      display: none; }
    body.not-front #main-content .alphabet-sort ul#glossary-links li a,
    body.not-front #main-content .alphabet-sort ul#glossary-links li span {
      color: #414141;
      font-size: rem(14);
      margin: 0px 2px;
      padding: 2px 4px;
      background: transparent;
      text-transform: uppercase;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -spec-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      body.not-front #main-content .alphabet-sort ul#glossary-links li a.show-glossary,
      body.not-front #main-content .alphabet-sort ul#glossary-links li span.show-glossary {
        background: #d7d7d7;
        font-weight: 300; }
    body.not-front #main-content .alphabet-sort ul#glossary-links li a {
      text-decoration: none; }
      body.not-front #main-content .alphabet-sort ul#glossary-links li a.active, body.not-front #main-content .alphabet-sort ul#glossary-links li a.active:hover, body.not-front #main-content .alphabet-sort ul#glossary-links li a.active:focus {
        color: #FFFFFF;
        background: #40657E;
        cursor: default; }
      body.not-front #main-content .alphabet-sort ul#glossary-links li a:hover, body.not-front #main-content .alphabet-sort ul#glossary-links li a:focus {
        color: #FFFFFF;
        background: #2F4A5B;
        text-decoration: none; }
    body.not-front #main-content .alphabet-sort ul#glossary-links li span {
      color: #999999; }
body.not-front #main-content .view-glossary-page table .views-field-title {
  width: 25%; }
body.not-front #main-content .view-glossary-page table .views-field-body p,
body.not-front #main-content .view-glossary-page table .views-field-body p.larger_text {
  font-size: 1.125rem; }
body.not-front #main-content .view-glossary-page table td {
  vertical-align: top;
  line-height: 125%; }
  body.not-front #main-content .view-glossary-page table td p {
    line-height: 125%; }
  body.not-front #main-content .view-glossary-page table td ul li:before {
    margin-top: 0px; }
body.not-front #main-content .view-glossary-page table td :last-child {
  margin-bottom: 0px; }

@media only screen and (max-width: 667px) {
  body.not-front #main-content .alphabet-sort ul#glossary-links li a,
  body.not-front #main-content .alphabet-sort ul#glossary-links li span {
    font-size: rem(12); }
  body.not-front #main-content .view-glossary-page .table_wrapper {
    overflow-x: visible;
    background-image: none !important; }
    body.not-front #main-content .view-glossary-page .table_wrapper table .views-field-body p,
    body.not-front #main-content .view-glossary-page .table_wrapper table .views-field-body p.larger_text {
      font-size: 1rem; }
    body.not-front #main-content .view-glossary-page .table_wrapper table th,
    body.not-front #main-content .view-glossary-page .table_wrapper table td {
      display: block;
      width: 100%; }
      body.not-front #main-content .view-glossary-page .table_wrapper table th.views-field-field-acronym, body.not-front #main-content .view-glossary-page .table_wrapper table th.views-field-title,
      body.not-front #main-content .view-glossary-page .table_wrapper table td.views-field-field-acronym,
      body.not-front #main-content .view-glossary-page .table_wrapper table td.views-field-title {
        padding-bottom: 0px; }
      body.not-front #main-content .view-glossary-page .table_wrapper table th :last-child,
      body.not-front #main-content .view-glossary-page .table_wrapper table td :last-child {
        margin-bottom: 0px; } }
/* SECTIONS */
.section.first_on_page .node.first_in_section {
  padding: 0px;
  margin-top: 0px !important; }
  .section.first_on_page .node.first_in_section h2 {
    height: 0px;
    padding: 0px;
    margin: 0px;
    font-size: 0px;
    line-height: 0px; }

.region.first_on_page .node.first_in_section {
  padding: 0px 0px 50px 0px;
  margin-top: 0px !important; }
  .region.first_on_page .node.first_in_section h2 {
    height: 0px;
    padding: 0px;
    margin: 0px;
    font-size: 0px;
    line-height: 0px; }

body:not(.node-type-page) #main-content:not(.with-sidenav) .region .node {
  padding: 0px; }

.section {
  padding: 50px 0px; }
  .section .page-container {
    width: 1170px;
    margin: 0 auto;
    padding: 0px 15px; }
  .section .basic-text-block-container,
  .section .text-and-image-container,
  .section .cards-container,
  .section .tabs-layout-container,
  .section .two-column-full-width-container,
  .section .slide-show-container,
  .section .gallery-container {
    padding: 0px;
    margin: 0px; }
  .section .text-with-wide-image-background-container {
    padding: 0px;
    margin: 40px 0px 30px 0px; }
    .section .text-with-wide-image-background-container.first_element {
      margin-top: -50px !important; }
    .section .text-with-wide-image-background-container.image-overlaid .content, .section .text-with-wide-image-background-container.image-separate .content {
      margin-bottom: 0px; }
    .section .text-with-wide-image-background-container.image-separate .content {
      padding: 30px 0px 30px 0px; }
    .section .text-with-wide-image-background-container.image-separate.first_element {
      margin-bottom: -50px !important; }
  .section:first-child {
    padding-top: 0px; }

@media only screen and (max-width: 991px) {
  .section {
    padding: 40px 0px; } }
@media only screen and (max-width: 667px) {
  .section {
    padding: 30px 0px; } }
@media only screen and (max-width: 1200px) {
  .section .page-container {
    width: 970px; } }
@media only screen and (max-width: 991px) {
  .section .page-container {
    width: 750px; } }
@media only screen and (max-width: 768px) {
  .section .page-container {
    width: 100%; } }
/* =========================================
6 - SECTION SPECIFIC STYLING
========================================= */
#main-content .block-nodeblock:nth-child(3n+1),
#main-content .section:nth-child(3n+1) {
  background: #FFFFFF; }
  #main-content .block-nodeblock:nth-child(3n+1) .accordian-heading, #main-content .block-nodeblock:nth-child(3n+1) .accordian-heading.open:hover, #main-content .block-nodeblock:nth-child(3n+1) .accordian-content,
  #main-content .section:nth-child(3n+1) .accordian-heading,
  #main-content .section:nth-child(3n+1) .accordian-heading.open:hover,
  #main-content .section:nth-child(3n+1) .accordian-content {
    background: #F3F3F3; }
  #main-content .block-nodeblock:nth-child(3n+1) .accordian-heading:hover,
  #main-content .section:nth-child(3n+1) .accordian-heading:hover {
    background: #E4E4E4; }
#main-content .block-nodeblock:nth-child(3n+2),
#main-content .section:nth-child(3n+2) {
  background: #F3F3F3; }
  #main-content .block-nodeblock:nth-child(3n+2) .accordian-heading, #main-content .block-nodeblock:nth-child(3n+2) .accordian-heading.open:hover, #main-content .block-nodeblock:nth-child(3n+2) .accordian-content,
  #main-content .section:nth-child(3n+2) .accordian-heading,
  #main-content .section:nth-child(3n+2) .accordian-heading.open:hover,
  #main-content .section:nth-child(3n+2) .accordian-content {
    background: #FFFFFF; }
  #main-content .block-nodeblock:nth-child(3n+2) .accordian-heading:hover,
  #main-content .section:nth-child(3n+2) .accordian-heading:hover {
    background: #E4E4E4; }
#main-content .block-nodeblock:nth-child(3n+3),
#main-content .section:nth-child(3n+3) {
  background: #E4E4E4; }
  #main-content .block-nodeblock:nth-child(3n+3) .accordian-heading, #main-content .block-nodeblock:nth-child(3n+3) .accordian-heading.open:hover, #main-content .block-nodeblock:nth-child(3n+3) .accordian-content,
  #main-content .section:nth-child(3n+3) .accordian-heading,
  #main-content .section:nth-child(3n+3) .accordian-heading.open:hover,
  #main-content .section:nth-child(3n+3) .accordian-content {
    background: #FFFFFF; }
  #main-content .block-nodeblock:nth-child(3n+3) .accordian-heading:hover,
  #main-content .section:nth-child(3n+3) .accordian-heading:hover {
    background: #F3F3F3; }

@media only screen and (max-width: 991px) {
  #main-content .block-nodeblock:nth-child(3n+1) .tabs-wrapper li .tab_title, #main-content .block-nodeblock:nth-child(3n+1) .tabs-wrapper li.active .tab_title, #main-content .block-nodeblock:nth-child(3n+1) .tabs-wrapper li .tab_content,
  #main-content .section:nth-child(3n+1) .tabs-wrapper li .tab_title,
  #main-content .section:nth-child(3n+1) .tabs-wrapper li.active .tab_title,
  #main-content .section:nth-child(3n+1) .tabs-wrapper li .tab_content {
    background: #F3F3F3; }
  #main-content .block-nodeblock:nth-child(3n+1) .tabs-wrapper li .tab_title:hover,
  #main-content .section:nth-child(3n+1) .tabs-wrapper li .tab_title:hover {
    background: #E4E4E4; }
  #main-content .block-nodeblock:nth-child(3n+2) .tabs-wrapper li .tab_title, #main-content .block-nodeblock:nth-child(3n+2) .tabs-wrapper li.active .tab_title, #main-content .block-nodeblock:nth-child(3n+2) .tabs-wrapper li .tab_content,
  #main-content .section:nth-child(3n+2) .tabs-wrapper li .tab_title,
  #main-content .section:nth-child(3n+2) .tabs-wrapper li.active .tab_title,
  #main-content .section:nth-child(3n+2) .tabs-wrapper li .tab_content {
    background: #FFFFFF; }
  #main-content .block-nodeblock:nth-child(3n+2) .tabs-wrapper li .tab_title:hover,
  #main-content .section:nth-child(3n+2) .tabs-wrapper li .tab_title:hover {
    background: #E4E4E4; }
  #main-content .block-nodeblock:nth-child(3n+3) .tabs-wrapper li .tab_title, #main-content .block-nodeblock:nth-child(3n+3) .tabs-wrapper li.active .tab_title, #main-content .block-nodeblock:nth-child(3n+3) .tabs-wrapper li .tab_content,
  #main-content .section:nth-child(3n+3) .tabs-wrapper li .tab_title,
  #main-content .section:nth-child(3n+3) .tabs-wrapper li.active .tab_title,
  #main-content .section:nth-child(3n+3) .tabs-wrapper li .tab_content {
    background: #FFFFFF; }
  #main-content .block-nodeblock:nth-child(3n+3) .tabs-wrapper li .tab_title:hover,
  #main-content .section:nth-child(3n+3) .tabs-wrapper li .tab_title:hover {
    background: #F3F3F3; } }
#site-map {
  margin-bottom: 50px; }
  #site-map h2 {
    display: none; }
  #site-map .site-map-box ul {
    margin-bottom: 8px !important;
    padding-left: 0px !important; }
    #site-map .site-map-box ul li.expanded,
    #site-map .site-map-box ul li.collapsed,
    #site-map .site-map-box ul li.leaf {
      list-style-image: none; }
    #site-map .site-map-box ul li {
      padding-bottom: 8px;
      border-bottom: solid 1px #E4E4E4;
      margin-bottom: 8px; }
      #site-map .site-map-box ul li:before {
        display: none !important; }
      #site-map .site-map-box ul li a {
        font-size: 1.5rem; }
    #site-map .site-map-box ul ul {
      padding-left: 20px !important;
      margin-top: 0px !important;
      margin-bottom: 8px !important; }
      #site-map .site-map-box ul ul li {
        padding-top: 3px;
        padding-bottom: 0px !important;
        border-bottom: 0px !important;
        margin-bottom: 0px !important; }
        #site-map .site-map-box ul ul li:before {
          display: block !important; }
        #site-map .site-map-box ul ul li a {
          font-size: 1.125rem; }
        #site-map .site-map-box ul ul li ul {
          padding-left: 20px !important;
          margin-top: 0px !important;
          margin-bottom: 2px !important; }
          #site-map .site-map-box ul ul li ul li {
            padding-top: 2px;
            padding-bottom: 0px !important;
            border-bottom: 0px !important;
            margin-bottom: 0px !important; }

#nominal-hours-wrapper .nominal-hours-search-wrapper {
  margin-bottom: 20px; }
  #nominal-hours-wrapper .nominal-hours-search-wrapper input {
    padding: 4px 10px;
    border: solid 1px #40657E; }
#nominal-hours-wrapper table#nominal-hours {
  width: 100%; }
  #nominal-hours-wrapper table#nominal-hours thead th {
    position: relative;
    padding: 5px 24px 5px 10px;
    box-sizing: border-box;
    font-size: 1.125rem;
    color: #FFFFFF;
    background: #2F4A5B;
    border-bottom: solid 3px #FFFFFF; }
    #nominal-hours-wrapper table#nominal-hours thead th:before, #nominal-hours-wrapper table#nominal-hours thead th:after {
      position: absolute;
      font-family: "FontAwesome";
      color: #E4E4E4;
      top: 50%;
      left: 60px;
      font-size: 12px;
      line-height: 8px; }
    #nominal-hours-wrapper table#nominal-hours thead th:before {
      content: "\f106";
      margin-top: -8px; }
    #nominal-hours-wrapper table#nominal-hours thead th:after {
      content: "\f107";
      margin-top: 0px; }
    #nominal-hours-wrapper table#nominal-hours thead th.headerSortDown:before {
      color: #FFFFFF; }
    #nominal-hours-wrapper table#nominal-hours thead th.headerSortDown:after {
      display: none; }
    #nominal-hours-wrapper table#nominal-hours thead th.headerSortUp:before {
      display: none; }
    #nominal-hours-wrapper table#nominal-hours thead th.headerSortUp:after {
      color: #FFFFFF; }
    #nominal-hours-wrapper table#nominal-hours thead th.title:before, #nominal-hours-wrapper table#nominal-hours thead th.title:after {
      left: 55px; }
    #nominal-hours-wrapper table#nominal-hours thead th.link:before, #nominal-hours-wrapper table#nominal-hours thead th.link:after {
      display: none; }
  #nominal-hours-wrapper table#nominal-hours tbody {
    border: 0px; }
    #nominal-hours-wrapper table#nominal-hours tbody tr {
      padding: 0px;
      border: 0px; }
      #nominal-hours-wrapper table#nominal-hours tbody tr:nth-child(2n+0) {
        background: #FFFFFF; }
      #nominal-hours-wrapper table#nominal-hours tbody tr:nth-child(2n+1) {
        background: #F3F3F3; }
      #nominal-hours-wrapper table#nominal-hours tbody tr td {
        padding: 7px 10px;
        box-sizing: border-box; }
        #nominal-hours-wrapper table#nominal-hours tbody tr td.active {
          background: transparent; }
        #nominal-hours-wrapper table#nominal-hours tbody tr td.code {
          width: 100px; }
        #nominal-hours-wrapper table#nominal-hours tbody tr td.title {
          width: auto; }
        #nominal-hours-wrapper table#nominal-hours tbody tr td.link {
          width: 160px;
          text-align: right; }
          #nominal-hours-wrapper table#nominal-hours tbody tr td.link a:before {
            display: none !important; }
      #nominal-hours-wrapper table#nominal-hours tbody tr.shown.shown-odd {
        background: #FFFFFF !important; }
      #nominal-hours-wrapper table#nominal-hours tbody tr.shown.shown-even {
        background: #F3F3F3 !important; }
      #nominal-hours-wrapper table#nominal-hours tbody tr.hidden {
        display: none; }
#nominal-hours-wrapper .no-results-found {
  display: none;
  margin-top: 10px;
  background: #F3F3F3;
  padding: 20px 0px;
  text-align: center;
  border: solid 2px #4D738A; }

@media only screen and (max-width: 667px) {
  #nominal-hours-wrapper table#nominal-hours {
    display: block; }
    #nominal-hours-wrapper table#nominal-hours thead {
      display: block; }
      #nominal-hours-wrapper table#nominal-hours thead tr {
        display: block; }
      #nominal-hours-wrapper table#nominal-hours thead th {
        float: left;
        display: inline-block; }
        #nominal-hours-wrapper table#nominal-hours thead th.code {
          width: 25%; }
        #nominal-hours-wrapper table#nominal-hours thead th.title {
          width: 75%; }
        #nominal-hours-wrapper table#nominal-hours thead th.link {
          display: none; }
    #nominal-hours-wrapper table#nominal-hours tbody {
      display: block; }
      #nominal-hours-wrapper table#nominal-hours tbody tr {
        display: block;
        font-size: 0px; }
        #nominal-hours-wrapper table#nominal-hours tbody tr td {
          padding: 4px 8px;
          font-size: 0.875rem; }
          #nominal-hours-wrapper table#nominal-hours tbody tr td.code {
            display: inline-block;
            vertical-align: top;
            width: 25%;
            line-height: 110%; }
          #nominal-hours-wrapper table#nominal-hours tbody tr td.title {
            display: inline-block;
            vertical-align: top;
            width: 75%;
            line-height: 110%; }
          #nominal-hours-wrapper table#nominal-hours tbody tr td.link {
            display: block;
            width: 100%;
            padding-top: 0px; } }
#teaching-products-wrapper {
  margin-bottom: 30px; }
  #teaching-products-wrapper .teaching-products-search-wrapper {
    margin-bottom: 20px; }
    #teaching-products-wrapper .teaching-products-search-wrapper input {
      padding: 4px 10px;
      border: solid 1px #40657E; }
  #teaching-products-wrapper table#teaching-products {
    width: 100%; }
    #teaching-products-wrapper table#teaching-products thead th {
      position: relative;
      padding: 5px 24px 5px 10px;
      box-sizing: border-box;
      font-size: 1.125rem;
      color: #FFFFFF;
      background: #2F4A5B;
      border-bottom: solid 3px #FFFFFF; }
      #teaching-products-wrapper table#teaching-products thead th:before, #teaching-products-wrapper table#teaching-products thead th:after {
        position: absolute;
        font-family: "FontAwesome";
        color: #E4E4E4;
        top: 50%;
        left: 60px;
        font-size: 12px;
        line-height: 8px; }
      #teaching-products-wrapper table#teaching-products thead th:before {
        content: "\f106";
        margin-top: -8px; }
      #teaching-products-wrapper table#teaching-products thead th:after {
        content: "\f107";
        margin-top: 0px; }
      #teaching-products-wrapper table#teaching-products thead th.headerSortDown:before {
        color: #FFFFFF; }
      #teaching-products-wrapper table#teaching-products thead th.headerSortDown:after {
        display: none; }
      #teaching-products-wrapper table#teaching-products thead th.headerSortUp:before {
        display: none; }
      #teaching-products-wrapper table#teaching-products thead th.headerSortUp:after {
        color: #FFFFFF; }
      #teaching-products-wrapper table#teaching-products thead th.title:before, #teaching-products-wrapper table#teaching-products thead th.title:after {
        left: 55px; }
      #teaching-products-wrapper table#teaching-products thead th.category:before, #teaching-products-wrapper table#teaching-products thead th.category:after {
        left: 85px; }
      #teaching-products-wrapper table#teaching-products thead th.link:before, #teaching-products-wrapper table#teaching-products thead th.link:after {
        display: none; }
    #teaching-products-wrapper table#teaching-products tbody {
      border: 0px; }
      #teaching-products-wrapper table#teaching-products tbody tr {
        padding: 0px;
        border: 0px; }
        #teaching-products-wrapper table#teaching-products tbody tr:nth-child(2n+0) {
          background: #FFFFFF; }
        #teaching-products-wrapper table#teaching-products tbody tr:nth-child(2n+1) {
          background: #F3F3F3; }
        #teaching-products-wrapper table#teaching-products tbody tr td {
          padding: 7px 10px;
          box-sizing: border-box; }
          #teaching-products-wrapper table#teaching-products tbody tr td.active {
            background: transparent; }
          #teaching-products-wrapper table#teaching-products tbody tr td.code {
            width: 100px; }
          #teaching-products-wrapper table#teaching-products tbody tr td.title {
            width: auto; }
          #teaching-products-wrapper table#teaching-products tbody tr td.category {
            width: auto; }
          #teaching-products-wrapper table#teaching-products tbody tr td.link {
            width: 168px;
            text-align: right; }
            #teaching-products-wrapper table#teaching-products tbody tr td.link a:before {
              display: none !important; }
        #teaching-products-wrapper table#teaching-products tbody tr.shown.shown-odd {
          background: #FFFFFF !important; }
        #teaching-products-wrapper table#teaching-products tbody tr.shown.shown-even {
          background: #F3F3F3 !important; }
        #teaching-products-wrapper table#teaching-products tbody tr.hidden {
          display: none; }
  #teaching-products-wrapper .no-results-found {
    display: none;
    margin-top: 10px;
    background: #F3F3F3;
    padding: 20px 0px;
    text-align: center;
    border: solid 2px #4D738A; }

@media only screen and (max-width: 667px) {
  #teaching-products-wrapper table#teaching-products {
    display: block; }
    #teaching-products-wrapper table#teaching-products thead {
      display: block; }
      #teaching-products-wrapper table#teaching-products thead tr {
        display: block; }
      #teaching-products-wrapper table#teaching-products thead th {
        float: left;
        display: inline-block; }
        #teaching-products-wrapper table#teaching-products thead th.code {
          width: 25%; }
        #teaching-products-wrapper table#teaching-products thead th.title {
          width: 75%; }
        #teaching-products-wrapper table#teaching-products thead th.category {
          display: none; }
        #teaching-products-wrapper table#teaching-products thead th.link {
          display: none; }
    #teaching-products-wrapper table#teaching-products tbody {
      display: block; }
      #teaching-products-wrapper table#teaching-products tbody tr {
        display: block;
        font-size: 0px; }
        #teaching-products-wrapper table#teaching-products tbody tr td {
          padding: 4px 8px;
          font-size: 0.875rem; }
          #teaching-products-wrapper table#teaching-products tbody tr td.code {
            display: inline-block;
            vertical-align: top;
            width: 25%;
            line-height: 110%; }
          #teaching-products-wrapper table#teaching-products tbody tr td.title {
            display: inline-block;
            vertical-align: top;
            width: 75%;
            line-height: 110%; }
          #teaching-products-wrapper table#teaching-products tbody tr td.category {
            display: none; }
          #teaching-products-wrapper table#teaching-products tbody tr td.link {
            display: block;
            width: 100%;
            padding-top: 0px; } }
/* =========================================
7 - FOOTER
========================================= */
.back-to-top-holder .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  background: #2F4A5B;
  border-radius: 4px;
  border: solid 1px #40657E;
  text-align: center;
  overflow: hidden;
  z-index: 1000;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -spec-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .back-to-top-holder .back-to-top:hover {
    opacity: 1; }
  .back-to-top-holder .back-to-top .icon {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1rem; }
    .back-to-top-holder .back-to-top .icon:before {
      content: " ";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-image: url(../images/arrow-up.svg);
      background-size: 100% 100%;
      background-repeat: no-repeat; }
  .back-to-top-holder .back-to-top .text {
    display: block;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase; }

@media only screen and (max-width: 667px) {
  .back-to-top-holder .back-to-top {
    bottom: 16px;
    right: 16px; } }
footer {
  background: #2F4A5B; }

.pre-footer {
  background: #2F4A5B;
  padding: 46px 0px 30px 0px; }
  .pre-footer .block-nodeblock {
    background: #2F4A5B !important; }
  .pre-footer .node-core-global-footer {
    padding: 0px !important; }
  .pre-footer h3 {
    color: #FFFFFF;
    font-family: Calibri, Arial, Tahoma, sans-serif;
    font-weight: 300;
    font-size: 2.35rem;
    margin: 0px 0px 12px 0px; }
  .pre-footer .footer-quick-clicks {
    font-size: 1rem;
    color: #FFFFFF; }
    .pre-footer .footer-quick-clicks p {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      margin: 0px 0px 16px 0px;
      line-height: 120%; }
    .pre-footer .footer-quick-clicks p + ul {
      margin-top: -16px; }
    .pre-footer .footer-quick-clicks ul {
      margin-top: 0px;
      margin-bottom: 16px;
      padding-left: 0px; }
      .pre-footer .footer-quick-clicks ul li {
        position: relative;
        list-style-type: none; }
        .pre-footer .footer-quick-clicks ul li a:before {
          font-size: 45%;
          margin-left: 0px;
          margin-top: 0.5rem;
          position: relative;
          display: inline-block;
          width: 11px;
          height: 10px;
          top: 1px;
          margin-right: 6px;
          content: " ";
          opacity: 0.8;
          background-image: url(../images/arrow-right.svg);
          background-size: 100% 100%;
          background-repeat: no-repeat;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -spec-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .pre-footer .footer-quick-clicks ul li a:hover:before {
          opacity: 1; }
    .pre-footer .footer-quick-clicks a {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      color: #B6C0C6; }
      .pre-footer .footer-quick-clicks a:hover {
        color: #FFFFFF; }
  .pre-footer .footer-social-media {
    font-size: 1rem;
    color: #FFFFFF; }
    .pre-footer .footer-social-media p {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      margin: 0px 0px 16px 0px;
      line-height: 120%; }
      .pre-footer .footer-social-media p a {
        font-family: Calibri, Arial, Tahoma, sans-serif;
        font-weight: 300;
        color: #B6C0C6; }
        .pre-footer .footer-social-media p a:hover {
          color: #FFFFFF; }
    .pre-footer .footer-social-media ul.social-media-list {
      padding: 20px 0;
      margin: 0px !important;
      list-style: none; }
      .pre-footer .footer-social-media ul.social-media-list li {
        display: inline-block; }
        .pre-footer .footer-social-media ul.social-media-list li a {
          display: block;
          line-height: 38px;
          width: 44px;
          height: 44px;
          overflow: hidden; }
          .pre-footer .footer-social-media ul.social-media-list li a:before {
            content: "\f00d";
            font-family: "FontAwesome";
            display: inline-block;
            position: relative;
            top: 4px;
            width: 38px;
            height: 38px;
            border-radius: 100px;
            background: #FFFFFF;
            text-align: center;
            line-height: 38px;
            font-size: 1.5rem;
            color: #2F4A5B;
            margin-right: 16px; }
          .pre-footer .footer-social-media ul.social-media-list li a.twitter:before {
            content: "\f099"; }
          .pre-footer .footer-social-media ul.social-media-list li a.facebook:before {
            content: "\f09a"; }
          .pre-footer .footer-social-media ul.social-media-list li a.linkedin:before {
            content: "\f0e1"; }
          .pre-footer .footer-social-media ul.social-media-list li a.youtube:before {
            content: "\f167"; }
          .pre-footer .footer-social-media ul.social-media-list li a.instagram:before {
            content: "\f16d"; }
          .pre-footer .footer-social-media ul.social-media-list li a:hover:before {
            text-decoration: none; }
          .pre-footer .footer-social-media ul.social-media-list li a:after {
            display: none; }
  .pre-footer .footer-contact-us {
    font-size: 1rem;
    color: #FFFFFF; }
    .pre-footer .footer-contact-us > div {
      position: relative;
      margin-bottom: 20px;
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      line-height: 120%; }
      .pre-footer .footer-contact-us > div:before {
        position: absolute;
        content: " ";
        display: inline-block;
        vertical-align: top;
        background-image: url("../images/icon-email.png");
        background-position: top left;
        background-repeat: no-repeat;
        width: 30px;
        height: 30px; }
      .pre-footer .footer-contact-us > div.address {
        margin-bottom: 0px; }
    .pre-footer .footer-contact-us .feedback:before {
      background-image: url("../images/icon-feedback.svg");
      background-position: 0px 8px;
      background-size: 91%; }
    .pre-footer .footer-contact-us .feedback p {
      display: inline-block;
      margin: 0px 0px 0px 40px !important;
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      max-width: 300px; }
      .pre-footer .footer-contact-us .feedback p a {
        font-family: Calibri, Arial, Tahoma, sans-serif;
        font-weight: 300;
        color: #B6C0C6;
        /*@include read_more_arrow();*/ }
        .pre-footer .footer-contact-us .feedback p a:hover {
          color: #FFFFFF; }
    .pre-footer .footer-contact-us .email:before {
      background-image: url("../images/icon-email.svg");
      background-position: 0px 2px;
      background-size: 80%; }
    .pre-footer .footer-contact-us .email a {
      color: #B6C0C6;
      margin: 0px 0px 0px 40px;
      line-height: 24px; }
      .pre-footer .footer-contact-us .email a:hover {
        color: #FFFFFF; }
    .pre-footer .footer-contact-us .postal-address:before {
      background-image: url("../images/icon-mail.svg");
      background-position: 0px 8px;
      background-size: 78%;
      height: 32px; }
    .pre-footer .footer-contact-us .postal-address p {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      display: inline-block;
      margin: 0px 0px 0px 40px !important; }
    .pre-footer .footer-contact-us .phone:before {
      background-image: url("../images/icon-phone.svg");
      background-position: 0px 0px;
      background-size: 71%; }
    .pre-footer .footer-contact-us .phone a {
      color: #B6C0C6;
      line-height: 24px;
      margin: 0px 0px 0px 40px; }
      .pre-footer .footer-contact-us .phone a:hover {
        color: #FFFFFF; }
    .pre-footer .footer-contact-us .location-address:before {
      background-image: url("../images/icon-location.svg");
      background-position: 0px 6px;
      background-size: 64%;
      height: 32px; }
    .pre-footer .footer-contact-us .location-address p {
      font-family: Calibri, Arial, Tahoma, sans-serif;
      font-weight: 300;
      display: inline-block;
      margin: 0px 0px 0px 40px !important; }

@media only screen and (max-width: 991px) {
  .pre-footer {
    padding: 30px 0px; }
    .pre-footer h3 {
      font-size: 1.78rem; }
    .pre-footer .footer-quick-clicks,
    .pre-footer .footer-social-media {
      margin-bottom: 30px; } }
