* {
  font-family: "poppins";
}

h2{
    font-size: 36px;
    line-height: 40px !important;
    color: #000000 !important;
    text-align: center;
    margin-bottom: 20px
}

/* 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/back1.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-section {
  padding: 40px 0;
}

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

.speaker-card p{
  font-size: 13px;
}

.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;
  max-width: 170px;
  margin: 5px auto;
}

.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;
}

#target ul li{
  text-align: center;
  list-style: none;
  border: 1px solid grey;
  margin-bottom: 5px;
  border-radius: 5px;
}

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

.cardy{
  box-shadow: 0px 2px 16px #ccc;
  padding-top: 30px;
  margin-bottom: 30px;
}

.category ul li{
  list-style: none;
  margin-bottom: 5px;
}

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

.footer a{
  color:#fff
}

@media (min-width:1201px){
  #speakers-section .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;
  }
}