@import url("fonts.css");
/*
BREAKPOINTS ----------------------------------
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575px) { ... }

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

/* COLORS */
:root {
  --orange: #f76900;
  --light-orange: #f57e29;
  --dark-gray: #404040;
  --white: #ffffff;
  --dark-blue: #000e54;
  --transparent-bg: rgba(255, 255, 255, 0.5);
}

* {
  box-sizing: border-box;
}

/** Gratitude Site Scratch - INTEGRATE ONCE SORTED **/
.laurel-bg-right {
  position: absolute;
  opacity: 20%;
  top: -15rem;
  right: -15rem;
  width: 30%;
}

.laurel-bg-left {
  position: absolute;
  opacity: 20%;
  top: -15rem;
  left: -15rem;
  width: 30%;
}

.progress-panel {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 40px;
  justify-content: left;
  align-items: center;
  /*height: 100%;*/
}

.progress-panel > h2 {
  color: var(--orange);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.25rem;
  padding: 20px 0;
}

.progress-panel > h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 2.25rem;
  padding: 0;
}

.progress-panel > p {
  color: #fff;
  line-height: normal;
  font-size: smaller;
}
.site-header-brand {
  min-width: 200px;
  width: 300px;
  margin-right: 32px;
}
.site-header-logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
img {
  opacity: 1;
  transition: opacity 0.4s;
}
.skip-hidden-link {
  position: absolute;
  color: #fff;
  text-align: center;
  left: 50%;
  z-index: 2;
  padding: 0 0.5rem 0.25rem;
  background-color: #cd3e00;
  text-decoration: none;
  border-radius: 3px;
  border: 0;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.3s;
  top: -200%;
}
.site-header-content {
  display: flex;
  padding: 2.5rem;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.vertical-section {
  max-width: 100vw;
  height: 100vh;
  display: flex;
}

.sub-head {
  font-size: 3rem;
  color: var(--dark-blue);
  font-weight: bold;
  font-family: "ShermanSans";
}

.title-panel {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 40px;
  padding: 40px;
  height: 100%;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-container {
  padding: 0;
}

/* DMC: Re-comment about half-width; duplicated effort */
/* .progress-image {
  width: 50%;
} */

.flex-container {
  display: flex;
  flex-direction: column; /* Align rows vertically */
  align-items: center; /* Center align rows horizontally */
  justify-content: space-between; /* Space rows evenly */
}

.flex-col {
  flex-direction: column;
}

/* DMC: This was breaking buttons on inspired */
/* .pin-spacer {
  pointer-events: none;
} */

.flex-row {
  display: flex;
  width: 100%; /* Make rows take full width */
  justify-content: space-around; /* Space columns evenly within each row */
}
/* DMC: We dont need this, Bootstrap included a "w-50" class that has 50 width (25 incriments, 25%, 50%, 75%, 100%): https://getbootstrap.com/docs/4.0/utilities/sizing/  */
/* Replaced all all half-width with w-50 */
/* .half-width {
  width: 50%;
} */

.h-screen {
  height: 100vh;
}
/* DMC: Universal CSS that is on every page */
/* .chip {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #000d54;
  color: white;
} */
.highlighted-text span {
  font-size: 1.5rem;
  color: #000e54;
  font-weight: bold;
  font-family: "ShermanSans";
  line-height: 1rem !important;
}
.highlighted-text {
  color: var(--orange);
  text-transform: uppercase;
}
.grid50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
}
.grid7525 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: max-content;
}
.grid2575 {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-auto-rows: max-content;
}
.grid25 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: max-content;
}
.blue-bg {
  background-color: #0d2c6c;
}
.blue-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: #000e54;
}
.image-text-container {
  position: relative;
  text-align: center;
  color: white;
}
.image-text-centered,
.image-text-bottom-center,
.image-text-top-center,
.image-text-top-left,
.image-text-bottom-left,
.image-text-bottom-right,
.image-text-top-right {
  position: absolute;
  font-style: italic;
  width: 80%;
}
.image-text-centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}
.image-text-bottom-left {
  position: absolute;
  bottom: 0;
  left: 2em;
  text-align: start;
}
.image-text-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}
.image-text-bottom-right {
  bottom: 0;
  right: 2em;
  text-align: end;
}
.image-text-top-left {
  top: 2em;
  left: 2em;
  width: 35%;
  text-align: left;
}
.image-text-top-center {
  top: 2em;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-text-top-right {
  top: 2em;
  right: 2em;
  text-align: end;
}

.image-text-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.image-text-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* DMC: Buttons */
.button {
  margin: 24px 24px 24px 0;
  background-color: var(--orange);
  font-weight: bold;
  border: none;
  color: white !important;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px !important;
  cursor: pointer;
  z-index: 100;
  width: 100%;
  max-width: max-content;
  text-wrap: wrap;
}
.button:hover {
  background-color: #000e54;
}
#sectionOne .w-35,
#sectionOne .w-30 {
  margin-left: 0;
  margin-right: 0;
}

/* DMC: For some reason this wasnt working...*/
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.text-white {
  color: white;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.object-fit-cover {
  object-fit: cover;
}

.object-position-top {
  object-position: top;
}

.object-position-bottom {
  object-position: bottom;
}

.object-position-left {
  object-position: left;
}

.object-position-right {
  object-position: right;
}

.quote-mark {
  width: 2.25rem;
}

/* DMC: The sticky nav css */
.responsive-nav {
  width: 100%;
  background-color: white;
  top: 0;
  position: fixed;
  z-index: 9999;
  transition: 0.5s;
}

.responsive-nav > .nav-header {
  display: flex;
  justify-content: center;
  margin: 24px 0 24px 24px;
}

.responsive-nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.responsive-nav > .nav-btn {
  display: none;
}

.responsive-nav > .nav-links {
  display: flex;
  justify-content: center;
  font-size: 18px;
  gap: 32px;
}

.responsive-nav > .nav-links > a {
  font-size: 1.25rem;
  display: inline-block;
  padding: 1rem 0;
  text-decoration: none;
  color: #000e54;
  font-weight: 600;
}
.responsive-nav > .nav-links > a:hover {
  color: #d74100;
  text-decoration: 1px solid #d74100 underline;
}

.responsive-nav > .nav-links > a#selected {
  font-weight: 800;
  color: #d74100;
  text-decoration: none;
  cursor: default;
  outline: none !important;
}

.responsive-nav > #nav-check {
  display: none;
}

.laurel-left,
.laurel-right {
  position: absolute;
  opacity: 6%;
  width: 20rem;
}

/* Chevrons... in order of chevron-directionOfArrow-positionRelative */
.chevron-left-top {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 200px, calc(100% - 25px) 175px, 100% 150px, 100% 0%);
}
.chevron-right-top {
  clip-path: polygon(0% 175px, 0% 100%, 100% 100%, 100% 0%, 0% 0%, 0% 125px, 25px 150px);
}
.chevron-top-left {
  clip-path: polygon(0 0, 0 100%, 150px 100%, 175px calc(100% - 25px), 200px 100%, 100% 100%, 100% 0%);
}
.chevron-bottom-left {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 175px 0%, 150px 25px, 125px 0%);
}

/* 1251 px or larger */
@media (min-width: 1251px) {
  .laurel-left {
    top: 0;
    left: -10rem;
  }
  .laurel-right {
    top: 0;
    right: -10rem;
  }
  .highlighted-text {
    font-size: 7.75rem;
  }
  .default-img {
    min-height: 30rem;
    height: 100% !important;
    max-height: 40rem;
  }
  .large-img {
    min-height: 40rem;
    height: 100% !important;
    /* max-height: 57rem; */
  }
  .small-img {
    min-height: 30vh;
    height: 100%;
  }
  .responsive-nav > .nav-links > a > svg {
    display: none;
  }
  .mobile-hide {
    display: block;
  }
  .desktop-hide {
    display: none;
  }
  .dual-news {
    flex-direction: row;
    gap: 24px;
  }
  .title-margin {
    padding-top: 0;
  }
  #sectionOne {
    margin-top: 5rem !important;
  }
  #sectionTwo {
    margin-top: 1rem;
  }
  .interior-footer {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .footer-logo {
    height: 75px;
  }
  #nav-img img {
    height: 4rem;
  }
  .stat {
    font-size: 4rem;
  }
}

@media screen and (min-width: 700px) and (max-width: 1250px) {
  .interior-footer {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-logo {
    height: 75px;
    width: auto !important;
  }
}

.section-header {
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 1250 px or smaller */
@media (max-width: 1250px) {
  .stat {
    font-size: 3rem;
  }
  .responsive-nav {
    height: auto;
  }
  .responsive-nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }
  .responsive-nav > .nav-header {
    justify-content: start;
    margin-bottom: 24px;
  }
  .responsive-nav > .nav-btn > label {
    margin-top: 8px;
    width: 2rem;
    height: 2rem;
    /* padding: 0 16px; */
    cursor: pointer;
    transition: all 0.5s ease-out;
  }
  .close-menu {
    transform: rotate(180deg);
    translate: 0 -10px;
  }
  .responsive-nav > .nav-btn > label > span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 0 0 8px 0;
    background: #000e54;
    transition: all 0.5s ease-out;
  }
  .menu-btn.close-menu .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(0rem, 0.5rem);
  }

  .menu-btn.close-menu .btn-line:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.close-menu .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -1rem);
  }

  .nav-background {
    background-color: black;
    opacity: 0.5;
    position: absolute;
    height: 100vh;
    z-index: -1;
    /* transition: all 0.5s ease-in; */
  }

  .responsive-nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: white;
    /* height: 0px; */
    /* transition: all 3s ease-in; */
    overflow-y: hidden;
    left: 0px;
  }
  .responsive-nav > .nav-links > a {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
  }
  .nav-links > a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links > a:nth-child(2) {
    transition-delay: 0.2s;
  }
  /* .responsive-nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .responsive-nav > #nav-check:checked ~ .nav-links {
    height: auto;
    padding-bottom: 24px;
    overflow-y: auto;
  } */
  .title-panel {
    margin: 0;
  }
  .laurel-left,
  .laurel-right {
    top: 0rem;
    left: -10rem;
  }
  #sectionOne .w-30,
  #sectionOne .w-35,
  #sectionOne .w-65,
  #sectionOne .w-70,
  #sectionThree .w-65,
  #sectionThree .w-35,
  .dual-news .w-50 {
    width: 100% !important;
  }
  .dual-news {
    flex-direction: column;
    gap: 0;
  }
  #sectionOne .title-panel {
    padding: 0 16px;
  }
  #sectionOne {
    margin-top: 5rem;
  }
  #sectionTwo .title-panel,
  #sectionThree .title-panel,
  #sectionFour .title-panel,
  #sectionFive .title-panel,
  #sectionSix .title-panel,
  #sectionSeven .title-panel {
    padding: 16px !important;
  }
  .highlighted-text {
    font-size: 5rem;
  }
  .default-img {
    width: 100%;
    aspect-ratio: 16 / 12;
  }
  .small-img {
    height: 15rem;
  }
  .mobile-hide {
    display: none;
  }
  .desktop-hide {
    display: block;
  }

  .chevron-left-top,
  .chevron-right-top,
  .chevron-top-left,
  .chevron-bottom-left {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  .image-text-centered,
  .image-text-bottom-center,
  .image-text-top-center,
  .image-text-top-left,
  .image-text-bottom-left,
  .image-text-bottom-right,
  .image-text-top-right {
    font-size: 0.5rem !important;
  }
  .grid50 {
    grid-template-columns: 1fr;
  }
  .interior-footer {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-logo {
    width: 100%;
  }
  #nav-img img {
    height: 2.5rem;
  }
  .responsive-nav > .nav-links > a > svg {
    height: 2rem;
  }
  .w-85 {
    width: 100% !important;
    padding: 16px !important;
  }
  .w-85 .w-85 {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }
}
.interior-footer {
  display: grid;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .interior-footer .w-100 {
    justify-content: center !important;
  }
  .caption-90 {
    width: 90% !important;
  }
}

/* DMC: Mobile and desktop hides */
@media screen and (min-width: 0px) and (max-width: 700px) {
  .mobile-hide {
    display: none !important;
  }
}

/* DMC: Adding a couple more of the w-width classes here since it doesnt cover things we use currently such as w-35 */
.w-10 {
  width: 10%;
}
.w-15 {
  width: 15%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}

.h-20 {
  height: 20%;
}
.h-30 {
  height: 30%;
}
.h-40 {
  height: 40%;
}
.h-60 {
  height: 60%;
}
/* DMC: Making margin x/y that makes more sense than bootstraps */
.p-16 {
  padding: 16px;
}
.pt-24 {
  padding-top: 24px;
}
.mx-24 {
  margin: 0 24px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-24 {
  margin-bottom: 24px;
}
.py-24 {
  padding: 24px 0;
}
.p-24 {
  padding: 24px;
}
.my-24 {
  margin: 24px 0;
}
.m-24 {
  margin: 24px;
}

.bl {
  border-left: 2px solid #ccc;
}

.br {
  border-right: 2px solid #ccc;
}

.br-24 {
  padding-right: 24px;
  border-right: 2px solid #ccc;
}

.bl-24 {
  padding-left: 24px;
  border-left: 2px solid #ccc;
}

.bb {
  border-bottom: 2px solid #ccc;
}
.bt {
  border-top: 2px solid #ccc;
}

.bb-24 {
  padding-bottom: 24px;
  border-bottom: 2px solid #ccc;
}

/* DMC: Font stuffs */
.fw-bold {
  font-weight: bold;
}
.text-orange {
  color: var(--orange);
}
.text-blue {
  color: #000e54;
}

/*body {*/
/*    font-family: ShermanSans, Verdana, sans-serif;*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-size: 110%;*/
/*    position: relative;*/
/*    line-height: 2rem;*/
/*    color: var(--dark-blue);*/
/*}*/

main {
  /* max-width: 1200px; */
  /* padding-top: 0; */
  /* padding-bottom: 2rem; */
  overflow: hidden;
}

/*html,*/
/*body {*/
/*    margin: 0;*/
/*    height: 100%;*/
/*    font-weight: 300;*/
/*    overflow-x: hidden;*/
/*}*/

/*h1,*/
/*h2 {*/
/*    text-align: center;*/
/*}*/

.full-screen {
  display: block;
  width: 100%;
  height: 100vh;
  /*overflow: hidden;*/
}

#intro {
  /*display: flex;*/
  /*flex-direction: column;*/
  display: block;
  /*width: 100%;*/
  /*height: 50vh;*/
}

/*#masthead {*/
/*    position: fixed;*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    z-index: 9999;*/
/*}*/
/*#masthead a {*/
/*    padding: 1rem 2rem;*/
/*}*/

.bg-dark {
  background-color: var(--dark-blue) !important;
  color: white;
}

/*** OUTLINE ***/
a:active,
a:focus {
  outline: 2px solid #6f777d !important;
}

/*** CONTENT ***/
a {
  color: var(--dark-blue);
  text-decoration: underline;
}
a:hover,
a:active,
a:focus {
  color: var(--orange);
  text-decoration: none;
}
a::after,
a::before {
  text-decoration: none !important;
  display: inline-block;
}
#main-content a[target="_blank"]::after {
  content: "\f08e";
  font-family: Fontawesome;
  font-size: 0.9em;
  padding: 0 0 0 5px;
  display: inline-block;
}
p {
  width: 100%;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  padding: 0;
  margin: 2em 0;
  clear: both;
  background-color: #eee;
  width: 100%;
}
.mod-editor img {
  padding: 10px;
  max-width: 100%;
  height: auto;
}

blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 6px solid var(--orange);
  font-size: 1.25rem;
  font-family: ShermanSerif, Georgia, serif;
}
/*ul {*/
/*    list-style-type: square;*/
/*}*/
/*ul ul {*/
/*    padding: 0 !important;*/
/*}*/

/*** CUSTOM INTRO PARAGRAPH ***/
.intro-text-primary {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: ShermanSerif, Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*** HEADINGS ***/
h1 {
  font-size: 8rem;
  font-family: SyracuseBlockCndVF, OswaldVF, sans-serif;
  color: var(--dark-blue);
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 0.9;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2,
h3,
h4,
h5,
h6 {
  /*width: 100%;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--dark-blue);
}
h1 a {
  text-decoration: none;
  font-weight: 500 !important;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: underline;
  font-weight: 500 !important;
  color: #d74100;
}
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: none;
  color: var(--dark-blue);
}
.h2,
h2 {
  font-size: 2.25rem;
  line-height: 3.25rem;
  padding: 20px 0;
}
.h3,
h3 {
  font-size: 1.75rem;
  line-height: 2.75rem;
  padding: 20px 0;
}
.h4,
h4 {
  font-size: 1.25rem;
  line-height: 2rem;
}
.h5,
h5 {
  font-size: 1rem;
  line-height: 1.75rem;
}
.h6,
h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}
.go-serif {
  font-family: ShermanSerif, Georgia, serif;
}

/*** SIDEBAR NAVIGATION AND CONTENT ***/
.page-menu {
  border-left: 6px solid var(--orange);
}
.page-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
}
.page-menu li {
  line-height: 1.9rem;
  padding: 7px 0;
}
.page-menu li a {
  color: var(--dark-blue);
  font-weight: 500 !important;
}
.page-menu li a:hover {
  color: #d74100;
}
.sidebar-nav-container {
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.sidebar-nav-heading {
  font-size: 1.4rem;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #adb3b8;
  font-family: ShermanSans, Verdana, sans-serif;
  line-height: 1.6rem;
  padding: 0 0 20px 0;
  height: 0;
}
.sidebar-nav-heading span {
  background: #fff;
  padding-right: 10px;
  white-space: nowrap;
}
li.sidebar-nav-index a::after {
  content: "\f015";
  font-family: Fontawesome;
  font-size: 1em;
  padding: 0 0 0 10px;
}
.sidebar-nav-item.active::after {
  content: "\f00c";
  font-family: Fontawesome;
  font-size: 1em;
  padding: 0 0 0 10px;
}
.sidebar-row {
  padding: 0;
  margin-top: 0 !important;
}
.sidebar-editor h1,
.sidebar-editor h2,
.sidebar-editor h3 {
  font-family: ShermanSans, Verdana, sans-serif;
}
.sidebar-editor h1,
.sidebar-editor h2 {
  font-size: 1.4rem;
  padding: 10px 0;
  line-height: 2.4rem;
}
.sidebar-editor h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}
.sidebar-cta {
  margin: 30px 0 !important;
}
.sidebar-cta .btn-primary {
  min-width: 75%;
  margin: auto auto;
}

/*** HEADING ***/
.mod-heading {
  margin: 0 !important;
}

/*** GALLERY (SIDE BY SIDE ONLY)***/
.mod-gallery-item {
  width: 100%;
  /**padding: 30px 0;**/
  padding: 20px 0 !important;
  margin: 0 !important;
}
/*** GALLERY - SINGLE ROW HEADINGS ***/
.gallery-single h2 {
  padding: 0;
}
.gallery-summary h3 {
  padding: 0 0 20px 0;
}
.gallery-summary h2 {
  padding-top: 0;
}
.gallery-summary h3 {
  padding: 0;
}
.gallery-single h2 {
  font-family: inherit;
}
.gallery-summary h3 {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
/** SINGLE GALLERY BORDER **/
.gallery-right {
  padding: 0;
  border: 1px solid #e8e8e8;
  background-color: #fff;
}
.gallery-left {
  padding: 0;
}
.gallery-left img {
  margin: 0 !important;
}
.gallery-right .gallery-summary {
  padding: 20px 30px;
}
.home-page .gallery-summary p {
  font-size: 1rem;
}
/*** CIRCLE GALLERY ***/
.mod-gallery-circle .card {
  background-color: transparent;
}
.mod-gallery-circle .card-body {
  border: none !important;
}
.mod-gallery-circle .card-img-top {
  border-radius: 50%;
  height: 250px;
  width: 250px;
}
.mod-cards .mod-gallery-circle {
  text-align: center;
}

/*** FONT AWESOME ***/
fa {
  font-family: FontAwesome;
}

/***CARDS***/
.card {
  border-radius: 0;
  /**display: block;
    align-items: flex-end;**/
}
.card.card-fa-icon {
  border: none;
  background-color: inherit;
}
.bg-dark .card {
  background-color: var(--dark-blue);
  color: #fff;
}
.bg-dark .mod-card-item {
  margin-bottom: 0;
}
.mod-cards {
  width: 100%;
}
.mod-cards .card {
  width: 100%;
  height: auto;
}
.mod-card-item {
  margin-bottom: 30px;
}
.mod-gallery-item h2 {
  padding: 0 0 20px 0;
  font-family: inherit;
}
.mod-card-item h3 {
  padding: 0;
  font-family: inherit;
}
.mod-card-item h3 a {
  font-size: 1.5rem;
}
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  /*border-top: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;*/
}
a .card-img-top:hover,
a .card-img-top:focus {
  transform: scale(1.02);
}
.card-header {
  /*background-color: #fff;*/
  /*opacity: 0.5;*/
  border: none;
  padding: 20px !important;
}
.card-header-center {
  text-align: center;
}
.card-header-center .mod-card-item {
  border: 1px solid #ddd;
}
.card-header:first-child {
  border-radius: 0;
}
.card-header h3 a {
  color: var(--dark-blue);
  text-decoration: none !important;
  opacity: 1;
  font-size: 1.2rem;
  font-family: ShermanSans, Verdana, sans-serif;
}
.card-header-fa {
  width: 100%;
  font-size: 5rem;
  text-align: center;
  display: block;
  height: 9rem;
  padding: 30px 0;
}
.card-header-fa .fa {
  color: #d74100;
}
.card-body img {
  max-width: 100%;
  height: auto;
}
.card-text {
  text-align: center;
}
.card-text-left {
  text-align: left;
}
.card-footer {
  background-color: #fff;
  border: none;
}
.card-footer a {
  text-decoration: none !important;
}
.card-footer .btn.btn-primary {
  float: right;
}

/*** ACCORDION ***/
.mod-accordion {
  width: 100%;
}
.accordion-section {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.accordion-heading {
  padding: 0;
  color: var(--dark-blue);
  font-size: 1.3rem;
  line-height: 1.8rem;
  white-space: normal;
  display: block;
  text-align: left;
}
.accordion-subheading {
  white-space: normal;
  font-style: italic;
  float: left;
  text-align: left;
}
.accordion-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.accordion-section .card {
  border: none;
  background-color: #fff;
}
.accordion-section .card-header {
  padding: 10px;
  /**background-color: #fff;**/
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.accordion-section .card-header button:after {
  position: absolute;
  right: 20px;
  top: 30px;
  font-family: "FontAwesome";
  width: 0;
}

.accordion-section .card-header button[aria-expanded="true"]:after {
  content: "\f068";
}
.accordion-section .card-header button:after {
  content: "\f067";
}

/***NEWS ARTICLE***/
.mod-news-article {
  margin-bottom: 30px !important;
}
.mod-news-article .img-fluid {
  width: 100%;
}
.mod-news-article h2 {
  padding: 20px 0 10px 0;
}
.mod-news-article .news-byline {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 0;
  margin-bottom: 20px;
}
.news-category {
  font-size: 0.75rem;
  width: auto;
  text-transform: uppercase;
  margin: 20px 0;
}
.news-category-item {
  color: #fff;
  background-color: var(--dark-blue);
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 3px 8px;
}
.news-story {
  padding: 30px 0;
  width: 100%;
}

/*** NEWS HOME ***/
.big-feature {
  border-bottom: 3px solid #3e3d3c;
  padding-bottom: 30px;
}
.big-feature h2 {
  padding: 0;
}
.big-feature img {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/*** RECENT NEWS ***/
.mod-recent-news-item h3 {
  padding: 0;
}
.mod-recent-news-item h3 a {
  font-size: 1.5rem;
}
.mod-recent-news-item h3 a:hover,
.mod-recent-news-item h3 a:focus {
  text-decoration: none;
}
.mod-recent-news-more {
  margin-left: 15px;
}
.mod-recent-news-more a:hover,
.mod-recent-news-more a:focus {
  text-decoration: none;
}
/** IE ONLY **/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mod-recent-news-item img {
    height: 100%;
  }
}

/*** NEWS ARCHIVE ***/
.news-archive .gallery-summary {
  font-size: 1rem;
}
.news-archive .gallery-heading {
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  line-height: 2.3rem;
}
.news-archives-cta {
  margin: 30px 0;
}
.news-archive-date {
  font-size: 0.8rem;
  color: #666;
}
.news-archive .mod-gallery-item {
  padding: 0;
}

/*** EVENTS ***/
.mod-event-page .row {
  width: 100%;
}
.event-group {
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}
.event-banner .img-fluid {
  width: 100%;
}
.event-date-time-contact {
  width: 100%;
}
.event-date-time {
  padding: 10px 0;
  width: 100%;
}
.event-location {
  padding: 0 0 10px 0;
  width: 100%;
  font-style: italic;
}
.event-details {
  width: 100%;
}
.event-footer {
  padding: 10px 0;
}

/*** FOOTER ***/
.footer .container {
  padding: 30px 20px !important;
  max-width: 100vw;
}
.footer h3 {
  font-size: 1.3rem;
  color: #fff;
  padding: 30px 0 0;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.footer a:hover,
.footer a:focus {
  color: #fff;
  text-decoration: underline;
  outline: 2px solid #fff;
}
.footer-col {
  color: #ccc;
  font-size: 0.9rem;
  padding: 20px;
}
.footer .sep {
  padding: 0 20px;
}
.footer-col li {
  display: block;
  padding: 10px 0;
  line-height: 1.5rem;
}
.footer-col-inner ul {
  padding-left: 0 !important;
}
#ContentFooterLogo img {
  height: auto;
  width: 100%;
  max-width: 300px;
}
.footer .btn-primary {
  color: #d74100;
  margin: 10px 0 0;
}
.social-footer {
  padding: 0;
  margin-bottom: 20px;
}
.social-footer li {
  display: inline-block;
  padding: 0 9px;
}
.social-footer li a .fa {
  font-size: 1.1rem;
  padding-bottom: 20px;
}
.copyright-container {
  padding: 10px;
}
.copyright {
  color: #ccc;
  font-size: 0.8rem;
}

/** BACK TO TOP BUTTON **/
#topBtn {
  opacity: 0;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  padding: 2px;
  background-color: #6f777d;
  color: #fff;
  text-align: center;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
#topBtn:hover,
#topBtn:active,
#topBtn:focus {
  background: #d74100 !important;
  border: 2px solid #fff;
}
#topBtn:focus {
  opacity: 1;
}
#topBtn .fa {
  font-size: 3.5em;
  font-weight: 900;
  position: relative;
  top: -8px;
}

/** RESPONSIVE IFRAME **/
.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}
.iframe-container > * {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

/*** GOOGLE CUSTOM SEARCH ***/
.gsc-search-box-tools .gsc-search-box .gsc-input {
  padding: 5px !important;
  width: 300px;
}
.gsc-search-button.gsc-search-button-v2 {
  padding: 12px 20px 3px 20px;
}
.fa.fa-search {
  font-size: 20px;
}
.gsc-search-button.gsc-search-button-v2:hover,
.gsc-search-button.gsc-search-button-v2:active,
.gsc-search-button.gsc-search-button-v2:focus {
  background-color: #d74100;
}
#gs_cb50,
.gsc-clear-button {
  font-size: 2rem !important;
  color: #000 !important;
}
.gsc-control-cse {
  background-color: #fff !important;
  border-color: #fff !important;
  font-size: 1rem !important;
}
.gsc-result-info {
  font-size: 1rem !important;
}
.gsc-selected-option-container,
.gsc-selected-option {
  font-size: 0.8rem !important;
}
.gsc-webResult.gsc-result,
.gsc-results .gsc-imageResult {
  background-color: #fff !important;
  border-color: #fff !important;
}
.gsc-result .gs-title {
  height: 1.5em !important;
}
.gsc-tabHeader,
.gsc-orderby-label,
.gsc-selected-option,
.gsc-title,
.gsc-result-selector,
.gsc-one-result,
.gsc-more-results,
.gsc-all-results {
  font-size: 1rem !important;
}
.gsc-option {
  color: #404040 !important;
}

/***PHACTS TABLE ***/
.phacts-container {
  margin: 30px 0;
  display: block;
}
.phacts-row {
  margin-top: 30px;
  display: inline-block;
}
.phacts-q {
  font-size: 1.2em;
  line-height: 1.7em;
  display: inline-block;
  color: var(--dark-blue);
}
.phacts-a {
  font-size: 1.7em;
  float: right;
  text-align: right;
  line-height: 1.7em;
  color: #555;
}

/*** FULL WIDTH VIDEO ***/
.video-display-block {
  display: block !important;
  height: 100%;
  width: 100%;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** STYLING FOR SIZED VIDEO - NOT USED
.video-display-block {
    height: 100%;
    width: 1500px;
    margin: auto;
}**/

/** ******************** **/
/** HOME CUSTOMIZATIONS  **/

/** STYLE FOR HOME PAGE HEADINGS **/
.home-container .h2,
.home-container h2 {
  text-align: center;
  font-size: 2.7rem;
  line-height: 3.5rem;
  width: 100%;
  margin: 40px 0;
  padding: 0 10px;
  color: var(--orange);
}
.home-container .h2 a,
.home-container .h2 a,
.home-container h2 a,
.home-container h2 a {
  text-decoration: none;
  color: var(--orange);
}
.home-container .h2 a:hover,
.home-container .h2 a:focus,
.home-container h2 a:hover,
.home-container h2 a:focus {
  text-decoration: underline;
}
.home-container .h3,
.home-container h3 {
  text-align: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.home-container .h3 a,
.home-container h3 a {
  color: var(--orange);
  text-decoration: none !important;
}
.home-container .h3 a:hover,
.home-container h3 a:hover {
  color: var(--orange);
  text-decoration: underline !important;
}
.home-container .row.mod-editor {
  padding-bottom: 0px !important;
}
/** FEATURED MODULE FOR HOME PAGE **/
.home-container .mod-feature {
  padding: 0 !important;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 0 !important;
}
.home-container .mod-feature h2 {
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.home-container .feature-image img {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.home-container .feature-paragraph p {
  padding: 0 30px;
  font-size: 1.3rem;
}

/** CENTER BLOCKS TEXT FOR HOME PAGE **/
.center-block {
  max-width: 800px;
  margin: auto auto !important;
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.9em;
}
.center-block-statement {
  margin: 30px auto;
}
.center-block .card-footer {
  text-align: center;
}
@media (max-width: 767px) {
  .center-block-statement {
    font-size: 1.1rem;
    line-height: 2.1rem;
    margin: 0 auto;
  }
}
@media (max-width: 1449px) and (min-width: 768px) {
  .center-block-statement {
    font-size: 1.3rem;
    line-height: 2.3rem;
    margin: 0 auto;
  }
}

/** STYLE FOR SOCIAL MEDIA FONTAWESOME ICONS **/
.card-home-social-media .fa {
  font-size: 4rem !important;
}

/** HIDE SOCIAL BOXES - JS TO DISPLAY RANDOM BOX **/
.home-social-card-box {
  display: none;
}

/** STYLE FOR PILLAR BOXES **/
.pillar-container {
  max-width: 1200px;
  margin: auto auto !important;
}
.pillar-container .col-lg-4 {
  padding: 0;
}
.pillar-container .card {
  border-left: 1px solid #ddd;
}
.pillar-container .first-card {
  border: none;
}
.pillar-container .h2,
.pillar-container h2 {
  padding: 10px;
  font-size: 2.3rem;
  line-height: 3.3rem;
  margin: 0;
}
.pillar-container .card-text p {
  font-size: 1.3rem;
  line-height: 2.3rem;
}

/** STYLE FOR HOME PAGE NEWS CARDS **/
.home-news-card-group {
  max-width: 1200px;
  margin: auto auto !important;
}
.home-news-card-group .col-lg-4 {
  padding: 0;
}
.card {
  border: none;
}
.home-news-card-group .card {
  border-left: 1px solid #ddd;
  padding: 0 20px;
}
.home-news-card-group .first-card {
  border-left: none;
}

/** STYLE FOR GIVING BOXES - NOT USED **/
.giving-gallery-group {
  max-width: 1200px;
  margin: auto auto !important;
}
.giving-gallery-group .card-img-top {
  background-color: var(--orange);
}
.giving-gallery-group .card-img-top:hover,
.giving-gallery-group .card-img-top:focus,
.giving-gallery-group .card-img-top:active {
  background-color: var(--dark-blue) !important;
}

/** STYLE FOR BOTTOM BOXES **/
.drop-background-1 {
  background-image: url(/page-banners/home-background-banner.png);
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: left;
  width: 100%;
  background-color: #d74100;
}
.drop-background-1 h2,
.drop-background-1 h3 {
  color: #fff;
}
.drop-background-1 .btn {
  width: 250px;
  height: 10rem;
  line-height: 6rem;
  padding: 25px;
  margin: 20px;
  font-size: 1.2rem;
  border: 1px solid #d74100;
}
.drop-background-1 .btn:hover,
.drop-background-1 .btn:focus,
.drop-background-1 .btn:active {
  background-color: #fff !important;
  border: 2px solid #d74100;
  color: #d74100 !important;
  box-shadow: 0px 0px 0px 5px #fff;
}
.drop-background-1 > div a {
  margin: 20px auto !important;
  width: 100% !important;
  white-space: normal;
}

/** STYLE FOR HOME STATIC BANNER **/
.static-home-container {
  position: relative;
  text-align: center;
}
.static-home-img {
  width: 100%;
  height: auto;
}

/** SLIDER IMAGE FOR HOME PAGE **/
.home-container .carousel {
  width: 100%;
}
.carousel-item {
  height: auto;
  min-height: auto;
}

/*** PROGRESS SECTION CSS ***/
.gauge-container {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: auto;
  max-width: 300px;
  /*** SAME WIDTH AS IMAGE FILE ***/
}
.overlay {
  position: relative;
  z-index: 10;
}
.overlayImg {
  display: inline-block;
  padding-bottom: 0;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.bar {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  left: 0;
  position: absolute;
  bottom: 5%;
  width: 100%;
  z-index: 5;
  height: 89%;
  background: #fce6e2;
}
.bar .progressBar {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: var(--orange);
  width: 100%;
  bottom: 0;
  top: auto;
  position: absolute;
  left: 0;
}
.progress-container {
  max-width: 1200px;
  margin: auto auto !important;
}
.progress-container .card-text {
  text-align: left;
  margin: auto auto;
}

/** SIDEBAR BLOCKQUOTE **/
.sidebar-editor blockquote {
  border-top: 1px solid #eee;
  padding: 20px;
  border-bottom: 1px solid #eee;
  font-style: italic;
  font-size: 1rem !important;
  background-color: #00035e;
  color: #fff;
}

/** STUDENT INTERVIEWS **/
.student-interviews-listing .mod-card-item h3 a {
  font-size: 1.3rem;
}
.student-interviews-listing .student-card-info {
  font-size: 1rem;
  line-height: 1.5rem;
}
.student-interview-summary {
  font-size: 1.5rem;
  padding: 20px 0;
}

/*** RESPONSIVE VIDEO **/
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*** SITESEARCH360 ***/
#ss360-layer .ss360-ac-c,
#ss360-layer .ss360-ac-c--hover:focus,
#ss360-layer .ss360-ac-c--hover:hover {
  color: var(--dark-blue) !important;
  text-decoration: underline;
}

/*** HOME REDESIGN MAY 2021 ***/
.home-laurel-blue .card {
  background-color: #203299;
  color: #fff;
  background-image: url("https://giving.syr.edu/_assets/images/white-laurel-background.png");
  background-position: right;
  background-repeat: no-repeat;
}
.home-laurel-blue .col-lg-12 {
  padding: 0;
}
.home-laurel-blue .card-body {
  width: 80%;
  margin: auto;
}
.home-laurel-blue h2,
.home-laurel-blue h3 {
  color: #fff;
  text-align: left;
  padding: 0 20px;
}
.home-laurel-blue .card-text {
  text-align: left;
  width: 80%;
}
.home-laurel-blue .card-text p {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .home-laurel-blue .card {
    background-image: none;
  }
  .home-laurel-blue .card-body {
    width: 100%;
  }
  .home-laurel-blue .card-text {
    width: 100%;
  }
}
.btn-blue-outline {
  border: 2px solid #fff;
  padding: 10px;
  margin: 10px 20px 10px 0;
  color: #fff;
  text-decoration: none;
}
.btn-blue-outline:focus,
.btn-blue-outline:hover {
  background-color: #fff;
  color: var(--dark-blue) !important;
}

/*** SUPPORT CAMPAIGN BUTTONS ***/
.support-campaign-button-group {
  max-width: 1200px;
  margin: auto auto !important;
  padding-bottom: 90px !important;
}
.support-campaign-button-group .card-body {
  padding: 0;
}
.support-campaign-button-group .mod-card-item {
  margin-bottom: 20px;
}
.support-campaign-button-group .btn {
  line-height: 6rem;
  padding: 15px;
  font-size: 1.2rem;
  border: 1px solid #d74100;
  width: 100%;
  max-width: 300px;
}
.support-campaign-button-group .btn:hover,
.support-campaign-button-group .btn:focus,
.support-campaign-button-group .btn:active {
  background-color: #fff !important;
  border: 2px solid #d74100;
  color: #d74100 !important;
  box-shadow: 0px 0px 0px 5px #fff;
}

/**ORANGE BACKGROUND**/
.background-orange {
  background-color: #d74100;
  color: #fff;
  width: 100%;
  text-align: center;
}
.background-orange h2 {
  color: #fff;
}
.background-orange a {
  color: #fff;
}
.background-orange a:hover,
.background-orange a:focus {
  color: #fff;
}
/**BLUE BACKGROUND**/
.background-blue {
  background-color: #000d54;
  color: #fff;
  width: 100%;
  text-align: center;
}
.background-blue h2 {
  color: #fff;
}
.background-blue a {
  color: #fff;
}
.background-blue a:hover,
.background-blue a:focus {
  color: #fff;
}

/*** TWITTER X SVG HOVER ***/
.social svg:hover {
  color: #d74100 !important;
  fill: #d74100 !important;
}
.footer svg:hover {
  color: #fff !important;
  fill: #fff !important;
}

/*** THS SECTION ***/
@media (min-width: 992px) {
  .card-img-top.ths-card-image {
    max-height: 175px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}

/*** NEW STAFF DIRECTORY FROM METADATA ***/
#blocksection {
  padding-bottom: 30px;
}
#staff-filter-row {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}
.staff-dropdown {
  margin-bottom: 10px;
}
.staff-search-button {
  margin-bottom: 10px;
}
.staff-reset-button {
  margin-bottom: 10px;
}
#staff-areas {
  max-width: 300px;
  height: 40px;
  border-radius: 0;
  color: var(--dark-blue);
  background-color: #fff;
  font-size: 0.9rem;
}
#searchButton {
  margin-bottom: 4px;
  height: 40px;
  padding: 8px 15px;
}
#searchText {
  height: 40px;
  color: var(--dark-blue);
  width: 200px;
}
#resetButton {
  margin-bottom: 4px;
  height: 40px;
  padding: 8px 15px;
}
.staff-container {
  display: block;
}
.staff-heading {
  border-left: 8px solid var(--orange);
}
.staff-heading h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0 0 0 10px !important;
  margin: 20px 0 0 0;
}
.staff-heading p {
  padding: 10px 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin: 0;
  max-width: 75%;
}
.row .staff-section {
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
}
.staff-section .mod-cards {
  padding: 0 !important;
  max-width: 100%;
}
.staff-item {
  height: 375px;
  padding: 10px;
  display: inline-table;
}
.staff-item .mod-gallery-item {
  padding: 0 !important;
}
.staff-item img {
  width: 190px;
  height: auto;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 3px solid var(--orange);
}
.staff-metadata {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.staff-metadata .card-body {
  padding: 6px 2px 3px 2px;
  width: 190px;
}
.staff-metadata .meta-name {
  font-weight: 600;
  display: block;
  font-size: 0.95rem;
}
.staff-folder {
  color: #d74100;
}
.meta-title,
.meta-area {
  font-size: 0.85rem;
  display: block;
  line-height: 1.1rem;
  padding: 3px 0;
  margin: 0;
}
.meta-email {
  display: block;
  padding: 2px 0;
}
.meta-phone {
  display: block;
  padding: 2px 0;
}
.staff-no-results {
  font-weight: 600;
}

/*** BUTTONS ***/
.btn {
  border-radius: 0;
  font-weight: 700;
}
.btn-primary,
.btn-primary:visited {
  background-color: #fff;
  border: 2px solid #d74100;
  color: #d74100;
  text-decoration: none !important;
  padding: 10px 20px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #d74100 !important;
  border: 2px solid #d74100;
  color: #fff;
}
.btn-orange,
.btn-orange:visited {
  background-color: #d74100;
  border: 2px solid #d74100;
  color: #fff;
  font-weight: bold;
  text-decoration: none !important;
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 1.1rem;
}
.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  background-color: #707780 !important;
  border: 2px solid #707780;
  color: #fff;
}
.btn-link {
  color: var(--dark-blue);
  width: 100%;
  padding: 0;
}
.btn-link:hover {
  color: #111111;
}

/*** SR-ONLY ***/
.sr-only,
.sr-only h2,
.sr-only a {
  background-color: #333;
  color: #fff;
}
.offscreen-text {
  text-indent: -9999px;
  position: absolute;
}
.hidden {
  display: none;
}

/*** FONT COLOR CLASSES ***/
.font-dark-gray {
  color: #6f777d;
}
.font-xdark-gray {
  color: var(--dark-blue);
}

/*** EQUAL HEIGHT ***/
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/*** SKIP TO MAIN CONTENT ***/
.skip-container {
  position: absolute;
  height: 20px;
  width: 100%;
  z-index: 2;
}
.sr-only.sr-only-focusable {
  position: absolute;
  top: 0;
  left: -1000000px;
  width: 100%;
  height: 100%;
  z-index: 2000;
  padding: 10px;
  background-color: #333;
  color: #fff;
}

/** IMAGES ***/
.img-responsive {
  width: 100%;
  max-width: 100%;
}

.img-float-left {
  float: left;
  display: inline-block;
}

/*** HEADER ***/
.header-main.header-container {
  max-height: 200px;
  padding: 15px 0;
  /*max-width: 1200px;*/
  margin: 0 auto 10px auto;
}
#logo-img {
  max-height: 70px;
  display: inline-block;
  margin: 0 10px;
}
#logo {
  margin: 0;
  padding: 0 20px;
}
#logo-text-university {
  font-size: 1.6rem;
  font-family: ShermanSerif, Georgia, serif;
  width: 100%;
  margin: 0;
}
#logo-text-university a {
  text-decoration: none;
  color: #d74100;
}
@media (max-width: 575px) {
  #logo-text-university {
    padding: 0;
  }
  .header-main .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
#logo-text-university a:hover {
  text-decoration: underline !important;
}
#logo-text-separater {
  color: #6f7780;
  font-size: 1.5rem;
}
#logo-text-site {
  width: 100%;
  font-size: 1.6rem;
  margin: 0;
}
@media (max-width: 575px) {
  #logo-text-site {
    padding: 0;
  }
}
#logo-text-site a {
  color: var(--dark-blue);
  text-decoration: none;
}
#logo-text-site a:hover {
  color: #d74100;
  text-decoration: underline !important;
}
#main-content .row {
  margin: 0;
  padding-bottom: 30px;
}

/*** TOP NAV ***/
.navbar-container {
  max-width: 1300px;
  margin: auto;
}
.navbar-light .navbar-nav a.nav-link {
  color: var(--dark-blue);
}
.navbar-expand-lg .navbar-nav a.nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}
.navbar-light .navbar-nav a.nav-link:focus,
.navbar-light .navbar-nav a.nav-link:hover {
  color: #d74100;
}
.navbar-nav {
  width: 100%;
}
.navbar.navbar-expand-lg {
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 0;
  margin: 8px 0 0 0;
}
a.nav-link {
  text-decoration: none;
}
.nav-item {
  font-family: ShermanSerif, Georgia, serif;
  padding: 4px 0;
  font-size: 1.1rem;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin: 0;
  padding: 0;
}
.dropdown-menu {
  border-radius: 0;
  border: 1px solid #ccc;
}
.dropdown-menu ul {
  padding-left: 0;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-item {
  color: var(--dark-blue) !important;
  font-family: ShermanSans, Verdana, sans-serif;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  text-decoration: none !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
  text-decoration: underline;
  background-color: inherit;
  color: #d74100 !important;
  outline: 2px solid #6f777d;
}
ul.navbar-nav li.nav-item > .dropdown-menu {
  display: none;
}
ul.navbar-nav li.nav-item:hover > .dropdown-menu {
  display: block;
}
.dropdown-toggle-fa::after {
  content: "\f0d7";
  font-family: Fontawesome;
  color: var(--dark-blue);
  font-size: 0.9em;
  padding: 0 0 0 5px;
}
.dropdown-toggle-fa:hover::after,
.dropdown-toggle-fa:focus::after {
  content: "\f0d8";
  font-family: Fontawesome;
  color: var(--dark-blue);
}
.sticky-topnav {
  position: sticky;
  display: block;
  top: 0;
  z-index: 79;
}

/*** MOBILE BANNER ***/
.mobile-banner {
  background-color: #fff;
  border-top: 1px solid #eee;
}

/*** MOBILE NAV ***/
.navbar-toggler {
  border-radius: 0;
  background-color: #d74100;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
  #navbarResponsive {
    border-bottom: 8px solid #6f777d;
  }
  .btn-group {
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc;
  }
  .nav-item {
    background-color: #fff;
    text-decoration: none;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-btn-left {
    width: 85%;
    -webkit-appearance: none !important;
  }
  .nav-btn-right {
    float: right;
    width: 15%;
    margin: 0;
    padding: 10px 0 !important;
    border-left: 1px solid #ccc;
  }
  .btn-group-mobile .nav-btn-right .icon::after {
    content: "\f067";
    font-family: "FontAwesome";
  }
  .btn-group-mobile .nav-btn-right .icon:focus::after,
  .btn-group-mobile .nav-btn-right .icon:hover::after,
  .btn-group-mobile .nav-btn-right .icon:active::after {
    content: "\f068";
    font-family: "FontAwesome";
  }
  .btn-group-mobile .nav-btn-full {
    width: 100%;
    clear: both;
    padding-right: 15%;
  }
  .btn-group-mobile .dropdown-menu {
    border: none;
  }
  .btn-group-mobile .dropdown-item {
    padding: 15px 0 10px 30px;
    border-top: 1px solid #ccc;
    border-bottom: none;
  }
  .btn-group-mobile .dropdown-menu.show {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border-left: 20px solid #ccc;
    border-bottom: 5px solid #ccc;
    border-right: 1px solid #ccc;
  }
} /*** END MOBILE***/

/*** UTILITY SECTION ***/
#utility-nav {
  width: 100%;
}
.utility img {
  height: 25px;
  padding-right: 5px;
  margin-bottom: 5px;
}
.social {
  float: right;
  padding: 0;
}
.social li {
  display: inline-block;
  padding: 0 10px;
}
.social li a {
  color: var(--dark-blue);
  font-size: 0.8rem;
}
.social li a:hover {
  color: #d74100;
}
.social li a .fa {
  font-size: 1.3rem;
}
.social-orange li a {
  color: #d74100;
}

/*** CUSTOM UTILITY BUTTONS ***/
.utility-buttons {
  width: 100%;
}
.utility-give-online,
.utility-call {
  padding: 0 10px;
  display: block;
  margin-bottom: 2px;
}
.utility-desktop .utility-buttons {
  text-align: right;
}
.utility-mobile .utility-buttons {
  text-align: left;
  margin-top: 30px;
}
.utility-mobile .utility-buttons a {
  font-size: 0.9rem;
}
.btn.btn-orange.utility-button {
  padding: 5px 10px;
  font-size: 1rem;
  line-height: 35px;
}

/*** HOME S BLOCK SECTION ***/
.home-s {
  margin: 60px auto 0px auto;
}
.home-s h2 {
  font-family: ShermanSerif, Georgia, serif;
  font-size: 3.2rem;
  padding: 20px 0 30px;
}

/***CAROUSEL***/
.carousel {
  padding-bottom: 30px;
  background-color: #fff;
  margin: auto auto;
}
.interior-page .carousel {
  padding-bottom: 0;
}
.carousel-caption {
  background-color: #fff;
  color: var(--dark-blue);
  padding: 10px 15px;
  border-left: 8px solid var(--dark-blue);
  text-align: left;
  max-width: 70%;
  right: auto;
}
.carousel-caption h2 {
  font-size: 3rem;
  padding: 10px 0;
  color: var(--orange);
  line-height: 4rem;
  font-weight: 700;
}
.carousel-control-next,
.carousel-control-prev {
  z-index: 2000;
  width: 10%;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 50px;
  height: 50px;
  background-color: #000;
  background-size: 75% 75%;
  border-radius: 50%;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
}
.carousel-item {
  height: 400px;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.carousel-indicators {
  bottom: 0;
}
.carousel-indicators li {
  background-color: #adb3b8;
  width: 90px;
  height: 10px;
}
.carousel-indicators li:focus {
  background-color: #d74100;
}
.carousel-indicators .active {
  background-color: var(--dark-blue);
}
/** ADJUST BACKGROUND BANNER FOR TABLETS**/
@media (max-width: 991px) and (min-width: 576px) {
  .carousel-item {
    /**background-size: 100% auto;**/
    max-width: 100%;
    height: auto;
  }
}

/*** INTERIOR PAGE BANNERS ***/
.interior-page .carousel-inner {
  top: -20px;
}
.interior-page .carousel-item {
  width: 100%;
  min-height: 500px;
  height: auto;
}

figcaption {
  font-size: 0.9rem;
}

/*** CONTAINERS FOR MOBILE ***/
@media (max-width: 991px) {
  .left-container {
    padding-left: 0;
    padding-right: 0 !important;
  }
  .sidebar-container {
    padding: 0;
  }
}

/*** BREADCRUMBS ***/
.breadcrumb-section {
  font-size: 1rem;
  padding: 20px 0;
  font-style: italic;
  margin-bottom: 1rem;
}
.breadcrumb-separator {
  padding: 0 10px;
}
.breadcrumb-section a {
  font-weight: normal !important;
}
