/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 13px 13px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* =====| Banner |===== */
.t3-banner {
  margin: 30px 0 70px;
}
@media (max-width: 992px) {
  .t3-banner {
    margin: 50px 0;
  }
}
@media (max-width: 992px) {
  .t3-banner__image {
    margin-bottom: 30px;
  }
}

.t3-location svg {
  position: relative;
  bottom: 1px;
}

/* =====| Body |===== */
.t3-content-box {
  background: rgb(248.2, 243.5, 234.5);
  border: 1px solid rgb(241.4, 232, 214);
  padding: 30px;
  border-radius: 10px;
}

.golden-line {
  border: 0;
  height: 1px;
  max-width: 600px; /* adjust length */
  width: 100%;
  margin: 14px 0 22px; /* space above/below */
  border-radius: 999px; /* pill ends */
  background: -webkit-gradient(linear, left top, right top, from(rgb(176, 132, 42)), color-stop(18%, rgb(176, 132, 42)), color-stop(50%, rgb(212, 170, 92)), color-stop(82%, rgba(176, 132, 42, 0)), to(rgba(176, 132, 42, 0)));
  background: linear-gradient(90deg, rgb(176, 132, 42) 0%, rgb(176, 132, 42) 18%, rgb(212, 170, 92) 50%, rgba(176, 132, 42, 0) 82%, rgba(176, 132, 42, 0) 100%);
}

.golden-line-2 {
  border: 0;
  height: 3px;
  max-width: 600px; /* adjust length */
  width: 100%;
  margin: 25px auto 22px; /* space above/below */
  border-radius: 999px; /* pill ends */
  background: -webkit-gradient(linear, left top, right top, from(rgba(176, 132, 42, 0)), color-stop(18%, rgba(176, 132, 42, 0)), color-stop(50%, rgb(212, 170, 92)), color-stop(82%, rgba(176, 132, 42, 0)), to(rgba(176, 132, 42, 0)));
  background: linear-gradient(90deg, rgba(176, 132, 42, 0) 0%, rgba(176, 132, 42, 0) 18%, rgb(212, 170, 92) 50%, rgba(176, 132, 42, 0) 82%, rgba(176, 132, 42, 0) 100%);
}

/* Base list reset */
.golden-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each row */
.golden-checklist li {
  position: relative;
  padding-left: 32px; /* space for the icon */
  margin: 0 0 15px 0; /* vertical gap between items */
  line-height: 1.55;
  color: #1f2a2a; /* adjust to your body text color */
}

/* Golden check icon */
.golden-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.5px; /* aligns icon with first line */
  width: 20px;
  height: 20px;
  /* Inline SVG: gold circle + white check */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='%23B0842A'/%3E%3Cpath d='M13.2 19.8 9.9 16.5a1.2 1.2 0 0 0-1.7 1.7l4.2 4.2c.5.5 1.3.5 1.7 0l9.6-9.6a1.2 1.2 0 0 0-1.7-1.7l-8.8 8.7z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Bold keywords look a bit stronger, like your screenshot */
.golden-checklist li strong {
  font-weight: 700;
}

/* Optional: if you want slightly tighter gap when list wraps to 2 lines */
.golden-checklist li:last-child {
  margin-bottom: 0;
}

/* =====| Booth |===== */
.huebox {
  text-align: center;
  border: 10px solid rgb(248.2, 243.5, 234.5);
  padding: 10px;
  border-radius: 10px;
}
.huebox__icon {
  width: 120px;
  margin: 0 auto;
}

.green-box {
  background: #285847;
  color: #fff;
  padding: 30px 30px;
  border-radius: 10px;
}

/* =====| Session |===== */
.t3-sessions {
  background: #F4F8F6;
  padding: 70px 0;
}

.t3-session {
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  min-height: 809px;
}
@media (max-width: 992px) {
  .t3-session {
    margin-bottom: 50px;
    min-height: auto;
  }
}
.t3-session__label {
  background: #F4E2CB;
  font-size: 12px;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
}
.t3-session .golden-checklist > li {
  margin-bottom: 5px;
}
.t3-session__time {
  font-size: 14px;
  font-weight: 500;
}

.label-green {
  background: #E7F7EE;
}

.t3-speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.t3-speaker__headshot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
  height: 80px;
  margin: 0;
  background: #E8E3E1;
  overflow: hidden;
  border-radius: 100%;
}
.t3-speaker__headshot img {
  position: relative;
  top: 8px;
}
.t3-speaker__info {
  margin-left: 10px;
}
.t3-speaker__designation {
  font-size: 14px;
}

/* =====| Leaders |===== */
@media (min-width: 992px) {
  .t3-team__wrapper {
    margin-left: 20px;
  }
}

.t3-leader {
  background: #F4F8F6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.t3-leader__headshot {
  width: 100px;
  height: 100px;
  background: #eaeaea;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 1px solid #BB8C32;
}
.t3-leader__headshot img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  position: relative;
  top: 10px;
}

.sanjay img {
  top: 0px;
}

/* =====| Registration |===== */
.t3-form {
  background: #285847;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  border: 5px solid #F1E2A9;
}
@media (max-width: 992px) {
  .t3-form {
    padding: 40px 30px;
    border-radius: 0;
  }
}
.t3-form {
  border-radius: 8px;
}
.t3-form .jiffy-form__disclaimer {
  color: #fff;
}
.t3-form__header {
  color: #fff;
}

.fp-form {
  margin-bottom: 40px;
}
.fp-form [type=color], .fp-form [type=date], .fp-form [type=datetime], .fp-form [type=datetime-local], .fp-form [type=email], .fp-form [type=month], .fp-form [type=number], .fp-form [type=password], .fp-form [type=search], .fp-form [type=tel], .fp-form [type=text], .fp-form [type=time], .fp-form [type=url], .fp-form [type=week], .fp-form input:not([type]), .fp-form textarea, .fp-form [type=color]:active, .fp-form [type=date]:active, .fp-form [type=datetime]:active, .fp-form [type=datetime-local]:active, .fp-form [type=email]:active, .fp-form [type=month]:active, .fp-form [type=number]:active, .fp-form [type=password]:active, .fp-form [type=search]:active, .fp-form [type=tel]:active, .fp-form [type=text]:active, .fp-form [type=time]:active, .fp-form [type=url]:active, .fp-form [type=week]:active, .fp-form input:not([type]):active, .fp-form textarea:active, .fp-form [type=color]:focus, .fp-form [type=date]:focus, .fp-form [type=datetime]:focus, .fp-form [type=datetime-local]:focus, .fp-form [type=email]:focus, .fp-form [type=month]:focus, .fp-form [type=number]:focus, .fp-form [type=password]:focus, .fp-form [type=search]:focus, .fp-form [type=tel]:focus, .fp-form [type=text]:focus, .fp-form [type=time]:focus, .fp-form [type=url]:focus, .fp-form [type=week]:focus, .fp-form input:not([type]):focus, .fp-form textarea:focus, .fp-form select {
  padding: 8px 10px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 10px;
}
.fp-form label {
  font-size: 14px;
  color: #FFF8E7;
}

.gold-highlight {
  color: #FBCA69;
}