* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  padding: 12px;
}

.container {
  max-width: 1200px;
  text-align: center;
}

.heading {
  text-align: center;
}

.heading h1 {
  font-size: 30px;
}

.heading p {
  font-weight: 100;
}

.heading p span {
  color: blue;
}

.speakers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}

.speakers button {
  width: 25px;
  height: 25px;
  font-size: 15px;
  border: 1px solid gray;
  background-color: white;
  color: gray;
  border-radius: 50%;
  cursor: pointer;
}

.cards {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.card {
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 230px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
  border-radius: 10px;
}
.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 60%;
  border-radius: 100%;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 20px;
  padding-bottom: 20px;
}

.position {
  font-weight: bolder;
  font-size: 15px;
  padding-bottom: 5px;
}

.company {
  color: gray;
  font-size: 14px;
}

.program-button {
  display: flex;
  justify-content: center;
  padding: 50px;
}

.btn-pro {
  background-color: #0140b4;
  width: 305px;
  height: 50px;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}
.btn-pro:hover {
  background-color: rgb(0.7182320442, 45.9668508287, 129.2817679558);
}

.popup {
  display: flex;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
}

.card-popup {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
}

.img2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-right: 20px;
}

.profile-info {
  width: 190px;
  border-right: 1px solid #eaeaea;
}

.name {
  font-size: 18px;
  font-weight: bolder;
  margin-right: 90px;
  padding-bottom: 10px;
}

.pos {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 5px;
}

.com {
  font-size: 13px;
  color: #888;
  margin-right: 130px;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  margin-left: 5px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #000;
}

.card-content {
  padding-top: 20px;
}

.description {
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .speakers {
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
  }
  .cards {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    width: 100%;
  }
  .btn-pro {
    width: 100%;
  }
  .speakers button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .card {
    width: 90%;
  }
  .btn-pro {
    width: 80%;
  }
  .popup {
    width: 90%;
    padding: 10px;
  }
  .card-popup {
    flex-direction: column;
    align-items: center;
  }
  .img2 {
    width: 100px;
    height: 100px;
  }
  .profile-info {
    width: 100%;
    margin-bottom: 15px;
  }
  .name {
    font-size: 16px;
  }
  .pos,
  .com {
    font-size: 12px;
  }
  .close-btn {
    font-size: 16px;
    top: 10px;
    right: 10px;
  }
  .description {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
