/* Scss Document */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Scss Document */
/*Serrated Edges*/
.form-container {
  width: 100%;
  margin-top: 0;
}
.form-container label {
  font-weight: 400;
}
.form-container input[type=text],
.form-container input[type=number],
.form-container input[type=email],
.form-container input[type=date],
.form-container input[type=phone] {
  border: 1px solid #0a253e;
  padding: 8px 15px;
  border-radius: 0;
  box-shadow: none;
  background: none;
  border-radius: 4px;
}
.form-container textarea {
  border: 1px solid #0a253e;
  padding: 8px 15px;
  border-radius: 0;
  box-shadow: none;
  background: none;
  border-radius: 4px;
}
.form-container select {
  border: 1px solid #0a253e;
  border-radius: 4px;
  width: 100%;
  padding: 6px 15px;
  position: relative;
  background: none;
  height: 39px;
}
.form-container select:after {
  content: "test";
  width: 20px;
  height: 20px;
  position: absolute;
}
@media (max-width: 767px) {
  .form-container select {
    margin-top: 10px;
  }
}
.form-container input[type=text]:focus,
.form-container input[type=number]:focus,
.form-container input[type=email]:focus,
.form-container input[type=date]:focus,
.form-container input[type=phone]:focus,
.form-container textarea:focus,
.form-container select:focus {
  border: 2px solid #007DC3;
  outline: 0;
  box-shadow: none;
}
.form-container .checkbox span,
.form-container .radio span {
  margin-left: 20px;
}
.form-container .checkbox,
.form-container .radio {
  float: left;
  clear: both;
}
.form-container .checkbox label {
  float: left;
  width: auto;
  margin-left: 5px;
}
.form-container .radio label {
  float: left;
  width: auto;
  margin-left: 5px;
}
.form-container .checkbox input,
.form-container .radio input {
  float: left;
  width: auto;
  margin: 4px 5px 0 0;
  left: 0;
}
.form-container button,
.form-container input[type=button],
.form-container input[type=reset],
.form-container input[type=submit],
.form-container .btn {
  background-color: #007DC3;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 16px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border: none;
  float: left;
  margin-top: 20px;
}
.form-container button:hover,
.form-container input[type=button]:hover,
.form-container input[type=reset]:hover,
.form-container input[type=submit]:hover,
.form-container .btn:hover {
  background-color: #0a253e;
}
.form-container .field-container {
  width: 100%;
  margin: 10px 0;
  float: left;
  clear: both;
}
.form-container .field-container.text-only p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.form-container .layout-label-right label {
  text-align: right;
}
.form-container .helper {
  width: 1 0%;
  font-size: smaller;
  padding-top: 5px;
  color: #0a253e;
  clear: left;
}
.form-container .name {
  margin-bottom: 10px;
}
.form-container #btn-submit,
.form-container .button {
  cursor: pointer;
  background-color: #007DC3;
  border-radius: 6px;
  box-shadow: none;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  margin: 0 auto;
  color: #fff;
}
.form-container #btn-submit.shown,
.form-container .button.shown {
  position: relative;
}
.form-container .col1-2 > label,
.form-container .col2-2 > label {
  display: block;
  float: none;
  margin-bottom: 5px;
  color: #0a253e;
}
.form-container fieldset {
  border: none;
  padding: 0;
  margin-top: 45px;
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: 24px;
  background-color: #CCC;
  padding: 10px 10px;
}

.divider hr {
  border: none;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ui-datepicker .ui-widget-header {
  background: #ffffff;
  color: #0a253e;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #ffffff;
  color: #0a253e;
  font-weight: 800;
}

.layout-two-col .field-container > label {
  display: block;
  float: none;
  margin-bottom: 5 px;
  color: #0a253e;
}

.form-control {
  border: 1px solid #0a253e;
  border-radius: 4px;
  box-shadow: none;
}

@media (min-width: 1025px) {
  .form-container .layout-label-right .field-container > label,
  .form-container .layout-label-left .field-container > label {
    float: left;
    width: 25%;
    margin-right: 5px;
  }
  .form-container .layout-label-right label {
    float: right;
  }
  .form-container .layout-label-right .field,
  .form-container .layout-label-left .field {
    float: left;
    width: 67%;
    margin-left: 5px;
  }
  .form-container .layout-label-right .action-buttons,
  .form-container .layout-label-left .action-buttons {
    margin-left: 25%;
    padding-left: 7px;
  }
  .form-container .layout-label-top label {
    float: left;
    width: 100%;
    margin-bottom: 5px;
  }
  .form-container .layout-label-top .field {
    float: left;
    width: 100%;
    margin-top: 5px;
  }
  .form-container input[type=text].small {
    width: 50%;
  }
  .form-container input[type=text].medium {
    width: 75%;
  }
  .form-container input[type=text].large {
    width: 95%;
  }
  .form-container textarea.small {
    width: 50%;
    height: 35px;
  }
  .form-container textarea.medium {
    width: 75%;
    height: 50px;
  }
  .form-container textarea.large {
    width: 95%;
    height: 75px;
  }
  .form-container select {
    width: 50%;
  }
  .form-container .name {
    float: left;
    width: 50%;
    margin: 0;
  }
  .form-container .name input[type=text] {
    width: 90%;
  }
  .form-container .col1-2,
  .form-container .col2-2 {
    float: left;
    width: 50%;
  }
  .form-container .col1-2 input[type=text],
  .form-container .col1-2 textarea,
  .form-container .col1-2 select,
  .form-container .col2-2 input[type=text],
  .form-container .col2-2 textarea,
  .form-container .col2-2 select {
    width: 90%;
  }
  .form-container .col1-2 select,
  .form-container .col2-2 select {
    width: 90%;
  }
}
@media (max-width: 1025px) {
  input[type=text], textarea, select {
    width: 100%;
    clear: both;
  }
  .col2-2 {
    clear: both;
  }
}
html {
  /* Prevent font scaling in landscape while allowing user zoom */
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

body {
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #007DC3;
}
a:hover {
  text-decoration: none;
}

b,
strong {
  font-weight: 800;
}

.force-wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -360px;
}

.push {
  height: 360px;
}

#header {
  background-color: #0a253e;
}
#header .top-bar {
  background-color: #007DC3;
  padding: 15px 20px;
  display: block;
  position: relative;
}
@media (max-width: 570px) {
  #header .top-bar {
    padding: 15px 0px;
  }
}
@media (max-width: 767px) {
  #header .top-bar {
    display: none;
  }
}
#header .top-menu {
  margin-top: 5px;
}
#header .top-menu a {
  color: #ffffff;
  font-size: 13px;
}
#header .top-menu a:after {
  content: " | ";
  padding: 0 6px;
}
#header .top-menu a:last-of-type:after {
  display: none;
}
#header .top-menu a:hover {
  color: #ffc72c;
}
#header .site-search {
  text-align: right;
  margin-top: 15px;
}
#header .site-search input {
  color: #0a253e;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
#header .site-search input:focus {
  border: 0;
  box-shadow: none;
  background-color: rgb(255, 255, 255);
}
#header .site-search input:-ms-input-placeholder {
  color: #0a253e;
}
#header .site-search input::placeholder {
  color: #0a253e;
}
#header .site-search input::-webkit-input-placeholder {
  color: #0a253e;
}
#header .site-search input::-moz-placeholder {
  color: #0a253e;
}
#header .site-search input:-ms-input-placeholder {
  color: #0a253e;
}
#header .site-search input:-moz-placeholder {
  color: #0a253e;
}
#header .main-bar {
  background-color: #0a253e;
  padding: 40px 20px;
}
#header .main-bar a {
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  #header .main-bar a {
    display: inline;
    text-align: left;
  }
}
#header .hero-img {
  overflow: hidden;
  height: 574px;
  width: 100%;
  margin-top: -50px;
}
#header .hero-img img {
  width: 100%;
  height: auto;
}

footer {
  background-color: #007DC3;
  color: #ffffff;
  padding: 30px;
  text-align: left;
  border-top: 10px solid #E7A615;
  position: relative;
}
@media (max-width: 991px) {
  footer {
    padding-bottom: 85px;
  }
}
footer .address {
  display: table-cell;
  vertical-align: middle;
  padding-top: 30px;
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  footer .address {
    text-align: center;
    width: 100%;
  }
  footer .address p {
    display: block;
    margin: 0 auto 10px;
    text-align: center;
  }
}
footer .icons {
  display: table-cell;
  vertical-align: middle;
  padding-top: 30px;
  font-size: 2.7rem;
  text-align: right;
}
@media (max-width: 767px) {
  footer .icons {
    text-align: center;
    display: block;
    width: 100%;
  }
  footer .icons .fa {
    float: none;
  }
}
footer .icons .fa {
  margin-left: 25px;
}
footer .bb {
  padding-bottom: 25px;
  border-bottom: 1px solid white;
}
footer .phone:before {
  font-family: "FontAwesome";
  content: "\f095";
  padding-right: 10px;
}
footer .external-link:before {
  font-family: "FontAwesome";
  content: "\f08e";
  padding-right: 10px;
}
footer .ftr-col {
  width: 20%;
  float: left;
  padding: 20px;
  text-align: left;
}
@media (max-width: 1199px) {
  footer .ftr-col {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:first-of-type {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:first-of-type img {
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:nth-of-type(2) {
    width: 50%;
  }
}
@media (max-width: 500px) {
  footer .ftr-col:nth-of-type(2) {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:nth-of-type(3) {
    width: 50%;
  }
}
@media (max-width: 500px) {
  footer .ftr-col:nth-of-type(3) {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:nth-of-type(4) {
    width: 50%;
  }
}
@media (max-width: 500px) {
  footer .ftr-col:nth-of-type(4) {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  footer .ftr-col:nth-of-type(5) {
    width: 50%;
  }
}
@media (max-width: 500px) {
  footer .ftr-col:nth-of-type(5) {
    width: 100%;
  }
}
footer .header {
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer ul li {
  padding-bottom: 10px;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ffc72c;
}
footer img {
  width: 100%;
  height: auto;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0;
}

.btn-neutral {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
  background: #CCC;
}

#alert-header {
  padding: 10px;
  text-align: center;
  width: 100%;
  background-color: #dc3545;
  z-index: 2001;
  color: white;
  text-decoration: underline;
}
#alert-header a {
  color: white;
  font-size: 16px;
}
#alert-header.sticky {
  position: fixed;
  top: 0;
}

#home #hero {
  min-height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}
@media (max-width: 650px) {
  #home #hero {
    min-height: auto;
  }
}
@media (max-width: 360px) {
  #home #hero {
    margin-top: 0px;
  }
}
#home #hero .hero-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  min-height: inherit;
  width: 100%;
}
#home #hero .hero-overlay .video-wrapper {
  padding-bottom: 56%;
  padding-top: 0;
  margin: 0 !important;
}
#home #hero .container {
  height: 100%;
}
#home #hero .content {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.fp-right #home #hero .content {
  width: 50%;
}
#home #hero span {
  font-size: 30px;
  color: #FFF;
  font-weight: 800;
}
@media (max-width: 513px) {
  #home #hero span {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  #home #hero span {
    font-size: 18px;
  }
}
#home #hero h1,
#home #hero h1 a {
  color: #FFF;
  font-size: 26px;
}
@media (max-width: 513px) {
  #home #hero h1,
  #home #hero h1 a {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  #home #hero h1,
  #home #hero h1 a {
    font-size: 16px;
  }
}
#home .welcome {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}
#home .welcome h2 {
  font-family: "Libre Baskerville", serif;
  color: #007DC3;
  border-bottom: 2px solid #007DC3;
  padding-bottom: 6px;
  margin-bottom: 50px;
  display: inline-block;
}
#home .welcome .top-seal {
  width: 166px;
  margin: 0 auto;
  display: block;
  margin-top: -80px;
  padding-bottom: 30px;
  z-index: 100;
}
#home .welcome .intro-links a {
  font-size: 18px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  background: #007DC3;
  padding: 10px;
  margin-bottom: 15px;
  border-bottom: 7px solid #E7A615;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale; /*background: none;*/
  overflow: hidden;
}
#home .welcome .intro-links a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: -1;
  -ms-transform: translateY(30px); /* IE 9 */
  -webkit-transform: translateY(30px); /* Chrome, Safari, Opera */
  transform: translateY(30px);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
#home .welcome .intro-links a:hover {
  color: #E7A615;
}
#home .welcome .intro-links a:hover:before {
  opacity: 1;
  background-color: #0a253e;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
#home .welcome figcaption {
  font-weight: 800;
  letter-spacing: 0px;
  border-bottom: 1px solid #000;
  padding: 5px 0px;
}
#home #universities .tab-bar {
  background: #e6e6e6;
  margin-bottom: 30px;
}
@media (max-width: 414px) {
  #home #universities .tab-bar {
    display: none;
  }
}
#home #universities .tab-bar .nav-tabs li {
  text-align: center;
  width: 20%;
}
#home #universities .tab-bar .nav-tabs li a {
  padding: 20px 0;
  border-radius: 0;
  border-width: 0 0 5px 1px;
  border-color: #CCC;
  margin: 0;
}
#home #universities .tab-bar .nav-tabs li:last-of-type a {
  border-right-width: 1px;
}
#home #universities .tab-bar .nav-tabs li img {
  width: auto;
  height: 40px;
}
@media (max-width: 992px) {
  #home #universities .tab-bar .nav-tabs li img {
    max-width: 114px;
    max-height: 27px;
  }
}
@media (max-width: 665px) {
  #home #universities .tab-bar .nav-tabs li img {
    max-width: 70px;
    max-height: 16px;
  }
}
#home #universities .tab-bar .nav-tabs .active a {
  border-bottom-color: #E7A615;
  background: #d9d9d9;
}
@media (max-width: 400px) {
  #home #universities .hiddensmall {
    display: none;
  }
}
@media (min-width: 401px) {
  #home #universities .hiddenbigger {
    display: none;
  }
}
#home #universities .university-links a {
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  padding: 6px;
  background: #E7A615;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}
#home #universities .university-links a:hover {
  background: #b88411;
}
#home #universities h3 {
  font-weight: 800;
  font-size: 36px;
  border-bottom: 2px solid #185996;
  margin-bottom: 22px;
}
#home #universities .row + .row {
  padding-top: 20px;
}
#home #social {
  background: url("/images/bkg-social.jpg") no-repeat center center;
  background-size: cover;
  border-top: 3px solid #ffc72c;
  margin-top: 50px;
  color: white;
  position: relative;
}
#home #social .hashtag {
  margin-top: 100px;
}
@media (max-width: 992px) {
  #home #social .hashtag {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  #home #social .hashtag {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  #home #social .hashtag {
    margin-top: 5px;
  }
}
#home #social .like {
  font-size: 30px;
  display: block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid white;
}
#home #social h3 {
  margin-bottom: 0;
}
#home #social h3 span {
  text-transform: uppercase;
  display: inline-block;
  padding: 5px;
  background: #007DC3;
}
#home #social .panel {
  background-color: hsla(180, 0%, 65%, 0.75);
  padding: 20px;
  margin-bottom: 0;
}
#home #social .wrapper {
  padding: 30px;
  text-align: center;
  font-size: 26px;
}
#home #social .text {
  color: #007DC3;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
}
#home #social .text span {
  font-weight: 800;
}
#home #social a.icon {
  display: inline-block;
  margin-right: 20px;
}
#home #social a.view-all {
  display: block;
  background-color: #E7A615;
  padding: 5px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}
#home #quick-links {
  border-top: 4px solid #ffc72c;
  overflow: hidden;
}
#home #quick-links a.quick-lnk {
  height: 292px;
  width: 33.3333%;
  float: left;
  position: relative;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 0.9;
  border-right: 3px solid #ffffff;
}
#home #quick-links a.quick-lnk:before {
  display: none !important;
}
#home #quick-links a.quick-lnk:after {
  display: none !important;
}
#home #quick-links a.quick-lnk .promo-bkg {
  height: 292px;
  display: table;
  background-size: cover;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
#home #quick-links a.quick-lnk .promo-bkg:first-child {
  width: 100%;
}
#home #quick-links a.quick-lnk .promo-bkg:nth-child(3) {
  width: 100%;
}
#home #quick-links a.quick-lnk .promo-bkg .promo-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  bottom: initial;
  left: 50%;
  width: 200px;
}
#home #quick-links a.quick-lnk .promo-bkg .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 38, 62, 0.24);
  display: block;
}
#home #quick-links a.quick-lnk .promo-bkg:hover .overlay {
  background: rgba(0, 38, 62, 0.74);
  display: block;
}
@media (max-width: 720px) {
  #home #quick-links a.quick-lnk {
    font-size: 21px;
    min-height: 214px;
  }
}
@media (max-width: 991px) {
  #home #quick-links a.quick-lnk {
    width: 100%;
    margin: 0;
    transform: skewX(0);
    min-height: 250px;
    border-bottom: 3px solid #ffffff;
  }
}
@media (max-width: 600px) {
  #home #quick-links a.quick-lnk {
    height: 220px;
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  #home #quick-links a.quick-lnk {
    height: 180px;
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  #home #quick-links a.quick-lnk {
    height: 140px;
    font-size: 14px;
  }
}
@media (max-width: 280px) {
  #home #quick-links a.quick-lnk {
    height: 140px;
    font-size: 14px;
    width: 100%;
  }
}
#home #quick-links a.quick-lnk:first-of-type .overlay {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
#home #quick-links a.quick-lnk:first-of-type .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: 0.25;
}
#home #quick-links a.quick-lnk:nth-of-type(2) .overlay {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
#home #quick-links a.quick-lnk:nth-of-type(2) .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: 0.25;
}
#home #quick-links a.quick-lnk:last-of-type {
  border: none;
}
#home #quick-links a.quick-lnk:last-of-type .overlay {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
#home #quick-links a.quick-lnk:last-of-type .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: 0.25;
}

#news-pod {
  position: relative;
  padding-bottom: 30px;
  padding-top: 0;
  margin-top: 0;
}
#news-pod h4 a {
  font-size: 20px;
  color: #0a253e;
  font-weight: 800;
  padding-bottom: 7px;
}
#news-pod .media {
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
#news-pod .media:last-of-type {
  border-bottom: none;
}
#news-pod .media .media-left {
  padding-right: 20px;
}
#news-pod a {
  display: block;
}
#news-pod .cropped-container {
  width: 150px;
  height: 113px;
  overflow: hidden;
}
#news-pod .cropped-container img {
  height: 100%;
  width: auto;
}
#news-pod .btn {
  position: absolute;
}

#events-pod {
  position: relative;
  padding-bottom: 30px;
}
#events-pod a {
  display: block;
}
#events-pod .event {
  display: block;
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCC;
  display: table;
  width: 100%;
}
#events-pod .event .date {
  display: inline-block;
  float: left;
  border: 2px solid #0a253e;
  padding: 4px;
  text-align: center;
  text-transform: uppercase;
  width: 60px;
}
#events-pod .event .date span {
  font-size: 25px;
  font-weight: 800;
  line-height: 100%;
  padding-top: 4px;
  display: block;
}
#events-pod .event .date:after {
  content: "";
  display: block;
  clear: both;
}
#events-pod .event .detail {
  font-size: 18px;
  font-weight: 800;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-left: 10px;
}
#events-pod .event .detail a {
  color: #0a253e;
  line-height: 115%;
  display: block;
}
#events-pod .event .detail:after {
  content: "";
  display: block;
  clear: both;
}
#events-pod .event:last-of-type {
  border-bottom: none;
}
#events-pod .btn {
  position: absolute;
}

#subhome .col-md-12 > .row {
  margin: 0;
}
#subhome #events-pod,
#subhome #news-pod {
  margin: 30px 0;
  width: 48%;
  position: relative;
  border: 1px solid #007DC3;
}
#subhome #events-pod .btn-event,
#subhome #news-pod .btn-event {
  position: absolute;
  bottom: 0;
}
#subhome #events-pod h3,
#subhome #news-pod h3 {
  color: #007DC3;
  font-size: 28px;
  margin: 0;
  padding: 0 0 20px;
}
#subhome #events-pod h4,
#subhome #news-pod h4 {
  font-size: 28px;
  letter-spacing: 0;
  margin: 0;
}
#subhome #events-pod h4 a:hover,
#subhome #news-pod h4 a:hover {
  color: #007DC3;
}
#subhome #events-pod .item > a,
#subhome #news-pod .item > a {
  font-weight: bold;
  color: #0a253e;
  line-height: 115%;
  letter-spacing: 0;
}
#subhome #events-pod .item > a:hover,
#subhome #news-pod .item > a:hover {
  color: #007DC3;
}
@media (max-width: 720px) {
  #subhome #events-pod,
  #subhome #news-pod {
    width: 100%;
    float: none;
  }
}
#subhome #events-pod {
  float: right;
}
#subhome #news-pod {
  float: left;
}
#subhome .content-wrap {
  padding: 20px;
}

blockquote.pull-quote {
  display: block;
  clear: both;
  margin: 40px;
  font-size: 20px;
  line-height: 1.5;
  color: #0a253e;
  padding: 30px;
  border-left: 4px solid #007DC3;
  position: relative;
  font-style: italic;
  background-color: #d4d4d4;
}
@media (max-width: 991px) {
  blockquote.pull-quote {
    margin: 40px 0;
  }
}
blockquote cite {
  display: block;
  clear: both;
  margin-top: 10px;
  font-style: normal;
}

.btn {
  border: none;
}

.btn-event {
  background-color: #007DC3;
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
}
.btn-event:hover {
  color: #ffffff;
  background-color: #0a253e;
}

.btn-callout {
  background-color: #007DC3;
  color: #ffffff;
  font-size: 18px;
  clear: both;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .btn-callout {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .btn-callout {
    font-size: 14px;
  }
}
.btn-callout:hover {
  background-color: #ffc72c;
}

.btn-priority {
  background: none;
  color: #ffc72c;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
  text-align: left;
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .btn-priority {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .btn-priority {
    width: 50%;
    float: left;
    padding-top: 0;
    font-size: 14px;
    margin-bottom: 3px;
    padding-bottom: 3px;
  }
}
.btn-priority:hover {
  color: #f8b600;
}
.btn-priority:hover:after {
  width: 600px;
  border-color: #f8b600;
}
@media (max-width: 991px) {
  .btn-priority:hover:after {
    display: none;
  }
}
.btn-priority:after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 2px;
  border-bottom: 2px solid #ffc72c;
  bottom: -2px;
  left: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .btn-priority:after {
    display: none;
  }
}

.topbtn {
  position: relative;
  top: 0px;
  display: inline-block;
  border: 1px solid #CCC;
  padding: 10px 20px;
  margin: 0px 0 20px 7px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
  float: right;
}
@media (max-width: 599px) {
  .topbtn {
    display: none;
  }
}
.topbtn:hover {
  background: #0a253e;
  color: #fff;
}

.cal-month-view {
  letter-spacing: 0;
}
.cal-month-view .cal-row-head {
  padding-top: 10px;
  border: solid 2px #ffffff;
}
.cal-month-view .cal-row-head .cal-cell {
  text-transform: uppercase;
  text-align: center;
  border-left: solid 1px #ffffff;
}
.cal-month-view .cal-row-head .cal-cell:first-child {
  border-left: none;
}
@media (min-width: 768px) {
  .cal-month-view .cal-row-head .cal-cell {
    text-align: left;
  }
}
.cal-month-view .cal-row-head .cal-cell-weekend {
  color: #0a253e;
}
.cal-month-view .cal-row-head .cal-cell-weekday {
  color: #007DC3;
}
.cal-month-view .cal-cell {
  padding: 10px;
  display: table-cell;
  box-sizing: border-box;
}
@media (max-width: 453px) {
  .cal-month-view .cal-cell {
    padding: 10px 0 0 10px;
  }
}
.cal-month-view .cal-row-fluid {
  width: 100%;
  display: table;
  margin: 0;
}
.cal-month-view .cal-cell-weekend {
  width: 9%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cal-month-view .cal-cell-weekend {
    width: 10%;
  }
}
.cal-month-view .cal-cell-weekday {
  width: 16.4%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cal-month-view .cal-cell-weekday {
    width: 16%;
  }
}
.cal-month-view .cal-month-box {
  border: solid 2px #0a253e;
  padding: 0;
  margin: 0;
}
.cal-month-view .cal-month-box .cal-row-fluid {
  border-top: solid 2px #0a253e;
}
.cal-month-view .cal-month-box .cal-row-fluid:first-child {
  border-top: none;
}
.cal-month-view .cal-month-box .cal-cell {
  border-left: solid 2px #0a253e;
}
.cal-month-view .cal-month-box .cal-cell:first-child {
  border-left: none;
}
.cal-month-view .cal-month-box .cal-cell-content {
  min-height: 100px;
  position: relative;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.cal-month-view .cal-month-box .cal-cell-date {
  font-size: 18px;
  font-weight: 700;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 767px) {
  .cal-month-view .cal-month-box .cal-cell-date {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .cal-month-view .cal-month-box .cal-cell-lunch {
    position: absolute;
    right: 0px;
    top: 0px;
  }
}
.cal-month-view .cal-month-box .cal-cell-lunch a {
  color: #0a253e;
  text-decoration: none;
}
.cal-month-view .cal-month-box .cal-cell-lunch a:hover {
  color: #007DC3;
}
.cal-month-view .cal-month-box .cal-cell-outmonth,
.cal-month-view .cal-month-box .cal-cell-weekend {
  background: #f2f1f3;
}
.cal-month-view .cal-month-box .cal-cell-outmonth:first-child,
.cal-month-view .cal-month-box .cal-cell-weekend:first-child {
  border-left: none;
}
.cal-month-view .cal-month-box .cal-cell-outmonth .cal-cell-date a,
.cal-month-view .cal-month-box .cal-cell-weekend .cal-cell-date a {
  color: #0a253e;
}
.cal-month-view .cal-month-box .cal-event {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  color: #413f42;
}
.cal-month-view .cal-month-box .cal-event:hover {
  color: #007DC3;
}
@media (max-width: 767px) {
  .cal-month-view .cal-month-box .cal-event {
    text-indent: -9999em;
    display: inline-block;
    background: #007DC3;
    width: 10px;
    height: 10px;
    overflow: hidden;
    border-radius: 5px;
    margin: 0px 4px 10px 0px;
  }
}
@media (max-width: 480px) {
  .cal-month-view .cal-month-box .cal-event {
    display: block;
    margin: 0px auto 10px;
  }
}
.cal-month-view .cal-month-box .cal-event-title {
  font-size: 14px;
  font-weight: 700;
}
.cal-month-view .cal-month-box .cal-event-time {
  color: #007DC3;
}
.cal-month-view .cal-month-box .cal-no-event {
  color: #0a253e;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cal-month-view .cal-month-box .cal-no-event {
    display: none;
  }
}

.center {
  margin: 0 auto;
  width: 270px;
}

.center-subr {
  margin: 0 auto;
  width: 300px;
}

.topbtnsmallres {
  position: relative;
  top: 0px;
  display: inline-block;
  border: 1px solid #CCC;
  padding: 10px 20px;
  margin: 0px 0 20px 7px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 800;
  float: none;
}
@media (min-width: 600px) {
  .topbtnsmallres {
    display: none;
  }
}
.topbtnsmallres:hover {
  background: #0a253e;
  color: #fff;
}

#calendar.wrapper {
  margin: 30px 0;
}
#calendar.wrapper.month-calendar {
  margin-top: 30px;
}
#calendar .topdays {
  margin-left: 0;
  margin-right: 0;
}
#calendar .topdays p {
  text-align: center;
}
@media (max-width: 767px) {
  #calendar .topdays {
    display: none;
  }
}
#calendar .day-col {
  height: 100%;
  padding: 15px;
  border-bottom: 1px solid #0a253e;
  border-right: 1px solid #0a253e;
  border-left: 1px solid #0a253e;
  min-height: 160px;
}
#calendar .day-col.active {
  background-color: #ffc72c;
}
#calendar .day-col .date {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #0a253e;
  position: static;
  text-align: left;
}
#calendar .day-col .day {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 26px;
  line-height: 0.8;
  color: #0a253e;
}
@media (min-width: 992px) {
  #calendar .no-marg {
    display: flex;
  }
}
#calendar .no-pad-top {
  padding-top: 0 !important;
}
#calendar .detail-wrapper {
  height: 100%;
  padding: 15px;
  border-bottom: 1px solid #0a253e;
  border-right: 1px solid #0a253e;
  min-height: 60px;
}
@media (max-width: 991px) {
  #calendar .detail-wrapper {
    border-left: 1px solid #0a253e;
  }
}
@media (max-width: 991px) {
  #calendar .detail-wrapper .month-wrapper {
    border-top: 1px solid #0a253e;
  }
}
#calendar .detail-wrapper .cal-month-wrapper {
  background-color: #e6e6e6;
}
#calendar .detail-wrapper .cal-month-wrapper .row {
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
}
@media (max-width: 991px) {
  #calendar .detail-wrapper .cal-month-wrapper .row {
    border-left: none;
  }
}
@media (max-width: 767px) {
  #calendar .detail-wrapper .cal-month-wrapper .row {
    border-bottom: none;
  }
}
#calendar .detail-wrapper .cal-month-wrapper .row.lastrow {
  border-bottom: none;
}
#calendar .detail-wrapper .cal-month-wrapper .row .cal-month-day {
  background: #fff;
  border-left: 1px solid #333;
  height: 100%;
  min-height: 185px;
  font-size: 16px;
  padding-top: 7px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #calendar .detail-wrapper .cal-month-wrapper .row .cal-month-day {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #calendar .detail-wrapper .cal-month-wrapper .row .cal-month-day {
    border-left: none;
    padding-bottom: 26px;
    min-height: 20px;
    border-bottom: 1px solid #333;
  }
}
#calendar .detail-wrapper .cal-month-wrapper .row .cal-month-day.last {
  border-right: 1px solid #333;
}
@media (max-width: 767px) {
  #calendar .detail-wrapper .cal-month-wrapper .row .cal-month-day.last {
    border-right: none;
  }
}
#calendar .detail-wrapper .cal-month-wrapper .row .weekendday {
  font-size: 16px;
  padding-top: 7px;
}
@media (max-width: 767px) {
  #calendar .detail-wrapper .cal-month-wrapper .row .weekendday {
    border-bottom: 1px solid #333;
    min-height: 30px;
  }
  #calendar .detail-wrapper .cal-month-wrapper .row .weekendday.latest {
    border-bottom: none;
  }
}
#calendar .detail-wrapper .cal-day-event-titlecol {
  font-weight: 800;
  line-height: normal;
  padding-bottom: 0.5em;
}
#calendar .detail-wrapper .day-wrapper .cal-day-event-wrapper {
  padding-bottom: 20px;
}
#calendar .detail-wrapper .day-wrapper .cal-day-event-wrapper .row {
  padding-bottom: 10px;
}
#calendar .event {
  padding: 10px 0;
  border-bottom: 1px solid #CCC;
}
#calendar .event .title {
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  display: block;
  padding-bottom: 10px;
}
#calendar .event .time {
  font-size: 18px;
  font-style: italic;
  line-height: 20px;
  display: block;
  padding-bottom: 15px;
}
#calendar .event .cal-btn {
  background-color: #007DC3;
  color: #ffffff;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 20px 0 0 auto;
  display: block;
  width: 140px;
  transition: all 0.3s ease;
  font-size: 16px;
  text-align: center;
}
#calendar .event .cal-btn:hover {
  background-color: #0a253e;
}
#calendar .event .reg-btn {
  background-color: #007DC3;
  color: #ffffff;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 20px 0 0 auto;
  display: block;
  width: 140px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 700;
}
#calendar .event .reg-btn:hover {
  background-color: #0a253e;
}
#calendar .event .details {
  margin-top: 30px;
}
#calendar .event:last-of-type {
  border: none;
}
#calendar .event .row {
  border-bottom: 1px solid #0a253e;
  border-top: 1px solid #0a253e;
  margin-top: 20px !important;
  display: block;
}
#calendar .event .row .there-was-time-now {
  border-right: 1px solid #0a253e;
}
@media (max-width: 767px) {
  #calendar .event .row .there-was-time-now {
    border-bottom: 1px solid #0a253e;
    border-right: 0;
  }
}
#calendar .event .row .categories {
  border-right: 1px solid #0a253e;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #calendar .event .row .categories {
    border-bottom: 1px solid #0a253e;
    border-right: 0;
  }
}
#calendar .event .row .col-sm-6 {
  padding: 15px;
  text-align: center;
}
#calendar .event .row .location a {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}
#calendar .event .row .website a {
  display: block;
}
#calendar .arrows {
  display: block;
  margin-top: 30px;
}
#calendar .arrows:after {
  content: "";
  display: block;
  clear: both;
}
#calendar .arrows .prev-month {
  width: 145px;
  float: left;
  text-align: center;
  border: 1px solid #CCC;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 454px) {
  #calendar .arrows .prev-month {
    width: 100%;
  }
}
#calendar .arrows .prev-month:hover {
  border-color: #0a253e;
}
#calendar .arrows .next-month {
  width: 145px;
  float: right;
  text-align: center;
  border: 1px solid #CCC;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 454px) {
  #calendar .arrows .next-month {
    width: 100%;
  }
}
#calendar .arrows .next-month:hover {
  border-color: #0a253e;
}
#calendar .weekend {
  background-color: #CCC;
}
#calendar .weekend .col-md-6:first-of-type {
  border-left: 1px solid #0a253e;
}
@media (max-width: 991px) {
  #calendar .weekend .col-md-6:first-of-type {
    border-right: none;
    border-left: none;
  }
}
#calendar .weekend .detail-wrapper {
  border-color: #0a253e;
}
#calendar .weekend .detail-wrapper.active {
  background-color: #ffc72c;
}
#calendar .weekend .detail-wrapper .date {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #0a253e;
}
#calendar .weekend .detail-wrapper .day {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  line-height: 0.8;
  color: #0a253e;
}
#calendar .weekend .detail-wrapper .event .time {
  color: #0a253e;
}
#calendar .weekend .detail-wrapper .event .location {
  color: #0a253e;
}
#calendar .back-btn {
  border: 1px solid #CCC;
  padding: 10px 20px;
  margin: -10px 0 20px auto;
  display: block;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
}
#calendar .back-btn:hover {
  border-color: #0a253e;
}
#calendar .row.first-line .day-col {
  border-top: 1px solid #0a253e;
}
#calendar .row.first-line .detail-wrapper {
  border-top: 1px solid #0a253e;
}
@media (max-width: 991px) {
  #calendar .row.first-line .detail-wrapper {
    border-top: 0px;
  }
}

#siteCredits {
  position: relative;
}
#siteCredits a {
  display: block;
  width: 118px;
  height: 21px;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  background: url(/images/btnSiteCredits.png) no-repeat;
}
@media (max-width: 991px) {
  #siteCredits a {
    right: 50%;
    margin-right: -9px;
  }
}
#siteCredits a:hover {
  background: url(/images/btnSiteCreditsO.png) no-repeat;
}
@media screen and (max-width: 415px) {
  #siteCredits {
    display: none;
  }
}

.fp-top {
  background-position: top center !important;
}

.fp-bottom {
  background-position: bottom center !important;
}

.fp-center {
  background-position: center !important;
}

.fp-left {
  background-position: left center !important;
}

.fp-right {
  background-position: right center !important;
}

@media (max-width: 767px) {
  .logo {
    width: 250px;
    margin: 0 auto;
  }
}
@media (max-width: 300px) {
  .logo {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .site-search {
    position: absolute;
    top: 28px;
    left: -7px;
    z-index: 1000000;
  }
}
@media (max-width: 300px) {
  .site-search {
    top: 24px;
  }
}

.navbar-form {
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0;
  position: relative;
}
@media (max-width: 767px) {
  .navbar-form {
    margin-right: 0;
    border: none;
    box-shadow: none;
    padding-bottom: 0;
  }
}
.navbar-form .form-control {
  height: 31px;
  width: 200px;
  padding-right: 50px;
  border-radius: 5px;
}
@media (max-width: 300px) {
  .navbar-form .form-control {
    width: 140px;
  }
}
@media (max-width: 570px) {
  .navbar-form .form-group {
    margin-bottom: 0;
  }
}
.navbar-form .btn {
  padding: 5px;
  background: none;
  position: absolute;
  top: 0;
  right: 4px;
  border: none;
}
@media (max-width: 767px) {
  .navbar-form .btn {
    top: 10px;
  }
}

.navbar {
  background-color: rgba(0, 38, 62, 0.75);
  border-bottom: 2px solid #0a253e;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
  border-radius: 0;
  z-index: 2000;
}
@media (max-width: 767px) {
  .navbar {
    background-color: rgb(0, 38, 62);
  }
}
.navbar .container-fluid {
  padding: 0;
}
@media (max-width: 767px) {
  .navbar .navbar-header {
    background-color: rgb(0, 38, 62);
  }
}
.navbar #primary-nav {
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .navbar #primary-nav {
    background-color: #0a253e;
    position: absolute;
    width: 100%;
    height: auto;
  }
}
.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
  margin: 0;
}
@media (min-width: 768px) {
  .navbar .navbar-nav {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav {
    width: 100%;
  }
}
.navbar .navbar-nav > li {
  position: inherit;
}
.navbar .navbar-nav > li > a {
  color: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 1170px) {
  .navbar .navbar-nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1000px) {
  .navbar .navbar-nav > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 920px) {
  .navbar .navbar-nav > li > a {
    font-size: 13px;
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 850px) {
  .navbar .navbar-nav > li > a {
    font-size: 12px;
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 800px) {
  .navbar .navbar-nav > li > a {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (min-width: 768px) and (max-width: 769px) {
  .navbar .navbar-nav > li > a {
    font-size: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
.navbar .navbar-nav > li > a:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #0a253e;
}
.navbar .navbar-nav > li > a:focus {
  color: #FFF;
}
.navbar .navbar-nav > li.dropdown {
  position: inherit;
  transition: all 0.3s ease;
}
.navbar .navbar-nav > li.dropdown.open {
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.navbar .navbar-nav > li.open a.dropdown-toggle {
  color: #0a253e;
  background-color: #ffffff;
}
.navbar .navbar-nav > li .dropdown-menu {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  top: 52px;
  height: 524px;
  background-color: rgba(10, 37, 62, 0.9);
  padding: 30px;
  border-top: 3px solid #fff;
}
@media (max-width: 991px) {
  .navbar .navbar-nav > li .dropdown-menu {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav > li .dropdown-menu {
    height: auto;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav > li .dropdown-menu .items-container {
    width: 100%;
    display: block;
    padding: 0;
  }
}
.navbar .navbar-collapse {
  text-align: center;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse {
    text-align: center;
  }
}
.navbar .callout-wrapper {
  width: 50%;
  float: left;
  padding: 30px;
  border-right: 1px solid #ffc72c;
}
@media (max-width: 991px) {
  .navbar .callout-wrapper {
    width: 100%;
    padding: 0;
    height: auto !important;
    border-right: 0;
    border-bottom: 1px solid #ffc72c;
  }
}
.navbar .callout-wrapper .title {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  font-size: 40px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 1199px) {
  .navbar .callout-wrapper .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .navbar .callout-wrapper .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.navbar .callout-wrapper .text {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .navbar .callout-wrapper .text {
    font-size: 14px;
  }
}
.navbar .submenu-wrapper {
  width: 50%;
  float: left;
  padding: 30px;
}
@media (max-width: 991px) {
  .navbar .submenu-wrapper {
    padding: 0;
    width: 100%;
    margin: 10px 0 0;
  }
}
.navbar .submenu-wrapper ul {
  display: block;
  width: 50%;
  float: left;
  padding-left: 0;
}
.navbar .submenu-wrapper ul:first-of-type {
  padding-right: 15px;
}
.navbar .submenu-wrapper ul:last-of-type {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .navbar .submenu-wrapper ul:last-of-type {
    padding-left: 0;
  }
}
.navbar .submenu-wrapper ul li {
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .navbar .submenu-wrapper ul li {
    margin-bottom: 9px;
  }
}
.navbar .submenu-wrapper ul li:last-child {
  margin-bottom: 0;
}
.navbar .submenu-wrapper ul li a {
  color: #ffffff;
  line-height: 1.3;
  display: block;
}
.navbar .submenu-wrapper ul li a:hover {
  color: #ffc72c;
}
.navbar .navbar-toggle .icon-bar {
  background-color: #ffc72c;
}
.navbar .navbar-header {
  margin-right: 0;
  margin-left: 0;
}
.navbar .navbar-collapse {
  margin-left: 0;
}

.nav > li > a:focus {
  background: none;
}
.nav .itemsmaller {
  padding-top: 7px;
  padding-bottom: 8px;
  font-size: 11px;
}

#interior .secondary-nav {
  background-color: #0a253e;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #interior .secondary-nav.desktop {
    display: none;
  }
}
#interior .secondary-nav ul {
  padding: 0 !important;
  margin: 0 !important;
}
#interior .secondary-nav ul li {
  border-bottom: 1px solid #ffffff;
  clear: both;
  padding: 0;
}
#interior .secondary-nav ul li.dropdown-submenu {
  padding: 0;
}
#interior .secondary-nav ul li:before {
  display: none;
}
#interior .secondary-nav ul li a {
  display: block;
  padding: 15px 45px 15px 15px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}
#interior .secondary-nav ul li a:hover {
  background-color: #ffc72c;
  color: #0a253e;
}
#interior .secondary-nav ul li a:focus {
  text-decoration: none;
  background-color: #007DC3;
}
#interior .secondary-nav ul li .fa {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
#interior .secondary-nav ul.dropdown-menu {
  position: relative;
  width: 100%;
  box-shadow: none;
  top: 1px;
  border-radius: 0;
  display: none;
  background-color: #103a61;
  border: none;
}
#interior .secondary-nav ul.dropdown-menu > .active > a {
  background-color: #007DC3;
}
#interior .secondary-nav ul.dropdown-menu a {
  padding-left: 30px;
  white-space: normal;
}
#interior .secondary-nav ul.dropdown-menu .dropdown-menu {
  background-color: #CCC;
}
#interior .secondary-nav ul.dropdown-menu .dropdown-menu a {
  color: #0a253e;
  text-transform: none;
}
#interior .secondary-nav ul.dropdown-menu .dropdown-menu > .active > a {
  background-color: #77ceff;
}
#interior .secondary-nav .menu-title {
  background-color: #CCC;
  color: #0a253e;
  font-family: "Roboto Condensed", sans-serif;
  padding: 15px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}
#interior .mobile-secondary-nav {
  display: block;
}
@media (min-width: 992px) {
  #interior .mobile-secondary-nav {
    display: none;
  }
}
#interior .mobile-secondary-nav button {
  background-color: #ffc72c;
  border: none;
  margin: 0 0 0 auto;
  text-align: right;
  display: inline-block;
  margin-bottom: 20px;
  color: #0a253e;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 4px;
  outline: none;
}
#interior .mobile-secondary-nav button:focus {
  outline: none;
  box-shadow: none;
}
#interior .mobile-secondary-nav button .fa {
  margin-left: 6px;
}

body.inner .navbar {
  background-color: rgb(0, 38, 62);
}

#pagination {
  margin: 45px 0 0;
  text-align: center;
  padding-top: 25px;
  border-top: 3px solid #007DC3;
}
#pagination ul {
  display: inline-block !important;
  font-size: 16px;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  font-weight: 300;
  padding-left: 0;
}
#pagination ul li {
  float: left;
  padding: 4px;
}
#pagination ul li:before {
  display: none;
}
#pagination ul li a {
  border: 1px solid transparent;
  color: #000000;
  display: block;
  padding: 7px 15px 5px;
  transition: all 0.3s ease;
  border-radius: 4px;
}
#pagination ul li a .fa {
  color: #000000;
  transition: all 0.3s ease;
}
#pagination ul li a:hover {
  background-color: #ffffff;
  border-color: #007DC3;
  color: #007DC3;
  text-decoration: none;
}
#pagination ul li.active a {
  border: 1px solid transparent;
  color: #ffffff;
  font-weight: 400;
  background-color: #007DC3;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pht-left {
  width: 50%;
  float: left;
  margin-right: 35px;
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: hidden;
}
.pht-left img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ffc72c;
}
@media (max-width: 1024px) {
  .pht-left img {
    border: none;
  }
}
.pht-left figcaption {
  padding: 20px;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 4px solid #ffc72c;
  background-color: rgba(10, 37, 62, 0.75);
  line-height: normal;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: -100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .pht-left figcaption {
    left: 0;
    position: relative;
    background-color: #0a253e;
    top: -1px;
  }
}
.pht-left cite {
  display: block;
  margin-top: 6px;
}
.pht-left:after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 1199px) {
  .pht-left {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
}
.pht-left:hover figcaption {
  left: 0;
}

.pht-right {
  width: 50%;
  float: right;
  margin-left: 35px;
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: hidden;
}
.pht-right img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ffc72c;
}
@media (max-width: 1024px) {
  .pht-right img {
    border: none;
  }
}
.pht-right figcaption {
  padding: 20px;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 4px solid #ffc72c;
  background-color: rgba(10, 37, 62, 0.75);
  line-height: normal;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: -100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .pht-right figcaption {
    left: 0;
    position: relative;
    background-color: #0a253e;
    top: -1px;
  }
}
.pht-right cite {
  display: block;
  margin-top: 6px;
}
.pht-right:after {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 1199px) {
  .pht-right {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
}
.pht-right:hover figcaption {
  left: 0;
}

.pht-full {
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
}
.pht-full img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ffc72c;
}
@media (max-width: 1024px) {
  .pht-full img {
    border: none;
  }
}
.pht-full figcaption {
  padding: 20px;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 4px solid #ffc72c;
  background-color: rgba(10, 37, 62, 0.75);
  line-height: normal;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: -100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .pht-full figcaption {
    left: 0;
    position: relative;
    background-color: #0a253e;
    top: -1px;
  }
}
.pht-full cite {
  display: block;
  margin-top: 6px;
}
.pht-full:hover figcaption {
  left: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 54%;
  padding-top: 25px;
  height: 0;
  margin: 30px 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

div.button-center > div > a, div.button-right > div > a, div.button-left > div > a {
  display: inline-block;
  color: white;
  padding: 15px;
  background-color: #0a253e;
  font-weight: 500;
  font-size: 21px;
  margin: 0.25em 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
div.button-center > div > a::after, div.button-right > div > a::after, div.button-left > div > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #007DC3;
  width: 0;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

div.button-center > div > a:hover::after, div.button-right > div > a:hover::after, div.button-left > div > a:hover::after {
  width: 100%;
}

div.clps > div.col-12:first-child {
  background-color: #007DC3;
  border-bottom: 2pt solid #0a253e;
}

div.clps {
  padding: 0.25em 0;
  margin: 0;
}
div.clps > div:first-child {
  background-color: #007DC3;
  border-bottom: 2pt solid #0a253e;
}
div.clps > div:first-child p {
  font-size: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  align-items: center;
  margin: 0;
  padding: 0.35em 0;
  margin-left: -3px;
  transition: 0.3s;
  cursor: pointer;
}
div.clps > div:first-child p::before {
  content: "\f105";
  margin: 0;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brand", FontAwesome;
  font-weight: 900;
  opacity: 0;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
div.clps > div:first-child p:hover {
  margin-left: 0;
}
div.clps > div:first-child p:hover::before {
  margin: 0 0.5em;
  opacity: 1;
}
div.clps > div:last-child {
  border-bottom: 2pt solid #0a253e;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
div.clps > div:last-child ul {
  display: flex;
  margin: 0;
  padding: 1em;
  justify-content: flex-start;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  max-height: 1000px;
  margin: 0 !important;
}
@media screen and (max-width: 700px) {
  div.clps > div:last-child ul {
    max-height: 2000px;
  }
}
div.clps > div:last-child ul li {
  font-weight: 400;
  display: inline-block !important;
  margin: 0.5em 1em !important;
}
div.clps > div:last-child ul li::before {
  display: none !important;
}
div.clps.open > div:last-child {
  max-height: 1000px;
}
@media screen and (max-width: 700px) {
  div.clps.open > div:last-child {
    max-height: 2000px;
  }
}
div.clps.open > div:first-child p {
  margin-left: 0;
}
div.clps.open > div:first-child p::before {
  opacity: 1;
  transform: rotate(90deg);
  margin: 0 0.5em;
}
div.clps.open > div.collapsed p::before {
  transform: rotate(0deg) !important;
}

div.clps-s {
  border-bottom: 2pt solid #0a253e;
  margin: 0.25em 0;
}
div.clps-s div[data-toggle=collapse] {
  background-color: #007DC3;
  border-bottom: 2pt solid #0a253e;
}
div.clps-s div[data-toggle=collapse] p {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  color: white;
  align-items: center;
  margin: 0;
  padding: 0.35em 0;
  margin-left: -3px;
  transition: 0.3s;
  cursor: pointer;
}
div.clps-s div[data-toggle=collapse] p::before {
  content: "\f105";
  margin: 0;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brand", FontAwesome;
  font-weight: 900;
  opacity: 0;
  color: white;
  transform: rotate(0deg);
  transition: 0.3s;
}
div.clps-s div[data-toggle=collapse] p:hover {
  margin-left: 0;
}
div.clps-s div[data-toggle=collapse] p:hover::before {
  margin: 0 0.5em;
  opacity: 1;
}
div.clps-s div[data-toggle=collapse][aria-expanded=true] p::before {
  transform: rotate(90deg) !important;
}
div.clps-s > div:last-child > *:first-child {
  padding-top: 1em;
}
div.clps-s > div:last-child > *:last-child {
  padding-bottom: 1em;
}

#interior .rm {
  display: none !important;
}

.table-responsive {
  clear: both;
  display: block;
  margin: 30px 0;
}

.table {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .table {
    margin-top: 0px;
  }
}
.table > tbody > tr > td {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
}
.table > tbody > tr > td:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > tbody > tr > th {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
}
.table > tbody > tr > th:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > tbody > tr:last-of-type {
  border-bottom: 1px solid #0a253e;
}
.table > thead {
  background-color: #0e3254;
}
.table > thead:first-child > tr:first-child > td {
  border-top: 1px solid #0a253e;
}
.table > thead > tr > td {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
}
.table > thead > tr > td:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > thead > tr > th {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
  background-color: #0a253e;
  color: #ffffff;
  font-weight: 400;
}
.table > thead > tr > th:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > thead > tr:last-of-type {
  border-bottom: 1px solid #0a253e;
}
.table > tfoot > tr > td {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
}
.table > tfoot > tr > td:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > tfoot > tr > th {
  padding: 8px;
  border-top: 1px solid #0a253e;
  font-size: 16px;
  border-left: 1px solid #0a253e;
}
.table > tfoot > tr > th:last-of-type {
  border-right: 1px solid #0a253e;
}
.table > tfoot > tr:last-of-type {
  border-bottom: 1px solid #0a253e;
}

.secondary-photo-right,
.secondary-photo-left {
  width: 446px;
  overflow: hidden;
}
.secondary-photo-right figcaption,
.secondary-photo-left figcaption {
  font-size: 14px;
  line-height: 115%;
  letter-spacing: 0;
  padding: 15px 0;
  border-bottom: 10px solid #007DC3;
}
.secondary-photo-right figcaption span,
.secondary-photo-left figcaption span {
  display: block;
  font-style: italic;
}
.secondary-photo-right img,
.secondary-photo-left img {
  width: 100%;
}

.secondary-photo-right {
  margin: 20px 0 20px 40px;
  float: right;
}

.secondary-photo-left {
  margin: 20px 40px 20px 0;
  float: left;
}

.callout-left {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 115%;
  color: #FFF;
  background: #007DC3;
  border: 0;
  text-align: left;
  float: left;
  margin: 20px 35px 20px 0;
  padding: 20px;
  width: 300px;
  position: relative;
  display: block;
}
.callout-left a {
  color: #FFF;
}
.callout-left a:hover {
  color: #0a253e;
}

.callout-right {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 115%;
  color: #FFF;
  background: #007DC3;
  border: 0;
  text-align: right;
  float: right;
  margin: 20px 0 20px 35px;
  padding: 20px;
  width: 300px;
  position: relative;
  display: block;
}
.callout-right a {
  color: #FFF;
}
.callout-right a:hover {
  color: #0a253e;
}

.video-wrapper {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .secondary-photo-left,
  .secondary-photo-right,
  .callout-right,
  .callout-left {
    float: none;
    width: 100%;
    margin: 0 0 30px;
  }
}
#privacy-statement {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100000000;
  padding: 0;
  transition: 0.5s 0.5s;
  font-size: 13px;
  transform: translateY(100%);
  opacity: 0;
  background-color: #ffc72c;
  box-shadow: 0px 0px 36px 3px rgba(0, 0, 0, 0.75);
}
#privacy-statement.up {
  transform: translateY(0);
  opacity: 1;
}
#privacy-statement div.row {
  /*padding: 15px;
  width: 100%;
  background-color: #ffc72c;
  color: $brand-primary;
  position: relative;
  box-shadow: 0px 0px 36px 3px rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  align-items: flex-start;*/
  padding: 15px;
  color: #0a253e;
}
#privacy-statement div.row p {
  /*margin: 8px 15px 8px 0;*/
  margin: 0;
  line-height: 128%;
  letter-spacing: 0;
  font-weight: 400;
}
#privacy-statement div.row p a {
  text-decoration: underline;
  color: #0a253e;
}
#privacy-statement div.row p a:hover {
  color: #007DC3;
}
#privacy-statement div.row a.button {
  /*margin: 8px 0;*/
  border-radius: 10px;
  font-weight: 400;
  color: white;
  background-color: #0a253e;
  padding: 7px 15px;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
#privacy-statement div.row a.button:hover {
  background-color: #007DC3;
  color: white;
}
@media (max-width: 991px) {
  #privacy-statement div.row a.button {
    margin-top: 10px;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.a2a_kit {
  box-shadow: none;
}
.a2a_kit.a2a_floating_style {
  position: relative;
  margin-top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: unset;
  padding: 4px 46px;
}
.a2a_kit.a2a_floating_style .a2a_container {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
}
.a2a_kit.a2a_floating_style .a2a_svg {
  border-radius: 0;
  background-color: #0a253e !important;
}
.a2a_kit.a2a_floating_style .a2a_text {
  padding: 4px;
  font-size: 10.5px;
  display: block;
  overflow: hidden;
  line-height: 10px;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 8px;
  padding-top: 15px;
  text-align: center;
}
.a2a_kit.a2a_floating_style.left {
  display: inline-flex;
}
.a2a_kit.a2a_floating_style.left .a2a_text {
  text-align: left;
}

.csLogoWrapper {
  width: 100%;
  max-width: 350px;
  height: 50%;
  margin: 0 auto 0;
  position: relative;
}
.csLogoWrapper .csLogo {
  margin: 0 auto 80px;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0 20px;
}
.csLogoWrapper .csLogo img {
  display: block;
  margin: 0 auto;
}

.csTitleWrapper {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px;
}
.csTitleWrapper .csTitle {
  margin: 0 auto;
  width: 100%;
}
.csTitleWrapper .csTitle h1 {
  text-align: center;
  font-size: 32px;
  font-family: "Nunito", sans-serif;
  font-style: 800;
  color: #007DC3;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.csTitleWrapper .csTitle p {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-style: 400;
  font-size: 20px;
  color: #0a253e;
  letter-spacing: 1px;
}

.error-wrapper {
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
@media (max-width: 650px) {
  .error-wrapper {
    width: 100%;
  }
}
.error-wrapper img {
  width: 100%;
  height: auto;
}
.error-wrapper .text {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-family: "Nunito", sans-serif;
  color: #0a253e;
  margin-top: 30px;
}
.error-wrapper .text .site-search {
  position: relative;
  left: 0;
  top: 0;
}
.error-wrapper .text .site-search .search-bar .navbar-form .form-group {
  width: 100% !important;
  display: block !important;
}
.error-wrapper .text .site-search .search-bar .navbar-form .form-group .form-control {
  margin: 0 auto;
  height: 31px;
  width: 100%;
  padding-right: 50px;
  border-radius: 5px;
  border: 1px solid #00263e;
}
.error-wrapper .text .site-search .search-bar .navbar-form .btn {
  font-size: 16px;
  padding: 5px;
  background: none;
  position: absolute;
  top: 0;
  right: 4px;
  border: none;
}
.error-wrapper .text .site-search .search-bar .navbar-form .btn .fa {
  position: relative;
  top: 5px;
}
@media (max-width: 767px) {
  .error-wrapper .text .site-search .search-bar .navbar-form .btn .fa {
    top: 10px;
  }
}
.error-wrapper .text a {
  display: block;
  background-color: #0a253e;
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  width: 100%;
  margin: 20px auto 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.error-wrapper .text a:hover {
  background-color: #007DC3;
  color: #ffffff;
  text-decoration: none;
}

.byline {
  display: block;
  font-size: 13px;
  margin-bottom: 20px;
}
.byline .date {
  display: inline-block;
}
.byline .author {
  display: inline-block;
}

#related {
  margin-top: 30px;
  border-top: 3px solid #007DC3;
  padding: 20px 0 0;
}
#related .article-wrapper {
  height: 100%;
}
#related .article-wrapper h3 {
  margin-bottom: 20px;
}
#related .links-wrapper {
  height: 100%;
  margin-top: 30px;
}
#related .links-wrapper h3 {
  display: block;
  padding-bottom: 12px;
  border-bottom: 3px solid #ffc72c;
}
#related .news-article {
  background-color: #d4d4d4;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  #related .news-article {
    margin-bottom: 30px;
  }
}
#related .news-article .news-img {
  border-bottom: 3px solid #ffc72c;
}
#related .news-article img {
  width: 100%;
  height: auto;
}
#related .news-article .news-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: block;
  margin: 0px 20px 6px;
  padding-top: 15px;
  line-height: 1.3;
  transition: all 0.3s ease;
}
#related .news-article .news-title:hover {
  color: #0a253e;
}
#related .news-article .news-date {
  display: block;
  margin: 0 20px;
  font-size: 14px;
  padding-bottom: 15px;
  font-style: italic;
}
#related .news-article .news-excerpt {
  display: block;
  margin: 0 20px 0;
  padding-bottom: 25px;
}
#related ul {
  padding-left: 0 !important;
}
#related ul li:before {
  display: none;
}
#related ul li a {
  display: block;
  padding: 15px;
  background-color: #d4d4d4;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  color: #0a253e;
  font-weight: 800;
}
#related ul li a:hover {
  background-color: #ffc72c;
}

.category-dropdown {
  width: 30%;
  margin: 0 0 0 auto;
}
@media (max-width: 991px) {
  .category-dropdown {
    width: 100%;
  }
}

.categories {
  text-align: right;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .categories {
    text-align: left;
  }
}
.categories .cat-btn {
  font-size: 11px;
  color: #0a253e;
  background-color: #c4c4c4;
  padding: 4px 6px;
  margin-right: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.categories .cat-btn:hover {
  background-color: #007DC3;
  color: white !important;
}

h2.category-title {
  margin-top: 0 !important;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: -33px;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 225px;
}
@media (max-width: 991px) {
  h2.category-title {
    margin-bottom: 20px;
  }
}

#news {
  padding: 20px 0;
  margin-top: 30px;
}
#news .article-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  #news .row {
    margin-bottom: 30px;
  }
}
#news .row .item {
  display: flex;
}
#news .news-article {
  background-color: #d4d4d4;
}
@media (max-width: 991px) {
  #news .news-article {
    margin-bottom: 30px;
  }
}
#news .news-article .news-img {
  border-bottom: 3px solid #ffc72c;
}
#news .news-article img {
  width: 100%;
  height: auto;
}
#news .news-article .news-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: block;
  margin: 0px 20px 6px;
  padding-top: 15px;
  line-height: 1.3;
  transition: all 0.3s ease;
}
#news .news-article .news-title:hover {
  color: #0a253e;
}
#news .news-article .news-date {
  display: block;
  margin: 0 20px;
  font-size: 14px;
  font-style: italic;
}
#news .news-article .news-excerpt {
  display: block;
  margin: 15px 20px 0;
  padding: 15px 0;
  border-top: 1px solid #0a253e;
}
#news .news-article .categories {
  display: block;
  margin: 0 20px 20px;
  text-align: left;
}
#news .news-article .cat-btn {
  font-size: 11px;
  color: #0a253e;
  background-color: #c4c4c4;
  padding: 4px 6px;
  margin-right: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#news .news-article .cat-btn:hover {
  background-color: #007DC3;
}
#news .top-story .news-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0a253e;
}
@media (max-width: 991px) {
  #news .top-story .news-img {
    height: auto;
  }
}
#news .top-story .news-img img {
  width: 100%;
}
#news .top-story .no-pad-left,
#news .top-story .no-pad-right {
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  #news .top-story .no-pad-left,
  #news .top-story .no-pad-right {
    padding-left: 0;
    padding-right: 0;
  }
}

#archive ul {
  padding-left: 0 !important;
}
#archive ul li:before {
  display: none;
}
#archive ul .news-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin: 0px;
  padding-top: 6px;
  line-height: 1.3;
  transition: all 0.3s ease;
}
#archive ul .news-title:hover {
  color: #0a253e;
}
#archive ul .news-date {
  display: block;
  margin: 0px;
  font-size: 14px;
  font-style: italic;
  padding-bottom: 6px;
  border-bottom: 1px solid #0a253e;
}

.rss {
  background-color: #0a253e;
  color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  max-width: 500px;
  margin: auto;
  font-weight: 900;
  transition: 0.4s;
  padding: 10px 20px;
  line-height: 1;
}
.rss:after {
  content: "\f09e";
  padding-left: 10px;
  transition: 0.4s;
  font-family: FontAwesome;
  font-weight: bold;
  line-height: 1;
}
.rss:hover {
  background-color: #007DC3;
  color: #0a253e;
}
.rss:hover:after {
  padding-left: 20px;
  color: #0a253e;
}

body.inner #interior {
  font-size: 18px;
}
body.inner #interior .no-pad {
  padding: 0;
}
body.inner #interior .no-marg {
  margin: 0 !important;
}
body.inner #interior .no-pad-left {
  padding-left: 0;
}

#interior .page-wrapper {
  margin-top: 0;
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 60px;
  margin-top: 20px;
  position: relative;
  z-index: 800;
}
@media (max-width: 375px) {
  #interior .page-wrapper {
    padding: 20px;
  }
}
#interior .page-wrapper img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1023px) {
  #interior .page-wrapper img {
    max-width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
#interior figure.portrait-right, #interior figure.portrait-left {
  padding-bottom: 2px;
  max-width: 280px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 100;
  margin: 6px 0 0;
}
#interior figure.portrait-right:hover > figcaption, #interior figure.portrait-left:hover > figcaption {
  left: 0;
}
#interior figure.portrait-right figcaption, #interior figure.portrait-left figcaption {
  padding: 20px;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 4px solid #ffc72c;
  background-color: rgba(10, 37, 62, 0.75);
  line-height: normal;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: -100%;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  #interior figure.portrait-right figcaption, #interior figure.portrait-left figcaption {
    left: 0;
    position: relative;
    background-color: #0a253e;
    top: -1px;
  }
}
#interior figure.portrait-right cite, #interior figure.portrait-left cite {
  display: block;
  margin-top: 6px;
}
#interior figure.portrait-right {
  float: right !important;
  margin-left: 30px;
}
#interior figure.portrait-left {
  float: left !important;
  margin-right: 30px;
}
#interior .bio {
  clear: none;
  position: relative;
}
#interior .bio ul.details {
  clear: none;
  margin-top: 0;
  padding-left: 0;
}
#interior .bio ul.details li {
  clear: none;
}
#interior .bio ul.details li:before {
  display: none;
}
#interior .bio ul.details li:first-child {
  color: #0a253e;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.3em;
  line-height: 1;
  margin-bottom: 7px;
}
#interior .bio::after {
  content: "";
  clear: both;
  width: 100%;
  height: 30px;
  display: inline-block;
}
@media (max-width: 630px) {
  #interior figure.portrait-right, #interior figure.portrait-left {
    max-width: 200px;
  }
}
@media (max-width: 500px) {
  #interior figure.portrait-right, #interior figure.portrait-left {
    max-width: 100%;
    margin: 0;
    float: none !important;
  }
  #interior .bio ul {
    padding-top: 20px;
  }
}
#interior h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  color: #0a253e;
  font-weight: 800;
  margin-top: 20px;
}
#interior h1.title {
  border-bottom: 2px solid #ffc72c;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 10px;
}
#interior h2 {
  font-size: 28px;
  font-weight: 800;
  color: #007DC3;
  margin-top: 20px;
}
#interior h2.subtitle {
  margin-top: 0;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Roboto Condensed", sans-serif;
}
#interior h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  color: #0a253e;
  font-weight: 800;
  margin-top: 20px;
}
#interior h4 {
  font-size: 20px;
  font-weight: 800;
  color: #007DC3;
  margin-top: 20px;
}
#interior h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  color: #0a253e;
  font-weight: 800;
  margin-top: 20px;
}
#interior h6 {
  font-size: 17px;
  font-weight: 800;
  color: #007DC3;
  margin-top: 20px;
}
#interior #social {
  border-top: 3px solid #007DC3;
  margin-top: 30px;
}
#interior #social .wrapper {
  padding: 30px;
  text-align: center;
  font-size: 26px;
}
#interior #social .text {
  color: #007DC3;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
}
@media (max-width: 552px) {
  #interior #social .text {
    display: block;
  }
}
#interior #social .text span {
  font-weight: 800;
}
#interior #social a.icon {
  display: inline-block;
  margin-right: 20px;
}
#interior figure {
  position: relative;
}
#interior figure.featured {
  width: 100%;
  margin: 10px 0 20px;
  position: relative;
  overflow: hidden;
}
#interior figure.featured img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ffc72c;
}
@media (max-width: 1024px) {
  #interior figure.featured img {
    border: none;
  }
}
#interior figure.featured figcaption {
  padding: 20px;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  border-bottom: 4px solid #ffc72c;
  background-color: rgba(10, 37, 62, 0.75);
  line-height: normal;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: -100%;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  #interior figure.featured figcaption {
    left: 0;
    position: relative;
    background-color: #0a253e;
    top: -1px;
  }
}
#interior figure.featured cite {
  display: block;
  margin-top: 6px;
}
#interior figure.featured:hover figcaption {
  left: 0;
}
#interior ul {
  display: block;
  clear: both;
  margin: 20px 0;
  padding-left: 30px;
  list-style: none;
}
#interior ul li {
  position: relative;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
#interior ul li:before {
  content: "\f111";
  font-family: "FontAwesome";
  font-size: 8px;
  position: absolute;
  left: -15px;
  top: 6px;
  color: #007DC3;
}
#interior ul li ul {
  margin: 4px 0;
}
#interior ul li ul li {
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
#interior ul li ul li:before {
  color: #ffc72c;
}
#interior ol {
  display: block;
  clear: both;
  margin: 20px 0;
  padding-left: 30px;
}
#interior ol li ol {
  margin: 4px 0;
  list-style-type: lower-alpha;
}

#results .results-wrapper {
  background-color: #CCC;
  padding: 30px;
  font-size: 24px;
  text-align: center;
  color: #0a253e;
  margin: 20px 0;
}
#results ul {
  padding-left: 0 !important;
}
#results ul li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#results ul li:last-child {
  border: none;
}
#results ul li:before {
  display: none;
}
#results ul .title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  display: block;
  line-height: 1.3;
  transition: all 0.3s ease;
}
#results ul .title:hover {
  color: #0a253e;
}

section#interior .filter-box {
  padding: 30px;
  background-color: #f2f2f2;
  margin: 30px 0;
}
section#interior .filter-box form {
  transition: 0.3s;
}
section#interior .filter-box form label {
  display: block;
}
section#interior .filter-box form input {
  width: 100%;
}
section#interior .filter-box h2 {
  display: block;
  position: relative;
  padding-right: 35px;
  cursor: pointer;
}
section#interior .filter-box h2::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  font-weight: bold;
  display: inline-block;
  color: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
section#interior .filter-box h2.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}
section#interior .directory-box {
  display: flex;
  flex-wrap: wrap;
}
section#interior .directory-box article.pod {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
section#interior .directory-box article.pod .profile-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 250px;
  display: block;
}
section#interior .directory-box article.pod .detail {
  margin: 10px 0 20px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
section#interior .directory-box article.pod .detail * {
  flex: 0 0 auto;
}
section#interior .directory-box article.pod .detail h3 {
  margin-top: 0;
}
section#interior .directory-box article.pod .detail h4 {
  margin-top: 0;
  flex: 1 0 auto;
}
section#interior .directory-box article.pod .detail p {
  margin: 7px 0;
  line-height: 1;
  font-size: 0.9em;
}
section#interior .directory-box article.pod .detail p > a {
  text-decoration: underline;
  color: #007DC3;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
section#interior .directory-box article.pod .detail p > a:hover {
  color: #E7A615;
}
section#interior .directory-box article.pod .detail p > span {
  font-weight: 700;
}
section#interior .directory-box article.pod .detail > a {
  padding: 5px 15px;
  background-color: #0a253e;
  color: white;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9em;
  margin-top: 10px;
  display: inline-block;
  align-self: flex-start;
}
section#interior .directory-box article.pod .detail > a:hover {
  background-color: #007DC3;
}
@media (max-width: 767px) {
  section#interior .directory-box article.pod {
    width: 50%;
  }
}
@media (max-width: 449px) {
  section#interior .directory-box article.pod {
    width: 100%;
  }
}
section#interior .directory-index {
  margin: 0;
}
section#interior .directory-index div.col {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  justify-content: space-between;
  color: #0a253e;
  transition: 0.3s;
}
section#interior .directory-index div.col p {
  flex: 1 1 200px;
  padding: 0 10px;
}
section#interior .directory-index div.col p span {
  display: block;
  width: 100%;
}
section#interior .directory-index div.col p > a {
  display: block;
}
@media (max-width: 450px) {
  section#interior .directory-index div.col p {
    overflow: auto;
  }
}
section#interior .directory-index div.col:nth-child(2n-1) {
  background-color: #f8e4b6;
}
section#interior .directory-index div.col:hover {
  background-color: #f2ca70;
}
section#interior .directory-index div.col > a {
  display: block;
  padding: 0 10px;
  flex-basis: 100%;
  padding-bottom: 5px;
  border-bottom: 1px dashed #007DC3;
  margin-bottom: 5px;
  font-weight: 700;
  padding-right: 30px;
  position: relative;
}
section#interior .directory-index div.col > a:after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-53%);
}
section#interior #pagination ul {
  padding-left: 0;
  margin: 0;
}

main#suOnline > h1.title:first-child {
  display: none;
}

#suOnline > .row {
  margin: 0;
}
#suOnline > .row > .col-sm-12 {
  padding: 0;
}
#suOnline #interior {
  margin-bottom: 30px;
  padding: 0 45px;
}
#suOnline h1, #suOnline h2, #suOnline h3, #suOnline h4, #suOnline h5, #suOnline h6, #suOnline a, #suOnline p, #suOnline li, #suOnline button, #suOnline input, #suOnline select, #suOnline option {
  font-family: "Roboto Condensed", sans-serif;
}
#suOnline p {
  font-size: 16px;
}
#suOnline *::before, #suOnline *::after {
  font-family: "FontAwesome";
  font-weight: 900;
}
#suOnline header {
  background-image: url("../images/so-home-header.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
}
#suOnline header h1, #suOnline header h1 + h2 {
  margin-top: 30px;
  font-size: 45px;
  font-weight: 700;
  color: white;
  text-shadow: 1px 1px 15px rgb(50, 50, 50);
  padding: 0 15px 0;
  text-align: center;
}
#suOnline header h1 + h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 auto 50px;
  font-style: italic;
  max-width: 600px;
}
@media (max-width: 450px) {
  #suOnline header h1 + h2 {
    font-size: 20px;
  }
}
#suOnline header div {
  background-color: #0a253e;
  border-top: 15px solid #ffc72c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 90%;
  padding: 10px 30px 40px;
}
#suOnline header div h2 {
  color: white;
  font-size: 20px;
  text-align: center;
}
#suOnline header div select {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #808080;
  font-weight: bold;
  padding: 3px 60px;
  padding-left: 40px;
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
  background-image: url("../images/dropdown.png");
  background-position: 95% 50%;
  background-size: auto 85%;
  background-repeat: no-repeat;
}
#suOnline header div select:focus {
  outline: none;
}
#suOnline header div option {
  font-size: 16px;
}
#suOnline header div button, #suOnline header div input, #suOnline header div a {
  background-color: transparent;
  color: #ffc72c;
  border: 2px solid #ffc72c;
  padding: 10px 20px;
  margin: 5px 0;
  font-size: 20px;
  transition: 0.4s;
}
#suOnline header div button:hover, #suOnline header div input:hover, #suOnline header div a:hover {
  background-color: #ffc72c;
  color: #0a253e;
}
@media (max-width: 768px) {
  #suOnline header h1 {
    margin-top: 0px;
    font-size: 36px;
  }
  #suOnline header div {
    padding: 15px;
  }
  #suOnline header div select {
    padding: 3px 20px;
    padding-right: 30px;
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  #suOnline header div select {
    font-size: 16px;
  }
}
#suOnline nav.so-ho {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
#suOnline nav.so-ho a {
  flex: 0 1 33%;
  max-width: 300px;
  text-align: center;
  display: block;
  padding: 20px;
}
#suOnline nav.so-ho a::before {
  content: "";
  background-color: #ffc72c;
  height: 0px;
  width: 80px;
  display: block;
  margin: 0 auto 10px;
  transition: 0.4s;
}
@media (max-width: 768px) {
  #suOnline nav.so-ho a {
    flex-basis: 200px;
  }
}
@media (max-width: 450px) {
  #suOnline nav.so-ho a {
    flex: 1 1 155px;
    padding: 5px 20px;
  }
}
#suOnline nav.so-ho a img {
  height: 65px;
  width: 70px;
  margin: auto;
  color: #ffc72c;
  padding-bottom: 10px;
  display: block;
}
#suOnline nav.so-ho a h3 {
  font-size: 19px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.3;
  color: #0a253e;
  margin: 0;
  transition: 0.4s;
}
#suOnline nav.so-ho a h3::before {
  content: "";
  background-color: #ffc72c;
  height: 10px;
  width: 80px;
  display: block;
  margin: 0 auto 10px;
  transition: 0.4s;
}
#suOnline nav.so-ho a:hover::before {
  height: 10px;
}
#suOnline nav.so-ho a:hover h3 {
  padding-bottom: 10px;
  color: #007dc3;
}
#suOnline nav.so-ho a:hover h3::before {
  height: 0;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #suOnline nav.so-ho a::before {
    width: 85px;
  }
  #suOnline nav.so-ho a img {
    height: 80px;
    width: 80px;
  }
  #suOnline nav.so-ho a h3 {
    font-size: 22px;
  }
  #suOnline nav.so-ho a h3::before {
    width: 85px;
  }
}
#suOnline section.callout {
  text-align: center;
  background-color: #025668;
  padding: 30px 0;
}
#suOnline section.callout h2 {
  color: white;
  font-weight: 500;
  display: block;
  font-size: 37px;
  margin-bottom: 25px;
}
#suOnline section.callout p {
  color: white;
}
#suOnline section.callout a, #suOnline section.callout button {
  background-color: transparent;
  color: white;
  border: 3px solid white;
  padding: 10px 50px;
  margin: 25px auto;
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
}
#suOnline section.callout a:hover, #suOnline section.callout button:hover {
  background-color: white;
  font-weight: 400;
  color: #025668;
}
#suOnline section.facts {
  text-align: center;
  padding: 20px 0 50px;
}
#suOnline section.facts h3 {
  color: #0a253e;
}
#suOnline section.facts h3::after {
  content: "";
  width: 130px;
  height: 8px;
  background-color: #007dc3;
  margin: 10px auto;
  display: block;
}
#suOnline section.facts p {
  padding: 10px 20px;
  line-height: 1.3;
}
#suOnline section.contact {
  display: flex;
  flex-wrap: wrap;
  background-color: #f2f2f2;
  align-items: center;
  justify-content: center;
  padding: 30px 15px 60px;
}
#suOnline section.contact h2 {
  color: #007dc3;
  font-weight: 700;
  flex-basis: 100%;
  text-align: center;
}
#suOnline section.contact .buttons, #suOnline section.contact a {
  color: white;
  background-color: #007dc3;
  padding: 5px 30px;
  margin: 5px;
  border-radius: 4px;
  font-size: 18px;
}
#suOnline section.contact .buttons:first-of-type::after, #suOnline section.contact a:first-of-type::after {
  content: "\f0e0";
  display: inline;
  padding-left: 15px;
  color: white;
  font-weight: 400;
}
#suOnline section.contact .buttons:last-child::after, #suOnline section.contact a:last-child::after {
  content: "\f095";
  display: inline;
  padding-left: 15px;
  color: white;
  font-weight: 400;
}
#suOnline section.contact .buttons:hover, #suOnline section.contact a:hover {
  margin-top: 0;
  border-bottom: 5px solid #ffc72c;
}
#suOnline nav#su-o-nav {
  background-color: #025668;
  border-bottom: 4px solid #ffc72c;
  border-top: 4px solid #ffc72c;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
#suOnline nav#su-o-nav h1 {
  text-align: center;
  color: white;
  padding-top: 10px;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 2.4em;
}
#suOnline nav#su-o-nav::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background-image: url("../images/su-online-internal.jpg");
  background-size: cover;
  background-position: 90%;
  z-index: -1;
}
#suOnline nav#su-o-nav .links {
  padding: 30px 45px;
  position: relative;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}
#suOnline nav#su-o-nav .links a {
  padding: 0 10px 2px;
  margin: 10px 0 6px;
  color: white;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
  border-bottom: 4px solid transparent;
  position: relative;
}
#suOnline nav#su-o-nav .links a.active {
  border-color: #ffc72c;
}
#suOnline nav#su-o-nav .links a::before {
  content: "";
  margin-left: 0;
  width: 1.31em;
  height: 1.31em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  display: inline-block;
  position: absolute;
  top: 47%;
  left: 7px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#suOnline nav#su-o-nav .links a:nth-child(1) {
  position: relative;
}
#suOnline nav#su-o-nav .links a:nth-child(1):before {
  background-image: none;
  content: "\f015";
  font-family: "FontAwesome";
  color: #ffc72c;
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1.2;
}
#suOnline nav#su-o-nav .links a:nth-child(2):before {
  background-image: url("../images/online-programs.svg");
}
#suOnline nav#su-o-nav .links a:nth-child(3):before {
  background-image: url("../images/admissions.svg");
}
#suOnline nav#su-o-nav .links a:nth-child(4):before {
  background-image: url("../images/academic-support.svg");
}
#suOnline nav#su-o-nav .links a:nth-child(5):before {
  background-image: url("../images/academic-calendar.svg");
}
#suOnline nav#su-o-nav .links a:nth-child(6):before {
  background-image: url("../images/tuition-financial-aid.svg");
}
#suOnline nav#su-o-nav .links a:hover {
  color: #ffc72c;
  padding-left: 35px;
}
#suOnline nav#su-o-nav .links a:hover:before {
  margin-right: 5px;
  opacity: 1;
}
#suOnline section.accredited {
  background-color: #025668;
  border-top: 10px solid #E7A615;
  padding: 25px 0;
  display: flex;
  justify-content: center;
}
#suOnline section.accredited img {
  max-width: 200px;
}
/*# sourceMappingURL=style.css.map */