/* --------------------------------------
    This stylesheet is devoted to:

    a starting point. core styles to set the stage.
-------------------------------------- */
 
/* -------------- clearfix --------------- */
.cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .cf {
    zoom: 1;
}
/* IE6 */
*:first-child+html .cf {
    zoom: 1;
}
/* IE7 */
* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}
:focus {
    outline: 1px dotted rgba(0,0,0,0.5);
}
.aria-hide,
.sr-only {
    position: absolute;
    top: 0;
    left: -5000px;
}
.button:focus {
   /* outline: 2px dotted rgba(0,0,0,0.5);
    */
}
.skip-link {
    position: absolute !important;
    top: 0;
    left: -4000px;
    background: #292929;
    color: white;
    displaY: inline-block;
    z-index: 1000000;
    font-size: 210%;
    text-decoration: none;
    font-size: 160%;
    padding: 15px ;
}
.skip-link:focus {
    left: 0;
    outline: none;
    position: relative;
}
/* -------------- zeros --------------- */
ul, ol, li, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-size: 100%;
}
/* -------------- tweakers --------------- */
::selection {
    background: #ffb0b5;
   /* WebKit/Blink Browsers */
    color: #292929;
}
::-moz-selection {
    background: #ffb0b5;
   /* Gecko Browsers */
    color: #292929;
}
.hidden {
    display: none;
}

.clear-both {
    clear: both;
}
/* -------------- max width --------------- */
.mw730 {
    max-width: 730px;
   /*width: 730px;
    lock */
   /* position: relative;
    */
    margin: 0 auto;
    text-align: left;
}
.mw920 {
    max-width: 960px;
   /*width: 730px;
    lock */
   /* position: relative;
    */
    margin: 0 auto;
    text-align: left;
}
.mw1024 {
    max-width: 1024px;
   /*width: 1024px;
   /* lock */
   /* position: relative;
    */
    margin: 0 auto;
    text-align: left;
}
.mw1160 {
    max-width: 1160px;
   /*width: 1160px;
   /* lock */
   /* position: relative;
    */
    margin: 0 auto;
    text-align: left;
}
.mw1400, .modern-page .mw1024 
/* override header and footer max width on mdoern pages */
{
    max-width: 1400px;
   /*width: 1400px;
   /* lock */
   /* position: relative;
    */
    
    margin: 0 auto;
    text-align: left;
}

.modern-page #footer-info .mw1024, .modern-page .mega-dropdown .mw1024 {
    max-width: 1440px;
}
.mw1700 {
   /* for professor profiles, to make room for arrow navigation */
    max-width: 1700px;
   /*width: 1160px;
   /* lock */
   /* position: relative;
    */
    margin: 0 auto;
    text-align: left;
}
/* -------------- basics --------------- */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
}
hr {
    border: none;
    border-top: 1px solid #dfdfdf;
    margin: 45px 0;
}
#main > hr {
    margin:  0;
   
}
/* -------------- buttons --------------- */
.button {
    display: inline-block;
    box-sizing: border-box;
    paddinG: 20px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 800;
    font-size: 160%;
    text-align: center;
    border-width: 3px;
    border-style: solid;
    background: transparent;
}
.stype .button {
    margin-top: 20px;
    margin-bottom: 20px;
}
/* -------------- button outline --------------- */
.button.outline {
}
.button.outline.white {
    border-color: white;
    color: white;
}
.button.outline.grey {
    border-color: #292929;
    color: #292929;
}
.button.outline.red {
    border-color: #e71c31;
    color: #e71c31;
}
/* -------------- button full --------------- */
.button.full {
    background-color: #e71c31;
    border-color: #e71c31;
    color: white !important;
    width: auto;
    border: none !important;
    paddinG: 23px 30px;
}
.button.full.grey {
    background-color: #bfbfbf;
    border-color: #bfbfbf;
    color: white;
    width: auto;
}
/* -------------- button effects --------------- */
.button {
    position: relative;
    transition: all .1s ease-in-out;
    z-index: 5;
    outline: none;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.button:after, .button:before {
    transition: transform .2s ease-in-out;
    transform-origin: top left;
}
.button:after {
    content: "";
    display: block;
    /* width: 100%; gap fix */
    width: 101%;
    height: 103%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}
#donate-button:after {
    width: 200px;

}
.button:hover:after, .button:focus:after {
    background-position: left bottom;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    transition: transform .2s ease-in-out;
    transform-origin: bottom left;
}
.button.outline.white:hover, .button.outline.white:focus {
    color: #e71c31 !important;
}
.button.outline.white:after {
    background-color: white;
}
.button.outline.red:hover, .button.outline.red:focus {
    color: white !important;
}
.button.outline.red:after {
    background-color: #e71c31;
}
.button.outline.grey:after {
    background-color: #dfdfdf;
}
.button.full.red:hover, .button.full.red:focus {
    color: white !important;
    border-color: #9B172E !important;
}
.button.full.red:after, .button.full.red:before {
    background-color: #9B172E !important;
    
}
.mega-dropdown .button.red:after {
    background-color: #e71c31;
}
.mega-dropdown .button.full:after {
    background-color: #dfdfdf;
}


.mega-dropdown .button {
    box-sizing: border-box !important;
    border-width: 3px !important;
    border-style: solid !important;
    box-sizing: border-box;
    border-color: #e71c31 !important;


}
.mega-dropdown .button.full.red:hover, .mega-dropdown .button.full.red:focus {
    color:#e71c31 !important;
    border-color: #e71c31 !important;
    border-width: 3px !important;
    border-style: solid !important;
}
.mega-dropdown .button.full.red:after, .mega-dropdown .button.full.red:before {
    background-color: white !important;
}

.button.full.reversed.red:hover, .button.full.reversed.red:focus {
    color:#e71c31 !important;
    border-color: none !important;
}
.button.full.reversed.red:after, .button.full.reversed.red:before {
    background-color: white !important;
    
}

.button.outline.red:hover, .button.outline.red:focus {
    color: white !important;
    border-color: #e71c31 !important;
}
.button.outline.red:after, .button.outline.red:before {
    background-color: #e71c31 !important;
    
}

.button-set {
    /*
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    */

    margin-top: 60px;
    list-style-type: none;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;


}
.button-set li {
    /*
    width: calc(25% - 15px);
    margin: 0 0 20px 0; 
    */

    box-sizing: border-box;
    width: 100%;

}
.button-set li a.button {
    width: 100%;
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
    .button-set {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 860px) {
    .button-set {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 640px) {
    .button-set {
        grid-template-columns: repeat(1, 1fr);
        gap: 4px 0;

    }
    .button.full {
        padding: 20px 30px;
    }
}

/* -------------- button outline --------------- */
#sidebar .button {
    width: 100%;
}
/* -------------- chevron links --------------- */
.text-link {
    display: inline-block;
    font-family: proxima-nova, sans-serif;
    font-weight: 800;
    letter-spacinG: 0.05em;
    text-decoration: none;
    font-size: 180%;
    color: #292929;
    padding: 5px 0;
    position: relative;
}
.text-link:focus {
    outline: none;
    text-decoration: underline !important;
}
.widget .text-link, #website-footer .text-link {
    width: 100%;
}
.text-link.style1:hover , .text-link.style2:hover , .text-link.style3:hover , .text-link.style4:hover, .text-link.style1:focus , .text-link.style2:focus , .text-link.style3:focus , .text-link.style4:focus {
    color: #e71c31;
}
.text-link:after {
    clear: both;
    content: '';
    display: inline-block;
    margin-left: 10px;
    width: 7px;
    heighT: 12px;
    margin-top: 0;
    background-size: 7px 12px;
    background-image: url('../img/chevron-right-red.svg');
    background-position: center;
    transition: all 0.2s ease-in-out !important;
}
.text-link:before, .text-link:after {
    top: 50%;
    transform: translatey(-50%);
    position: absolute;
}
.text-link:hover:after, .text-link:focus:after {
    margin-left: 15px;
}
/* chevron style 2 */
.text-link.style2 {
    font-size: 180%;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.025em;
    color: #292929;
}
.text-link.style2:after {
    background-image: url('../img/chevron-right-red.svg');
}
.text-link.style3 {
    display: block;
}
/* chevron style 3 */
.text-link.style3, .text-link.style4 {
    font-size: 180%;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.025em;
    color: #292929;
    padding-left: 20px;
    position: relative;
    line-height: 1.8;
}
.text-link.style3:after, .text-link.style4:after {
    background-image: none;
}
.text-link.style3:before, .text-link.style4:before {
    clear: both;
    content: '';
    display: inline-block;
    position: absolute;
    margin-left: 0;
   /* top: 14px;
    */
    left: 0;
    width: 7px;
    heighT: 12px;
    background-size: 7px 12px;
    background-image: url('../img/chevron-right-grey.svg');
    background-position: center;
    transition: all 0.2s ease-in-out !important;
    /*
    transform: none;
    top: 13px;
    */
    top: 50%;
    transform: translatey(-50%);
}
.text-link.style4:before {
    background-image: url('../img/chevron-right-red.svg');
}
.text-link.style3:hover:before, .text-link.style4:hover:before, .text-link.style3:focus:before, .text-link.style4:focus:before {
    margin-left:3px;
    background-image: url('../img/chevron-right-red.svg');
}
.text-link.style3:hover, .text-link.style4:hover, .text-link.style3:focus, .text-link.style4:focus {
}
#main .text-link {
   /* display: block;
    */
}
/* -------------- content containers --------------- */
body {
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-size: 62.5%;
    line-height: 1.2;
}
/* -------------- video banner --------------- */
.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.play-button {
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 100px;
    cursor: pointer;
    background-size: 120px 60px;
    background-image: url('../img/play-button.svg');
    background-position: 0 0;
    color: transparent;
}
.play-button:focus {
    /* background-color: #9B172E; */
    
}
.play-button.paused {
    background-position: 60px 0;
}

#story-play-button {
    border: none;
    bottom: 0;
    top: 572px;
    margin-right: 30px;
}
#slideshow-play-button {
    border: none;
    top: auto;
    bottom: 50px;
    right: 50px;
}


.progressCircle {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;

}
.section-slideshow .progressCircle {
    right: 0;
    left: auto;
}
.prev .left-arrow {
    content: "";
    displaY: 
    inline-block;
    width: 18px;
    height: 11px;
    background-size: 18px 11px;
    background-image: url(../img/arrow-left-white.svg);
}
.next .right-arrow {
    content: "";
    displaY: inline-block;
    width: 18px;
    height: 11px;
    background-size: 18px 11px;
    background-image: url(../img/arrow-right-white.svg);
}


