  :root {
  --header-height: 3.5rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100; }

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem; } }
.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; }

/*Color Palette*/
/*UTSA Orange*/
/*Web Accessible Orange*/
/*UTSA Blue*/
/*highlight Blue*/
/*Very light grey*/
/*Light grey*/
/*Mid Grey*/
/*Dark Grey*/
/*Very Dark Grey*/
/*Off white*/
/*Transparent Colors*/
/*End Color Palette*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

body {
  font-size: calc(21px + (30 - 21) * ((100vw - 768px) / (1600 - 768)));
 	                                                                      /*setting base font size fluidly (old calculation)
//	font-size: var(--normal-font-size);
//	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";  /*(old font family)*/
  font-family: "montserrat", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #FFF; }

ul {
  list-style: none; }

a {
  text-decoration: none;
  color: inherit; }

.container {
  max-width: 1120px;
  margin-inline: 1.5rem; }

.container-sm {
  max-width: 980px;
  margin: 1.5rem auto; }

.list-unstyled {
  list-style: none;
  padding-left: 0; }

.shadow {
  text-shadow: 2px 2px 8px #000; }

.orange {
  color: #D3430D; }

.blue-bg {
  background-color: #0c2340; }

.blue-b-bg {
  background-color: #495970; }

.blue-c-bg {
  background-color: #344c6b; }

.orange-bg {
  background-color: #f15a22; }

.orange-ally-bg {
  background-color: #D3430D; }

.grey-bg {
  background-color: #DBDEE3; }

.grey-b-bg {
  background-color: #B4B8BC; }

.grey-c-bg {
  background-color: #949494; }

.grey-d-bg {
  background-color: #606060; }

.grey-e-bg {
  background-color: #232323; }

.grey-e {
  color: #232323; }

.white-bg {
  background-color: #FFF; }

.white-b-bg {
  background-color: #F6F6F6; }

.stripe-bg {
  background-color: rgba(0, 0, 0, 0) !important;
  background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px);
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px); }

.orange-ally-stripe-bg {
  background-color: #D3430D !important;
  background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px);
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px); }

.blue-stripe-bg {
  background-color: #0c2340 !important;
  background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px);
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px); }

.clip-mask-top-right {
  --notchSize: 2.0rem;
  -webkit-clip-path: polygon(calc(100% - var(--notchSize)) 0, 100% var(--notchSize), 100% 100%, 0 100%, 0 0); }

.clip-mask-bottom-left {
  --notchSize: 3.0rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, var(--notchSize) 100%, 0 calc(100% - var(--notchSize))); }

.fa-solid {
  font-weight: 900; }

.fa-sm {
  font-size: .875em;
  line-height: .0714285718em;
  vertical-align: .0535714295em; }

.fa-2x {
  font-size: 1.5em; }

.order-first {
  order: 1 !important; }

.order-last {
  order: 6 !important; }

.align-items-center {
  align-items: center !important; }

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y); }

.col {
  flex: 1 0 0%; }

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%; }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto; }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%; }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%; }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%; }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%; }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%; }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%; }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%; }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%; }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%; }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%; }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%; }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%; }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto; }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%; }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%; }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%; }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%; }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%; }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%; }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%; }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%; }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%; }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%; }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%; }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%; }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto; }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%; }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%; }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%; }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%; }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%; }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%; }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%; }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%; }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%; }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%; }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%; }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%; }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto; }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%; }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%; }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%; }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%; }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; } }
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%; }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%; }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%; }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; } }
.blue-action-btn {
  margin-bottom: 5px;
  background-color: #0c2340;
  color: #FFF; }

.orange-action-btn {
  margin-bottom: 5px;
  background-color: #D3430D;
  color: #FFF; }

.action-btn {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 13px 15px 13px 24px;
  margin-bottom: .25rem !important;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.action-btn i {
  position: absolute;
  right: .75em; }

.action-btn::after {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: transparent;
  border-style: solid;
  border-width: 0 1.75rem 5rem 3rem;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  z-index: -1; }

.blue-action-btn .action-btn:hover, .blue-action-btn .action-btn:focus {
  background-color: #D3430D;
  color: #FFF;
  transition: all 0.3s ease-in-out; }

.orange-action-btn .action-btn:hover, .orange-action-btn .action-btn:focus {
  background-color: #DBDEE3;
  color: #FFF;
  transition: all 0.3s ease-in-out; }

.blue-btn {
  display: flex;
  background-color: #0c2340;
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: .25rem;
  min-width: 168px;
  padding: 10px 15px;
  text-decoration: none;
  justify-content: space-between; }

.blue-btn:hover, .blue-btn:focus {
  background-color: #D3430D;
  color: #FFF;
  transition: all 0.3s ease-in-out; }

/* BEGIN back-to-top.scss */
#myBtn {
  color: #FFF;
  background-color: #344c6b;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  border: 2px solid #FFF;
  padding: 6px 14px;
  z-index: 20;
  font-size: 1.3rem; }
  #myBtn:hover, #myBtn :focus {
    background-color: #f15a22; }

/* END back-to-top.scss */
.lite-youtube-fallback {
  aspect-ratio: 16 / 9;
  /* matches YouTube player */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  background-color: #000;
  color: #fff;
  text-decoration: none; }

/* right-facing triangle "Play" icon */
.lite-youtube-fallback::before {
  display: block;
  content: '';
  border: solid transparent;
  border-width: 2em 0 2em 3em;
  border-left-color: red; }

.lite-youtube-fallback:hover::before {
  border-left-color: #fff; }

.lite-youtube-fallback:focus {
  outline: 2px solid red; }

.ratio {
  position: relative;
  width: 100%; }

.ratio::before {
  content: '';
  display: block;
  padding-top: var(--bs-aspect-ratio); }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0c2340;
  box-shadow: 0 2px 16px #0e121b;
  z-index: var(--z-fixed);
  border-bottom: #f15a22 3px solid; }

.nav {
  height: var(--header-height); }

.nav__logo,
.nav__burger,
.nav__close {
  color: #FFF; }

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.nav__logo {
  display: none;
  align-items: center;
  column-gap: .25rem;
  font-size: 1.4rem;
  font-weight: var(--font-semi-bold);
  color: #FFF; }

.logo {
  width: 100%;
  height: auto;
  max-width: 100px;
  margin-right: 1rem; }

.logo-type {
  width: 100%;
  height: auto;
  max-width: 320px;
  margin-right: 1rem; }

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px; }

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s; }

.nav__close {
  opacity: 0; }

@media screen and (max-width: 576px) {
  .nav__logo {
    display: inline-flex; }

  .logo-type {
    display: none; }

  .logo {
    max-width: 75px;
    margin: 0; } }
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    background-color: #DBDEE3;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s; }

  .nav__menu::-webkit-scrollbar {
    width: 0; }

  .nav__list {
    background-color: #0c2340;
    padding-top: 1rem; } }
.nav__link {
  color: #FFF;
  background-color: #0c2340;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s; }

/*.nav__link a {
	color: $white;
}*/
.nav__link:hover {
  background-color: #D3430D; }

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial; }

.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg); }

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg); }

.dropdown__item {
  cursor: pointer; }

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s; }

.dropdown__link {
  font-size: .8em;
  padding: 1.25rem 2.25rem 1.25rem 2.5rem;
  color: #FFF;
  background-color: #344c6b;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s; }

.dropdown__link i {
  font-size: 1.25rem;
  font-weight: initial; }

.dropdown__link:hover, .dropdown__link:focus {
  background-color: #D3430D; }

.dropdown__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out; }

.dropdown__item:hover .dropdown__menu, .dropdown__item:focus .dropdown__menu {
  max-height: 1000px;
  transition: max-height .4s ease-in; }

.dropdown__item:hover .dropdown__arrow, .dropdown__item:focus .dropdown__arrow {
  transform: rotate(180deg); }

/*For small devices*/
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem; }

  .nav__link {
    padding-inline: 1rem; } }
/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto; }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between; }

  .nav__toggle {
    display: none; }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 2.5rem;
    font-size: 1rem; }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem; }

  .nav__link:hover, .nav__link:focus {
    background-color: transparent;
    color: #f15a22; }

  .dropdown__item {
    position: relative; }

  .dropdown__menu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s; }

  .dropdown__link {
    padding-inline: .8rem 1.5rem; }

  .dropdown__link:hover, .dropdown__link:focus {
    background-color: #D3430D; }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu, .dropdown__item:focus .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s; } }
#showcase {
  min-height: 475px;
  margin-top: 50px;
  background: url("/twc/images/Banner.jpg") no-repeat 0 -30px #0c2340;
  background-size: cover;
  text-align: center;
  color: white;
  font-family: Kulturista, 'Kulturista Light', 'Kulturista SemiBold', 'Kulturista Thin', serif;
  border-bottom: #f15a22 3px solid; }
  #showcase h1 {
    font-size: 3rem;
    padding-top: 150px;
    margin-bottom: 10px; }
  #showcase h2 {
    font-size: 2rem; }
  #showcase .breadcrumb-wrapper {
    background-color: #0c2340; }

.banner-image {
  min-height: 500px; }

.breadcrumb-wrapper {
  background-color: #495970;
  padding: 12px 0;
  text-align: left; }
  .breadcrumb-wrapper ul {
    margin: 0 auto;
    width: 100%; }
  .breadcrumb-wrapper .crumb-item {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600; }
    .breadcrumb-wrapper .crumb-item .link-text {
      color: #FFF;
      font-weight: 300;
      text-decoration: underline; }
    .breadcrumb-wrapper .crumb-item .link-text:hover, .breadcrumb-wrapper .crumb-item .link-text:focus {
      color: #f15a22;
      transition: all 0.3s ease-in-out; }

.headline-text-btn-wrapper .row {
  padding-bottom: 2.5rem !important;
  padding-top: 2.5rem !important;
  display: flex;
  flex-wrap: wrap; }
.headline-text-btn-wrapper .heading-wrapper h2 {
  font-size: 2.25rem;
  color: #0c2340;
  font-weight: 700; }
.headline-text-btn-wrapper p {
  color: #0c2340;
  font-size: 1.15rem; }

@media screen and (max-width: 1118px) {
  .heading-wrapper {
    display: inline-block; } }
@media (max-width: 767px) {
  .headline-text-btn-wrapper p {
    margin: 1rem 0; } }
.welcome-letter {
  padding: 50px 0; }
  .welcome-letter h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0c2340; }
  .welcome-letter p {
    margin-bottom: 1rem;
    margin-top: 0;
    color: #0c2340;
    font-family: open-sans, sans-serif;
    font-size: 1.15rem; }
    .welcome-letter p a {
      font-weight: 600; }
    .welcome-letter p a:hover, .welcome-letter p a:focus {
      background-color: #DBDEE3; }
  .welcome-letter .department-information {
    padding: 10px 0; }
    .welcome-letter .department-information h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #0c2340;
      margin-bottom: .4rem; }
    .welcome-letter .department-information h4 {
      color: #0c2340;
      font-size: 1.25rem;
      font-weight: normal;
      margin-bottom: .4rem; }
  .welcome-letter .contact-card {
    margin: 1em -7px; }
  .welcome-letter .staff-card-img img {
    width: 100%;
    height: 100%; }
  .welcome-letter .staff-card-content {
    margin-top: 3em; }
    .welcome-letter .staff-card-content h3 {
      color: #0c2340;
      font-size: 1.75rem;
      font-weight: 600; }
    .welcome-letter .staff-card-content .staff-card-name {
      font-weight: 600;
      margin-top: 6px; }
      .welcome-letter .staff-card-content .staff-card-name a {
        color: #D3430D;
        text-decoration: none; }
        .welcome-letter .staff-card-content .staff-card-name a:hover {
          color: #0c2340;
          background-color: #DBDEE3; }
      .welcome-letter .staff-card-content .staff-card-name a:focus {
        color: #0c2340;
        background-color: #DBDEE3; }
    .welcome-letter .staff-card-content p {
      color: #0c2340;
      font-size: 1.25rem; }
    .welcome-letter .staff-card-content a {
      text-decoration: underline; }

.content-img-design {
  margin: 2rem 0; }
  .content-img-design .images-design img {
    width: 100%;
    height: 100%; }
  .content-img-design .heading-paragraph-design .blue-action-btn .action-btn {
    margin: 10px 0; }
  .content-img-design .heading-paragraph-design h2 {
    color: #D3430D;
    font-size: 2.25rem;
    margin-bottom: 8px; }
  .content-img-design .heading-paragraph-design h3 {
    color: #0c2340;
    font-size: 2rem; }
  .content-img-design .heading-paragraph-design h4 {
    color: #0c2340;
    font-size: 1.75rem; }
  .content-img-design .heading-paragraph-design h5 {
    color: #0c2340;
    font-size: 1.5rem; }
  .content-img-design .heading-paragraph-design p {
    color: #0c2340;
    font-size: 1.25rem;
    margin: 8px 0; }
  .content-img-design.offset-left::after {
    margin-left: auto; }
  .content-img-design::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
  .content-img-design.orange-offset-bg {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 0; }
    .content-img-design.orange-offset-bg .heading-paragraph-design h3, .content-img-design.orange-offset-bg .heading-paragraph-design p {
      color: #FFF; }
    .content-img-design.orange-offset-bg .heading-paragraph-design h2, .content-img-design.orange-offset-bg .heading-paragraph-design h4, .content-img-design.orange-offset-bg .heading-paragraph-design h5 {
      color: #0c2340; }
    .content-img-design.orange-offset-bg .heading-paragraph-design p > a {
      color: #FFF; }
      .content-img-design.orange-offset-bg .heading-paragraph-design p > a:hover {
        color: #0c2340; }
    .content-img-design.orange-offset-bg .heading-paragraph-design .blue-action-btn {
      margin: 2rem 0; }
    .content-img-design.orange-offset-bg .heading-paragraph-design .blue-action-btn > .action-btn:hover, .content-img-design.orange-offset-bg .heading-paragraph-design .blue-action-btn > .action-btn:focus {
      background-color: #606060; }
    .content-img-design.orange-offset-bg::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: #D3430D !important;
      z-index: -1;
      max-width: 71vw;
      background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px);
      background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px); }
      @media (max-width: 767px) {
        .content-img-design.orange-offset-bg::after {
          max-width: 100vw; } }
  .content-img-design.blue-offset-bg {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 0; }
    .content-img-design.blue-offset-bg .heading-paragraph-design h3, .content-img-design.blue-offset-bg .heading-paragraph-design h4, .content-img-design.blue-offset-bg .heading-paragraph-design p {
      color: #FFF; }
    .content-img-design.blue-offset-bg .heading-paragraph-design h2, .content-img-design.blue-offset-bg .heading-paragraph-design h5, .content-img-design.blue-offset-bg .heading-paragraph-design h6 {
      color: #f15a22; }
    .content-img-design.blue-offset-bg .heading-paragraph-design .orange-action-btn > .action-btn:hover, .content-img-design.blue-offset-bg .heading-paragraph-design .orange-action-btn > .action-btn:focus {
      background-color: #606060; }
    .content-img-design.blue-offset-bg .paragraph-text {
      color: #FFF; }
      .content-img-design.blue-offset-bg .paragraph-text a {
        color: #FFF; }
        .content-img-design.blue-offset-bg .paragraph-text a:hover {
          color: #0c2340; }
    .content-img-design.blue-offset-bg::after {
      content: '';
      background-color: #0c2340 !important;
      z-index: -1;
      max-width: 71vw;
      background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px);
      background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0) 7px); }
      @media (max-width: 767px) {
        .content-img-design.blue-offset-bg::after {
          max-width: 100vw; } }
    .content-img-design.blue-offset-bg .orange-action-btn > .action-btn {
      margin: 2rem 0; }

#workshops {
  scroll-margin: 75px 0 0 0; }

.event-list-sec {
  padding: 3rem 0;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0; }

.deadline-card-list .inner-sec-headings {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px; }
  .deadline-card-list .inner-sec-headings .view-all-link i {
    color: #f15a22;
    padding-left: 3px;
    font-weight: 900; }
.deadline-card-list .row > div {
  margin-bottom: 20px; }
.deadline-card-list .deadline-card {
  --notchSize: 3.8rem;
  border-top: 6px solid #f15a22;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, 0 100%, 0 0);
  height: 100%;
  padding: 5px 30px 50px;
  position: relative; }
  .deadline-card-list .deadline-card .card-month {
    letter-spacing: 2px;
    text-transform: uppercase; }
  .deadline-card-list .deadline-card p {
    color: #0c2340;
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 5px 0; }
  .deadline-card-list .deadline-card a:hover, .deadline-card-list .deadline-card a:focus {
    color: #f15a22; }
  .deadline-card-list .deadline-card .card-date {
    color: #D3430D;
    font-family: "kulturista-web", serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 3px 0; }
  .deadline-card-list .deadline-card .card-year {
    color: #0c2340;
    letter-spacing: 2px;
    font-size: 1.25rem;
    margin: 0; }
  .deadline-card-list .deadline-card .deadline-card-link {
    color: #0c2340;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 25px 0;
    text-decoration: none; }
  .deadline-card-list .deadline-card .deadline-card-link::before {
    /* Makes link hitbox cover whole card*/
    content: "";
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 1; }
  .deadline-card-list .deadline-card .event-location {
    text-transform: uppercase;
    font-weight: bold; }
.deadline-card-list .deadline-card.blue-bg p {
  color: #FFF !important; }
.deadline-card-list .deadline-card.blue-bg .deadline-card-link {
  color: #FFF; }
.deadline-card-list .deadline-card.blue-bg a:hover, .deadline-card-list .deadline-card.blue-bg a:focus {
  color: #f15a22; }
.deadline-card-list .deadline-card.orange-ally-bg {
  border-top: 6px solid #0c2340; }
  .deadline-card-list .deadline-card.orange-ally-bg p {
    color: #FFF !important; }
  .deadline-card-list .deadline-card.orange-ally-bg .deadline-card-link {
    color: #FFF; }
  .deadline-card-list .deadline-card.orange-ally-bg a:hover, .deadline-card-list .deadline-card.orange-ally-bg a:focus {
    color: #0c2340; }
  .deadline-card-list .deadline-card.orange-ally-bg .card-date {
    color: #0c2340 !important; }

.blockquote-wrapper {
  color: #0c2340;
  padding: 3rem 0; }
  .blockquote-wrapper.grey-bg {
    color: #D3430D; }
    .blockquote-wrapper.grey-bg .blockquote-heading {
      color: #0c2340; }
    .blockquote-wrapper.grey-bg blockquote {
      color: #D3430D; }
    .blockquote-wrapper.grey-bg .blockquote-footer {
      color: #0c2340; }
  .blockquote-wrapper.blue-bg {
    color: #f15a22; }
    .blockquote-wrapper.blue-bg .blockquote-heading {
      color: #FFF; }
    .blockquote-wrapper.blue-bg .blockquote-footer {
      color: #FFF; }
  .blockquote-wrapper.orange-ally-bg {
    color: #0c2340; }
    .blockquote-wrapper.orange-ally-bg .blockquote-heading {
      color: #FFF; }
    .blockquote-wrapper.orange-ally-bg .blockquote-footer {
      color: #FFF; }
  .blockquote-wrapper .image_wrapper > img {
    width: 100%;
    height: 100%; }
  .blockquote-wrapper .blockquote-heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 2.4rem; }
  .blockquote-wrapper .blockquote-footer {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase; }
  .blockquote-wrapper blockquote {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0; }
  .blockquote-wrapper .image-right-content h3 {
    font-size: 2.2rem;
    line-height: 1.2; }
  .blockquote-wrapper .image-right-content h4 {
    font-size: 2rem;
    line-height: 1.2; }
  .blockquote-wrapper .image-right-content figure {
    margin: 0 0 1rem; }
  .blockquote-wrapper .image-right-content blockquote {
    margin-bottom: 26px; }

@media (max-width: 767px) {
  .image-wrapper {
    padding-top: 45px;
    padding-bottom: 45px; }

  .blockquote-heading {
    margin-bottom: 30px; }

  .blockquote {
    font-size: 24px;
    line-height: normal; } }
@media screen and (min-width: 1118px) {
  .image_wrapper {
    padding-right: 30px; } }
.banner {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0; }

.hero-banner-content-block {
  display: flex;
  justify-content: center;
  padding: 4rem 0 0;
  min-height: 300px; }
  .hero-banner-content-block h1 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    color: #FFF; }

.hero-banner-right-column {
  padding: 5rem 0 0; }

.banner .hero-banner-right-column > img {
  height: 100%;
  width: 100%;
  vertical-align: middle; }

@media screen and (max-width: 415px) {
  .hero-banner-content-block {
    padding: 5rem 0 2rem; }

  .hero-banner-right-column {
    display: none; } }
#what, #blurb, #onlineapt, #complab, #classroom, #required {
  scroll-margin: 75px 0 0 0; }

.link-cards-wrapper {
  margin: 3rem 0 1rem 0; }
  .link-cards-wrapper h2 {
    color: #0c2340;
    margin-bottom: 1.6rem; }
  .link-cards-wrapper .row > div {
    margin-bottom: 1.5rem; }

.highlight-card {
  --notchSize: 3.8rem;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, 0 100%, 0 0);
  height: 100%; }
  .highlight-card .highlight-card-content {
    padding: 2rem 2rem 3.5rem;
    border-top: 6px solid #f15a22;
    color: #0c2340; }
    .highlight-card .highlight-card-content h3 {
      display: block;
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.2; }
    .highlight-card .highlight-card-content p {
      font-size: 1.1rem;
      color: #0c2340;
      line-height: 1.2;
      margin: 1rem 0; }
      .highlight-card .highlight-card-content p a {
        font-weight: 600; }

.modules-section h2 {
  background-color: #0c2340;
  text-align: center;
  color: #FFF;
  padding: 1.8rem 0; }
.modules-section h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0c2340;
  margin: 2rem 0 1rem; }
.modules-section .row > div {
  margin-bottom: 1.5rem; }
.modules-section .highlight-card {
  border: 1px solid #DBDEE3; }
.modules-section .highlight-card-img {
  width: 100%;
  height: 10rem;
  background-color: #FFF;
  padding-bottom: 4rem; }
.modules-section .highlight-card-content {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700; }
.modules-section .highlight-card-content:hover, .modules-section .highlight-card-content a:focus {
  background-color: #344c6b;
  text-decoration: underline;
  transition: all .3s ease-in-out; }

.useful-links, .helpful-handouts {
  margin: 3rem 0; }
  .useful-links h2, .helpful-handouts h2 {
    background-color: #0c2340;
    text-align: center;
    color: #FFF;
    padding: 1.8rem 0; }
  .useful-links h3, .helpful-handouts h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0c2340;
    margin: 2rem 0 1rem; }
  .useful-links h4, .helpful-handouts h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0c2340;
    margin: 1rem 0;
    border-bottom: 1px solid #0c2340;
    padding-bottom: 10px; }
  .useful-links .resources-list, .helpful-handouts .resources-list {
    padding-left: 1.2rem; }
    .useful-links .resources-list ul, .helpful-handouts .resources-list ul {
      margin: 0 0 1rem; }
    .useful-links .resources-list li, .helpful-handouts .resources-list li {
      margin-bottom: 1rem;
      list-style: disc;
      color: #0c2340;
      font-size: 1.4rem;
      font-weight: 600; }
      .useful-links .resources-list li a, .helpful-handouts .resources-list li a {
        border-bottom: 1px solid #f15a22;
        display: block;
        padding-bottom: 10px; }
      .useful-links .resources-list li a:hover, .useful-links .resources-list li a:focus, .helpful-handouts .resources-list li a:hover, .helpful-handouts .resources-list li a:focus {
        background-color: #DBDEE3; }
  .useful-links .resources-list-sub, .helpful-handouts .resources-list-sub {
    padding-left: 3rem; }
    .useful-links .resources-list-sub ul, .helpful-handouts .resources-list-sub ul {
      margin: 0 0 1rem; }
    .useful-links .resources-list-sub li, .helpful-handouts .resources-list-sub li {
      margin-bottom: 1rem;
      list-style: circle;
      color: #0c2340;
      font-size: 1.4rem;
      font-weight: 600; }
      .useful-links .resources-list-sub li a, .helpful-handouts .resources-list-sub li a {
        border-bottom: 1px solid #f15a22;
        display: block;
        padding-bottom: 10px; }
      .useful-links .resources-list-sub li a:hover, .useful-links .resources-list-sub li a:focus, .helpful-handouts .resources-list-sub li a:hover, .helpful-handouts .resources-list-sub li a:focus {
        background-color: #DBDEE3; }

.helpful-handouts .resources-list li {
  list-style: none; }
.helpful-handouts .resources-list a {
  display: block; }
.helpful-handouts .resources-list a:before {
  content: "\f56e";
  /* Unicode character for "file export" sign */
  font-family: fontawesome;
  margin: 0 0.5rem;
  font-size: 1.4rem; }

#modules, #handouts, #links {
  scroll-margin: 75px 0 0 0; }

@media screen and (max-width: 1118px) {
  #modules, #handouts, #links {
    scroll-margin: 55px 0 0 0; } }
#about {
  padding: 3rem 0; }
  #about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0c2340; }
  #about p {
    font-size: 1rem;
    margin: 0 0 1rem;
    color: #0c2340; }

.sidebar {
  background-color: #DBDEE3;
  margin: 1rem 0;
  padding: 1.3rem;
  line-height: 1.3;
  text-align: left; }
  .sidebar h3 {
    color: #D3430D;
    font-size: 1.35rem;
    font-weight: 700; }
  .sidebar p {
    color: #0c2340; }
  .sidebar a:hover, .sidebar a:focus {
    color: #D3430D; }

#sidebar-social {
  padding: 1rem 1rem 1rem 0;
  color: #0c2340; }

#Judy_who {
  padding: 4rem 0 2rem;
  scroll-margin: 75px 0 0 0; }
  #Judy_who .bio-component img {
    margin-bottom: 20px;
    width: 100%; }
  #Judy_who .bio-content-list {
    padding: 0 0 0 2rem; }
    #Judy_who .bio-content-list h2 {
      font-size: 2rem;
      color: #D3430D;
      font-weight: 700;
      margin-bottom: 21px; }
    #Judy_who .bio-content-list p {
      font-size: 1rem;
      line-height: 1.6;
      color: #0c2340;
      margin-bottom: 1rem; }

#tutors {
  padding: 3rem 0;
  scroll-margin: 75px 0 0 0; }
  #tutors h2 {
    color: #f15a22;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  #tutors h3 {
    color: #0c2340;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  #tutors p {
    color: #0c2340;
    font-size: 1.1rem;
    margin-bottom: 1rem; }
    #tutors p span {
      color: #f15a22;
      font-size: 1.2rem;
      font-weight: 700; }

.text-link .container {
  padding: 3rem; }
  .text-link .container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: .5rem; }
  .text-link .container .faq-link a:hover, .text-link .container .faq-link a:focus {
    background-color: #DBDEE3;
    color: #0c2340;
    transition: all .3s ease-in-out;
    padding: 2px 0; }
  .text-link .container .view-all-link {
    color: #FFF;
    font-size: 1.4rem;
    text-decoration: underline; }
    .text-link .container .view-all-link i {
      color: #f15a22;
      padding-left: 3px;
      font-weight: 900; }

@media screen and (max-width: 1118px) {
  #Judy_who, #tutors {
    scroll-margin: 55px 0 0 0; } }
@media screen and (max-width: 415px) {
  #Judy_who .bio-content-list {
    padding: 0; } }
.accordion-wrapper {
  background-color: #FFF;
  padding: 2rem 0; }

.collapsible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F6F6F6;
  color: #0c2340;
  font-weight: 700;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #B4B8BC;
  text-align: left;
  outline: none;
  font-size: 1.25rem;
  line-height: 1.2; }

.collapsible:hover, .collapsible:focus {
  background-color: #344c6b;
  color: #FFF; }

.active, .collapsible:checked {
  background-color: #0c2340;
  color: #FFF;
  border-radius: 5px 5px 0 0; }

.faq {
  background-color: #F6F6F6;
  padding: 0px 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #FFF;
  border-radius: 0 0 5px 5px;
  border: 1px solid #B4B8BC; }
  .faq p {
    font-size: 1.2rem;
    color: #0c2340;
    padding: 2rem 0;
    line-height: 1.2; }
  .faq a {
    font-weight: 700; }
  .faq a:hover, .faq a:focus {
    text-decoration: underline; }

.collapsible:after {
  content: "\ff0b";
  /* Unicode character for "plus" sign (+) */
  margin: 0 0.5rem;
  font-size: 2rem; }

.active:after {
  content: "\ff0d";
  /* Unicode character for "minus" sign (-) */
  font-size: 2rem; }

.accordion-header {
  display: flex;
  justify-content: space-between;
  margin: 15px 0; }
  .accordion-header h2 {
    color: #0c2340;
    font-size: 2.5rem; }

.toggle-accordion {
  font-size: 1.5rem;
  color: #0c2340;
  text-decoration: underline;
  align-content: flex-end; }

.accordion-header .toggle-accordion:before {
  content: "Expand All"; }

.accordion-header .toggle-accordion.active-all:before {
  content: "Collapse All"; }

.faqlink {
  font-weight: bold;
  color: #f15a22; }
  .faqlink li {
    font-size: 1.2rem;
    color: #D3430D;
    padding-left: 2rem; }
  .faqlink a:hover, .faqlink a:focus {
    color: #0c2340;
    text-decoration: underline; }

main {
  display: flex;
  align-items: flex-start; }

.guide {
  display: flex;
  align-items: flex-start; }

aside {
  position: sticky;
  top: 6rem;
  height: calc(100dvh-75px);
  min-width: 320px;
  margin: 1rem 2rem;
  flex-shrink: 0; }

.walkthrough-menu {
  padding: 8px;
  color: #0c2340;
  background-color: #F6F6F6; }
  .walkthrough-menu .list-unstyled {
    display: block; }
    .walkthrough-menu .list-unstyled span.heading {
      border-top: 1px solid #f15a22;
      border-bottom: 1px solid #f15a22;
      font-size: 1.2rem;
      font-weight: 800;
      display: block;
      padding: 15px; }
    .walkthrough-menu .list-unstyled ul {
      margin-bottom: 1rem; }
    .walkthrough-menu .list-unstyled li a {
      border-bottom: 1px solid #f15a22;
      font-size: 1rem;
      display: block;
      padding: 15px; }
    .walkthrough-menu .list-unstyled a:hover, .walkthrough-menu .list-unstyled a:focus {
      background-color: #DBDEE3; }
    .walkthrough-menu .list-unstyled a.blue-btn:hover, .walkthrough-menu .list-unstyled a.blue-btn:focus {
      background-color: #D3430D; }

#cancel, #fac-cancel {
  padding-top: 2rem; }

#video, #register, #choose, #make, #find, #attach, #online, #waiting, #cancel, #comp-lab, #fac-register, #fac-display, #fac-choose, #fac-make, #fac-find, #fac-wait, #fac-cancel {
  scroll-margin: 75px 0 0 0; }
  #video .divider, #register .divider, #choose .divider, #make .divider, #find .divider, #attach .divider, #online .divider, #waiting .divider, #cancel .divider, #comp-lab .divider, #fac-register .divider, #fac-display .divider, #fac-choose .divider, #fac-make .divider, #fac-find .divider, #fac-wait .divider, #fac-cancel .divider {
    border-bottom: 5px solid #f15a22;
    padding: 2rem 0; }
  #video div > h2, #register div > h2, #choose div > h2, #make div > h2, #find div > h2, #attach div > h2, #online div > h2, #waiting div > h2, #cancel div > h2, #comp-lab div > h2, #fac-register div > h2, #fac-display div > h2, #fac-choose div > h2, #fac-make div > h2, #fac-find div > h2, #fac-wait div > h2, #fac-cancel div > h2 {
    color: #0c2340;
    font-size: 1.5rem;
    margin: 1rem 1rem 2rem;
    text-align: center; }
  #video div > p, #register div > p, #choose div > p, #make div > p, #find div > p, #attach div > p, #online div > p, #waiting div > p, #cancel div > p, #comp-lab div > p, #fac-register div > p, #fac-display div > p, #fac-choose div > p, #fac-make div > p, #fac-find div > p, #fac-wait div > p, #fac-cancel div > p {
    color: #0c2340;
    font-size: 1.2rem;
    line-height: 1.2;
    margin: .6rem 0; }
  #video div > p a, #register div > p a, #choose div > p a, #make div > p a, #find div > p a, #attach div > p a, #online div > p a, #waiting div > p a, #cancel div > p a, #comp-lab div > p a, #fac-register div > p a, #fac-display div > p a, #fac-choose div > p a, #fac-make div > p a, #fac-find div > p a, #fac-wait div > p a, #fac-cancel div > p a {
    font-weight: 600; }
  #video div > p a:hover, #video div > p a:focus, #register div > p a:hover, #register div > p a:focus, #choose div > p a:hover, #choose div > p a:focus, #make div > p a:hover, #make div > p a:focus, #find div > p a:hover, #find div > p a:focus, #attach div > p a:hover, #attach div > p a:focus, #online div > p a:hover, #online div > p a:focus, #waiting div > p a:hover, #waiting div > p a:focus, #cancel div > p a:hover, #cancel div > p a:focus, #comp-lab div > p a:hover, #comp-lab div > p a:focus, #fac-register div > p a:hover, #fac-register div > p a:focus, #fac-display div > p a:hover, #fac-display div > p a:focus, #fac-choose div > p a:hover, #fac-choose div > p a:focus, #fac-make div > p a:hover, #fac-make div > p a:focus, #fac-find div > p a:hover, #fac-find div > p a:focus, #fac-wait div > p a:hover, #fac-wait div > p a:focus, #fac-cancel div > p a:hover, #fac-cancel div > p a:focus {
    text-decoration: underline;
    background-color: #DBDEE3; }
  #video div > ol, #register div > ol, #choose div > ol, #make div > ol, #find div > ol, #attach div > ol, #online div > ol, #waiting div > ol, #cancel div > ol, #comp-lab div > ol, #fac-register div > ol, #fac-display div > ol, #fac-choose div > ol, #fac-make div > ol, #fac-find div > ol, #fac-wait div > ol, #fac-cancel div > ol {
    padding: 0 0 0 2rem; }
  #video div > ol > li, #register div > ol > li, #choose div > ol > li, #make div > ol > li, #find div > ol > li, #attach div > ol > li, #online div > ol > li, #waiting div > ol > li, #cancel div > ol > li, #comp-lab div > ol > li, #fac-register div > ol > li, #fac-display div > ol > li, #fac-choose div > ol > li, #fac-make div > ol > li, #fac-find div > ol > li, #fac-wait div > ol > li, #fac-cancel div > ol > li {
    color: #0c2340;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 1rem; }
  #video div > ol > li a, #register div > ol > li a, #choose div > ol > li a, #make div > ol > li a, #find div > ol > li a, #attach div > ol > li a, #online div > ol > li a, #waiting div > ol > li a, #cancel div > ol > li a, #comp-lab div > ol > li a, #fac-register div > ol > li a, #fac-display div > ol > li a, #fac-choose div > ol > li a, #fac-make div > ol > li a, #fac-find div > ol > li a, #fac-wait div > ol > li a, #fac-cancel div > ol > li a {
    color: #D3430D;
    font-weight: 600; }
  #video div > ol > li a:hover, #video div > ol > li a:focus, #register div > ol > li a:hover, #register div > ol > li a:focus, #choose div > ol > li a:hover, #choose div > ol > li a:focus, #make div > ol > li a:hover, #make div > ol > li a:focus, #find div > ol > li a:hover, #find div > ol > li a:focus, #attach div > ol > li a:hover, #attach div > ol > li a:focus, #online div > ol > li a:hover, #online div > ol > li a:focus, #waiting div > ol > li a:hover, #waiting div > ol > li a:focus, #cancel div > ol > li a:hover, #cancel div > ol > li a:focus, #comp-lab div > ol > li a:hover, #comp-lab div > ol > li a:focus, #fac-register div > ol > li a:hover, #fac-register div > ol > li a:focus, #fac-display div > ol > li a:hover, #fac-display div > ol > li a:focus, #fac-choose div > ol > li a:hover, #fac-choose div > ol > li a:focus, #fac-make div > ol > li a:hover, #fac-make div > ol > li a:focus, #fac-find div > ol > li a:hover, #fac-find div > ol > li a:focus, #fac-wait div > ol > li a:hover, #fac-wait div > ol > li a:focus, #fac-cancel div > ol > li a:hover, #fac-cancel div > ol > li a:focus {
    background-color: #DBDEE3; }
  #video img, #register img, #choose img, #make img, #find img, #attach img, #online img, #waiting img, #cancel img, #comp-lab img, #fac-register img, #fac-display img, #fac-choose img, #fac-make img, #fac-find img, #fac-wait img, #fac-cancel img {
    max-width: 100%;
    height: auto;
    border: solid thin #000;
    text-align: center;
    padding: 0; }
  #video div > ol > li > ol, #register div > ol > li > ol, #choose div > ol > li > ol, #make div > ol > li > ol, #find div > ol > li > ol, #attach div > ol > li > ol, #online div > ol > li > ol, #waiting div > ol > li > ol, #cancel div > ol > li > ol, #comp-lab div > ol > li > ol, #fac-register div > ol > li > ol, #fac-display div > ol > li > ol, #fac-choose div > ol > li > ol, #fac-make div > ol > li > ol, #fac-find div > ol > li > ol, #fac-wait div > ol > li > ol, #fac-cancel div > ol > li > ol {
    padding: 0 0 0 1.5rem; }
  #video div > ol > li > ol > li, #register div > ol > li > ol > li, #choose div > ol > li > ol > li, #make div > ol > li > ol > li, #find div > ol > li > ol > li, #attach div > ol > li > ol > li, #online div > ol > li > ol > li, #waiting div > ol > li > ol > li, #cancel div > ol > li > ol > li, #comp-lab div > ol > li > ol > li, #fac-register div > ol > li > ol > li, #fac-display div > ol > li > ol > li, #fac-choose div > ol > li > ol > li, #fac-make div > ol > li > ol > li, #fac-find div > ol > li > ol > li, #fac-wait div > ol > li > ol > li, #fac-cancel div > ol > li > ol > li {
    margin-bottom: 1rem; }
  #video div > ol > li > ol > li:first-child, #register div > ol > li > ol > li:first-child, #choose div > ol > li > ol > li:first-child, #make div > ol > li > ol > li:first-child, #find div > ol > li > ol > li:first-child, #attach div > ol > li > ol > li:first-child, #online div > ol > li > ol > li:first-child, #waiting div > ol > li > ol > li:first-child, #cancel div > ol > li > ol > li:first-child, #comp-lab div > ol > li > ol > li:first-child, #fac-register div > ol > li > ol > li:first-child, #fac-display div > ol > li > ol > li:first-child, #fac-choose div > ol > li > ol > li:first-child, #fac-make div > ol > li > ol > li:first-child, #fac-find div > ol > li > ol > li:first-child, #fac-wait div > ol > li > ol > li:first-child, #fac-cancel div > ol > li > ol > li:first-child {
    margin-top: 1rem; }
  #video .note, #register .note, #choose .note, #make .note, #find .note, #attach .note, #online .note, #waiting .note, #cancel .note, #comp-lab .note, #fac-register .note, #fac-display .note, #fac-choose .note, #fac-make .note, #fac-find .note, #fac-wait .note, #fac-cancel .note {
    color: #D3430D;
    font-weight: 400; }
    #video .note a, #register .note a, #choose .note a, #make .note a, #find .note a, #attach .note a, #online .note a, #waiting .note a, #cancel .note a, #comp-lab .note a, #fac-register .note a, #fac-display .note a, #fac-choose .note a, #fac-make .note a, #fac-find .note a, #fac-wait .note a, #fac-cancel .note a {
      color: #0c2340; }
    #video .note a:hover, #video .note a:focus, #register .note a:hover, #register .note a:focus, #choose .note a:hover, #choose .note a:focus, #make .note a:hover, #make .note a:focus, #find .note a:hover, #find .note a:focus, #attach .note a:hover, #attach .note a:focus, #online .note a:hover, #online .note a:focus, #waiting .note a:hover, #waiting .note a:focus, #cancel .note a:hover, #cancel .note a:focus, #comp-lab .note a:hover, #comp-lab .note a:focus, #fac-register .note a:hover, #fac-register .note a:focus, #fac-display .note a:hover, #fac-display .note a:focus, #fac-choose .note a:hover, #fac-choose .note a:focus, #fac-make .note a:hover, #fac-make .note a:focus, #fac-find .note a:hover, #fac-find .note a:focus, #fac-wait .note a:hover, #fac-wait .note a:focus, #fac-cancel .note a:hover, #fac-cancel .note a:focus {
      text-decoration: underline; }
  #video .extra-pad, #register .extra-pad, #choose .extra-pad, #make .extra-pad, #find .extra-pad, #attach .extra-pad, #online .extra-pad, #waiting .extra-pad, #cancel .extra-pad, #comp-lab .extra-pad, #fac-register .extra-pad, #fac-display .extra-pad, #fac-choose .extra-pad, #fac-make .extra-pad, #fac-find .extra-pad, #fac-wait .extra-pad, #fac-cancel .extra-pad {
    padding-top: 1rem; }

.mobile-view {
  display: none; }

.desktop-view {
  display: inline; }

@media screen and (max-width: 415px) {
  main {
    flex-direction: column; }

  aside {
    position: inherit;
    margin-right: 1rem; }

  #video div > ol, #register div > ol, #choose div > ol, #make div > ol, #find div > ol, #attach div > ol, #online div > ol, #waiting div > ol, #cancel div > ol, #comp-lab div > ol, #fac-register div > ol, #fac-display div > ol, #fac-choose div > ol, #fac-make div > ol, #fac-find div > ol, #fac-wait div > ol, #fac-cancel div > ol {
    padding: 0 1rem 0 2rem; }
  #video img, #register img, #choose img, #make img, #find img, #attach img, #online img, #waiting img, #cancel img, #comp-lab img, #fac-register img, #fac-display img, #fac-choose img, #fac-make img, #fac-find img, #fac-wait img, #fac-cancel img {
    margin-bottom: 1rem; }
  #video .extra-pad, #register .extra-pad, #choose .extra-pad, #make .extra-pad, #find .extra-pad, #attach .extra-pad, #online .extra-pad, #waiting .extra-pad, #cancel .extra-pad, #comp-lab .extra-pad, #fac-register .extra-pad, #fac-display .extra-pad, #fac-choose .extra-pad, #fac-make .extra-pad, #fac-find .extra-pad, #fac-wait .extra-pad, #fac-cancel .extra-pad {
    padding-top: 0; }

  .mobile-view {
    display: inline; }

  .desktop-view {
    display: none; } }
.site-ankle {
  padding: 3rem 0 1.5rem 0; }
  .site-ankle h2 {
    font-size: 1.6rem;
    color: #0c2340 !important;
    font-weight: 700; }
  .site-ankle h3 {
    font-size: 1.4rem;
    color: #0c2340;
    font-weight: 700; }
  .site-ankle p {
    margin: 1rem 0;
    color: #0c2340;
    font-family: open-sans, sans-serif;
    font-size: 1rem;
    text-align: unset;
    font-weight: 400; }
  .site-ankle a {
    color: #0c2340 !important;
    text-decoration: underline; }
  .site-ankle a:hover, .site-ankle a:focus {
    background-color: transparent !important; }
  .site-ankle a.logo-ankle:hover, .site-ankle a img:hover, .site-ankle a.logo-ankle:focus, .site-ankle a img:focus {
    background-color: transparent !important; }
  .site-ankle li a:hover, .site-ankle li a:focus {
    color: #D3430D !important;
    background-color: transparent !important; }
  .site-ankle #social-sidebar {
    padding: 1rem 0 !important; }
    .site-ankle #social-sidebar a {
      color: #0c2340 !important; }
      .site-ankle #social-sidebar a:hover, .site-ankle #social-sidebar a:focus {
        color: #D3430D !important;
        transition: all .3s ease-in-out; }
  .site-ankle .ankle-list {
    margin-bottom: 1rem;
    margin-top: 0; }
    .site-ankle .ankle-list li {
      margin-bottom: .5rem !important;
      font-size: 1rem;
      color: #0c2340; }

.logo-ankle img {
  max-width: 80%; }

#footer {
  background-color: #0c2340;
  font-family: open-sans, sans-serif !important; }
  #footer li.nav-item a {
    font-size: 0.8125rem; }
  #footer .footer-logo img {
    max-width: 65%; }
  #footer .footer-text {
    color: #FFF;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2rem;
    padding: 3px;
    margin-bottom: 1rem; }
  #footer .footer-text a {
    color: #FFF;
    text-decoration: underline; }
  #footer .footer-item > a {
    color: #FFF;
    font-size: 13px;
    line-height: 1.5;
    padding: 2px;
    display: inline-block; }
  #footer .footer-item {
    line-height: normal; }
  #footer .footer-item > a:hover, #footer .footer-item > a:focus {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #0c2340;
    background-color: #DBDEE3;
    text-decoration: underline; }
  #footer .copyright-subfooter {
    padding: 1.5625rem 0;
    font-size: 0.8rem; }
  #footer .copyright-subfooter .utsa-copyright {
    position: relative; }
  #footer .copyright-subfooter .utsa-copyright:after {
    content: " ";
    display: inline-block;
    height: .75rem;
    width: .125rem;
    background-color: #FFF;
    position: absolute;
    top: 25%;
    right: 0; }
  #footer .copyright-subfooter .utsa-copyright p {
    margin: 0;
    text-align: right;
    padding-right: 1.5625rem; }
  #footer .copyright-subfooter .subfooter-links {
    padding: 0; }
  #footer .copyright-subfooter .subfooter-links ul {
    padding: 0;
    margin: 0; }
  #footer .copyright-subfooter .subfooter-links ul li {
    display: inline-block;
    padding: 0 0.625rem; }
  #footer .copyright-subfooter .subfooter-links ul li a {
    text-decoration: underline;
    padding: 0; }
  #footer hr {
    border-bottom: 0.125rem solid #fff; }

@media (max-width: 767px) {
  #footer {
    line-height: 1.75rem; }
    #footer .copyright-subfooter {
      text-align: center; }
    #footer .copyright-subfooter .utsa-copyright p {
      text-align: center; }
    #footer .copyright-subfooter .utsa-copyright:after {
      display: none; } }
.global-footer-container .global-footer {
  background-color: #0c2340;
  color: #FFF;
  border-top: 4px #f15a22 solid;
  padding: 1.5rem 0 0 0; }
  .global-footer-container .global-footer .footer-logo {
    height: rem-calc(70);
    width: auto;
    display: inline-block; }
    @media screen and (max-width: 415px) {
      .global-footer-container .global-footer .footer-logo {
        shape-rendering: geometricPrecision;
        height: 43px;
        width: 133px; } }
  .global-footer-container .global-footer a:has(.footer-logo) {
    margin: 0 0 0.75rem;
    display: inline-block;
    background-color: transparent;
    vertical-align: text-top; }
    .global-footer-container .global-footer a:has(.footer-logo):hover, .global-footer-container .global-footer a:has(.footer-logo):focus, .global-footer-container .global-footer a:has(.footer-logo):focus-within {
      background-color: transparent;
      outline: 1px dashed #f15a22; }
    .global-footer-container .global-footer a:has(.footer-logo):hover {
      outline: none; }
  .global-footer-container .global-footer hr {
    height: 2px;
    border-color: rgba(255, 255, 255, 0.08); }
  .global-footer-container .global-footer p {
    line-height: 1; }
  .global-footer-container .global-footer a {
    color: #FFF;
    font-weight: normal;
    text-decoration: none; }
    .global-footer-container .global-footer a:hover, .global-footer-container .global-footer a:focus {
      color: #0c2340; }
  .global-footer-container .global-footer p,
  .global-footer-container .global-footer a {
    font-size: rem-calc(14); }
  .global-footer-container .global-footer ul {
    list-style-type: none;
    padding: 0; }
    .global-footer-container .global-footer ul a {
      color: #FFF;
      font-weight: normal;
      text-decoration: none; }
      .global-footer-container .global-footer ul a:focus, .global-footer-container .global-footer ul a:hover {
        color: #0c2340;
        background-color: #B4B8BC;
        text-decoration: underline; }
      .global-footer-container .global-footer ul a:focus {
        outline: 2px #FFF dashed; }
  .global-footer-container .global-footer .global-footer-links ul {
    line-height: 2; }
  .global-footer-container .global-footer .footer-social > a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #FFF;
    border: 2px solid #FFF;
    font-size: 1.25rem;
    margin-right: 3px;
    padding-top: 20px; }
  .global-footer-container .global-footer .social-media-footer-container ul {
    display: flex;
    gap: 0.5rem; }
    .global-footer-container .global-footer .social-media-footer-container ul li a {
      display: inline-block;
      position: relative;
      vertical-align: baseline;
      background-color: transparent;
      margin: 0 0 1.5rem 0; }
      .global-footer-container .global-footer .social-media-footer-container ul li a:hover, .global-footer-container .global-footer .social-media-footer-container ul li a:focus {
        border-color: #f15a22; }
      .global-footer-container .global-footer .social-media-footer-container ul li a [class*="fa"] {
        color: #FFF;
        font-weight: 900;
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: 1;
        top: 2px; }
        .global-footer-container .global-footer .social-media-footer-container ul li a [class*="fa"]:before {
          line-height: 1.5; }
        .global-footer-container .global-footer .social-media-footer-container ul li a [class*="fa"]:hover, .global-footer-container .global-footer .social-media-footer-container ul li a [class*="fa"]:focus {
          color: #f15a22; }
  @media screen and (max-width: 991px) {
    .global-footer-container .global-footer .copyright-subfooter {
      text-align: center; } }
  .global-footer-container .global-footer .copyright-subfooter > .row {
    align-items: center; }
  .global-footer-container .global-footer .copyright-subfooter p,
  .global-footer-container .global-footer .copyright-subfooter a {
    font-size: rem-calc(12); }
  .global-footer-container .global-footer .copyright-subfooter .utsa-copyright {
    position: relative;
    margin-right: 1rem; }
    .global-footer-container .global-footer .copyright-subfooter .utsa-copyright::after {
      content: " ";
      display: inline-block;
      height: rem-calc(12);
      width: rem-calc(2);
      background-color: #FFF;
      position: absolute;
      top: 25%;
      right: 0; }
      @media screen and (max-width: 991px) {
        .global-footer-container .global-footer .copyright-subfooter .utsa-copyright::after {
          display: none; } }
    .global-footer-container .global-footer .copyright-subfooter .utsa-copyright p {
      margin: 0;
      text-align: right;
      padding-right: rem-calc(25); }
      @media screen and (max-width: 991px) {
        .global-footer-container .global-footer .copyright-subfooter .utsa-copyright p {
          padding-right: rem-calc(0);
          text-align: center; } }
  .global-footer-container .global-footer .copyright-subfooter .subfooter-links {
    padding: 0; }
    .global-footer-container .global-footer .copyright-subfooter .subfooter-links ul {
      padding: 0;
      margin: 0; }
      .global-footer-container .global-footer .copyright-subfooter .subfooter-links ul li {
        display: inline-block;
        padding: 0 rem-calc(10); }
        .global-footer-container .global-footer .copyright-subfooter .subfooter-links ul li a {
          font-weight: normal;
          text-decoration: underline;
          padding: 0; }
  @media screen and (max-width: 991px) {
    .global-footer-container .global-footer.secondary nav.global-footer-links {
      margin: 1rem 0 2rem; } }
  .global-footer-container .global-footer.secondary .global-footer-links ul,
  .global-footer-container .global-footer.secondary .social-media-footer-container ul {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    line-height: 1; }
    @media screen and (max-width: 991px) {
      .global-footer-container .global-footer.secondary .global-footer-links ul,
      .global-footer-container .global-footer.secondary .social-media-footer-container ul {
        justify-content: flex-start; } }
    .global-footer-container .global-footer.secondary .global-footer-links ul li,
    .global-footer-container .global-footer.secondary .social-media-footer-container ul li {
      display: inline-block; }
  .global-footer-container .global-footer.affiliate {
    padding: 1rem 0; }
    @media screen and (max-width: 991px) {
      .global-footer-container .global-footer.affiliate {
        text-align: center; } }
    .global-footer-container .global-footer.affiliate .container > .row {
      align-items: center; }
    .global-footer-container .global-footer.affiliate .copyright-subfooter .row > .col-sm-12 {
      display: flex;
      flex: auto;
      align-items: center; }
      @media screen and (max-width: 991px) {
        .global-footer-container .global-footer.affiliate .copyright-subfooter .row > .col-sm-12 {
          display: block; } }
    .global-footer-container .global-footer.affiliate .copyright-subfooter .utsa-copyright {
      flex-grow: 1; }
      @media screen and (max-width: 991px) {
        .global-footer-container .global-footer.affiliate .copyright-subfooter .utsa-copyright {
          flex-grow: 2; } }
    .global-footer-container .global-footer.affiliate .copyright-subfooter .subfooter-links ul {
      display: flex;
      justify-content: flex-end; }
      @media screen and (max-width: 991px) {
        .global-footer-container .global-footer.affiliate .copyright-subfooter .subfooter-links ul {
          display: block; } }
