@charset "UTF-8";
* {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-default);
}

*::-moz-selection {
  color: #fff;
  background-color: #000;
}

*::selection {
  color: #fff;
  background-color: #000;
}

@font-face {
  font-family: "NewYork";
  src: url("./static/fonts/newyork-webfont.ttf");
}
@font-face {
  font-family: "Montserrat";
  src: url("./static/fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "PlaywriteCU";
  src: url("./static/fonts/PlaywriteCU-VariableFont_wght.ttf");
}
:root {
  --fs-p: 0.8em;
  --fs-h: 1.3em;
  --ltr-spc: 5px;
  --font-heading: "NewYork";
  --font-sub-heading: "PlaywriteCU";
  --font-default: "Montserrat";
  --color-light: #fefefe;
  --color-dark: #ced4e5;
  --color-accent: #e6ced3;
}

.font-mont {
  font-family: var(--font-default);
}

.font-ny {
  font-family: var(--font-heading);
}

.font-pw {
  font-family: var(--font-sub-heading);
}

#svg-defs-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

body {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
}
body #intro-ctr {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-out;
  cursor: pointer;
  z-index: 999;
  overflow: hidden;
}
body #intro-ctr #Layer_1 {
  position: absolute;
  top: 160px;
  width: 100px;
  fill: #e06d5e;
}
body #intro-ctr #intro-vid {
  position: relative;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body #intro-ctr #intro-cta {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: pulse 1s infinite alternate;
  bottom: 20px;
}
body #intro-ctr #intro-cta p {
  color: #000;
}
@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .container {
  max-width: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  position: relative;
}
body .border-imgs {
  position: absolute;
  width: 100vw;
  max-width: 500px;
  height: auto;
  z-index: 1;
  top: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  pointer-events: none;
}
body .border-imgs div {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
body .border-imgs div img {
  position: relative;
  width: 120px;
  height: auto;
  opacity: 0.6;
}
body .border-imgs div:nth-of-type(odd) {
  justify-content: flex-start;
}
body .border-imgs div:nth-of-type(odd) img {
  left: 0;
  transform: rotateY(180deg);
}
body .border-imgs div:nth-of-type(even) {
  justify-content: flex-end;
}
body .border-imgs div:nth-of-type(even) img {
  right: 0;
  transform: unset;
}
body .section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 50px;
}
body .section * {
  z-index: 2;
}
body .salutations {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  gap: 10px;
  text-align: center;
}
body .salutations p:nth-of-type(1) {
  font-size: 12px;
}
body .hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .hero #hero-video {
  width: 150%;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
body .hero #hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .hero #hero-text p {
  font-size: var(--fs-p);
  margin: 10px 0;
}
body .hero #hero-text h1 {
  font-size: var(--fs-h);
  text-transform: uppercase;
}
body .hero .hero-cta {
  position: absolute;
  bottom: 20px;
}
body .hero .hero-cta a {
  text-decoration: none;
  letter-spacing: var(--ltr-spc);
  text-transform: uppercase;
  color: #000;
  font-size: 8px;
}
body .hero .hero-cta a::after {
  content: "↓";
}
body .countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(123deg, rgb(206, 212, 229) 0%, rgb(230, 206, 211) 100%);
  color: #000;
  padding: 20px 0;
}
body .countdown .countdown-text {
  position: relative;
  text-align: center;
}
body .countdown .countdown-text p {
  font-size: var(--fs-p);
  letter-spacing: var(--ltr-spc);
}
body .countdown .countdown-text h1 {
  font-size: var(--fs-h);
  font-weight: 300;
}
body .countdown .countdown-timer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}
body .countdown .countdown-timer .countdown-timer-item {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  width: 50px;
  height: 50px;
  background-color: var(--color-light);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3960784314);
}
body .countdown .countdown-timer .countdown-timer-item h1 {
  font-family: "NewYork";
  font-size: 18px;
}
body .countdown .countdown-timer .countdown-timer-item p {
  font-family: var(--font-default);
  font-size: 14px;
}
body .events {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
body .events .evt-sec-hd {
  color: #000;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  background-color: var(--color-dark);
  padding: 10px 50px;
  border-radius: 999em;
}
body .events p {
  padding: 20px;
  font-size: 18px;
  line-height: 2;
}
body .events p:first-of-type {
  padding: unset;
}
body .events ul {
  list-style: none;
}
body .events ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: auto;
  align-items: center;
  margin-bottom: 100px;
}
body .events ul li .tl-itm-img {
  width: 100px;
  height: 100px;
  background-color: var(--color-dark);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .events ul li .tl-itm-img h1 {
  font-weight: normal;
}
body .events ul li .tl-itm-img::after {
  content: "";
  width: 2px;
  height: 150px;
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  position: absolute;
  background-color: #000;
}
body .events ul li .tl-itm-cntnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body .events ul li .tl-itm-cntnt p {
  text-align: center;
  width: 80%;
}
body .events ul li .tl-itm-cntnt .venueBox {
  padding: 20px;
  z-index: 2;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
body .events ul li .tl-itm-cntnt .venueBox svg {
  width: 50px;
  height: 50px;
  fill: var(--color-accent);
  border-radius: 50%;
  background-color: #e6879a;
  padding: 5px;
  margin-top: 15px;
  margin-bottom: 5px;
}
body .events ul li .tl-itm-cntnt .venueBox svg path {
  fill: var(--color-accent);
}
body .events ul li .tl-itm-cntnt .venueBox p {
  padding: unset;
  font-size: 14px;
}
body .events ul li .tl-itm-cntnt .venueBox p:first-of-type {
  font-size: 16px;
  line-height: 18px;
}
body .events ul li .tl-itm-cntnt .venueBox #event-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
body .events ul li .tl-itm-cntnt .venueBox #event-btns a {
  text-decoration: none;
  font-size: 14px;
  background-color: #cfdaf6;
  color: #000;
  padding: 16px;
  border-radius: 10px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  line-height: 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body .events ul li .tl-itm-cntnt .venueBox #event-btns a svg {
  background-color: unset;
  fill: #000;
  width: 35px;
  height: 35px;
  margin: unset;
}
body .events ul li .tl-itm-cntnt .venueBox #event-btns a svg path {
  fill: #000;
}
body .events ul li .tl-itm-cntnt .venueBox #event-btns a:last-of-type {
  background-color: rgba(207, 218, 246, 0.4745098039);
}
body .events ul li:last-of-type {
  margin-bottom: unset;
}
body .events ul li:last-of-type .tl-itm-img::after {
  display: none;
}
body .divider {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 80%;
}
body .divider div {
  position: relative;
  flex: 1 1 100px;
  height: 2px;
  background-color: var(--color-dark);
}
body .divider img {
  position: relative;
  width: 24px;
  margin: 0px 10px;
  opacity: 0.5;
}
body .bg-aud-wrapper {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: pink;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.2941176471);
}
body .bg-aud-wrapper .speaker-btns {
  position: absolute;
}
body .bg-aud-wrapper .speaker-btns:nth-of-type(2) {
  display: none;
}/*# sourceMappingURL=index.css.map */