@import url("https://use.typekit.net/kvj4kdq.css");
/* COLORS */
:root {
    --grey: #5c5c5c;
    --lightgrey: #ececec;
    --brightred: #e32426;
    --brightred-darker:#CC2022;
}
.button, .button.disabled, .button.disabled:focus, .button.disabled:hover, .button[disabled], .button[disabled]:focus, .button[disabled]:hover {
    background-color: var(--brightred);
    font-weight:700;
    font-size:1.125rem;
    color: #fefefe;
}
.date {
    display:block;
    margin-bottom:0;
}
.global header .date {
    text-transform: uppercase;
    margin: 1.75rem 0 .75rem;
}
.global header .author {
margin-bottom:2rem;
    display:block;
}
.full-width tbody tr:nth-child(even)  a:not(.button) {
color:var(--brightred-darker);
}
/* ALLOWS FOR SMOOTH SCROLLING TO ALL ANCHOR TAGS */
html {
    scroll-padding-top: 123px;
    scroll-behavior: smooth;
}
/* TYPOGRAPHY */
body {
    font-family: montserrat, sans-serif;
    color: #635b5b;
    
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-family: montserrat, sans-serif;
}
h2 {
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 1.1;
}
.full-width a:not(.button),
a:not(.button) {
     color: #e32426;
}
.full-width p a {
     text-decoration: underline;
}
tbody tr:nth-child(even) td a {
    color: #CB1A1D;
}
main a:not(.button) {text-decoration: underline;}
.pagehead {min-height: 680px;}
.page-title {
    text-align: left;
    color: #54595f;
    margin-top: 1em;
}
#page-hero h2 {
    font-size: 5rem;
    line-height: 0.9;
}
.title--underline {
    position: relative;
    line-height: 1;
}
.title--underline::after {
    color: #e32426;
    background: #e32426;
    content: "";
    display: block;
    height: 1px;
    position: relative;
    width: 100px;
    border-bottom: 5px solid #e32426;
    margin: 0 3px 3px 2px;
}
#main .subheader {
    color: #757575;
}
.sectionSubhead {
    font-size: 1rem;
    text-align: left;
}

/*.full-width:not(#student-spotlight) h2:after {
    content: "";
    display: block;
    width: 60%;
    padding-top: 2rem;
    border-bottom: 5px solid var(--brightred); 
}*/
.whiteText {color: #fff;}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.scroll__container {
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
}
#icon-page-down {
    z-index: 2;
}
.fa-arrow-circle-down {
    font-size: 3.5rem;
    color: #e5e5e5;
}
.skipNav {
    color: var(--brightred);
    background: #000;
    width: 100%;
    display: block;
    padding: .5rem 0;
    text-align: center;
}
.skipNav:focus {
    color: var(--brightred);
    text-decoration: underline;
}
/* POSITIONING */
.bottom {
    position: absolute;
    bottom: 1.5rem;
}
body div .margin-top-neg {
    margin-top: -120px !important;
}

/* BUTTONS */
#main .button--slide {
    border: 2px solid #e32426;
    display: inline-block;
    font-weight: 500;
    position: relative;
    background-color: transparent !important;
    overflow: hidden;
    color: #e32426;
    transition: color .3s;
}
#main .button--slide::before {
    background: #e32426;
    content: "";
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    position: absolute;
    z-index: -1;
    transition: all .3s;
    transform: translateX(-105%);
}
#main .button--slide:hover,
#main .button--slide:focus,
#main .button--slide.active {
    color: #fefefe;
    background: #e32426;
}
#main .button--slide.active::before,
#main .button--slide:hover::before,
#main .button--slide:focus::before {
    transform: translateX(0);
}
.button--underline,
main a.button--underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.button--underline::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: solid 2px #e32426;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition: transform .3s ease-in-out;
}
.button--underline:hover::before,
.button--underline:focus::before {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}
/* -- MENTORING WORKS BUTTON -- */
.button.gsbsmentor {
    position: relative;
    border: 2px solid #e32426;
    background: #e32426;
    font-weight: 500;
    color: #fff;
    transition: color .3s;
    overflow: hidden;
    z-index: 4;
    word-break: break-word;
}
.button.gsbsmentor::before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    z-index: -1;
    transition: all .3s;
    transform: translateX(-105%);
}
.button.gsbsmentor:hover::before,
.button.gsbsmentor:focus::before {
    transform: translateX(0);
}
.button.gsbsred {
    position: relative;
    border: 2px solid #e32426;
    background: transparent;
    font-weight: 500;
    color: var(--brightred);
    transition: color .3s;
    overflow: hidden;
    z-index: 4;
    word-break: break-word;
}
.button.gsbsred::before {
    content: "";
    background: var(--brightred);
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    z-index: -1;
    transition: all .3s;
    transform: translateX(-105%);
}
.button.small {
    font-size: .8rem;
    padding: .25rem .5rem;
}

/* RED BUTTONS */
.gsbs-button {
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    color: #e32426;
}
.gsbs-button:hover,
.gsbs-button:focus {
    text-decoration: none;
    color: #e32426;
}

.gsbs-button.red-arrow::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: solid 2px #e32426;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition: transform .3s ease-in-out;
}

.gsbs-button.red-arrow:hover::before,
.gsbs-button.red-arrow:focus::before {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.gsbs-button.red-underline::after {
    content: '\f054';
    font-weight: 400;
    margin-left: 1rem;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transition: transform .3s ease;
}

.gsbs-button.red-underline:hover::after,
.gsbs-button.red-underline:focus::after {
    transform: translateX(5px);
}
/* END DATA BUTTONS */

body .button.gsbsred:hover,
body .button.gsbsred:focus {
    color: #fefefe;
}
.button.gsbsred:hover::before,
.button.gsbsred:focus::before {
    transform: translateX(0);
}

body .gsbsred,
a.gsbsred {
    color: var(--brightred);
}

#vidwrapper-text a,
.pagehead .button.gsbsred {
    border: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
#vidwrapper-text a:after,
.pagehead .button.gsbsred:after {
    transition: margin-left .3s;
}
body .pagehead .button.gsbsred:before {
    content: none;
}
#vidwrapper-text a:hover,
#vidwrapper-text a:focus,
.pagehead .button.gsbsred:hover,
.pagehead .button.gsbsred:focus {
    color: var(--brightred);
}
#vidwrapper-text a:hover:after,
#vidwrapper-text a:focus:after,
.pagehead .button.gsbsred:hover:after,
.pagehead .button.gsbsred:focus:after {
    margin-left: 1.25rem;
}

/* MARGINS & PADDING */
.margin-small {margin: 10px !important;}
.margin-medium {margin: 20px !important;}
.margin-small-left {margin-left: 10px !important;}
.margin-medium-left {margin-left: 30px !important;}
.margin-small-top {margin-top: 10px !important;}
.margin-medium-top {margin-top: 2% !important;}
.margin-medium-bottom {margin-bottom: 50px !important;}
.margin-large-top {margin-top: 10% !important;}
.margin-large-bottom {margin-bottom: 100px !important;}
.margin-small-right {margin-right: 10px !important;}
.margin-medium-right {margin-right: 30px !important;}
.margin-large-right {margin-right: 100px !important;}
.padding-small {padding-right: 10px !important;}
.padding-medium {padding: 1%;}
.padding-medium-top {padding-top: 5%;}
.padding-medium-left {padding-left: 5%;}
.padding-medium-right {padding-right: 5%;}
.padding-large {padding: 12% 10%;}

@media print, screen and (min-width: 64em) {
.padding-large-right {padding-right: 30%;}
}

/* HERO */
#page-hero {
    position: relative;
}
.hero__overlay {
    background-image: linear-gradient(45deg,#000 0%,rgba(18,70,97,0) 50%);
    opacity: .81;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#page-hero .left-content {
    z-index: 1;
}

/* WIDGETS */

/* Accordions and Tabs */
.uth-accordions {
    margin-bottom:3rem;
}
.accordion-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brightred);
    transition: color .2s ease-in-out;
}
.full-width a.accordion-title:hover,
.full-width a.accordion-title:focus,
.accordion-title:hover,
.accordion-title:focus {
    color: #222;
}
.tabs-title>a, .tabs-title>a:focus {color: var(--brightred);font-size:0.9rem;font-weight:600;}
.tabs-title>a[aria-selected=true] {color: rgb(165, 25, 26);}
/* PD 2Col Video */
/* Responsive video */
  .videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
  }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


/* Page Design 2Col Full Hero */
.twoCol-full-hero .imgCell {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center
}
.twoCol-full-hero .imgCell img {
  flex-shrink: 0 !important;
  min-width: 100%;
  min-height: 100%;
}

.twoCol-full-hero h2 {
  font-size: 1.9rem;
  color: #54595f;
  text-transform: uppercase;
  line-height: 1.1em;
}
.twoCol-full-hero a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brightred);
}
#vidwrapper-text a:after,
.pagehead a:after, 
.twoCol-full-hero a:after {
  font-family: "Font Awesome 6 Pro";
  content: '\f054';
  margin-left: 1rem;
}
.twoCol-full-hero h2:after {
  content: "";
  display: block;
  width: 60%;
  padding-top: 2rem;
  border-bottom: 5px solid var(--brightred);
}

#programs-glance .section-title {text-align: left;}

#contact .left-content {
    padding: 1rem;
}
#contact .right-content {
    padding: 1rem;
}
#contact input, #contact textarea, #contact .input-group-label {
    background-color: rgba(0,0,0,.05);
    border: none;
}
#contact label {
    color: #fff;
    padding-bottom: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
#contact .input-group-label {
    margin-bottom: 1rem;
    color: #fff;
}
#contact #submit {
    text-transform: uppercase;
    letter-spacing: 3px;
}
#formTerms {
    position: absolute;
    left: -999em;
}
/* Small only */
@media screen and (max-width: 40em) {
    h2, #page-hero h2 {
        font-size: 2em;
    }
    .twoCol-full-hero a {
        font-size: 1rem;
    }
    .twoCol-full-hero a > span {
        display: block;
    }
    .twoCol-full-hero a:after {
        display: none;
    }
}
@media print, screen and (min-width: 40em) {
    #contact .left-content {
        padding: 4em 7em 4em 0;
    }
    #contact .right-content {
        padding: 4em 0;
    }
    .twoCol-full-hero h2 {
      font-size: 2.9rem;
    }
}
@media print, screen and (min-width: 64em) {
    .twoCol-full-hero .imgCell img {
      max-width: initial;
    }
}



/* Reusable components */
#main .pagination .disabled { color: #757474; }
.callout.primary {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 11%);
    border-left: 5px solid #e32426;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
}
.cards-grid .cell {
    padding: 1rem 0.5rem;
}
.cards-grid .cell:hover,
.cards-grid .cell:focus {
    background-color: rgba(255,255,255,0.2);
}
.cards-grid .cell i {
    font-size: 3.125em;
    color: var(--brightred);
}
.cards-grid .cell a {transition: all .5s ease-in-out;}
.cards-grid .cell a:hover i,
.cards-grid .cell a:focus i {
    transform: scale(1.1);
}
/* FOOTER Elements */
footer {
    margin-top: 2rem;
    padding: 4em 0;
    background-color: #000;
    color: #fff;
    font-size: .9rem;
}
footer h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}
footer .menu a {
    color: #fff;
    text-decoration: underline;
    margin: .3rem 1rem;
    padding: 0;
    line-height: 1.5;
    transition: color .3s;
}
footer .menu a:hover,
footer .menu a:focus {
    color: var(--brightred);
}
footer .menu.vertical {
    margin-bottom: 1rem;
}
footer .menu.vertical li {
    font-size: 0.9rem;
}

footer .logo {
    border-bottom: 2.5px solid #e32426;
    margin-bottom: 2em;
    padding-bottom: 2em;
}
footer address {
    font-style: normal;
    margin-bottom: 2em;
}
footer #socialmedia {
    margin-bottom: 1em;
}
footer .copyright {
    line-height: 1;
    max-width: 80%;
}
footer .copyright small {
    font-size: .65rem;
}
.fi-social-facebook:before,.fi-social-flickr:before,.fi-social-instagram:before,.fi-social-linkedin:before,
.fi-social-twitter:before,.fi-heart:before,.fi-social-youtube:before,.fi-alert:before,.fa-facebook-f:before,
.fa-linkedin-in:before, .fa-youtube:before, .fa-twitter:before, .fa-x-twitter:before, .fa-instagram:before, .fa-bluesky:before {
    font-size: 1.6rem;
}
span.fi-social-facebook:hover,
span.fa-facebook-f:hover,
#socialmedia .facebook-f:focus{color:#3b5998}
span.fi-social-twitter:hover,
span.fa-x-twitter:hover,
#socialmedia .twitter:focus{color:#fff}
span.fi-social-youtube:hover,
span.fa-youtube:hover,
#socialmedia .youtube:focus{color:#cd201f}
span.fi-social-linkedin:hover,
span.fa-linkedin-in:hover,
#socialmedia .linkedin-in:focus{color:#0077b5}
span.fi-social-instagram:hover,
span.fa-instagram:hover,
#socialmedia .instagram:focus{color:#3f729b}
footer span:hover,
footer span:focus,
#socialmedia a:focus span{text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 15px #fff,0 0 20px #3D98B3,0 0 30px #3D98B3,0 0 40px #3D98B3,0 0 50px #3D98B3,0 0 75px #3D98B3}