/*--- speakers styles ---*/
.speakers {
  /* padding-top: 200px;
  padding-bottom: 160px; */
}

.speakers__subtitle {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 20px;
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #232323;
}

.speakers__list {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-bottom: 40px; */
  display: grid;
  grid-template-columns: 200px 200px 200px 200px 200px 200px;
  max-width: 100%;
  justify-items: center;
  grid-column-gap: 20px;
}

.speakers__list__item {
  max-width: 270px;
  margin-bottom: 40px;
  width: 100%;
}

.speakers__list__block-img {
  position: relative;
  height: 200px;
  width: 200px;
  /* margin-bottom: 40px; */
  box-sizing: border-box;
  overflow: hidden;
}

.speakers__list__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  /* margin-bottom: 40px; */
}

.speakers__list__flag {
  position: absolute;
  width: 32px;
  height: 32px;
  left: 16px;
  bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.speakers__list__name {
  margin-bottom: 8px;
  font-family: Arimo, OpenSans, sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #232323;
  margin-top: 40px;
}

.speakers__list__desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #232323;
}

.speakers__list__bg-img {
  position: absolute;
  top: -100%;
  right: -12%;
  max-width: 800px;
  width: 100%;
  z-index: -1;
}

.speakers__btn.l-btn-with-arrow {
  display: block;
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
}

@media all and (max-width: 1400px) {
  .speakers__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .speakers__list__item {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 992px) {
  .speakers {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .speakers__subtitle {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .speakers__list {
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }

  .speakers__list__item {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .speakers__list__block-img {
    height: 200px;
    width: 200px;
    margin: 0 auto 16px;
  }

  .speakers__list__name {
    font-size: 16px;
    line-height: 1.5;
  }

  .speakers__list__desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }
}

@media all and (max-width: 720px) {
  .speakers__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 480px) {
  .speakers__list {
    grid-template-columns: 1fr;
  }
}
/*--- speakers styles end---*/
