/* https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 * Expects all incoming values to be pixels
 */
:root {
  --primary-bg-dark: #11174c;
  --primary-bg-light: #ffffff;
  --accent-color: #1100be;
  --accent-light: #62c6f0;
  --secondary-accent-color: #9e071d;
  --text-color-dark: #1f2937;
  --text-color-light: #e5e7eb;
  --hero-tagline-color: var(--accent-light);
  --speaker-gradient-start: rgba(0, 0, 0, 0.95);
  --speaker-gradient-middle: rgba(0, 0, 0, 0.75);
  --header-height: 70px;
}

.basic-page-content {
  font-family: "Inter", sans-serif;
  background-color: var(--primary-bg-light);
  color: var(--text-color-dark);
}

.basic-page-content * {
  font-family: "Inter", sans-serif !important;
}

#hero {
  background-color: var(--primary-bg-dark);
  height: calc(100vh - var(--header-height));
  min-height: 500px;
}

.hero-bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.05) translateY(10px);
  transition: opacity 4s ease-in-out, transform 4s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(17, 0, 190, 0.6));
}

.bg-show {
  opacity: 0.5;
  transform: scale(1) translateY(0);
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
#twinkling-container {
  opacity: 0.5;
}

.twinkling-star {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 2px;
  height: 2px;
  z-index: 2;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  animation: twinkle 4s infinite alternate;
}

.clean-separator {
  border: 0;
  height: 3px;
  background-color: var(--primary-bg-dark);
  margin: 0;
  z-index: 10;
  position: relative;
}

.btn-cta {
  transition: all 0.3s ease;
}

.btn-sleek {
  font-size: 0.9rem;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.card, .list-group-item {
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-rdnt25 {
  text-align: center;
}

.logo-rdnt25 img {
  max-width: 270px;
  width: 100%;
  height: auto;
}

.agenda-item-accent {
  border-left-width: 3px !important;
  border-color: var(--accent-color) !important;
}

.agenda-item-break {
  background-color: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
}

.agenda-item-break .fw-semibold {
  color: var(--text-color-dark) !important;
}

.agenda-item {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 0.5rem !important;
}

.agenda-item h4 {
  font-size: 1.05rem;
}

.corporate .layout-page .btn {
  padding-left: 1.5em !important;
  padding-right: 1.5em !important;
}

#speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.speaker-card {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.speaker-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #303338;
}

.speaker-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-image-container img {
  transform: scale(1.05);
}

.speaker-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 1.5rem 1.25rem 1.5rem;
  color: white;
  z-index: 10;
  background: linear-gradient(to top, var(--speaker-gradient-start), var(--speaker-gradient-middle) 40%, rgba(0, 0, 0, 0) 100%);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.speaker-gradient-overlay h3 {
  color: white !important;
  margin-bottom: 0.1rem !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: normal !important;
}

.speaker-gradient-overlay p {
  color: var(--accent-light) !important;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal !important;
}

.modal .modal-header {
  background-color: white !important;
  background-image: none !important;
}

.modal .modal-body {
  background-color: white !important;
  background-image: none !important;
  padding: 2rem !important;
}

.modal .modal-title {
  font-size: 1.4rem !important;
  padding: 8px !important;
}

.modal img {
  padding-top: 0 !important;
}

.modal .text-secondary p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.modal .speaker-role-text {
  font-size: 1rem !important;
}

.modal .btn-close {
  transform: translate(-15px, 5px);
  font-size: 20px;
}

.fade-in-element {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(10px);
}

.fade-in-element.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-element #speakers-grid > div {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.show #speakers-grid > div {
  opacity: 1;
  transform: translateY(0);
}

#block-corporate-theme-main-menu .stage > div:first-child a > img {
  max-width: 150px !important;
}

main.layout-content {
  padding: 0 !important;
}

body .layout-content p img, body .ck-content p img {
  padding: 0;
  margin: 0;
}

.basic-page-content .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.layout-content article {
  padding-bottom: 0 !important;
}

@media (max-width: 720px) {
  #hero {
    height: calc(100vh - 100px);
  }
  h1, .ck-content h1 {
    font-size: 2.1875rem !important;
  }
  .corporate .layout-page .btn {
    width: 100%;
    margin-bottom: 0;
  }
  #block-corporate-theme-main-menu {
    padding-bottom: 0 !important;
  }
  #block-corporate-theme-main-menu .stage > div:first-child a > img {
    max-width: 150px;
  }
}
@media (min-width: 320px) {
  #speakers .container {
    max-width: none !important;
  }
}
@media (min-width: 768px) {
  #speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .btn-group-3x > .btn {
    min-width: 180px;
  }
  #speakers .container {
    max-width: 992px !important;
  }
}
@media (min-width: 1200px) {
  #speakers-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  #speakers .container {
    max-width: 1200px !important;
  }
}
@media (max-width: 767.98px) {
  #hero h1 {
    font-size: 2rem !important;
  }
}

/*# sourceMappingURL=investor-day.css.map */
