.speakers_list {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 981px) {
  .speakers_list {
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 479px) {
  .speakers_list {
    grid-template-columns: 100%;
  }
}

.speaker_card {
  margin: 14px;
  background: white;
  padding: 12px;
  height: 362px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 981px) {
  .speaker_card {
    height: auto;
  }
}

.speaker_img_wrap {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}

.speaker_img_wrap:after {
  padding-bottom: 100%;
  display: block;
  content: "";
}

.speaker_img {
  max-width: 100%;
  position: absolute;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.speaker_name {
  font-size: 16px;
  font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #604dff !important;
  padding-bottom: 10px;
  margin: 0;
}

.speaker_role,
.speaker_tagline {
  font-style: italic;
  color: #333333 !important;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7em;
}

.speaker_tagline {
  margin-top: auto;
}

.speaker_organizations {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  color: #333333 !important;
  line-height: 1.7em;
  font-size: 14px;
  font-weight: 700;
}
/*# sourceMappingURL=main.css.map */