:root {
  --bg: #0C1330;
  --purple: #1E1E5F;
  --green: #2ACE6F;
  --white: #FFF;
  --main-font-family: 'Mukta', sans-serif;
}

/* editmode overrides */
.edy-tb-sticky {
  margin-top: -45px;
}

/* GENERAL */
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: 'Mukta', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
  background-color: var(--bg);
}
main {
  min-height: 40vh;
}

ul {
  list-style-type: circle;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: .2s;
}
a:hover, a:focus {
  color: var(--white);
}

h3 { color: var(--green); }

.color-green { color: var(--green); }
.color-white { color: var(--white); }
.section-title { font-size: 3.5rem; font-weight: 800; }
.hd-1 { font-size: 5rem; }
.hd-2 { font-size: 2.25rem; }
.hd-3 { font-size: 1.5rem; }
.hd-4 { font-size: 1rem; }
.text-tiny { font-size: 0.8rem; }
.fw-8 { font-weight: 800; }
.fw-4 { font-weight: 400; }
.fw-3 { font-weight: 300; }

@media (max-width: 768px) {
  .hd-1 { font-size: 2rem; }
  .hd-2 { font-size: 1.25rem; }
  .hd-3 { font-size: 1rem; }
  .hd-4 { font-size: 0.75rem; }
  .common-content h1, 
  .common-content h2, 
  .common-content h3,
  .common-content h4 { 
    color: var(--green); 
    text-align: center; 
  }
}

.green-button {
  width: fit-content;
  font-weight: 800;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: var(--bg);
  background-color: var(--green);
  transition: .3s;
}
.green-button:hover,
.green-button:focus {
  color: var(--white);
}

.link-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: fit-content;
  margin: 0.25rem auto 0;
  font-size: 0.75rem;
}
.link-container .link-image {
  aspect-ratio: 1.0;
  height: 1rem;
  width: auto;
  position: relative;
  margin: 0 0.4rem 0.15rem 0;
}
.link-container a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.0;
  transition: .2s;
}
.link-container a:hover,
.link-container a:focus {
  color: var(--green);
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .hd-2 { font-size: font-size: 1.75rem; }
}


/* NAVBAR */
.navbar {
  background: linear-gradient(180deg, rgba(12,19,48,1) 60%, rgba(255,255,255,0) 100%);
}
.navbar .navbar-brand img {
  max-width: 80%;
}
.navbar .navbar-toggler {
  border: 3px solid white;
  border-radius: 50%;
  padding: 0.5rem;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("/assets/ico-hamburger.svg");
}
.navbar .collapse {
  justify-content: end;
}
.navbar .navbar-nav {
  gap: 2rem;
  align-items: center;
}
.navbar .dropdown-menu {
  background: linear-gradient(0deg, rgba(42,206,111,1) 0%, rgba(255,255,255,0) 95%);
  margin: 0;
  border: none;
  border-radius: 0;
}
.navbar .dropdown-menu .dropdown-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg);
}
.navbar .dropdown-menu .dropdown-item.active {
  color: var(--white);
  background: unset;
}
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus{
  background: unset;
  color: var(--white);
  text-decoration: none !important;
}
.nav-item .nav-link {
  padding: 0 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}
.nav-item .nav-link.active {
  color: var(--white);
}
.nav-item:last-child .nav-link {
  background-color: var(--green);
  text-transform: uppercase;
  color: var(--bg);
  padding: 0.5rem 1rem;
}
.nav-item:last-child .nav-link.active {
  background-color: var(--white);
}
.nav-item .nav-link:hover,
.nav-item .nav-link:focus{
  text-decoration: none;
  color: var(--white);
}
@media (max-width: 768px) {
  .navbar {
    background: linear-gradient(180deg, rgba(12,19,48,1) 90%, rgba(255,255,255,0) 100%);
  }
  .navbar .navbar-nav {
    align-items: start;
  }
  .nav-item .nav-link {
    padding: 0;
  }
}

.header-date-circle {
  display: flex;
  border: 1px solid var(--green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  margin: auto;
  padding: 3rem;
  aspect-ratio: 1.0;
  transition: .4s;
  position: relative;
}
.header-date-circle h3 {
  width: fit-content;
  color: var(--white);
  z-index: 1;
  position: relative;
}
.header-date-circle:before {
  content: ' ';
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 50%;
  background: rgb(42,206,111);
  transition: .4s;
  background: linear-gradient(00deg, rgba(42,206,111,1) 0%, rgba(255,255,255,0) 50%);
}
.header-date-circle:hover {
  border: 1px solid rgba(0,0,0,0);
}
.header-date-circle:hover:before {
  opacity: 1.0;
}
@media (max-width: 768px) {
  .header-date-circle {
    padding: 1.25rem;
  }
}

/* Front page stuff */
.fp-banner-section {
  position: relative;
}
.fp-banner-section .container {
  position: relative;
  z-index: 1;
}
.fp-banner-section:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: rgb(0,0,0);
  background-image: 
    linear-gradient(180deg, rgba(12,19,48,1) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, rgba(12,19,48,1) 100%),
    url('https://media.voog.com/0000/0050/5195/photos/cropped-IMG_9039-scaled-1_large.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  z-index: 0;
}
.fp-banner-section .container:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 25%;
  max-width: 250px;
  aspect-ratio: 2/3;
  left: 0;
  bottom: 0;
  background-image: url('/assets/man-point.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

@media (max-width: 768px) {
  .fp-banner-section:after {
    display: none;
  }
}

.fp-intro-section {
  
}
.fp-intro-section .visual-circle {
  aspect-ratio: 1.0;
  position: relative;
}
.fp-intro-section .visual-circle:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50%;
  background: rgb(42,206,111);
  background: linear-gradient(90deg, rgba(42,206,111,1) 0%, rgba(255,255,255,0) 80%);
}
.fp-intro-section .visual-woman {
  position: relative;
  aspect-ratio: 1.0;
}
.fp-intro-section .visual-woman:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('/assets/woman-pc.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  .fp-intro-section .visual-woman {
    aspect-ratio: 0.75;
  }
}

/* SPEAKER CAROUSEL */
.carousel {
  position: relative;
}
.carousel a {
  z-index: 2;
}
.carousel:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(12,19,48,1) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, rgba(12,19,48,1) 100%);
  z-index: 1;
}
.speaker-container {
  position: relative;
  aspect-ratio: 1.0;
  border-radius: 50%;
  margin: 0.75rem;
  overflow: hidden;
}
.speaker-container .speaker-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 19, 48, 0) 0%, rgba(12, 19, 48, 1) 100%);
  z-index: 2;
  transition: .2s;
}
.speaker-container .speaker-info.team-member {
  justify-content: end;
}
.speaker-container:hover .speaker-info {
  opacity: 1;
}
.speaker-container img{
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  z-index: 1;
}
.slider-slide .speaker-container img {top: 0;}
#speakerModal .modal-dialog {
  max-width: 1120px;
}
#speakerModal .modal-content {
  background-color: #1E1E5F;
  color: var(--white);
  border-radius: 1.5rem;
}
#speakerModal .modal-header {
  border: none;
}
#speakerModal .modal-header .btn-close {
  padding: 0;
  width: 1rem;
  height: 1rem;
  box-sizing: border-box;
  margin: 0 0 0 auto;
}
#speakerModal .modal-body { 
  margin: 0;
  padding: 0 2rem 2rem ;
}
#speakerModal .modal-speaker-info {
  padding-left: 2rem;
}
#speakerModal .modal-speaker-info h2 { font-weight: 700; font-size: 2.25rem; }
#speakerModal .modal-speaker-info h3 { font-weight: 700; font-size: 1.5rem; }
#speakerModal .modal-speaker-info p { font-weight: 300; font-size: 1rem; }
#speakerModal .modal-speaker-image img {
  width: 100%;
  aspect-ratio: 1.0;
  border-radius: 50%;
}


/* TICKETS */
.ticket-container {
  text-align: center;
  background: rgb(42,206,111);
  background: linear-gradient(180deg, rgba(42,206,111,1) 0%, rgba(255,255,255,0) 95%);
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-height: 65%;
  padding: 2rem 0.5rem;
  transition: .2s;
}
.ticket-container:hover,
.ticket-container:focus {
  max-height: 100%;
}
.ticket-container .ticket-price {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
}
.ticket-container .ticket-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(42,206,111,0) 50%, rgba(12,19,48,1) 95%);
  opacity: 1.0;
  transition: .2s;
}
.ticket-container:hover .ticket-overlay,
.ticket-container:focus .ticket-overlay {
  opacity: 0.1;
}
@media (max-width: 768px) {
  .ticket-container {
    max-height: unset;
  }
  .ticket-container .ticket-overlay {
    opacity: 0.0;
  }
}

/* PARTNERS */
.partners-section .container:first-child {
  background-color: var(--white);
  color: #000;
}
.partners-section .partner img {
  width: 100%;
}

/* FOOTER */
.social-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.social-icons img {
  max-height: 1.5rem;
}
.footer .footer-text-left {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.footer .footer-text-left a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.25rem;
}
.footer .footer-text-right {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: right;
  font-size: 1rem;
}
.footer .footer-text-right p {
  margin-bottom: 0.5rem;
}
.footer .footer-text-right span {
  display: block;
}
.footer .visual-footer-man {
  position: relative;
  aspect-ratio: 1.0;
}
.footer .visual-footer-man:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('/assets/man-thinking.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  .social-icons img {
    height: 2rem;
    aspect-ratio: 1.0;
  }
  .footer .footer-text-right {
    text-align: left;
  }
}

/* PROGRAM */
#sched-iframe {
  background-color: var(--white);
}

/* ARCHIVE */
.archive-item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.0;
  font-weight: 800;
  font-size: 40px;
  border-radius: 50%;
  color: var(--white) !important;
  overflow: hidden;
  text-decoration: none !important;
}
.archive-item span { position: relative; z-index: 2; }
.archive-item:before {
  content: ' ';
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(180deg, rgba(42,206,111,1) 0%, rgba(255,255,255,0) 95%);
  transition: .2s;
}
.archive-item:hover:before,
.archive-item:focus:before {
  height: 100%;
}
.speaker-slider .carousel-control-prev-icon,
.archive-slider .carousel-control-prev-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  cursor: pointer;
  margin-left: -8px;
}
.speaker-slider .carousel-control-next-icon,
.archive-slider .carousel-control-next-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  cursor: pointer;
  margin-right: -8px;
}
.archive-item-tiny {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.0;
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  font-weight: 800;
  font-size: 16px;
  background-color: var(--purple);
  border-radius: 50%;
  color: var(--white) !important;
  overflow: hidden;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .archive-item span { font-size: 2rem; }
}




