.accordion-header {
  border: 0;
  background-color: transparent;
  border-top: 1px solid #dedede;
  cursor: pointer;
  padding: 40px 20px 40px 0;
  position: relative;
  text-align: left;
  width: 100%;
  color: #1b67a3;
  font-weight: bold;
  font-size: fs-rem(32px);
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  line-height: 1em;
}

.accordion-header:hover {
  background-color: #F5F5F5;
  padding-left: 15px;
}

.plusminus {
  right: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 17px;
  width: 17px;
}

.plusminus span:nth-child(1) {
  display: block;
  position: absolute;
  margin: 0 10%;
  width: 80%;
  height: 3px;
  border-radius: 3px;
  background: #1b67a3;
  /*- half the height*/
  top: calc(50% - 1.5px);
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.plusminus span:nth-child(2) {
  display: block;
  position: absolute;
  margin: 10% 0;
  width: 3px;
  height: 80%;
  border-radius: 3px;
  background: #1b67a3;
  /*- half the width*/
  left: calc(50% - 1.5px);
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.is-open .plusminus span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.accordion-item:last-child {
  border-bottom: 1px solid #dedede;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
}

.accordion-content__inner {
  max-width: 60%;
  margin: 0 auto;
  padding: 12px 0 52px;
}

.accordion-content p {
  font-size: fs-rem(18px);
  margin-bottom: 40px;
}

.event-sponsors-and-speakers .people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 72px 17px;
}

.event-sponsors-and-speakers .people .person {
  border-top: 3px solid fs-color("blue");
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  position: relative;
  overflow: hidden;
  min-height: 235px;
}

.event-sponsors-and-speakers .people .person .skewed-bg {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 70%;
  min-height: 200px;
  background-color: fs-color("alt-light-gray");
  z-index: -1;
  -webkit-transform: skewY(-8deg);
       -o-transform: skewY(-8deg);
          transform: skewY(-8deg);
}

.event-sponsors-and-speakers .people .person:nth-child(1) .skewed-bg,
.event-sponsors-and-speakers .people .person:nth-child(3) .skewed-bg,
.event-sponsors-and-speakers .people .person:nth-child(4) .skewed-bg,
.event-sponsors-and-speakers .people .person:nth-child(6) .skewed-bg,
.event-sponsors-and-speakers .people .person:nth-child(7) .skewed-bg,
.event-sponsors-and-speakers .people .person:nth-child(9) .skewed-bg {
  -webkit-transform: skewY(8deg);
       -o-transform: skewY(8deg);
          transform: skewY(8deg);
}

.event-sponsors-and-speakers .people .person.-featured .person-text {
  padding-top: 35px;
}

.event-sponsors-and-speakers .people .person .featured-person {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: fs-color("blue");
  color: fs-color("white");
  padding: 2px 5px;
}

.event-sponsors-and-speakers .people .person .featured-person-label {
  font-size: fs-rem(12px);
  font-weight: 700;
  text-transform: uppercase;
}

.event-sponsors-and-speakers .people .person .person-text {
  padding: 26px 17px 0px;
  background-color: fs-color("alt-light-gray");
}

.event-sponsors-and-speakers .people .person h3 {
  color: fs-color("navy");
  font-size: fs-rem(24px);
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.event-sponsors-and-speakers .people .person p {
  line-height: 1.2em;
  font-size: fs-rem(15px);
}

.event-sponsors-and-speakers .people .person-image {
  border-radius: 50%;
  height: 176px;
  overflow: hidden;
  width: 176px;
  margin: 0 auto;
}

.event-sponsors-and-speakers .people .person-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 900px) {
  .event-sponsors-and-speakers .people .person {
    width: calc(33.3333% - 11.3333px);
  }
}


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