/*-----------+
| CONTAINERS |
+-----------*/
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  /* background-color: #f6f6f6; */
  scroll-behavior: smooth;
}

/* Enable view transitions (crossfades between pages) */
@view-transition {
  navigation: auto;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

#content {
  background-color: #FFFFFF;
  position: relative;
  scroll-margin-top: 59px;
}

.mw-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mw-992 {
  max-width: 992px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mw-768 {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*--------+
| GENERAL |
+--------*/
hr {
  margin: 3rem auto;
}

img {
  width: 100%;
}

iframe {
  display: block;
  margin: auto;
  aspect-ratio: 16 / 9;
  max-width: 1200px;
	width: 100%;
	height: auto;
}

.speaker-bubble {
  background: #ebebeb;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.speaker-bubble img {
  width: 50%;
  max-width: 150px;
  margin-right: 1rem;
}

.visionary-sponsor {
  max-width: 768px;
  margin: 1.5rem 0 3rem;
}

.scroll-to-top {
  display: flex;
	justify-content: center;
	align-items: center;
  height: 50px;
	width: 50px;
  border: solid 1px #595959;
	font-size: 2rem;
	color: #595959;
	text-decoration: none;
	position: fixed;
	bottom: 50px;
	right: 50px;
  background: #FFFFFF;
  border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s;
}

.scroll-to-top:hover {
	color: #FFFFFF;
  background: #595959;
}

.scroll-to-top.enabled {
	opacity: 1;
	visibility: visible;
	z-index: 99;
}

/* Adds double border focus for all elements */
:focus-visible,
:focus {
	/* Inner indicator */
	outline: 2px #F9F9F9 solid !important;
	outline-offset: 0;
	/* Outer indicator */
	box-shadow: 0 0 0 4px #193146 !important;
}

/*------------------+
| TEXT AND HEADINGS |
+------------------*/
.oswald {
  font-family: 'Oswald', sans-serif;
}

.lead {
  /* margin-bottom: 2.25rem; */
  font-weight: 400;
}

.standout-light {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -1px;
}

.standout-bold {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    /* text-transform: uppercase; */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
}

.h1-highlight {
  display: inline-block;
  font-size: 3.25rem;
  background-color: #FFC72C;
  /* color: #000000;
  padding: 0; */
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.h2-highlight {
  /* display: inline-block; */
  /* font-size: 2.5rem; */
  font-size: 2.75rem;
  /* background-color: #001A70; */
  /* color: #FFFFFF; */
  color: #001A70;
  text-transform: uppercase;
  /* padding: 0; */
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 1.75rem;
  letter-spacing: -1px;
  background-color: #FFC72C;
  display: inline-block;
  /* margin-bottom: 1rem; */
}

/* .text-shadow {
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
} */

/* .box-shadow {
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
} */

a {
  color: #003594;
}

a:hover {
  color: #000000;
}

a.down-arrow {
  color: #FFFFFF;
  transition: all 0.2s;
  font-size: 3rem;
}

a.down-arrow:hover {
  color: #FFC72C;
  transform: translateY(5px);
}

a:has(img) {
  display: inline-block;
}

/* Adds an external link icon for external links that are not images */
main a:not(:has(img))[target="_blank"]::after {
  content: '\f08e';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 75%;
}

.sponsorship-number {
  text-transform: uppercase;
  /* letter-spacing: 0.25rem; */
  font-weight: bold;
  color: #003594;
  font-size: 2rem;
}

.track-type {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #595959;
  font-size: 1.25rem;
}

.track-name {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #595959;
  /* font-size: 1.125rem; */
}

.session {
  background: #f6f6f6;
  padding: 1rem;
  height: 100%;
}

.session-speakers {
  font-weight: bold;
  color: #001A70;
  text-transform: uppercase;
}

.details {
  font-size: 0.875rem;
  border-left: solid 4px #001A70;
  padding-left: 8px;
}

/*=======+
| IMAGES |
+=======*/
.parallax-blue {
  background-image: url('../images/bg-video-blue.jpg');
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-gold {
  background-image: url('../images/bg-video-gold.jpg');
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.get-involved-cutout {
  position: absolute;
  bottom: 0;
  margin-bottom: -3rem;
  mix-blend-mode: overlay;
  visibility: hidden;
}

/*------+
| CARDS |
+------*/
.card {
  border-radius: 0;
  border: solid 1px #001A70;
  /* border: none; */
  background: #f6f6f6;
}

.card .line {
  border: solid 4px #001A70;
  width: 25%;
  display: inline-block;
  margin: 1rem;
}

.card-text {
  font-size: 1.125rem;
  /* text-wrap: balance; */
}

.card-footer {
  background: #f6f6f6;
}

.card ul li {
  /* padding-left: 8px; */
  margin-bottom: 8px;
}

/*========+
| BUTTONS |
+========*/
.btn {
	font-family: monospace, sans-serif;
  /* font-size: 1rem; */
  font-weight: bold;
	padding: 0.75rem 1.5rem;
	text-transform: uppercase;
	/* border: 2px solid; */
  border: none;
	text-decoration: none;
  /* opacity: 0; */
  border-radius: 1000px;
}

/* .btn.disabled {
  opacity: 0;
} */

.btn-sm {
  padding: 0.5rem 1rem;
}

.btn-csub-blue,
.btn-csub-blue.disabled {
	color: #FFFFFF;
  background-color: #003594;
	/* border-color: #003594; */
}

.btn-csub-blue:hover,
.btn-csub-blue:focus,
.btn-csub-blue:focus-visible {
  color: #003594;
	background-color: #FFC72C;
  /* border-color: #003594; */
}

.btn-csub-gold,
.btn-csub-gold.disabled {
	color: #001A70;
  background-color: #FFC72C;
	/* border-color: #FFC72C; */
}

.btn-csub-gold:hover,
.btn-csub-gold:focus,
.btn-csub-gold:focus-visible {
  color: #FFC72C;
	background-color: #001A70;
  /* border-color: #FFC72C; */
}

/*============+
| HEADER FULL |
+============*/
.hero-bg-full {
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  margin-top: -59px;
}

/* Style the video: 100% width and height to cover the entire window */
#video {
  /* position: absolute; */
  position: fixed;
  /* right: 0;
  bottom: 0; */
  min-width: 100%;
  min-height: 100%;
}

/* Style the button used to pause/play the video */
#video-btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 2rem;
  color: #FFFFFF;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.2s;
}

#video-btn:hover {
  color: #FFC72C;
}

.hero-bg-full-text-container {
  width: 66%;
  max-width: 992px;
  /* padding: 3rem 0 3rem; */
  z-index: 99;
  text-align: center;
  margin-top: 4rem;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 53, 148, 0.5);
  /* background: linear-gradient(270deg, rgba(0, 53, 148, 0.8) 0%, rgba(0, 26, 112, 0.8) 100%); */
  /* border-radius: 0 0 50% 0; */
}

.tagline {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  display: inline-block;
  max-width: 600px;
  margin: 2rem auto;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

/*-------------+
| HEADER SMALL |
+-------------*/
.hero-bg-sm {
  background: url('../images/video-still.jpg') center/cover no-repeat;
  height: 33vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  margin-top: -62px;
}

.hero-bg-sm .date {
  font-family: monospace, sans-serif;
  color: #FFC72C;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1rem;
}

.hero-bg-sm-text-container {
  width: 100%;
  max-width: 768px;
  padding: 0 3rem;
  z-index: 99;
  margin-top: 62px;
}

/*====+
| NAV |
+====*/
.navbar {
  background: none;
  transition: all 0.2s;
}

.nav-item {
  margin: auto 0.5rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.125rem;
}

.nav-item a {
  color: #FFFFFF;
  transition: all 0.2s;
}

.nav-item a:hover {
  background: #FFC72C;
  color: #212529;
  /* text-decoration-line: underline;
  text-underline-offset: 0.5rem; */
}

.nav-item a:focus {
  outline: 0;
  box-shadow: 0 0 5px 5px #003594;
  background: #FFFFFF;
  color: #000000;
}

.bg-gray .nav-item a {
  color: #212529;
}

#hamburger-icon {
  transition: all 0.2s;
}

#hamburger-icon.fa-x {
  color: #001A70
}

#skip {
	z-index: 99999;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	margin: 0 auto;
	width: 100%;
  background: #FFFFFF;
}

#skip a,
#skip a:hover,
#skip a:visited {
	position: absolute;
	left: 0px;
	top: -500px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	color: #003594;
}

#skip a:active,
#skip a:focus {
	position: static;
	width: 100%;
	margin: 0 auto;
	height: auto;
	display: block;
	color: #001A70;
}

/*---------------+
| CONTENT BLOCKS |
+---------------*/
.track {
  border-bottom: solid 1px #595959;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.track:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* .track h3 {
  margin-bottom: 1.5rem;
  text-align: center;
} */

/*----------+
| ACCORDION |
+----------*/
.accordion-item,
.accordion-button,
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}

.accordion-button {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.accordion-body {
  padding-bottom: 1.5rem;
  /* font-size: 1.125rem; */
}

/*===================+
| PHOTO GALLERY GRID |
+===================*/
.gallery {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-flow: dense;
    /* align-items: stretch; */
}

.gallery div {
  display: flex;
  transition: opacity 0.2s;
}

.gallery div:hover {
  opacity: 0.9;
  cursor: pointer;
}

.gallery img {
    object-fit: cover;
}

.gallery .wide {
    grid-column: span 2;
}

.gallery .tall {
    grid-row: span 2;
}

/*===============+
| MODAL CAROUSEL |
+===============*/
.carousel-item {
	/* height: 800px;
  max-height: 50vh; */
  transition: none;
}

.carousel-item img {
  display: block;
	margin: 0 auto;
  /* object-fit: contain; */
  max-height: 80vh;
  border: solid 4px #FFFFFF;
  width: auto;
  max-width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  position: fixed;
  /* background: #001A70; */
  opacity: 1;
  /* margin: 0 1rem; */
  background: #000000;
  width: 40px;
  height: 40px;
  align-self: center;
}

.carousel-control-prev {
  left: 18px;
}

.carousel-control-next {
  right: 18px;
}

.btn-close {
  position: fixed;
  right: 4px;
  top: 0;
  z-index: 99;
  background-image: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  opacity: 1;
}

#modal-carousel-2025 .modal-content {
  /* width: auto;
  margin: 0 auto; */
  background: none;
  border: none;
}

.modal-backdrop.show {
	opacity: 0.8;
}

/*===============+
| DATE ANIMATION |
+===============*/
.date-drop-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.date-drop-container span {
  font-family: monospace, sans-serif;
  color: #FFC72C;
  text-transform: uppercase;
  font-size: 3rem;
  /* letter-spacing: 1rem; */
  margin: 0 0.75rem;
  opacity: 0;
  animation: date-drop 0.4s linear forwards;
}

@keyframes date-drop {
  0% {
    transform: translateY(-200px) scaleY(0.9);
  }
  5% {
    opacity: 0.75;
  }
  50% {
    transform: translateY(0px) scaleY(1);
    opacity: 1;
  }
  65% {
    transform: translateY(-17px) scaleY(0.9);
  }
  75% {
    transform: translateY(-22px) scaleY(0.9);
  }
  100% {
    transform: translateY(0px) scaleY(1);
    opacity: 1;
  }
}

.date-drop-container span:nth-child(2) {
  animation-delay: 0.1s;
}

.date-drop-container span:nth-child(3) {
  animation-delay: 0.2s;
}

.date-drop-container span:nth-child(4) {
  animation-delay: 0.2s;
}

.date-drop-container span:nth-child(5) {
  animation-delay: 0.4s;
}

.date-drop-container span:nth-child(6) {
  animation-delay: 0.5s;
}

.date-drop-container span:nth-child(7) {
  animation-delay: 0.6s;
}

.date-drop-container span:nth-child(8) {
  animation-delay: 0.7s;
}

.date-drop-container span:nth-child(9) {
  animation-delay: 0.8s;
}

/*=======================+
| COLORS AND BACKGROUNDS |
+=======================*/
.white {
  color: #FFFFFF;
}

.gold {
  color: #FFC72C;
}

.blue {
  color: #003594;
}

.dark-blue {
  color: #001A70;
}

.bg-gold {
  background-color: #FFC72C;
}

.bg-blue {
  background-color: #003594;
}

.bg-dark-blue {
  background-color: #001A70;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-gray {
  background-color: #f6f6f6;
}

.bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-diagonal {
  background-color: rgba(243, 243, 243, 0.5);
  background: repeating-linear-gradient(135deg, #FFFFFF, #FFFFFF 5px, #f6f6f6 5px, #f6f6f6 25px );
}

/*=======+
| FOOTER |
+=======*/
footer {
  background-color: #001A70;
  /* background: url('../images/video-still.jpg') center/cover no-repeat; */
  color: #FFFFFF;
  position: relative;
}

footer a {
  color: inherit;
  text-decoration: none;
  /* font-size: 0.875rem; */
}

footer a:hover {
  color: #FFC72C;
  text-decoration: underline;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

footer .footer-link {
	page-break-inside: avoid;
	break-inside: avoid; /* Prevents multi-line footer links from breaking into next column */
	margin-bottom: 0.75rem;
	line-height: 1.25;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
}

/*==============+
| MEDIA QUERIES |
+=============-*/
/* For breakpoints smaller than lg */
@media (max-width: 991px) {
  .navbar {
    background-color: #f6f6f6;
  }

  .navbar-nav {
    padding: 0.75rem 0;
  }

  .nav-item a {
    color: #212529;
    transition: all 0.2s;
  }

  .nav-item a:hover {
    padding-left: 1rem;
    margin-top: 0;
  }
}

/* For breakpoints smaller than md */
@media (max-width: 767px) {
  /* .navbar:has(button[aria-expanded="true"]) {
    background-color: #f6f6f6;
  } */

  #content {
    scroll-margin-top: 46px;
  }

  /* .navbar {
    background-color: #f6f6f6;
  } */

  /* .navbar-nav {
    padding: 0.75rem 0;
  }

  .nav-item a {
    color: #212529;
    transition: all 0.2s;
  }

  .nav-item a:hover {
    padding-left: 1rem;
    margin-top: 0;
  } */

  .btn {
    width: 100%;
  }

  h3 {
    font-size: 2rem;
  }

  .hero-bg-full {
    background: url('../images/video-still.jpg') center/cover no-repeat;
    margin-top: -46px;
  }

  /* .hero-bg-full-text-container {
    width: 75%;
  } */

  .hero-bg-sm {
    margin-top: -46px;
  }

  .hero-bg-sm-text-container {
    margin-top: 46px;
  }

  .hero-bg-sm .date {
    font-size: 2rem;
    letter-spacing: 0.5rem;
  }

  .date-drop-container span {
    font-size: 2rem;
    margin: 0 0.5rem;
  }

  .tagline {
    font-size: 1.25rem;
    /* display: none; */
  }

  video,
  #video-btn {
    display: none;
  }

  /* Turn off parallax scrolling */
  .parallax-blue,
  .parallax-gold {
    background-attachment: scroll;
  }
}

/* For viewport heights 700px and smaller */
@media (max-height: 700px) {
  .tagline {
    display: none;
  }

  a.down-arrow {
    display: none;
  }
}

/* For viewport heights 400px and smaller */
@media (max-height: 400px) {
  .date-drop-container {
    display: none;
  }
}