* {
  font-family: "poppins";
}

h2{
    font-size: 36px;
    line-height: 40px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #161654), color-stop(0.15, #161654), color-stop(0.3, #b52354), color-stop(0.45, #106db1), color-stop(0.6, #b52354), color-stop(0.75, #106db1), color-stop(0.9, #161654), color-stop(1, #161654));
    background-clip: text;
    color: transparent;
}

/* button CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 90vh;
  text-align: center;
  background: url(./img/hero-bg.png);
  background-size: cover;
  background-position: center;
}

.hero div {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.hero div h2 {
  font-size: 48px;
  margin-top: 30px;
}

.cardy {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  min-height: 70px;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardy p {
  margin-bottom: 0;
}

.partnr {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  padding: 5px;
  margin-bottom: 25px;
}

.partnr p {
  margin-bottom: 0;
}

/* Small custom styles scoped to this section */
#speakers {
  padding: 40px 0;
}

.bg-light123{
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #161654), color-stop(0.15, #161654), color-stop(0.3, #b52354), color-stop(0.45, #106db1), color-stop(0.6, #b52354), color-stop(0.75, #106db1), color-stop(0.9, #161654), color-stop(1, #161654));;
}

.speaker-card {
  /* border: 1px solid #e9ecef; */
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 370px;
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.speaker-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.speaker-body {
  padding: 12px;
}

.speaker-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.speaker-role {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6c757d;
}

#why{
  background: url(./img/speakers-bg.jpg);
  background-size: cover;
  padding: 90px 0;
}

#target{
  background: url(./img/texture-bg.png);
  background-size: cover;
  padding: 90px 0;
}

.box{
  background-color: #ffffffe6;
  border-radius: 10px;
  padding: 20px;
}

.footer{
  text-align: center;
  background-color: #252525;
  color: #fff;
  padding: 10px;
}

.footer a{
  color:#fff
}

.highly{
  text-align: center;
}

.mini-stats {
  padding: 60px 20px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #161654), color-stop(0.15, #161654), color-stop(0.3, #b52354), color-stop(0.45, #106db1), color-stop(0.6, #b52354), color-stop(0.75, #106db1), color-stop(0.9, #161654), color-stop(1, #161654));
  display: flex;
  justify-content: center;
}

.mini-stats-box {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 26px;
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
  transition: 0.3s ease;
}

.mini-stat:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.mini-number {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.mini-label {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 500px) {
  .mini-stat {
    min-width: 120px;
    padding: 14px 18px;
  }
  .mini-number {
    font-size: 24px;
  }
}


@media (min-width:1201px){
  #speakers .col-md-3{
  width: 20%;
}
}

@media (max-width:575.98px) {
  .speaker-role{
    font-size: 13px;
  }
  .speaker-body{
    padding: 5px;
  }
  h2{
    font-size: 24px;
  }
  .hero div h2{
    font-size: 28px;
  }
  .speaker-img {
    height: 160px;
  }
}