i.elementor-widget-empty-icon {
  display: none !important;
}
.swiper.wpt-coverflow {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 140px;
}

.swiper.wpt-coverflow .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  height: auto;
}

.swiper.wpt-coverflow .swiper-slide .wpt-img {
  width: 100%;
  height: 500px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 16px;
}
.swiper.wpt-coverflow .swiper-slide .content {
  padding: 12px 12px 24px 12px;
  background: #09284f;
  border-radius: 16px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
}
.swiper.wpt-coverflow .swiper-slide .content h3 {
  color: #fff;
}
.swiper.wpt-coverflow .swiper-slide .content p {
  color: #fff;
}
.swiper.wpt-coverflow .wp-slide-nav .swiper-button-next,
.swiper.wpt-coverflow .wp-slide-nav .swiper-button-prev {
  transition: 0.3s ease-in-out;
}
.swiper.wpt-coverflow .wp-slide-nav .swiper-button-next svg path,
.swiper.wpt-coverflow .wp-slide-nav .swiper-button-prev svg path {
  transition: 0.3s ease-in-out;
}

.swiper.wpt-coverflow .wp-slide-nav .swiper-button-next::after,
.swiper.wpt-coverflow .wp-slide-nav .swiper-button-prev::after {
  display: none;
}
.swiper.wpt-coverflow .wp-slide-nav {
  position: absolute;
  width: 130px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.wpt-accordion {
  width: 100%;
  background: transparent;
}

.wpt-accordion-item {
  border-bottom: 1px solid #8be2ff;
}

.wpt-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}
.wpt-accordion-header .wpt-accr-iocn-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wpt-accordion-header .wpt-accr-iocn-list .wpt-accr-icon svg {
  width: 48px;
  height: 48px;
}
.wpt-accordion-header .wpt-accr-iocn-list .wpt-accr-icon-title h3 {
  margin: 0;
  color: #09284f;
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31.2px;
  letter-spacing: 0.12px;
}
.wpt-accordion-content {
  display: none;
  padding: 0 16px 24px 80px;
  background-color: transparent;
  width: 100%;
  margin-top: -24px;
}
.wpt-accordion-content .wpt-content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  flex-wrap: wrap;
}
.wpt-accordion-content .wpt-accr-desc {
  width: calc(50% - 72px);
}
.wpt-accordion-content .wpt-accr-img {
  width: calc(50% - 72px);
  position: relative;
}
.wpt-accordion-content .wpt-accr-img img {
  /* transform: rotate(-6.694deg); */
  position: absolute;
  top: -80px;
  right: 80px;
  width: 350px;
}

.wpt-accordion-content p {
  margin: 0;
  color: #4a4c56;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.08px;
}
.wpt-accordion-toggle {
  font-size: 25px;
  color: #25314c;
}
.show-content {
  display: block;
}
.wpt-vert-wrap .swiper {
  height: 450px;
}
.wpt-vert-wrap .swiper-slide {
  height: 150px !important;
}

/* Grid styling */
.speaker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap);
  justify-content: center;
}
.speaker-item {
  cursor: pointer;
  text-align: center;
  flex: 0 0 calc((100% - ((var(--grid-columns) - 1) * var(--grid-gap))) / var(--grid-columns));
  /* width: calc(20% - 30px); */
}
.speaker-item .speaker-img {
  border-radius: 45%;
  height: 300px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.speaker-item .speak-read-overlay{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease-in-out;
}
.speaker-item .speak-read-overlay h4{
  color: #fff;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
}
.speaker-item h3 {
  color: #262626;
  font-family: Inter;
  font-size: 28px;
  font-weight: 500;
  margin-top: 15px;
}
.speaker-item:hover .speak-read-overlay{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Popup styling */
#speaker-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 999;
}
.speak-popup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.popup-content {
  background: #fff;
  position: relative;
  width: 60%;
  padding: 45px;
  border-radius: 14px;
  border: 1px solid #de6d45;
}
.speak-popup-wrap .close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 15px;
  color: #606060;
  padding: 6px;
  width: 25px;
  height: 25px;
  border: 2px solid #606060;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.speaker-detail {
  width: 100%;
}
.speaker-detail .wpt-head {
  margin-bottom: 40px;
}
.speaker-detail .wpt-head h2 {
  text-align: center;
  color: #de6d45;
  font-family: "Inter";
  font-size: 28px;
  font-weight: 500;
  line-height: 35px;
  position: relative;
}
.speaker-detail .wpt-head h2::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 5px;
  background: #969696;
  border-radius: 3px;
}
.speaker-detail .wpt-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.speaker-detail .speak-img {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speaker-detail .speaker-description {
  width: 70%;
  height: 425px;
  overflow: auto;
}
.speaker-detail .speak-img img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
.speaker-detail .speak-img .speak-logo {
  width: 150px;
}
.speaker-detail .speaker-description p {
  color: #292d32;
  text-align: justify;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 26.597px;
}
.speaker-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.speaker-pagination ul.page-numbers {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(166, 175, 195, 0.4);
  border-radius: 6px;
}
.speaker-pagination a.prev.page-numbers,
.speaker-pagination a.next.page-numbers {
  color: #637381;
  text-align: right;
  font-family: Inter;
  font-size: 16.668px;
  font-weight: 400;
  padding: 8px;
  border-radius: 6px;
}
.speaker-pagination a.prev.page-numbers:hover,
.speaker-pagination a.next.page-numbers:hover {
  background: #f3f4f6;
}
.speaker-pagination a.prev.page-numbers i {
  margin-right: 8px;
}
.speaker-pagination a.next.page-numbers i {
  margin-left: 8px;
}
.speaker-pagination .page-numbers {
  padding: 6px 15px;
  border-radius: 5px;
  color: #637381;
  text-align: center;
  font-family: Inter;
  font-size: 26px;
  font-weight: 400;
}
.speaker-pagination .page-numbers.current {
  background: #de6d45;
  color: #fff;
}
.wpt-package-wrap{
  width: 1140px;
  background: #fff;
}
.wpt-package-tabs{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 40px;
}
.wpt-package-tabs .wpt-tab-item{
  width: calc(20% - 21px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 26px 17px 38px 17px;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s ease-in-out;
}
.wpt-package-tabs .wpt-tab-item:hover{
  border-color: #C06C25;
}
.wpt-package-tabs .wpt-tab-item.active{
  border-color: #C06C25;
}
.wpt-package-tabs .wpt-tab-item .wpt-btn{
  display: block;
  width: 100%;
  padding: 13px 35px;
  border: 1px solid #C06C25;
  border-radius: 4px;
  color: #C06C25;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  transition: .3s ease-in-out;
}
.wpt-package-tabs .wpt-tab-item .wpt-btn:hover{
  background: #C06C25;
  color: #fff;
}
.wpt-package-tabs .wpt-tab-item.active .wpt-btn{
  background: #C06C25;
  color: #fff;
}
.wpt-package-tabs .wpt-tab-item h3{
  color: #18181B;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.756px;
  margin: 0 0 32px 0;
}
.wpt-package-tabs .wpt-tab-item h4{
  color: #18181B;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 35.398px;
  margin: 0 0 42px 0;
}
.wpt-package-content-item{
  width: 100%;
}
.wpt-package-content-item .wpt-content-head{
  padding: 17px 13px;
  background: #E4E4E7;
  border-radius: 8px;
  margin-bottom: 20px;
}
.wpt-package-content-item .wpt-content-head h3{
  margin: 0;
  color: #18181B;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.284px;
}
.wpt-package-content-item ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.wpt-package-content-item ul li{
  padding: 17px 17px 17px 55px;
  color: #18181B;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  border-bottom: 1px solid #D4D4D8;
  position: relative;
}
.wpt-package-content-item ul li:last-child{
  border-bottom: 0;
}
.wpt-package-content-item ul li::before{
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #C06C25;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .wpt-accordion-content .wpt-accr-img img {
    right: 55px;
  }
  .popup-content {
    width: 95%;
    height: 560px;
    overflow: auto;
  }
  .speaker-item .speaker-img {
    height: 250px;
    background-position: center;
  }
  /* Grid styling */
  .speaker-grid {
    gap: var(--grid-gap-tablet);
  }
  .speaker-item {
    flex: 0 0 calc((100% - ((var(--grid-columns-tablet) - 1) * var(--grid-gap-tablet))) / var(--grid-columns-tablet));
  }
  .wpt-package-tabs{
    gap: 15px;
  }
  .wpt-package-tabs .wpt-tab-item{
    width: calc(33.33% - 15px);
  }
  .wpt-package-wrap{
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wpt-accordion-content .wpt-accr-img img {
    right: 20px;
    width: 200px;
  }
  .wpt-accordion-content .wpt-accr-desc {
    width: 100%;
  }
  .wpt-accordion-content .wpt-accr-img {
    width: 100%;
  }
  div#gt_float_wrapper {
    top: 157px;
    right: 185px;
  }
  .popup-content {
    padding: 15px;
    height: 560px;
    overflow: auto;
  }
  .speaker-detail .wpt-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .speaker-detail .speak-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .speaker-detail .speak-img img.speakprof {
    width: 60%;
  }
  .speaker-detail .speak-img .speak-logo {
    width: 40%;
  }
  .speaker-detail .speaker-description {
    width: 100%;
    height: auto;
  }
  .speak-popup-wrap {
    align-items: flex-start;
    margin-top: 110px;
  }
  /* Grid styling */
  .speaker-grid {
    gap: var(--grid-gap-mobile);
  }
  .speaker-item {
    flex: 0 0 calc((100% - ((var(--grid-columns-mobile) - 1) * var(--grid-gap-mobile))) / var(--grid-columns-mobile));
  }
  .speaker-item .speaker-img {
    height: 190px;
    background-position: default;
  }
  .speaker-item h3{
    font-size: 20px;
  }

  .wpt-package-tabs{
    gap: 15px;
  }
  .wpt-package-tabs .wpt-tab-item {
    width: calc(50% - 8px);
  }
  .wpt-package-tabs .wpt-tab-item .wpt-btn{
    padding: 13px 20px;
  }
  .wpt-package-tabs .wpt-tab-item h3{
    font-size: 15px;
  }
}
