.redhat-summit-22-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rf-org-footer-container {
  margin-top: auto;
  margin-bottom: 0;
}
#rh-top-banner-virtual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  color: #131313;
  padding: 64px 24px !important;
  text-align: center;
  background: url(./img/hero-img.png);
  background-size: cover;
  background-position-y: center;
}
#rh-top-banner-virtual h1 {
  font-family: 'Red Hat Display';
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-content {
  padding: 24px;
}
.container__subtitle {
  font-size: 24px;
}
.red {
  color: #ee0000;
}
.demo-card-grid {
  display: grid;
  gap: 20px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(260px, 280px));
  max-width: 900px;
  width: 100%;
  padding-bottom: 42px;
  justify-content: center;
}
@media (max-width: 900px) {
  .demo-card-grid {
    max-width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.demo-card {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(3, 3, 3, 0.1), 0 0 2px 0 rgba(3, 3, 3, 0.06);
  border-radius: 8px;
  color: #151515;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  overflow: hidden;
  padding: 24px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.demo-card:hover,
.demo-card:focus {
  box-shadow: 0 8px 24px 0 rgba(3, 3, 3, 0.14), 0 0 6px 0 rgba(3, 3, 3, 0.06);
  transform: translateY(-3px);
}
.demo-card:focus {
  outline: 2px solid rgb(0, 102, 204);
  outline-offset: 2px;
}
.demo-card__header {
  display: flex;
  flex-direction: row;
  position: relative;
}
.demo-card__badges {
  margin-left: auto;
  margin-right: 0;
}
.demo-card__badges--code {
  background-color: #c9190b;
  border-radius: 360px;
  font-family: 'Red Hat Text', 'Overpass', overpass, helvetica, arial, sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 0 8px;
}
.demo-card__body {
  margin-top: 12px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.demo-card__title {
  font-size: 16px !important;
  color: #111;
  margin-bottom: 6px !important;
}
.demo-card__scheduled {
  color: #6a6e73;
  font-size: 13px !important;
  margin-bottom: 8px;
}
.demo-card__subtitle {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgb(0, 102, 204);
  margin-top: auto !important;
  margin-bottom: 0;
  position: relative;
  display: block;
  white-space: nowrap;
  font-family: 'Red Hat Display', Overpass, Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  min-width: 100%;
}
.demo-card__subtitle svg {
  fill: rgb(0, 102, 204);
  transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
  margin-bottom: -1px;
  height: 13px;
  margin-left: 6px;
}
.demo-card:hover .demo-card__subtitle {
  color: rgb(0, 64, 128);
}
.demo-card:hover .demo-card__subtitle svg {
  transform: translateX(4px);
  fill: rgb(0, 64, 128);
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal-bg {
  position: absolute;
  background: rgba(3, 3, 3, 0.6);
  width: 100%;
  height: 100%;
}
.modal-container {
  border-radius: 12px;
  background: #fff;
  position: relative;
  padding: 30px;
  width: 600px;
  max-width: 90vw;
  min-height: 400px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.modal-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0;
}
.subcard {
  display: none;
  flex-direction: row;
  padding: 8px;
}
.subcard > span {
  margin-left: auto;
}
.subcard svg {
  fill: #111;
}
.subcard:hover {
  background-color: #f0f0f0;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: #6a6e73;
  background: none;
  border: 0px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.modal-close:hover {
  background-color: #f0f0f0;
  color: #111;
}
#nav-main {
  display: flex;
  flex-basis: auto;
}
#nav-main .d-lg-inline-block {
  display: inline-block !important;
}
.card-header {
  border-radius: 3px;
  background-color: #fff;
  max-width: 600px;
  margin: 0 auto;
}
.content-container img {
  display: block;
  margin: 0 auto;
}
.rc-footer-traditional-container {
  padding: 32px 24px;
}
.rc-footer-traditional-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.rc-footer-traditional-logo img {
  max-width: 120px;
}
.rc-footer-traditional-legal .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.rc-footer-traditional-legal .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.rc-footer-traditional-legal .menu a {
  font-size: 13px;
  white-space: nowrap;
}
.rc-footer-traditional-legal .copyright {
  font-size: 13px;
}
.rc-footer-traditional-event-logo svg {
  max-width: 220px;
  height: auto;
}
@media (max-width: 768px) {
  .rc-footer-traditional-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rc-footer-traditional-legal .row {
    flex-direction: column;
    align-items: center;
  }
  .rc-footer-traditional-legal .menu {
    justify-content: center;
  }
}
