@keyframes showHide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-speaker-info {
  position: relative;
}
.c-speaker-info__wrapper {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(19px);
  backdrop-filter: blur(19px);
  background: url("/wp-content/themes/nextai/img/speaker-background.svg") top center no-repeat;
  background-size: cover;
}
.c-speaker-info__container {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}
.c-speaker-info__speaker-data {
  max-width: 240px;
  margin-right: 60px;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  float: right;
  display: flex;
}
@media (max-width: 991.98px) {
  .c-speaker-info__speaker-data {
    width: 100%;
    max-width: none;
    margin-right: 0;
    float: none;
  }
}
.c-speaker-info__close-button {
  background: url("/wp-content/themes/nextai/img/icons/close-icon-blueberry.svg") center center no-repeat;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  position: fixed;
  right: 35px;
  top: 35px;
  border: 2px solid #483696;
  z-index: 1001;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .c-speaker-info__close-button {
    position: absolute;
    width: 36px;
    height: 36px;
    background-size: 14px 14px;
    right: 20px;
    top: 20px;
  }
}
.c-speaker-info__name {
  color: #483696;
  font-size: 1.875em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 900;
  line-height: 1.23;
}
@media (max-width: 1599.98px) {
  .c-speaker-info__name {
    font-size: 1.5em;
  }
}
@media (max-width: 1199.98px) {
  .c-speaker-info__name {
    font-size: 1.5em;
  }
}
.c-speaker-info__left-column {
  min-width: 40%;
  padding: 100px 0;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  float: right;
}
@media (max-width: 991.98px) {
  .c-speaker-info__left-column {
    max-width: 100%;
    padding: 80px 0 40px 0;
    width: calc(100% - 30px);
    margin: 0 auto;
    height: auto;
    position: relative;
    float: none;
  }
}
.c-speaker-info__right-column {
  min-width: 60%;
  padding: 100px 0 100px 60px;
  position: absolute;
  min-height: 100vh;
  top: 0;
  left: 40%;
}
@media (max-width: 1599.98px) {
  .c-speaker-info__right-column {
    padding: 100px 0 100px 48px;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__right-column {
    max-width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    float: none;
    left: 0;
    padding: 45px 20px;
  }
}
.c-speaker-info__right-column:before {
  width: calc(100% + 30px);
  background: url("/wp-content/themes/nextai/img/speaker-background-right.svg") top center no-repeat;
  backdrop-filter: blur(10px);
  opacity: 0.8;
  height: 100%;
  position: absolute;
  left: -30px;
  top: 0;
  content: " ";
  display: block;
  z-index: -1;
}
.c-speaker-info__right-column-content {
  max-width: 770px;
}
@media (max-width: 1599.98px) {
  .c-speaker-info__right-column-content {
    max-width: calc(60vw - 100px);
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__right-column-content {
    max-width: 100%;
  }
}
.c-speaker-info__position {
  margin: 0;
  font-size: 1.25em;
  line-height: 1.6;
  color: #0d0c3b;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__position {
    font-size: 1.125em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__position {
    font-size: 1em;
  }
}
.c-speaker-info__image-container {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  overflow: hidden;
}
.c-speaker-info__image-container img {
  object-fit: cover;
}
.c-speaker-info__social {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__social {
    gap: 10px;
  }
}
@media (max-width: 1199.98px) {
  .c-speaker-info__social-icon img {
    max-width: 30px;
  }
}
.c-speaker-info__bio-title {
  color: #483696;
  font-size: 1.875em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__bio-title {
    font-size: 1.75em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__bio-title {
    font-size: 1.5em;
  }
}
.c-speaker-info__bio-content {
  font-size: 1.25em;
  line-height: 1.6;
  color: #0d0c3b;
}
.c-speaker-info__bio-content a, .c-speaker-info__bio-content a:visited, .c-speaker-info__bio-content a:active, .c-speaker-info__bio-content a:hover {
  color: #483696;
  text-decoration: underline;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__bio-content {
    font-size: 1.125em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__bio-content {
    font-size: 1em;
  }
}
.c-speaker-info hr {
  width: 100%;
  height: 1px;
  background-color: #979797;
  margin: 50px auto;
  border: none;
}
.c-speaker-info__day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-speaker-info__day {
  color: #483696;
  font-size: 1.875em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__day {
    font-size: 1.75em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__day {
    font-size: 1.5em;
  }
}
.c-speaker-info__day-schedule {
  color: #483696;
  font-size: 0.875em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  text-decoration: underline;
}
.c-speaker-info__day-schedule:hover {
  color: #483696;
  font-weight: 900;
  text-decoration: underline;
}
.c-speaker-info__speeches-group {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-speaker-info__speech-group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-group {
    flex-direction: column;
    gap: 20px;
  }
}
.c-speaker-info__speech-group:before {
  width: 1px;
  height: calc(100% + 15px);
  border-left: 1px dotted #483696;
  content: " ";
  display: block;
  position: absolute;
  top: 24px;
  left: 160px;
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-group:before {
    left: 4px;
    top: 10px;
  }
}
.c-speaker-info__speech-group.last:before {
  display: none;
}
.c-speaker-info__speech-time {
  width: 200px;
  color: #483696;
  font-size: 1.25em;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__speech-time {
    font-size: 1.125em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-time {
    font-size: 0.875em;
    padding-left: 30px;
  }
}
.c-speaker-info__speech-time:before {
  content: " ";
  display: block;
  position: absolute;
  top: 6px;
  right: 30px;
  background: #483696;
  border-radius: 100%;
  border: solid 3px #483696;
  background-color: transparent;
  width: 19px;
  height: 19px;
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-time:before {
    right: none;
    left: 0;
    top: 5px;
    width: 9px;
    height: 9px;
    border: solid 2px #483696;
  }
}
.c-speaker-info__speech-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc(100% - 200px);
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-info {
    width: 100%;
    padding-left: 30px;
  }
}
.c-speaker-info__speech-link {
  color: #483696;
  font-size: 1.25em;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 900;
}
.c-speaker-info__speech-link:hover, .c-speaker-info__speech-link:focus, .c-speaker-info__speech-link:visited {
  color: #483696;
  opacity: 0.8;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__speech-link {
    font-size: 1.125em;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-link {
    font-size: 0.875em;
  }
}
.c-speaker-info__speech-language {
  font-weight: 300;
  font-style: italic;
}
.c-speaker-info__speech-list {
  padding-left: 30px;
}
.c-speaker-info__speech-list li {
  font-size: 1.25em;
  line-height: 1.6;
  color: #483696;
  margin-top: 30px;
  position: relative;
  list-style-type: disc;
}
.c-speaker-info__speech-list li::marker {
  color: #483696;
}
@media (max-width: 1199.98px) {
  .c-speaker-info__speech-list li {
    font-size: 1em;
    padding-left: 20px;
    margin-top: 25px;
  }
}
@media (max-width: 991.98px) {
  .c-speaker-info__speech-list li {
    font-size: 1em;
  }
}