.accordions h2 {
  margin-top: 25px;
  margin-bottom: 15px
}
.accordion--item {
  width: 100%;
  margin: 10px 0;
}
.accordion--item__header {
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(26, 24, 24);
    position: relative;
    background: -webkit-linear-gradient(left, rgba(19, 145, 159, 0.14) 0%, rgba(0, 145, 208, 0.14) 16.48%, rgba(120, 43, 144, 0.14) 45.58%, rgba(243, 112, 33, 0.14) 69.32%, rgba(228, 31, 38, 0.14) 88.59%, rgba(197, 22, 85, 0.14) 100%);
    background: linear-gradient(90deg, rgba(19, 145, 159, 0.14) 0%, rgba(0, 145, 208, 0.14) 16.48%, rgba(120, 43, 144, 0.14) 45.58%, rgba(243, 112, 33, 0.14) 69.32%, rgba(228, 31, 38, 0.14) 88.59%, rgba(197, 22, 85, 0.14) 100%);
    padding: 25px 95px 25px 35px;
    border: none;
    outline: none;
}
.accordion--item__header:before, .accordion--item__header:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgb(43, 35, 36);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.accordion--item__header:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.accordion--item__header--active:after {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}
/* .accordion--item #accordion-1 + .accordion--item__body {
    max-height:none;
} */
.accordion--item__body {

    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion--inner {
  padding: 35px 35px 25px;

}
.accordion--inner p {
  margin-bottom: 20px
}
.accordion--toggle--all__ins {
    text-align: right;
  width: 100%;
}

.accordion--toggle--all__btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 2.0rem;
    line-height: 1.25;
    margin-bottom: 25px;
    cursor: pointer;
}
.chevron:after {
    border-style: solid;
    border-width: 0.1125em 0.1125em 0 0;
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    top: 10px;
    right: 0;
    position: relative;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    vertical-align: top;
    margin-left: 15px;
}
.chevron--bottom:after {
    top: 4px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.accordion--toggle--all__btn:after {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}
.all-open.chevron--bottom:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
}
.wistia-video__container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}
.wistia-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.wistia-card:not(:last-child) {
    margin-right: 40px;
}
.wistia-card__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wistia-card__thumbnail {
    position: relative;
    display: flex;
    flex-direction: column;
}
.wistia-card__content img {
    opacity: unset;
    object-fit: contain;
    height: auto;
}
.wistia-card__play--btn {
/*     display: none; */
  display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wistia-card__play--inner {
    position: relative;
}
span.wistia-card__play--triangle {
    background-color: #782B90;
    opacity: .9;
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 100%;
}
span.wistia-card__play--triangle:before {
    content: '';
    background-color: #782B90;
    opacity: .4;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 100%;
    position: relative;
    transform: scale(1.125);
    z-index: -1;
    transition: .2s ease-in-out;
}
span.wistia-card__play--triangle:after {
    content: '';
    height: 0;
    width: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid #fff;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
span.wistia-card__play--triangle:hover {
    opacity: .95;
}

@media (max-width: 768px) {
  .wistia-video__container {
    max-width: 1150px;
    margin: auto;
    flex-direction: column;
}
.wistia-card:not(:last-child) {
    margin: 0 auto 40px;
}
  .wistia-card__content {
    margin: auto;
    display: flex;
    flex-direction: column;
}
  span.wistia-card__play--triangle {
    width: 70px;
    height: 70px;
}
}
@media(max-width: 600px){
span.wistia-card__play--triangle:after {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
}
}