:root,
[data-bs-theme="light"] {
    --emcc-red: #BA0C2F;       /* Pantone 200C */
    --emcc-red-darker-10: color-mix(in srgb, var(--emcc-red) 90%, black); 
    --emcc-red-darker-20: color-mix(in srgb, var(--emcc-red) 80%, black); 

    --emcc-red-faded:rgba(186, 12, 47, 0.20);
    --emcc-rich-black: #000000;/* For rich black printing, see CMYK: C75/M68/Y67/K90 */
    --emcc-white: #FFFFFF;
    --emcc-cool-gray: #DADADA; /* Approx. Pantone Cool Gray 1U */
    --font-primary: Calibri, sans-serif;
    --hero-height: 300px;
    --grid-gap: 1rem;

    --header-bg: var(--emcc-red);
    --row-even-bg: var(--emcc-cool-gray);
    --row-odd-bg: #ffffff;

      /* EMCC Style Guide Colors */
      --bs-body-bg: #FFFFFF !important;       /* White */
      --bs-body-color: #000000 !important;    /* Black */
      --bs-primary: #BA0C2F !important;       /* Pantone 200C */
      --bs-secondary: #DADADA !important;     /* Cool Gray 1U */
      --bs-dark: #000000 !important;          /* Rich Black */
      --bs-light: #FFFFFF !important;         /* White (reaffirm) */    

      /* EMCC Fonts */
      --bs-font-sans-serif: 'Oswald', "DinPro", Calibri, sans-serif !important;
      --bs-body-font-family: var(--bs-font-sans-serif) !important;
    
      --bs-blue: rgb(202, 25, 55) !important;
      --bs-indigo: #6610f2 !important;
      --bs-purple: #6f42c1 !important;
      --bs-pink: #d63384 !important;
      --bs-red: #dc3545 !important;
      --bs-orange: #fd7e14 !important;
      --bs-yellow: #ffc107 !important;
      --bs-green: #198754 !important;
      --bs-teal: #20c997 !important;
      --bs-cyan: #0dcaf0 !important;
      --bs-black: #000 !important;
      --bs-white: #fff !important;
      --bs-gray: #6c757d !important;
      --bs-gray-dark: #343a40 !important;
      --bs-gray-100: #f8f9fa !important;
      --bs-gray-200: #e9ecef !important;
      --bs-gray-300: #dee2e6 !important;
      --bs-gray-400: #ced4da !important;
      --bs-gray-500: #adb5bd !important;
      --bs-gray-600: #6c757d !important;
      --bs-gray-700: #495057 !important;
      --bs-gray-800: #343a40 !important;
      --bs-gray-900: #212529 !important;
    
      /* Overriding Bootstrap color variables */
      /* --bs-primary: rgb(253, 13, 33) !important;
      --bs-secondary: #6c757d !important; */
      --bs-success: #198754 !important;
      --bs-info: #0dcaf0 !important;
      --bs-warning: #ffc107 !important;
      --bs-danger: #dc3545 !important;
      /* --bs-light: #f8f9fa !important;
      --bs-dark: rgb(94, 182, 43) !important; */

      --menu-width: 183px;
    
  }
  
  .btn-primary {    
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--emcc-red);
    --bs-btn-border-color: #67091c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #67091c;
    --bs-btn-hover-border-color: var(--emcc-red);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--emcc-red);
    --bs-btn-active-border-color: var(--emcc-red);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
  }

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  html, body {
    margin: 0;
    padding: 0;
    font-family: 'Quattrocento';
    background-color: var(--emcc-white);
    color: var(--emcc-rich-black);
  }
  
  p {
    margin-bottom: 0;
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    color: #626060; // var(--emcc-red);
    font-family: "Oswald";
  }
  
  /* Accent Text */
  .accent {
    color: var(--emcc-cool-gray);
  }
  
  /* Links */
  a {
    color: var(--emcc-red);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove Bootstrap padding */
  }
  
  ul li {
    position: relative;
    padding-left: 25px; /* Space for the icon */
  }
  
  /* ul li::before {
    content: "\f058"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    color: var(--emcc-red); 
    position: absolute;
    left: 0;
    top: 0;
  } */
  
/* Header & Navigation */
header {
  background-color: var(--primary-color);
  padding: 1rem;
}
nav ul {
  display: flex;
  list-style: none;
}
nav li {
  margin-right: 1rem;
}
nav a {
  color: var(--text-color);
  text-decoration: none;
}

*,
*::before,
*::after {
  transition: all 0.5s ease-in-out; /* Adjust duration and easing as needed */
}

@media (min-width: 992px) and (max-width: 1200px) {
  :root {
    --menu-width: 140px;
  }
}

@media (min-width: 992px) {

#top-nav {
  background-color: var(--emcc-white) !important;
  /* border-top: solid 24px var(--emcc-red); */
  /* border-top: solid 10px black; */
  border-bottom: solid 2px black;
  box-shadow: var(--bs-box-shadow-lg);

  .logo {
    height: 50px;
    margin: 0px;
  }

  ul {
    /* width: 820px; */
    height: 100%;
  }

  li {
    list-style: none;
    //height:100%;
    margin: 0;
    width: var(--menu-width);
  }

  li::before {
    content: '';
  }

  ul li.nav-item {
    padding-left: 0px;
  }

  .navbar-collapse {
    height:100%;
  }

  .nav-item {
    color: #626060;
    margin: 0;
    margin-top: 0px;
    padding: 10;
    height: 100%;
    width:  var(--menu-width) !important;
    z-index: 90;
    /* background-color: blue; */

    .nav-link {
      height:100%;
      color: #626060;
      /* font-family: 'Quattrocento';
      font-weight: 600 !important;
      text-transform: uppercase;
      font-size: 14px; */
      font-size: 14px;
      font-family: 'Oswald';
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 18px;
      margin: 0;
      margin-top: 3px;
      padding: 0;
      width:  var(--menu-width);
      align-content: center;
      text-align: center;
      z-index: 90;
    }

    .nav-link::after {
      content: none;
    }

    .dropdown-menu {
      
      /* display: block !important; */

        width:  var(--menu-width);
        height: 475px;
        margin: 0 !important;
        border: none;        
        padding: 0;
        background-color: var(--emcc-red);
        color: white;
        top: 52px;
        border-radius: 0;
        z-index: 90;

        a {
          font-size: 12px;
          font-family: 'Oswald';
          display: block;
          width: 100%;
          margin: 0;
          padding: 0;
          padding-left: 10px;
          padding-top: 4px;
          z-index: 90;
          position: relative;
        }
    }

  }
}

.menu-filler {      
  width: 100vw;
  height: 475px;
  background-color: var(--emcc-red);
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 0;
}

ul.navbar-nav:hover .menu-filler {
  display: block;
}

ul.navbar-nav:hover > li ul.dropdown-menu {
  display: block !important;
}

ul.navbar-nav > li:hover > a.nav-link {
  background-color: var(--emcc-red-darker-10) !important;
  color: white !important;
}

ul.navbar-nav > li ul li:hover,
ul.navbar-nav > li ul a:hover {
  background-color: var(--emcc-red-darker-20) !important;
}

ul.navbar-nav > li:hover ul {
  background-color: var(--emcc-red-darker-10) !important;
}

.navbar-brand {
  position: absolute;
  left: 30px;
}

.navbar-container {
  height: 50px;
  margin-left: 240px;
}

.search {
  left: -30px;
  top: 4px;
  display: none;
}

.search-btn {
  color: white;
  position: relative;
  left: 0px !important;
  top: 8px !important;
}

}

.breadcrumb {
  li {
    margin: 0;
    padding: 0;
    color:rgb(187, 187, 187);

    &.active {
      color:rgb(187, 187, 187);
    }
    a {
      color:rgb(187, 187, 187);
    }
  }
}

.emcc-hero-red, .emcc-hero-gray {
  background-color: var(--emcc-red);
  color: var(--text-color);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}


.emcc-hero-red h1, 
.emcc-hero-red p.lead {
  color: white;
}

.emcc-hero-gray {
  background-color: var(--emcc-cool-gray);
  margin-top: 40px;

  p.lead {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.search-bar {
  transition: width 0.3s ease-in-out;
  width: 30px;
  margin-top: -10px;
  background-color: var(--emcc-red);
  color: white;
  button {
    color: white;
    svg {
      color: white;
    }
  }
}

.search-bar:focus {
  width: 250px;  
}

/* Hero Section */
.hero {
  height: var(--hero-height);
  background-color: var(--accent-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}


/* Grid Section */
.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--grid-gap);
  padding: 1rem;
}
.grid-section > div {
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #ddd;
}

/* Footer */
footer, .emcc-footer {
  background-color: #3b3e41;
  color: var(--text-color);
  text-align: center;
  padding: 1rem;

  li {
    list-style: none;
  }

  li::before {
    content: '';
  }

  a.btn {
    color: white;
  }
}

.dotted {
	--dotSize: 0.1rem;
  --bgSize: 0.5rem;
	--bgPosition: calc(var(--bgSize) / 2);
  --dotColor:rgb(28, 28, 28);
	/* aspect-ratio: 1; */
	position: relative;
  background-color: black;
	background-image: radial-gradient(circle at center, black var(--dotSize), transparent 0), radial-gradient(circle at center, var(--dotColor) var(--dotSize), transparent 0);
	background-size: var(--bgSize) var(--bgSize);
	background-position: 0 0, var(--bgPosition) var(--bgPosition);
  background-repeat: round;
	border: 3px double black;
}

.diagonal-background:after {
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  width: 200%;
  height: 200%;
  background: #ff7e5f;
  transform: rotate(45deg);
  transform-origin: top left;
  z-index: -1;
}

.mast{
  /* background-color: var(--emcc-red) !important; */
  /* background: linear-gradient(45deg, var(--emcc-red) 55%,  #ffffff 25%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  -webkit-transition: opacity 350ms linear;
  -moz-transition: opacity 350ms linear;
  -ms-transition: opacity 350ms linear;
  -o-transition: opacity 350ms linear;
  transition: opacity 350ms linear; */
  /* background: purple; */
  color: white;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  padding: 10rem 20%;
}

.mast > * {
    position: relative;
    z-index: 2;
}

.mast:after{
  /* content: "";
  background: linear-gradient(190deg, #ffffff 25%, #e8eeee 25%); */
  /* position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent black transparent;
  border-width: 0 0 1200px 1200px; */
}



@media(min-width: 768px){
  section:after{
    border-width: 0 0 1200px 500px;
  }
}

@media(min-width: 992px){
  section:after{
    border-width: 0 0 1200px 700px;
  }
}

section {
  /* border: solid 1px green; */
  padding: 20px;
}

.content{
  background: transparent;
  text-align: center;
  padding: 0 4%;
}

/* Remove borders */
table,
table thead tr th,
table tbody tr td {
  font-family: 'Quattrocento';
  border: none !important;
  margin: 0;
  border-spacing: 0;
}

table thead tr th,
table tbody tr td {
  padding: 12px !important;
}

/* Header styling */
table thead, table.table thead tr th {
  background-color: var(--header-bg) !important;
  font-weight: bold !important;
  color: white;
}

/* Alternating row colors */
table tbody tr:nth-child(even) {
  background-color: var(--row-even-bg) !important;
}
table tbody tr:nth-child(odd) {
  background-color: var(--row-odd-bg) !important;
}

table tbody tr:last-of-type th,
table tbody tr:last-of-type td {
  border-bottom: 3px double var(--emcc-red-faded) !important;
}

ul.color-palette {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

ul.color-palette li {
  width: 120px;
  height: 120px;
  position: relative;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  list-style: none;
}

/* Example color classes */
li.red {
  background-color: #BA0C2F;
}
li.rich-black {
  background-color: #000000;
}
li.white {
  background-color: #FFFFFF;
  border: 1px solid #ccc;
  p {
    color: black;
  }
}
li.cool-gray {
  background-color: #DADADA;
  p {
    color: black;
  }
}

/* Center the color name */
ul.color-palette li p:first-child {
  margin: 0;
  font-weight: bold;
}

/* Place color code at the bottom */
ul.color-palette li p:last-child {
  margin-top: auto;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: #ba0c2f !important;
}

.link-primary {
  color: #ba0c2f !important;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-emcc {
  background-color: var(--emcc-red);
  color: white;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 21px;
  padding: 10px 14px;
  i {
    margin-right: 4px;
  }
}

.btn-outline-primary {
  border-color: var(--emcc-red);
  color: var(--emcc-red);
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 21px;
  padding: 10px 14px;
}

section.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
  gap: 10px; /* Adjust spacing between divs */
}

/* CSS variables. Not needed for the effect to work. */
:root {
  --base:              #ba0c2f;
  --bg-blend:          overlay;
  --blur:              0px;
  --fg-blend:          lighten;
  --foreground:        #3f3b4e;
  --opacity:           1;
  --spacing:           2px;
}
.img-wrapper {
  background-color:    var(--base);
  display:             flex;
  flex:                1 1 100%;
  height:              100%; //275px; //100%;
  overflow:            hidden;
  padding:             var(--spacing);
  position:            relative;
  margin: 20px;
  min-height: 280px;
}

.img-wrapper span {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 20px;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 21px;
  border: 3px double white;
  padding: 12px;
}


.img-wrapper img {
  filter:              grayscale(100%) contrast(1) blur(var(--blur));
  flex:                1 0 100%;
  height:              100%; //275px; //100%;
  max-width:           100%;
  mix-blend-mode:      var(--bg-blend);
  object-fit:          cover;
  opacity:             var(--opacity);
  position:            relative;
  width:               100%;
}

.img-wrapper::before {
  background-color:    var(--foreground);
  bottom:              0;
  content:             '';
  height:              100%;
  left:                0;
  mix-blend-mode:      var(--fg-blend);
  position:            absolute;
  right:               0;
  top:                 0;
  width:               100%;
  z-index:             1;
}

img.bw {
  filter: grayscale(1);
}

.card-img {
  filter: grayscale(1) opacity(.7);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.card-img-bw {
  /* filter: grayscale(1) opacity(.7); */
  filter: grayscale(1) opacity(1);

  object-fit: cover;
  height: 100%;
  width: 100%;
}

.card-img-wrapper {  
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  /* padding-bottom: 20px; */
  /* background-color: black; */
}

.card-img-wrapper-bw {
  background-color: black;
}


.card.emcc-card-white {
      height: 100%;
      
      h1,h2,h3,h4,h5,h6 {
        color: var(--emcc-red) !important;
      }    
      p {
        color: black !important;
      }
      a {
        color: var(--emcc-red) !important;
      } 
}

.card.emcc-card-black {
  background-color: black;
  h1,h2,h3,h4,h5,h6 {
    color: var(--emcc-red) !important;
  }    
  p {
    color: white !important;
  }
}

.card-body {
  z-index: 2;
}
/* CSS generated layers for duotone shadow/highlight colors */

.card-img-wrapper::before,
.card-img-wrapper::after,
.card-img-wrapper-bw::before,
.card-img-wrapper-bw::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

/* highlight color */
@supports (mix-blend-mode: darken){
.card-img-wrapper::after{
  background-color:rgba(136, 127, 129, 0.71);
  mix-blend-mode: soft-light;
}
}

/* shadow color */
@supports (mix-blend-mode: lighten){
.card-img-wrapper::before{
  background-color: var(--emcc-red);
  mix-blend-mode: darken;
}
}

@supports (mix-blend-mode: soft-light){
  .card-img-wrapper-bw::after{
    background-color: #ffffff57;
    mix-blend-mode: soft-light;
  }
  }
  
  /* shadow color */
  @supports (mix-blend-mode: color){
  .card-img-wrapper-bw::before{
    background-color: #000000;
    mix-blend-mode: color;
  }
  }

  .card.emcc-card-news {
    border-width: 1px;
    border-color:rgba(186, 12, 47, 0.15) !important;
    box-shadow: var(--bs-box-shadow) !important;
    img {
      border-radius: 6px;
    }
    p {
      max-height: 100px;
      overflow: hidden;
      position: relative;
    }
    p::after {
      content: '...';
      position: absolute;
      bottom: 0;
      right: 0;
      /* background: linear-gradient(to right, transparent, white);  */
      background-color: rgb(239, 239, 239);
      padding-left: 0px;
      pointer-events: none;
    }
  }

.card {
  background-color:rgb(239, 239, 239);
  //height: 110% !important;

  h1,h2,h3,h4,h5,p,a {
    color: white !important;
    z-index: 2;
  }
}

.text-black {
  color: black !important;
}

.text-red {
  color: var(--emcc-red) !important;
}

.emcc-stats {
  background-color: black;
  width: 100vw;
  overflow: hidden;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  margin-right: -40px;
  .card {
    border-radius: 0px !important;
  }
}

.emcc-img-stats {
  width: 375px;
  position: relative;
  border: 10px solid var(--emcc-red);
  margin-bottom: 10px;
  
  background: black;
  box-shadow: 0 .5rem 1rem rgba(237, 237, 237, 0.15) !important;

  &.one {
    --transform: rotate(2deg);
    --top: -10px;
  }
  &.two {
    --transform: rotate(-3deg);
    --left: -20px;
  }
  &.three {
    --transform: rotate(4deg);
  }
  &.four {
    --transform: rotate(-3deg);
    left: -20px;
  }
  &.five {
    --transform: rotate(3deg);
    left: -20px;
  }
  &.six {
    --transform: rotate(-4deg);
    left: -20px;
  }
}

.emcc-img-stats-container {
  z-index: 1;
  position: relative;
  /* overflow: hidden; */
  margin-top: auto !important;
  margin-bottom: auto !important;
  opacity: .9;
}

.emcc-img-stats-container-start {
  left: 30px;
}

.emcc-img-stats-container-end {
  left: -90px;
}

.emcc-stats-container-wrapper {
  z-index: 3;
  margin-left: 60px !important;
}
.emcc-stats-container {
  transform: scale(.85);
  border: solid 10px black !important;
  overflow: hidden;
}

.video {
  overflow: hidden;
  max-width: 100vw;

  .video-container {
    position: relative;
    width: 100%;
    height: 480px; //100vh;
    overflow: hidden;
}

.video-container video {
    /* filter: grayscale(100%) contrast(1) blur(var(--blur)); */
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    /* min-height: 100%; */
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay text */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    z-index: 0;
    /* background: rgba(0, 0, 0, 0.5);  */
    /* padding: 20px; */
    /* border-radius: 10px; */
    h2 {
      color: white;
      border-left: solid 20px white;
      padding-left: 20px;
    }
}
}

/* In site.css */

.emcc-campus-section {
  background-color: #2c2e2f;
}

.emcc-campus-container {
  padding-bottom: 20px;
  padding-top: 20px;
}

.emcc-campus-image-wrapper {
  position: relative;
  z-index: 1;
  height: 392px;
  width: 534px;
}

.emcc-campus-image-wrapper-left {
  left: 50px;
  top: 14px;
}

.emcc-campus-image-wrapper-right {
  left: -200px;
  top: 14px;
}

.emcc-campus-label {
  margin-left: -50px;
}

.emcc-campus-image-wrapper-right .emcc-campus-label {
    margin-left: 30px;
}

.emcc-campus-center{
  z-index: 2;
}

.emcc-campus-title {
  font-size: 38px;
}

.emcc-campus-map {
  z-index: 2;
  margin-top: 20px;
  margin-left: -50px;
  height: 600px;
  background-color: white;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('./images/landing-new/map.png');
  mask-image: url('./images/landing-new/map.png');
  -webkit-mask-size: contain;
  mask-size: contain;
}

.emcc-cte-images-container {
  top: 38px;
  position: relative;
  .card-img-bw, .emcc-img-stats-container {
    opacity: 1;
  }
 }

/* Media Queries */
@media (min-width: 992px) and (max-width: 1200px) {
  
  #top-nav {
    & .nav-item {
        .nav-link {
          font-size: 12px !important;
        }
      }
    }

 .emcc-cte-images-container {
  top: 38px;
  position: relative;
 }
  
  .emcc-campus-image-wrapper-left {
    left: -95px;
    top: 0;
  }
  
  .emcc-campus-image-wrapper-right {
    left: -195px;
    top: 0;
  }
  .emcc-campus-label{
    margin-left:0;
  }

  .emcc-campus-image-wrapper-left .emcc-campus-label {
    margin-left: -60px;    
    //left: -10px;
  }

  .emcc-campus-image-wrapper-right .emcc-campus-label {
    margin-left:40px;
  }
  .emcc-campus-title {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  

  .emcc-campus-map {
    height: 450px;
    width: 270px;
    margin-left: -45px;
    margin-top: 15px;
  }
  .emcc-campus-image-wrapper {
    width: 400px;
    height: 300px;
  }
  .emcc-campus-image-wrapper-left {
    left: -120px;
    top: 25px;
  }
  
  .emcc-campus-image-wrapper-right {
    left: -105px;
    top: 25px;
  }
  .emcc-campus-label{
    margin-left:-25px;
  }
  .emcc-campus-image-wrapper-right .emcc-campus-label {
    margin-left: 0px;
  }

  .emcc-campus-title {
    font-size: 23px;
  }
}


.image-stack {
  position: relative; 
  width: 100%; 
  height: 280px; 
}

.bottom-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block; 
  filter: brightness(0.75);
}

.top-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  pointer-events: none;
  
}


html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

body {
  padding-top: 88px;
}

.navbar {
  position: fixed;
  top: 33px !important; /* Height of navbar */
  background-color: white;
  z-index: 99;
}

@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 135px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100vw; //100%;
    /* padding-right: 1rem;
    padding-left: 1rem; */
    padding: 0;
    margin: 0;
    padding-top: 40px;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }

  .nav-scroller .nav-link {
    display: none;
  }

  .navbar-container {
    max-width: 95vw !important;
  }

  .navbar-collapse {
    background-color: var(--emcc-red);
    color: white;

    .navbar-nav .nav-link.active, 
    .navbar-nav .nav-link.show {
      background-color: var(--emcc-red-darker-20);
      color: white;
      border-top: solid 1pxrgb(94, 0, 0) !important;    
      a {
        background-color: var(--emcc-red-darker-10);
      }  
    }

    .dropdown-menu.show {
      background-color: var(--emcc-red-darker-10);
      padding-bottom: 20px;

      a, li {
        background-color: var(--emcc-red-darker-10);
      }
    }

    ul, li {
      padding: 0;
      margin: 0;
    }

    ul li a,
    a.nav-link {
      display: block;
      width: 100vw;
      font-size: 58px;
      font-family: 'Oswald';
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 68px;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 20px;
      margin-left: 0;      
    }

    ul > li > ul li a {
      display: block;
      width: 100vw;
      font-size: 48px;
      font-family: 'Oswald';
      text-transform: none;
      font-weight: normal;
      letter-spacing: 1px;
      line-height: 48px;
      padding-top: 10px;

      border: none;
    }

    ul > li a, 
    ul > li > ul li,
    .navbar-nav .dropdown-menu
    {
      
      /* background-color: var(--emcc-red); */
      color: white;
      border: none;
      width: 100%;
      padding-left: 20px;
      text-transform: none;
      /* display: block; */
    }

    ul > li a::after {
      content: none;
    }
  }

  .search {
    display: none;
  }

  button.navbar-toggler {
    margin-left: auto;
    margin-right: 0px;
  }
}



.nav-scroller {
  position: fixed !important;
  top: 0;
  background-color: var(--emcc-red);
  width: 100%;
  z-index: 98 !important;
}

.nav-scroller .nav {
  color: rgb(255, 255, 255);
  margin-left: auto;
  flex-direction: row-reverse;
  padding-right: 80px;
}

.nav-scroller .nav-link {
  padding-top: .55rem;
  padding-bottom: .45rem;
  font-size: .875rem;
  color:rgb(255, 255, 255);
}

.nav-scroller .nav-link:hover {
  color: rgba(255, 255, 255, .5);
}

.nav-scroller .active {
  font-weight: 500;
  color: #343a40;
}

    .bd-placeholder-img {
      font-size: 1.125rem;
      text-anchor: middle;
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }

    @media (min-width: 768px) {
      .bd-placeholder-img-lg {
        font-size: 3.5rem;
      }
    }

    .b-example-divider {
      width: 100%;
      height: 3rem;
      background-color: rgba(0, 0, 0, .1);
      border: solid rgba(0, 0, 0, .15);
      border-width: 1px 0;
      box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
    }

    .b-example-vr {
      flex-shrink: 0;
      width: 1.5rem;
      height: 100vh;
    }

    .bi {
      vertical-align: -.125em;
      fill: currentColor;
    }

    .nav-scroller {
      position: relative;
      z-index: 2;
      height: 2.75rem;
      overflow-y: hidden;
    }

    .nav-scroller .nav {
      display: flex;
      flex-wrap: nowrap;
      padding-bottom: 1rem;
      margin-top: -1px;
      overflow-x: auto;
      text-align: center;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }

    .btn-bd-primary {
      --bd-violet-bg: #712cf9;
      --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

      --bs-btn-font-weight: 600;
      --bs-btn-color: var(--bs-white);
      --bs-btn-bg: var(--bd-violet-bg);
      --bs-btn-border-color: var(--bd-violet-bg);
      --bs-btn-hover-color: var(--bs-white);
      --bs-btn-hover-bg: #6528e0;
      --bs-btn-hover-border-color: #6528e0;
      --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
      --bs-btn-active-color: var(--bs-btn-hover-color);
      --bs-btn-active-bg: #5a23c8;
      --bs-btn-active-border-color: #5a23c8;
    }

    .bd-mode-toggle {
      z-index: 1500;
    }

    .bd-mode-toggle .dropdown-menu .active .bi {
      display: block !important;
    }