/*TABLE OF CONTENTS*/
/*
    0. CSS Reset
    1. Colors
    2. Document Setup
    3. Footer
*/

/* HIDE THE 3 CTA SIDE-BUTTONS IN T4 DIRECT EDIT */
#t4-direct-edit-wrapper + #tamuv-ctas {
    /* This rule will hide #tamuv-ctas only when it immediately follows #t4-direct-edit-wrapper in the DOM as a sibling. */
    display: none;
}

/*--------------------------------------------------*/
/* 0. CSS Reset ------------------------------------*/
html, body {
    border: none;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    box-sizing: border-box;
}

/* 1. Colors ------------------------------------*/
:root {
    --black: #000000;
    --bone: #e3d8c9;
    --chamoisee: #91744b;
    --dim-grey: #626262;
    --eerie-black: #1a1a1a;
    --gunmetal: #182828;
    --lion: #ab8c5f;
    --platinum: #d9d9d9;
    --platinum-light: #f6f6f6;
    --timberwolf: #d2d2d2;
    --uni-red: #ae0000;
    --white: #ffffff;
    --white-smoke: #f7f5f3;
    --max-content-width: 1600px;
    --color-1973: #f7f5f3;
    --color-coast: #182828;
    --color-golden: #ab8c5f;
    --color-jax: #dac08c;
    --color-pillars: #d9d9d9;
    --color-rings: #e3d8c9;
    --color-rosette: #ae0000;
    --color-spirit: #91744b;
    --color-spots: #1a1a1a;
}

/* 2. Document Setup -------------------------------*/
body {
    background-color: var(--timberwolf);
    color: var(--eerie-black);
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 auto;
}

header, main {
    background-color: var(--white);
}
main { padding-bottom: 1px; /* Vertical margins can collapse between parent and child if the parent lacks padding, border, or content. */ }

p {
    margin: revert;
}

img {
    max-width: 100%;
}

section > *, footer > *, .max-width-class {
    margin: 0 auto;
    max-width: var(--max-content-width);
    width: 100%;
}

.skip-to-main-content-link {
    background-color: var(--white);
    border: 2px var(--uni-red) solid;
    border-radius: 15px;
    color: var(--eerie-black);
    left: -9999px;
    opacity: 0;
    padding: 1em;
    position: absolute;
    z-index: 999;
}

.skip-to-main-content-link:focus {
    border: 2px var(--uni-red) solid;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

a.t4Edit-page {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.wrapper {
    /*display: block;
    height: 30rem;
    margin-right: auto;
    margin-left: auto;*/
}

/* Language Menu */
.language-nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 8rem;
    text-align: left;
    background-color: #2b2b2b;
    z-index: 10;
    transition: all 0.3s;
    width: 16vw;
    transition: all ease-in-out .4s;
}

.language-nav-country {
    color: #fff;
    line-height: 2;
    margin-left: 1.5rem;
    margin-top: 1rem;
    position: fixed;
}

.language-nav-country > ul {
    list-style: none;
}

.language-nav-country > ul > li > a {
    color: #fff;
    text-decoration: none;
}

.language-nav-country > ul > li > a:hover {
    color: #fff100;
    text-decoration: none;
}

.language-nav-wrapper.showLanguage {
    display: block;
}

.language-nav-wrapper.showLanguage.hide {
    padding-top: 2rem;
    transition: all ease-in-out .4s;
}

/*Hyperlink style*/
section.container a:not([class]) {
    color: inherit;
    /*line-height: normal;*/
    position: relative;
    transition: all 0.5s ease;
}

section.container a:not([class]):after, .columns-4-news .column .redBoarder a::after {
    background-color: var(--uni-red);
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    width: 100%;
}

section.container a:hover {
    color: var(--uni-red);
    text-decoration: none;
}

section.container a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.image-left a {
    text-decoration: none;
}

/*Link Buttons*/
a.rounded-button-red:link, a.rounded-button-red:visited {
    background-color: var(--uni-red);
    border-radius: 10px;
    border-width: 0;
    color: #fff;
    display: inline-block;
    font-size: 1.125em;
    font-weight: 600;
    max-width: 300px;
    padding: .25em 1em .25em 1em;
    text-align: center;
    text-decoration: none;
    width: auto;
    -moz-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

a.rounded-button-red:hover {
    background-color: var(--eerie-black);
    color: var(--white) !important;
}

a.noUnderlineLink {
    color: inherit;
    text-decoration: none;
}

.CTA-button-28 {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border: 2px solid var(--chamoisee);
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--uni-red);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 700;
    justify-content: center;
    line-height: normal;
    margin: 0;
    max-width: 18rem;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
}

.CTA-button-28:hover, .CTA-button-28:focus {
    border: 2px solid var(--uni-red);
    color: var(--white) !important;
    background-color: var(--uni-red);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.button-red-1 {
    align-items: center;
    appearance: none;
    background-color: var(--uni-red);
    border: 1px solid var(--white);
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 600;
    justify-content: center;
    line-height: normal;
    margin: 0;
    max-width: 18vw;
    min-height: 4vh;
    min-width: 10vw;
    outline: none;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
}

.button-red-1:hover, .button-red-1:focus {
    color: var(--uni-red);
    background-color: var(--white);
    border: 1px var(--uni-red) solid;
    /*box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;*/
    /*transform: translateY(-2px);*/
}

/*Table Styles*/
/*table {
    background-color: var(--white);
    border: none;
    border-collapse: collapse;
    width: auto;
}

table td, th {
    padding: 8px 8px 8px 18px;
}

table th {
    background-color: var(--uni-red);
    color: var(--white);
    padding-top: 12px;
    padding-bottom: 12px;
}

table th[scope="row"] {
    background-color: var(--platinum);
    color: inherit;
}

table tr:nth-child(even) {
    background-color: #f7f7f7;
}

table tr:hover {
    background-color: var(--platinum);
*/}

/*td:first-child,th:first-child { border-radius: 8px 0 0 8px;}
td:last-child,th:last-child {border-radius: 0 8px 8px 0;}*/

/*End Table Styles*/

.red-background {
    background-color: var(--uni-red);
}

/*Three buttons*/
.three-link-buttons {
    display: flex;
    position: relative;
}

.three-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    width: 100%;
}
/*End Three buttons*/

/* Box with photo and text */
.two-boxes {
    /*align-items: flex-start;*/
    display: flex;
    /*flex-wrap: wrap;*/
    margin: auto auto 2rem auto;
}

    .two-boxes.boxes .box {
        flex: 0 1 calc(45% - 1rem);
    }

.three-boxes {
    /*align-items: flex-start;*/
    display: flex;
    /*flex-wrap: wrap;*/
    margin: auto auto 2rem auto;
}

    .three-boxes.boxes .box {
        flex: 0 1 calc(30% - 1rem);
    }

.boxes > .box {
    background: #d9d9d93b;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin: 0 auto;
    max-width: 50%;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.boxes > .box:hover {
    animation-name: example;
    animation-duration: 0.25s;
    border-bottom: 8px solid var(--uni-red);
    /*box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);*/
}

.boxes > .box .thumbnail > img {
    border: 0;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.box > a {
    text-decoration: none;
}

section.container .box > a::after {
    background-color: unset;
    bottom: 0;
    content: unset;
    height: unset;
    left: 0;
    position: unset;
    transform: unset;
    transform-origin: unset;
    transition: unset;
    width: unset;
}

section.container .box > a:hover::after {
    transform: unset;
    transform-origin: unset;
}

.boxes > .box .text {
    display: block;
}

/* Content Box w/button */

/* End Content Box w/button */

/* Numbers */
.numbers {
    background-color: var(--color1975);
    display: flex;
    flex-direction: column;
    position: relative;
}

.columns-logo {
    display: flex;
    justify-content: space-between;
}
/* 2 by 2 Flex Grid */
.grid2x2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 0 1rem 0;
    position: relative;
    width: auto;
}

.grid2x2.left {
    justify-content: flex-end;
}

.grid2x2.right {
    justify-content: flex-start;
}

.grid2x2 > div {
    align-items: flex-start;
    display: flex;
    flex-basis: calc(42% - 1px);
    flex-direction: row;
    justify-content: center;
}

.grid2x2 > .box {
    margin: 1rem;
}

.red-number {
    color: var(--uni-red);
    display: flex;
    font-size: 2.5rem;
    font-weight: 900;
    justify-content: flex-end;
    line-height: normal;
    margin-right: 2vw;
    width: 15%;
}

.text-content {
    display: block;
    width: 85%;
}

.text-content h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem auto;
}

.text-content > h3 > a {
    color: var(--eerie-black);
}

.text-content > h3 > a:hover {
    color: var(--uni-red);
}

.text-content p {
    margin-top: 0;
}

.jaguarHead {
    margin: 0;
    position: absolute;
    right: 0;
    top: -3vh;
    width: 16%;
    z-index: 1;
}

.am-stickers {
    margin: 0;
    position: absolute;
    top: -3vh;
    width: 16%;
    z-index: 1;
}

.am-stickers.four {
    margin: 0;
    position: absolute;
    top: -3vh;
    width: 13%;
    z-index: 1;
}

.am-stickers.left {
    left: -1vw;
}

.am-stickers.right {
    right: -1vw;
}

img.am-stickers.left.right {
    display: none;
}

/* End Flex Grid */
/* End Numbers */

/* Profiles */
.profileCards {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    justify-content: center;
    margin: 1rem auto;
}

    .profileCards > .column {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex: 1 1 calc(20% - 1rem);
        justify-content: center;
        margin-bottom: 2rem;
        text-align: center;
    }
/* End Profiles */

/*Rounded Icons*/
.centered.profile {
    max-width: 80%;
}

.iconsCards {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    margin: 2rem auto;
}

.iconsCards > .column {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 0 1 calc(30% - 1rem);
    margin-bottom: 2rem;
    justify-content: center;
}

.column img {
    border-radius: 25px;
    display: block;
    max-width: 200px;
    width: fit-content;
}

.iconsCards > .column p.heading {
    color: var(--uni-red);
    font-size: 1.5rem;
    margin: 0;
}

.iconsCards > .column p.text {
    margin: 0;
    padding: 0;
}

.rounded-img {
    border-radius: 25px;
}

@keyframes example {
    0% {
        border-bottom: 2px solid #ffffff;
    }

    25% {
        border-bottom: 3px solid #ffe6e6;
    }

    50% {
        border-bottom: 4px solid #ff8080;
    }

    100% {
        border-bottom: 5px solid var(--uni-red);
    }
}
/* End box with photo and text */

.container h1 /*, .container h2 */ {
    font-size: 1.5rem;
    color: var(--uni-red);
    margin: 0;
    line-height: 1.5;
}

.red {
    color: var(--uni-red);
}

.blk {
    color: var(--black);
}

.lighter {
    font-weight: 400;
}

.medium {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.bolder {
    font-weight: 800;
}

.textLeft {
    margin: auto 0 1rem 0;
    text-align: left;
}

.bluebgtrijags { /*background-image: url('../images/BlueBackgroundTriangleJags.svg');
    background-size: cover;
    background-position: center center;*/
}

.graytriangles {
    background-size: cover;
    background-position: center center;
}

.testimonialsBKG {
    background-size: contain;
    background-position: center center;
}

.graytriangles-contain {
    background-size: contain;
    background-position: center center;
}

.biggrayjax {
    background-size: contain;
    background-position: center center;
}

/*Arrow/Carrots*/
.arrow {
    border: solid var(--uni-red);
    border-width: 0 6px 6px 0;
    display: inline-block;
    margin: 0;
    padding: 8px;
}

.arrow.relative-top {
    position: relative;
    top: -13rem;
}

.arrow.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.arrow.right45 {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.arrow.right90 {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.CTA-heading > h1 {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
}

/*Buttons*/
/* CSS */
.button-82-pushable {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    display: block;
    line-height: normal;
    min-width: 20rem;
    outline-offset: 4px;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition: -webkit-filter 250ms;
    transition: -webkit-filter 250ms;
    -o-transition: filter 250ms;
    transition: filter 250ms;
    transition: filter 250ms, -webkit-filter 250ms;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient( to left, hsl(340deg 100% 16%) 0%, hsl(340deg 100% 32%) 8%, hsl(340deg 100% 32%) 92%, hsl(340deg 100% 16%) 100% );
}

.button-82-front {
    border: 1px var(--uni-red) solid;
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--eerie-black);
    background: var(--white);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}

/*Red*/
.button-red-pushable {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    display: block;
    line-height: normal;
    margin: 0 auto;
    min-width: 20rem;
    outline-offset: 4px;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: filter 250ms;
    width: fit-content;
    user-select: none;
    -webkit-user-select: none;
}

.button-red-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsla(0, 0%, 0%, 0.11);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-red-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient( to left, #999 0%, #272727 8%, #272727 92%, #999 100% );
}

.button-red-front {
    border: 1px var(--uni-red) solid;
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--white);
    background: var(--uni-red);
    will-change: transform;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-red-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-red-pushable:hover .button-red-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-red-pushable:active .button-red-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-red-pushable:hover .button-red-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-red-pushable:active .button-red-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-red-pushable:focus:not(:focus-visible) {
    outline: none;
}

/* Button on dark background */
section.green .button-red-pushable, section.black .button-red-pushable {
    position: relative;
    border: none !important;
    background: transparent !important;
    display: block;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    text-decoration: none;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 0 auto;
    width: fit-content;
    line-height: normal;
}

section.green .button-red-shadow, section.black .button-red-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

section.green .button-red-edge, section.black .button-red-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient( to left, hsl(0, 100%, 16.1%) 0%, hsl(0, 100%, 32%) 8%, hsl(0, 100%, 32%) 92%, hsl(0, 100%, 16.1%) 100% );
}

section.green .button-red-front, section.black .button-red-front {
    border: 1px var(--uni-red) solid;
    display: block;
    position: relative;
    padding: 16px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--eerie-black);
    background: #fff;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

section.green .button-red-pushable:hover, section.black .button-red-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

section.green .button-red-pushable:hover .button-red-front, section.black .button-red-pushable:hover .button-red-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

section.green .button-red-pushable:active .button-red-front, section.black .button-red-pushable:active .button-red-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

section.green .button-red-pushable:hover .button-red-shadow, section.black .button-red-pushable:hover .button-red-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

section.green .button-red-pushable:active .button-red-shadow, section.black .button-red-pushable:active .button-red-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

section.green .button-red-pushable:focus:not(:focus-visible), section.black .button-red-pushable:focus:not(:focus-visible) {
    outline: none;
}

/*White button with red outline and shadow*/
/* Button on dark background */
section .button-white-pushable {
    position: relative;
    border: none !important;
    background: transparent !important;
    display: block;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    text-decoration: none;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 0 auto;
    width: fit-content;
    line-height: normal;
}

section .button-white-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

section .button-white-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient( to left, hsl(0, 100%, 16.1%) 0%, hsl(0, 100%, 32%) 8%, hsl(0, 100%, 32%) 92%, hsl(0, 100%, 16.1%) 100% );
}

section .button-white-front {
    border: 1px var(--uni-red) solid;
    display: block;
    position: relative;
    padding: 16px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--eerie-black);
    background: #fff;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

section .button-white-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

section .button-white-pushable:hover .button-white-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

section .button-white-pushable:active .button-white-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

section .button-white-pushable:hover .button-white-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

section .button-white-pushable:active .button-white-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

section .button-white-pushable:focus:not(:focus-visible) {
    outline: none;
}

@media (min-width: 768px) {
    .button-82-front, .button-red-front {
        font-size: 1.25rem;
        padding: 16px 42px;
    }
}

/*Student Spotlight*/
.spotlight {
    align-items: center;
    display: flex;
    margin: 0 auto;
    width: 65%;
}

.spot-image-left {
    margin: 2rem 5rem 2rem 2rem;
}

.spot-image-right {
    margin: 2rem 2rem 2rem 5rem;
}

.spot-image-left img, .spot-image-right img {
    border-radius: 25px;
}

.spot-image-left img, .spot-image-right img {
    height: 300px;
    max-height: 400px;
    max-width: 300px;
    object-fit: cover;
    object-position: 50% 50%;
    width: 200px;
}

.spot-quote > p.quote {
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.spot-quote > p.quote:before {
    content: open-quote;
}

.spot-quote > p.quote:after {
    content: close-quote;
}

.spot-quote > p.quote:before, .spot-quote > p.quote:after {
    display: inline-block;
    vertical-align: bottom;
    color: var(--uni-red);
    font-size: 1rem;
    position: relative;
}

.spot-quote p.quote-name {
    color: var(--uni-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.spot-quote p.quote-major {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 4rem;
    margin-top: 0;
}

.spot-quote p.quote-major span {
    color: var(--uni-red);
    font-weight: 600;
}

.programs-text {
    font-size: 1.85rem;
    margin-left: 15rem;
    margin-right: 15rem;
    text-align: center;
    text-transform: uppercase;
}

.programs-text > span {
    font-weight: 700;
}

.programs-text > span.red {
    color: var(--uni-red);
}

/*Image fade classes*/
.faded {
    color: var(--white);
    display: inline-block;
    position: relative;
}

.faded.grey {
    color: var(--platinum-light);
}

.faded.white-smoke {
    color: var(--white-smoke);
}

.faded.darkGrey {
    color: var(--dim-grey);
}

.faded.green {
    color: var(--bone);
}

.faded.white {
    color: var(--white);
}

.faded.black {
    color: var(--eerie-black);
}

.faded.chamoisee {
    color: var(--chamoisee);
}

.faded:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-collapse: separate;
}

.faded.faded-left:after {
    box-shadow: inset 75px 0 40px -16px;
}

.faded.faded-right:after {
    box-shadow: inset -75px 0 40px -16px;
}

.faded.faded-left.faded-right:after {
    box-shadow: inset 40px 0 40px 10px, inset -40px 0 40px 10px;
}

.faded.white.faded-left.faded-right > img {
    max-width: 595px;
    width: 100%;
}

/*Faded background gradient*/
.gradient-over {
    margin: 0;
    padding: 0;
    position: relative;
}

.gradient-over img {
    display: block;
    height: auto;
    max-width: 100%;
}

.gradient-over:after {
    background: linear-gradient( to right, hsl(0, 0%, 100%) 0%, hsla(0, 0%, 100%, 0.999) 35%, hsla(0, 0%, 100%, 0.990) 40.3%, hsla(0, 0%, 100%, 0.862) 43.4%, hsla(0, 0%, 100%, 0.799) 45.6%, hsla(0, 0%, 100%, 0.73) 47.9%, hsla(0, 0%, 100%, 0.655) 49.2%, hsla(0, 0%, 100%, 0.577) 56.2%, hsla(0, 0%, 100%, 0.497) 64%, hsla(0, 0%, 100%, 0.417) 71.3%, hsla(0, 0%, 100%, 0.337) 78.1%, hsla(0, 0%, 100%, 0.259) 84.2%, hsla(0, 0%, 100%, 0.186) 89.6%, hsla(0, 0%, 100%, 0.117) 94.1%, hsla(0, 0%, 100%, 0.054) 97.6%, hsla(0, 0%, 100%, 0) 100% );
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.gradient-over-text {
    color: var(--eerie-black);
    display: block;
    font-size: 2rem;
    left: 8rem;
    padding: 1rem;
    position: absolute;
    top: 8rem;
    z-index: 2;
}


/*Text Classes*/
.uppercase {
    text-transform: uppercase;
}

h3.uppercase {
    color: var(--eerie-black);
    font-size: 1.5rem;
    font-weight: 700;
}

.normalcase {
    text-transform: unset;
}

p.larger {
    font-size: 1.25rem;
    line-height: 1.5;
}

p.largest {
    font-size: 1.5rem;
    line-height: 1.5;
}

h2.red {
    color: var(--uni-red);
}

h2.section-heading {
    font-size: 2.85rem;
    font-weight: 700;
    text-align: center;
}

span.red {
    color: var(--uni-red);
}

/*Text Align Classes*/
.container .text-align-center, .container .center-text {
    text-align: center;
}

.container .text-align-right {
    text-align: right;
}

.rounded-img {
    border-radius: 25px;
}

/*Numbers*/
.data {
    color: #626262;
}

.green .data {
    color: var(--white);
}

.data p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}

.data p.small {
    font-size: 1rem;
    line-height: 1.5;
}

.data p.smaller {
    font-size: 1.5rem;
    line-height: 1.5;
}

.data p.margin-top {
    margin-top: -2rem;
}

.data .large-numbers {
    font-size: 16rem;
}

.data .large-text {
    font-size: 4rem;
}

.data .bold {
    font-weight: 600;
}

.data .small-text {
    font-size: 12rem;
}

.data .smaller-text {
    font-size: 6rem;
}

.data span.break:after {
    content: "\a \00a0\00a0\00a0";
    white-space: pre;
}

.leftMargin {
    margin-left: 8rem;
}

.rightMargin {
    margin-right: 8rem;
}

.flex-container {
    display: flex;
    margin-bottom: 5rem;
    width: 50%;
}

.flex-container:last-child {
    margin-bottom: 1rem;
}

.flex-child {
    flex: 0 0 1;
}

.flex-child:first-child {
    margin-right: 2rem;
}

.header-style {
    background: var(--white);
}

.header-style .uhv-logo-top {
    margin: 2rem 0 0 4.25rem;
}

h1.page-title {
    color: var(--eerie-black);
    font-size: 4rem;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    padding-left: 0;
    padding-top: 10rem;
    /*text-shadow: 2px 2px 0 rgb(255, 255, 255), 6px 6px 0 rgb(171, 140, 95);*/
}

h1.page-title.sbdc {
    margin: 0 1.5rem 3rem 1.5rem;
    padding-top: 0;
}

.secNavigation {
    background: var(--white);
    color: var(--uni-red);
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    height: fit-content;
    min-height: 6em;
    max-height: -moz-fit-content;
    max-height: fit-content;
}

.jagHead {
    position: absolute;
    right: 0;
    top: 0;
    width: 18%;
    z-index: 2;
    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -ms-transition: width 0.2s;
    -o-transition: width 0.2s;
    transition: width 0.2s;
}

#t4-de-body .header-style .jagHead {
    width: 15% !important;
    z-index: 0;
}

.jagHead.sbdc {
    top: 35%;
    width: 14%;
}

.jagHead.js-scrolling {
    width: 14%;
    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -ms-transition: width 0.2s;
    -o-transition: width 0.2s;
    transition: width 0.2s;
}

.thisSection {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: -1.25em;
    margin-left: -0.25em;
    margin-top: 1em;
}

.top-navbar {
    background-color: rgba(225,37,27,1);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    height: 65px;
    line-height: 1.5;
    min-height: 65px;
    margin-bottom: 2rem;
    position: fixed;
    width: 100%;
    z-index: 15;
}

.top-navbar.fixed {
    position: fixed;
    z-index: 10;
}

/*Hamburger Button*/
.navbar-toggle {
    display: none;
}

/*Sticky Navigation*/
.top-navbar .logo {
    float: left;
    height: 35px;
    margin-left: 10px;
    padding: 15px;
    transition: all 0.2s ease;
}

.top-navbar .logo:hover {
    height: 40px;
    transition: all 0.2s ease;
}

.top-navbar ul.nav {
    float: left;
    font-size: 1.125rem;
    font-weight: 500;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.top-navbar ul.nav > li {
    display: block;
    float: left;
    text-shadow: 0px 2px 2px rgba(28, 28, 28, 0.47);
    padding: 2px 16px 0 16px;
}

.top-navbar ul.nav > li:before, .top-navbar ul.nav > li:after {
    background: var(--white);
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: scaleX(0);
    transition: 0.4s ease-in-out;
    width: 100%;
}

.top-navbar ul.nav > li::before {
    top: 0;
}

.top-navbar ul.nav > li::after {
    top: 0;
}

.top-navbar ul.nav > li:hover {
    letter-spacing: 3px;
    transition: 0.4s ease-in-out;
}

.top-navbar ul.nav > li a, .top-navbar ul.nav.right > li a {
    color: var(--white);
    text-decoration: none;
    transform: translateX(0rem);
    transition-duration: 0.3s;
    transition-property: transform;
}

.top-navbar ul.nav > li a:hover, .top-navbar ul.nav.right > li a:hover {
    text-decoration: underline;
    transform: translateX(1.25rem);
    transition-duration: 0.3s;
    transition-property: transform;
}

.top-navbar ul.nav.right {
    float: right;
    font-size: 1.1rem;
    font-weight: 500;
    list-style: none;
    margin-bottom: 0;
    margin-right: 1.5rem;
    padding-left: 0;
    position: relative;
    z-index: 6;
}

.top-navbar ul.nav.right > li img.icon {
    float: left;
    padding-right: 0.9rem;
    width: 25px;
}
/*End Sticky Navigation*/

/*Language*/
.selectpicker {
    background: none;
    border: none;
    color: var(--white);
    font-family: Montserrat, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.selectpicker option {
    background: var(--white);
    color: var(--black);
}

.secondNav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    margin-top: unset;
    /*margin-left: -2rem;*/
    padding: 0;
    transition: all 0.25s ease-in;
}

.secNavigation ul.secondNav-menu li {
    border-bottom: 0.0625rem solid var(--uni-red);
    display: inline-block;
    flex: 0 1 23%; /*25% for 3 columns*/
    font-size: 1.18rem;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 1rem 1.25rem;
    padding: 0 0 0.5rem 0;
    width: 100%;
}

    .secNavigation ul.secondNav-menu li:first-of-type a {
        display: inline;
        margin: 0 1.5em 0 0.5rem;
        transform: translateX(0rem);
        transition-duration: 0.3s;
        transition-property: transform;
    }

    .secNavigation ul.secondNav-menu li a {
        display: block;
        margin: 0 1.5em 0 0.5rem;
        transform: translateX(0rem);
        transition-duration: 0.3s;
        transition-property: transform;
    }

.secNavigation ul.secondNav-menu li a:link, .secNavigation ul.secondNav-menu li a:visited {
    color: var(--uni-red);
    text-decoration: none;
    width: 100%;
}

.secNavigation ul.secondNav-menu li a:hover {
    transform: translateX(1.25rem);
    transition-duration: 0.3s;
    transition-property: transform;
}

/*Nav Search*/
.searchbar {
    align-items: center;
    display: inline-flex;
    float: left;
    margin-top: 1rem;
    width: auto;
}

button.icon {
    background: transparent;
    border: none;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    width: 40px;
}

.searchbar input[type="search"] {
    border: 0;
    padding: 0;
    width: 0px;
    height: 35px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.searchbar .icon {
    position: relative;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: none;
    border-radius: 3px;
    color: #fff;
    transition: all 0.5s 0.3s ease;
}

.searchbar .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

.searchbar .icon.active, .searchbar .icon:hover {
    background: #062333;
    transition: all 0.3s ease;
}

.searchbar input[type="search"].active, .searchbar:hover input[type="search"] {
    width: 250px;
    padding: 0 10px;
    transition: all 0.5s 0.2s ease;
}

/*Content Sections Background Colors*/
.bone, .green {
    background-color: var(--bone);
}

.grey, .platinum-light {
    background-color: var(--platinum-light);
}

.white {
    background-color: var(--white);
}

.white-smoke {
    background-color: var(--white-smoke);
}

/*Flex Align Classes*/
.align-center {
    align-items: center;
}

.align-item-start {
    align-items: flex-start;
}

.align-item-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.container {
    display: flex;
    flex-flow: column;
}

.container.padding {
    padding: 2rem 8rem 2rem 8rem;
}

.container .textImage {
    display: flex;
    align-items: center;
}

.container .textImage .text-right {
    flex: 1;
    padding: 2rem 6rem 2rem 6rem;
}

.container .text-block {
    display: block;
}

.container h2, .numbers h2  {
    color: var(--uni-red);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.numbers h2 {
    text-align: center;
    margin: 1rem auto;
}

.container h2.red-uppercase {
    color: var(--uni-red);
    font-size: 5rem;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto 3rem auto;
    text-align: center;
    text-transform: uppercase;
    /*text-shadow: 2px 2px 0 rgb(255, 255, 255), 6px 6px 0 rgb(217, 217, 217);*/
}

.container.white h2 {
    color: var(--uni-red);
}

.container.darkGrey h2 {
    color: var(--white);
}

.container h3 {
    font-size: 1.5rem;
    margin: 0;
    line-height: inherit;
}

.container.white h3, .container.grey h3 {
    color: var(--eerie-black);
}

.container.darkGrey h3 {
    color: var(--eerie-black);
}

.container p.names {
    line-height: normal;
    margin: 0;
}

.firstName {
    color: var(--uni-red);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lastName {
    font-size: 1.35rem;
}

.container p.title {
    font-size: 1.3rem;
    line-height: normal;
    margin: 0;
    font-weight: 300;
    font-kerning: none;
}

.container p.larger {
    font-kerning: none;
    font-size: 1.15rem;
    margin-top: 1rem;
}

a.profile-email {
    color: inherit;
}

.container .grid-flex {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-around;
    margin: 0 auto;
    width: 80%;
}

.col {
    flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
}

.col-left {
    order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: -1;
}

.col-text {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.col-image {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/*Columns*/
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.column img {
    border-radius: 25px;
    display: block;
    max-width: 200px;
    width: fit-content;
}

.double-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2;
}

.columns {
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    row-gap: 10px;
    width: 100%;
}

.columns .columns-2 {
    flex: 0 0 48%;
    padding: 0.5rem;
}

.columns .columns-3 {
    flex: 0 0 30%;
    padding: 1rem;
}

    .columns .columns-3 a.button-red-1 {
        margin: auto;
    }

.columns .columns-3.card {
    border: 1px solid rgba(0,0,0,.125);
    display: flex;
    flex-direction: column;
    min-height: 32vh;
}

.card-bodyTxt {
    flex: 1 1 auto;
}

.columns .columns-3 h4 {
    font-size: 1.6rem;
}

.card-btn {
    padding: 1rem 1.25rem;
}

.columns .columns-4 {
    flex: 0 0 23%;
    padding: 0.5rem;
}

.columns .columns-btn {
    padding: 0.5rem;
}

.columns-4-profile .columns-4 {
    flex: 0 0 16%;
    padding: 0.5rem;
}

.columns-4:nth-of-type(4n) {
    break-after: always;
}

.columns .columns-2:nth-of-type(2n), .columns .columns-3:nth-of-type(3n), .columns .columns-4:nth-of-type(4n) {
    margin-right: -5px;
}

img.icon-size {
    width: 20%;
}

a.icon-link {
    color: inherit;
    display: contents;
    width: 100%;
}

.icon-link:hover > * {
    color: var(--eerie-black);
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

/*Text w/image content*/
.text-w-image {
    align-items: center;
    display: flex;
    width: 100%;
}

.text-w-image .img {
}

.text-w-image .img > img {
    border-radius: 25px;
    max-width: 700px;
    width: 100%;
}

.text-w-image .txt {
    width: 75%;
}

.columns-btn > a {
    margin: 0 auto;
}

/*White*/
.content {
    display: flex;
    margin: 0 auto 2rem auto;
    position: relative;
    width: 100%;
}

.content div {
    align-items: center;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.content.left div {
    padding-right: 3.5rem;
}

.content.right div {
    padding-left: 3.5rem;
}

.text {
    display: flex;
    padding: 2rem;
}

.text h2.red-white {
    color: inherit;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
}

.text h2.red-white span {
    color: var(--uni-red);
    font-weight: 700;
}

.text.align-item-start h2.red-white span:first-of-type:after, .text.align-item-end h2.red-white span:first-of-type:after {
    content: "\a\00a0";
    white-space: pre;
}

.text h2.red-white-red {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.text h2.red-white-red span {
    color: var(--uni-red);
    font-weight: 700;
}

.text h3.years {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
}

.text h3.years span {
    color: var(--eerie-black);
}

.container p {
    letter-spacing: 0.1rem;
    margin: 0 0 1rem 1.25rem;
    font-kerning: none;
}

.container ul {
    margin: 0 0 1rem 0;
}

.container li {
    letter-spacing: 0.1rem;
    margin: 0 0 0 1rem;
}

.container li p:first-of-type {
    margin-top: 0;
}

/*Expanding Boxes*/
section.expanding h2 {
    padding: 0 8rem 0 8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

div.expBoxes {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.25em auto 3em auto;
    overflow: hidden;
}

div.expBoxes a div.dept, div.expBoxes div.dept {
    color: var(--uni-red);
    overflow: hidden;
    flex-grow: 1;
    font-size: 2rem;
    height: 30vh;
    transition: 5s;
    width: 25vw;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
}

div.expBoxes a div.dept img.responsive, div.expBoxes div.dept img.responsive {
    width: 100%;
}

div.expBoxes a:hover div.dept, div.expBoxes div.dept:hover {
    flex-grow: 2;
    opacity: 1;
    width: 30vw;
}

div.dept p.textOver {
    position: absolute;
}
/*End Expanding Boxes*/

/*News*/
.news img {
    border-radius: 25px;
    display: block;
    margin: 0 auto;
}

.news p.headline {
    color: var(--uni-red);
    font-weight: 600;
}

.news p.teaser {
    color: var(--eerie-black);
    font-weight: 400;
}

.first-story {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-left: 40px;
}

.top-news-image {
    position: relative;
}

.top-news-image img {
    border-radius: 25px;
    display: block;
    max-height: 600px;
    max-width: 800px;
    width: 100%;
}

.top-news-banner-description {
    background: linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 100%, 0.25) 100%);
    background: -moz-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 100%, 0.25) 100%);
    background: -webkit-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 100%, 0.25) 100%);
    border-radius: 0 0 25px 25px;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 20px;
    position: absolute;
    right: 0;
}

.top-news-banner-description p {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0rem;
}

p.top-headline {
    font-size: 1.5rem;
}

p.top-headline > a:link {
    color: var(--white);
    text-decoration: none;
}

ul.intheNews > li {
    line-height: 2.5;
}

.intheNews a:link, .intheNews a:visited {
    background: unset;
    color: var(--uni-red);
    font-weight: 600;
    text-decoration: none;
}

.intheNews a:hover {
    color: var(--eerie-black);
    font-weight: 600;
    text-decoration: underline;
}

/*Events*/
.event-container {
    margin-right: 3rem;
    margin-top: 3rem;
}

.events-list {
    align-items: center;
    display: flex;
}

.events-list .text-wrapper {
    width: 100%;
}

.event-item {
    margin-bottom: 2.5rem;
}

.event-image {
    display: flex;
    margin-right: 3rem;
    max-width: 550px;
    width: 45%;
}

.event-image img {
    width: 100%;
}

.event-title {
    border-bottom: 2px var(--uni-red) solid;
}

.event-title a:link, .event-title a:visited {
    background: none;
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.event-title a:hover {
    background: none;
    color: var(--white);
    text-decoration: underline;
}

.event-info .date {
    font-size: 1.125rem;
}

.events-list .event-text {
    font-size: 1.25rem;
}
/*End events*/

/*Events Lists*/
.event-card-container {
    background-color: var(--white);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    display: flex;
    line-height: 1.75;
    margin: 0.75rem auto;
    width: 45rem;
}

.event-card-container > a:link {
    display: flex;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.event-card-container > a:hover {
    display: flex;
    color: var(--uni-red);
    text-decoration: none;
}

.event-date-container {
    align-items: center;
    background-color: var(--uni-red);
    color: #fff;
    display: flex;
    font-size: 1.5em;
    justify-content: center;
    padding: 20px 40px 20px 40px;
    text-align: center;
    width: 10%;
}

.event-date-container.red {
    background-color: var(--uni-red);
}

.event-date-container.black {
    background-color: var(--eerie-black) !important;
}

.event-date-container.gray {
    background-color: var(--platinum) !important;
    color: #1a1a1a;
}

.event-date-container > .date > .month {
    font-weight: 600;
    text-transform: uppercase;
}

.event-date-container > .date > .day {
    font-weight: 400;
}

.info-container {
    display: block;
    padding: 20px;
    width: 90%;
}

.info-container > .event-name {
    font-weight: 600;
    font-size: 1.4rem;
    padding-bottom: 5px;
}

.info-container > .event-details {
    font-size: 1.125rem;
    font-weight: 500;
    padding-bottom: 5px;
}

.info-container > .event-time {
    font-weight: 400;
}
/*End Events Lists*/

/*Left/Right images with text column*/
.image {
    display: flex;
    position: relative;
}

.image img {
    border-radius: 25px;
    max-height: 300px;
    max-width: 200px;
    width: 100%;
}

section.Alternating-Image-and-Color-Title img {
    max-width:fit-content;
    min-height:300px;
}
section.text-image-text { align-items: center; display: flex; justify-content: center; width: 100%; }

section.text-image-text > .text-image-container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto 5rem auto;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 90%;
}

.text-image-container h2 {
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

section.text-image-text > .text-image-container .left.image {
    border-radius: 25px;
    height: 400px;
    width: 50%;
}

section.text-image-text > .text-image-container .left.content h2, section.text-image-text > .text-image-container .right.content h2 {
    color: var(--eerie-black);
}

section.text-image-text > .text-image-container .left.content {
    /* align-items: flex-start; */
    background: linear-gradient(to right, rgb(217, 217, 217), rgba(217, 217, 217, 0.61), rgba(217, 217, 217, 0.94),rgb(217, 217, 217), rgba(217, 217, 217, 0.01));
    border-radius: 25px;
    color: #000;
    /* display: flex; */
    margin-right: -100px;
    /* min-height: 200px; */
    padding: 1rem 2rem 1rem 2rem;
    width: 33%;
    z-index: 1;
    backdrop-filter: blur(5px);
    max-height: 325px;
}

section.text-image-text > .text-image-container .right.content {
    align-items: flex-start;
    background: linear-gradient(to left, rgb(217, 217, 217), rgba(217, 217, 217, 0.61), rgba(217, 217, 217, 0.94),rgb(217, 217, 217), rgba(217, 217, 217, 0.01));
    border-radius: 25px;
    color: var(--eerie-black);
    display: flex;
    margin-left: -75px;
    min-height: 200px;
    padding: 1rem 2rem 1rem 2rem;
    width: 33%;
    z-index: 1;
}

.text-image-container .content p {
    margin-top: 0;
}

section.text-image {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

section.text-image > .text-image-container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto 5rem auto;
    max-width: 1000px;
    width: 90%;
}

section.text-image > .text-image-container .left.image { /*background: url('../images/UHV-Annual-Report-and-Awards-1000W.jpg') no-repeat center / cover;*/
    border-radius: 25px;
    height: 400px;
    width: 50%;
}

section.text-image > .text-image-container .right.content {
    align-items: center;
    background: linear-gradient(to left, rgb(217, 217, 217), rgba(217, 217, 217, 0.61), rgba(217, 217, 217, 0.94),rgb(217, 217, 217), rgba(217, 217, 217, 0.01));
    border-radius: 25px;
    color: var(--eerie-black);
    display: flex;
    margin-left: -150px;
    min-height: 300px;
    padding: 1rem;
    width: 50%;
    z-index: 1;
}

section.text-image > .text-image-container .left.content {
    align-items: center;
    background: linear-gradient(to right, rgb(217, 217, 217), rgba(217, 217, 217, 0.61), rgba(217, 217, 217, 0.94),rgb(217, 217, 217), rgba(217, 217, 217, 0.01));
    border-radius: 25px;
    color: var(--eerie-black);
    display: flex;
    margin-right: -150px;
    padding: 1rem 2rem 1rem 2rem;
    width: 50%;
    z-index: 1;
}

section.text-image > .text-image-container .right.image {
    border-radius: 25px;
    height: auto;
    width: 50%;
}

.content h2.red-black {
    color: var(--uni-red);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 0;
}

.content h2.red-black > span {
    color: var(--eerie-black);
    font-weight: 400;
}

/* Icons with text below */
.iconHeading {
    color: var(--color-rosette);
    font-size: 1.35rem;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.iconCards {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    justify-content: center;
    margin: 1rem auto;
}

    .iconCards > .column {
        display: flex;
        flex-direction: column;
        flex: 0 0 calc(20% - 1rem);
        justify-content: center;
        margin-bottom: 2rem;
        text-align: center;
    }

.iconBox {
    color: var(--color-rosette);
    text-align: center;
}

.iconCards a {
    color: var(--color-rosette);
    text-decoration: none;
}

/* Icon Grow */
.iconGrow {
    margin: 10px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    width: auto;
}

a > .iconGrow:hover {
    margin: 10px;
    transform: scale(1.1);
}
/* End Icon Grow */
/* End icons with text below */

/*Red Border*/
.redBoarder {
    border: 3px transparent solid;
    border-radius: 30px;
    margin: 10px;
    max-height: 25vh;
    overflow: hidden;
    padding: 4px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    width: fit-content;
}

    .redBoarder:hover {
        margin: 10px;
        transform: scale(1.1);
    }

.redBoarder.noRnd {
    border-radius: unset;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(225,37,27, 0.4);
    }

    75% {
        -webkit-box-shadow: 0 0 0 20px rgba(225,37,27, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(225,37,27, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(225,37,27, 0.4);
        box-shadow: 0 0 0 0 rgba(225,37,27, 0.4);
    }

    75% {
        -moz-box-shadow: 0 0 0 20px rgba(225,37,27, 0);
        box-shadow: 0 0 0 20px rgba(225,37,27, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(225,37,27, 0);
        box-shadow: 0 0 0 0 rgba(225,37,27, 0);
    }
}

/*Fancy*/
.image-left .fancy {
    --s: 5px;
    --b: 2px;
    --c: #e1251b;
    --w: 300px; /* width of the image */
    width: var(--w);
    aspect-ratio: 1;
    object-fit: cover;
    outline: var(--b) solid var(--c);
    transition: 0.4s;
    border-radius: 25px;
    padding: 15px;
}

.image-left .fancy:hover {
    padding: calc(2*var(--s));
    outline: calc(var(--w)/2) solid #0009;
    outline-offset: calc(var(--w)/-2 - 2*var(--s));
    transition: 0.4s;
    cursor: pointer;
}

/*5-Flex Columns*/
.columns-5 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 2rem 12%;
    width: 85%;
    column-gap: 1rem;
    row-gap: 1rem;
}

.columns-5 > .column {
    display: flex;
    flex: 0 0 18%;
}

.columns-5 > .column img {
    border-radius: 25px;
    display: block;
    max-height: 200px;
    max-width: 200px;
    width: 100%;
}

.columns-5 > .column img.red-tri {
    margin-top: 3rem;
    width: 35%;
}

/*4-Flex Columns*/
.columns-4-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0 auto 2rem auto;
    width: 86%;
    column-gap: 1rem;
    row-gap: 1rem;
}

.columns-4-profile > .columns-4 img {
    border-radius: 25px;
    display: block;
    width: 200px;
}

.columns-4-profile .column {
    flex: 0 0 0;
    padding: 0.5rem;
}

.columns-4-news, .columns-4-icons {
    column-gap: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 2rem auto;
    row-gap: 1rem;
    width: 95%;
}

.columns-4-news .column, .columns-4-icons .column {
    align-items: center;
    flex: 1 0 20%;
    padding: 0.5rem;
}

.columns-4-news .news-title > a, .columns-4-icons .news-title > a {
    background: unset;
    color: var(--uni-red);
    text-decoration: none;
}

.columns-4-news .news-title > a:hover, .columns-4-icons .news-title > a:hover {
    color: var(--eerie-black);
    text-decoration: underline;
}

.columns-4-icons .column .redBoarder img {
    min-height: 150px;
    min-width: 150px;
    max-height: 200px;
    max-width: 150px;
    width: 100%;
}

.columns-4-icons .column .redBoarder.noRnd img {
    border-radius: unset;
    min-height: 150px;
    min-width: 150px;
    max-height: 200px;
    max-width: 150px;
    width: 100%;
}

.columns-4-news .column img {
    min-height: 200px;
    max-height: 200px;
    max-width: 300px;
    width: auto;
}

.columns-4-news .column img.icons {
    border-radius: 0;
}

    .columns-4-news .column .news-title, .columns-4-icons .column .news-title {
        color: var(--uni-red);
        font-size: 1.35rem;
        line-height: normal;
        margin: 0.5rem 0 1rem 0;
        transition: 0.5s ease-in-out;
    }

    .columns-4-icons .column .news-desc {
        font-size: inherit;
        margin: 0 0 1rem 0;
        transition: 0.5s ease-in-out;
    }

.staff.fancy {
    --s: 1px;
    --b: 2px;
    --c: #e1251b;
    --w: 200px; /* width of the image */
    width: var(--w);
    aspect-ratio: 1;
    object-fit: cover;
    outline: var(--b) solid var(--c);
    transition: 0.4s;
    border-radius: 25px;
    padding: 5px;
}

.staff.fancy:hover {
    padding: calc(2*var(--s));
    outline: calc(var(--w)/2) solid #0009;
    outline-offset: calc(var(--w)/-2 - 2*var(--s));
    transition: 0.4s;
    cursor: pointer;
}

p.names.staff {
    line-height: normal;
    margin: 0;
}

p.names.staff > .firstName {
    color: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.white p.names.staff > .firstName, .grey p.names.staff > .firstName {
    color: var(--eerie-black);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

p.names.staff > .lastName {
    font-size: 1.35rem;
}

p.title.staff {
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    margin: 1% 15% 0 0;
}

p.position.staff, p.phone.staff {
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    margin: 6px 0 0 0;
}

/*Width Classes*/
.width-50 {
    width: 50%;
}

.width-60 {
    width: 60%;
}

.width-65 {
    width: 65%;
}

.width-70 {
    width: 70%;
}

.width-80 {
    width: 80%;
}

.width-90 {
    width: 90%;
}

@media print {
    @page {
        size: letter;
        margin-top: .5in;
        margin-right: .5in;
        margin-bottom: .5in;
        margin-left: .5in;
    }

    * {
        box-sizing: border-box;
        background-image: none !important;
        transform: revert !important;
        transition: revert !important;
        transition-duration: 0s !important;
    }

    .black, .grey, .green {
        background-color: var(--white);
        color: var(--eerie-black);
    }

    .columns .columns-3 {
        flex: 1 1 48%;
    }

    .columns {
        display: flex;
        column-gap: 25px;
        margin: 0 auto;
        row-gap: 10px;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .columns-4-news .column, .columns-4-icons .column {
        flex: 1 1;
    }

    .columns-4-news, .columns-4-icons {
        column-gap: 0;
        display: flex;
        flex-wrap: wrap;
        flex: auto;
        justify-content: space-around;
        margin: 0 auto 2rem auto;
        row-gap: 1rem;
        width: 100%;
        break-inside: avoid;
    }

    .content.right div {
        padding-left: 0;
    }

    .faded-left:after, .faded-right:after {
        box-shadow: none !important;
    }

    .image {
        display: flex;
        position: relative;
    }

    .image-left .fancy {
        transition: none;
        margin: 0 20px 0 0;
        padding: 0;
        outline: none;
        transition: none;
        padding: 0;
    }

    .img.faded-left {
        padding-left: 15px;
    }

    .img.faded-right {
        padding-right: 15px;
    }

    .text h2.red-white {
        font-size: 2.7rem !important;
    }

    .text-w-image .txt {
        width: 100%;
    }

    .text-w-image {
        align-items: center;
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .width-65 {
        width: 100% !important;
        break-inside: avoid;
    }

    .width-80 {
        width: 100%;
    }

    div.expBoxes .dept {
        flex: 1 1 33%;
    }

    div.expBoxes .dept img {
        max-width: 100% !important;
        height: auto; /* width: 21vw !important; */
    }

    div.expBoxes .dept:nth-of-type(even) {
        color: var(--white) !important;
        background-color: var(--eerie-black);
        background-image: inherit;
    }

    div.expBoxes .dept:nth-of-type(odd) {
        color: var(--white) !important;
    }

    div.expBoxes {
        margin: 0;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 10px;
    }

    div.expBoxes a div.dept {
        background: none !important;
        width: 21vw !important;
        height: auto;
    }

    footer .columns-2 > .columnLeft {
        border-right: none;
        display: flex;
        padding: 10px 0;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }

    footer .logo {
        display: block;
        height: max-content;
        margin: initial;
    }

    footer address {
        display: block;
        margin: initial;
    }

    footer, footer .columns-2 {
        padding: 0;
        break-inside: avoid;
    }

    h1, h2, h3, h4, p, li, legend {
        margin: revert !important;
        padding: revert !important;
        text-shadow: none !important;
    }

    h1.page-title {
        margin: 0 !important;
        padding: 0 !important;
        text-shadow: none !important;
    }

    h2.section-heading {
        break-after: avoid-page !important;
    }

    img {
        display: block;
        break-inside: avoid;
    }

    nav, nav.top-mobile-menu-1, nav.secNavigation, aside, footer div.redFooter, footer div.columnRight, footer div.social-links, form, img.jagHead, iframe, div._admithub_embed-container {
        display: none !important;
    }

    section div > p:first-child {
        margin-top: 0 !important;
    }

    section.container .textImage .text-right {
        flex: 1;
        padding: 0 0 0 0;
    }

    section.container p.larger {
        font-kerning: normal;
        font-size: 16px;
        margin-top: 1rem;
    }

    section.container.darkGrey h2, .container.black h2 {
        color: var(--uni-red);
    }

    section.container.padding {
        margin: 0 !important;
        padding: 20px 0 !important;
        display: block !important;
        opacity: 1 !important;
        break-inside: avoid;
    }

    section.container.padding:first-of-type {
        padding-right: 0;
    }

    section.text-image-text > .text-image-container .left.content {
        align-items: initial;
        margin-right: 0;
        min-height: initial;
        padding: 0;
        width: 100%;
    }

    section.text-image-text > .text-image-container .right.content {
        align-items: initial;
        display: block;
        margin-left: 0;
        min-height: initial;
        padding: 0;
        width: 100%;
        z-index: 1;
    }
}

/*Emergency Notice CSS*/
.emergencynotice.sticky {
    position: fixed;
    top: 4rem;
    width: 100%;
    z-index: 1;
}

.notice {
    background: #def1fb;
    max-height: 5.5rem;
}

.notice.emergency {
    background: #F7941D;
}

.notice.warning {
    background: #57C4C0;
}

.notice a {
    background: url('https://www.uhv.edu/media/uhv/design-2023/site-assets/images/icons/warning_64.png') no-repeat scroll 32px 50%;
    color: #0e4966;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 40px 50px 40px 120px;
    text-decoration: none;
}

.notice .fa {
    float: right;
    margin: 2.85rem;
    font-weight: bold;
    color: #0e4966;
    border: 2px solid #0e4966;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.notice.emergency a,
.notice.warning a,
.notice.emergency .fa,
.notice.warning .fa {
    color: var(--white);
    border-color: var(--white);
}

@media (max-width: 550px) {
    .notice .row span {
        margin: -70px 16px 0 0;
    }
}

@media (max-width: 330px) {
    .notice .row span {
        margin: -90px 16px 0 0;
    }
}

.notice {
    align-items: center;
    display: flex !important;
    opacity: 1 !important;
}

.notice.closed {
    display: block !important;
    transition: opacity 500ms ease-out, max-height 500ms ease-out !important;
    max-height: 0 !important;
    opacity: 0 !important;
}

.notice.closed .fa {
    display: none !important;
}

.notice.closed a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: padding 500ms ease-out !important;
    max-height: 0 !important;
}
/*End Emergency Notice CSS*/
