.speakers.section {
  background-color: #070A18;
  padding: 150px 0 0;
}
.speakers__title {
  color: #FFFFFF;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 64px;
  margin-bottom: 40px;
  max-width: 800px;
}
.speakers__description * {
  color: #FFFFFF;
  font-size: 24px;
  line-height: 32px;
  max-width: 840px;
}
.speakers__container {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: center;
  margin-top: 110px;
}
.speaker {
  background-color: #fff;
  border-radius: 3.6px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  margin-bottom: 100px;
  padding: 40px;
/*   max-width: 450px; */
  position: relative;
}
.speaker__photo-container {
  border: 1px solid #A335FF;
  border-radius: 3.6px;
  margin: -85px -12px 35px;
  padding: 9px;
}
.speaker__photo-container > div:first-child {
  background-image: url(https://info.talogy.com/hs-fs/hubfs/Screen%20Shot%202021-10-11%20at%2011.48%201.jpg?width=303&height=261&name=Screen%20Shot%202021-10-11%20at%2011.48%201.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 0;
  overflow: hidden;
  padding-top: 100%;
  position: relative;
}
.speaker__name-container {
  background-color: #A335FF;
  border-radius: 0 0 3.6px 3.6px;
  padding: 20px;
}
.speaker__title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 0;
}
.speaker__position-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
/*   padding-right: 30px; */
}
.speaker__position {
  color: #FFFFFF;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
/*   margin-right: 10px; */
}
.speaker__description p:not([style]) {
  font-size: 16px;
  line-height: 27px;
}
.speaker__cta {
  color: #A335FF;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  position: absolute;
  left: 40px;
  bottom: 20px;
}
.speaker__name-container .speaker__cta {
  left: auto;
  right: 0;
  bottom: 0;
  text-align: right;
}
.speaker__cta svg {
  margin-top: -4px;
  vertical-align: middle;
}
@media (max-width: 1200px) {
  .speaker {
    padding: 40px 30px;
  }
  .speaker__cta {
    left: 30px;
  }
}
@media (max-width: 1040px) {
  .speakers__container {
    flex-wrap: wrap;
  }
  .speaker {
    flex-basis: calc(50% - 25px);
  }
}
@media (max-width: 767px) {
  .speakers.section {
      padding: 50px 0 0;
  }
  .speakers__container {
    flex-direction: column;
    align-items: center;
  }
  .speaker {
    margin-bottom: 75px;
  }
}
@media (max-width: 478px) {
  .speaker {
    flex-basis: 100%;
  }
}
@media (min-width: 769px) {
  .two-or-less .speaker {
    display: flex;
    flex-wrap: wrap;
  }

  .two-or-less .speaker__photo-container {
    align-self: flex-start;
    flex: 0 1 25%;
    margin-bottom: 0;
    min-width: 200px;
  }

  .two-or-less .speaker__description {
    flex: 1 1 60%;
    margin-left: 5%;
  }

  .two-or-less a.speaker__cta {
    bottom: initial;
    flex-basis: 100%;
    left: initial;
    position: relative;
  }
}
.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal-bg {
  position: absolute;
  background: #070A18;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.modal-container {
  position: relative;
  max-width: 500px;
  border: 1px solid #A335FF;
  border-radius: 3.6px;
  padding: 9px;
}
.full-description {
  background-color: #FFFFFF;
  border-radius: 3.6px;
  padding: 30px;
}
.full-description p:last-of-type:last-child {
  margin-bottom: 0;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: #070A18;
  background: none;
  border: 0px;
  cursor: pointer;
}