.speaker_info {
  position: relative;
  color: #001432;
  background-color: #dee2e6;
  padding: 0 2rem 2.5rem;
}

.speaker_info .imgbox {
  max-width: 250px;
  max-height: 250px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: #ffffff 6px 6px 0;
  margin-top: -3rem;
  margin-bottom: 20px;
}

.speaker_info .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}

.speaker_info .speaker-title {
  font-size: 16px;
}

.speaker-txt {
  margin-top: 10px;
}

.speaker-txt p {
  margin-bottom: 8px;
}

.speaker-txt p:last-child {
  margin-bottom: 0;
}

.social-icons {
  text-align: center;
}

.social-icons .bi {
  font-size: 1.8rem;
  transition: all 0.3s;
}

.social-icons .bi:hover,
.social-icons .bi:active {
  color: #333333;
  ;
}

.speaker-name {
  margin-top: 2rem;
}


/*====================================
# share 分享按鈕
==================================== */

.share {
  display: flex;
  align-items: center;
  position: relative;
  width: 160px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 25px;
  color: #ffffff;
  background: #606bff;
  overflow: hidden;
  transition: box-shadow 0.2s ease-out;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 2rem;
}

.share span {
  margin: auto;
}

.share .social-links {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(62, 130, 251, 0);
  width: 100%;
  height: 100%;
  padding: 0 30px;
  transition: all 0.25s ease;
}

.share .social-links a {
  margin: auto;
  background: #fff;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  font-size: 20px;
  transform: translate3d(0, 60px, 0);
  transition: all 0.2s;
}

.share .social-links a:hover {
  background: #efefef;
  color: #212121;
}

.share:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share:hover .social-links {
  background: #5efbd6;
}

.share:hover .social-links>a {
  animation: move 0.5s ease-out forwards 0s;
}

.share:hover .social-links>a:nth-child(2) {
  animation-delay: 0.05s;
}


@keyframes move {
  0% {
    transform: translate3d(0, 60px, 0);
  }

  40% {
    transform: translate3d(0, -5px, 0);
  }

  70% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}


/*====================================
# agenda_info
==================================== */
.agenda_info {
  color: #212121;
  background-color: #ffffff;
}

.agenda_info .agends-time {
  font-size: 22px;
}

.agenda_info h6 {
  padding: 10px 0;
  font-weight: 400;
  color: #234aff;
}

.agenda_info .agends-time,
.agenda_info .list-inline {
  color: #166088;
}