.menu .collapse-menu {display: flex}
.pitch-section h2 {
  color: #6E87C4;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 132px; /* 206.25% */
  letter-spacing: 0.64px;
}
.pitch-section p {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 450;
  line-height: 45px; /* 140.625% */
  letter-spacing: 1.28px;
  max-width: 900px;
  margin: 0 auto 34px;
}
@media (max-width: 1010px) {
  .pitch-section h2 {
    font-size: 10vw;
    line-height: 1.1em;
    margin: 0 0 30px;
  }
  .pitch-section p {
    font-size: 16px;
    line-height: 140%;
  }
}
/* Divider chevron */
.divider{
  display:flex; justify-content:center; margin-top:40px;
}
.divider .chevron{
  width:22px; height:22px; border-radius:50%;
  border:2px solid #a9b8c6; position:relative; display:inline-block;
  background:#fff;
}
.divider.light .chevron{ border-color:#cfd8e2; background:#f3f6fb }
.divider .chevron::after{
  content:""; position:absolute; inset:0;
  width:6px; height:6px; border-right:2px solid #8da1b5; border-bottom:2px solid #8da1b5;
  transform: rotate(45deg); margin:auto; top:6px;
}

/* SPEAKERS */
.about-section {
  display: block;
  min-height: auto;
  padding-bottom: 150px;
}
.about-section .h1-style {
  margin-bottom: 97px;
  position: static;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 97px;
   opacity: 0;
}
.card-grid.active {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}

@media (max-width:1000px){
  .card-grid{ grid-template-columns:repeat(2, 1fr) }
}
@media (max-width:620px){
  .card-grid{ grid-template-columns:1fr }
}
.team-cta {
  display: block;
  text-decoration: none!important;
}
.team-cta .media {
	transition: all .2s ease;
}
.team-cta:hover .media {
	transform: scale(1.01);
	box-shadow: 0 0 20px rgb(0 0 0 / 49%);
}
.team-cta .member-info { display: none; }
.person-card{
}
.person-card .media{
  aspect-ratio: 3/4;
  margin:0;
  overflow:hidden;
  background:#eff3f6;
}
.person-card img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.person-card .info{ margin: 20px 0 0; }
.person-card .name{
  color: #423E3A;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.48px;
  opacity: 1;
  text-align: left;
  margin: 0 0 10px;
}
.person-card .role{
  color: #423E3A;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.48px;
  margin: 0 0 10px;
}
.person-card .tag{
  display:inline-block;
  color: #CBE29F;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  padding: 4px 5px;
  background: #6E87C4;
  color: #CBE29F;
  border: none;
}

/* SCHEDULE */
.timeline-section {
  padding: 54px 54px 150px;
  display: block;
  min-height: auto;
}
.timeline-section .h1-style {
  margin-bottom: 50px;
  position: static;
}
.schedule-list{
  max-width: 1692px;
  margin: 0 auto;
  opacity: 0;
}
.schedule-list.active {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.schedule-list .row{
  display:grid; grid-template-columns:300px 1fr;
  padding:20px 0;
  border-bottom:1px solid #DFF3ED;
  margin: 10px 0;
}
.schedule-list .row:last-child{ border-bottom:0 }
.schedule-list .time{
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.schedule-list .item{ 
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
.schedule-list .item.strong{ font-weight:700 }
@media (max-width: 640px) {
  .schedule-list .row{
    display: block;
  }
  .schedule-list .time{
    margin-bottom: 20px;
  }
  .schedule-list .time,
  .schedule-list .item {
    font-size: 20px;
  }
}

/* AUDIENCE */
.eligibility-section {
  padding: 54px 54px 150px;
  display: block;
  min-height: auto;
}
.eligibility-section .h1-style {
  margin-bottom: 50px;
  position: static;
}
.eligibility-section .container {
  max-width: 1000px;
}
.tile-grid{
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}
.tile-grid.active {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
@media (max-width:900px){
  .tile-grid{ grid-template-columns: repeat(2, 1fr) }
}
@media (max-width:580px){
  .tile-grid{ grid-template-columns: 1fr }
}
.tile{
  text-align: center;
  background: #cfe5a9;
  padding: 30px;
  padding-top: 80px;
  min-height:140px;
  position:relative;
  max-width: 300px;
  width: 100%;
}
.tile p{
  color: #423E3A;
  font-size: 22px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.44px;
  margin: 0
}
.tile p strong { color: #000 }
.tile strong{ font-weight:800 }
.tile-plus{
  position:absolute;
  inset:auto 0 auto 0;
  top: 30px;
  margin:auto;
  width: 30px;
  height: 30px;
  border-radius:6px;
  font-size: 0;
  color: transparent;
  display:grid;
  place-items:center;
  background: url(../img/plus.svg) no-repeat center;
  background-size: 30px;
}
.tile-empty{ background:transparent; border:1px dashed #d9e7be; box-shadow:none }

.start-section {
  padding: 100px 0 50px;
}
.start-section h2.h1-style {
  margin: 0 0 50px
}
.start-section .container {
  opacity: 0;
  padding: 0 20px;
}
.start-section.active .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.start-section iframe {
  width: 686px;
  height: 527px;
}
@media (max-width: 768px ) {
  .start-section iframe {
    width: 100%;
    height: 927px;
  }
}

.modal .modal-content .modal-body {
	text-align: left;
	padding: 30px;
	border-radius: 8px;
	background: var(--gray, #EBE8E5);
}
/* Custom body */
.modal .modal-content .modal-body {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.modal .modal-content .modal-body .photo {
	width: 100%;
	max-width: 300px;
}
.modal .modal-content .modal-body .photo img {
	border-radius: 8px;
}
.modal .modal-content .modal-body .bio {
	width: calc(100% - 330px);
}
.modal .modal-content .modal-body .bio p {
	color: var(--darker-text, #525252);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 22px;
}
.modal .modal-content .modal-body .bio h2 {
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 5px 0;
}
.modal .modal-content .modal-body .bio h2 + p {
	color: var(--darker-text, #525252);
	margin: 5px 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 3.2px;
	text-transform: uppercase;
}
.modal .modal-content .modal-body .bio .company {
	color: var(--darker-text, #525252);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 30px;
}

@media (min-width: 1920px) {
	.modal .modal-content {
		max-width: 1440px;
	}
}