.content-accordion {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 40px 0;
  overflow: hidden;
}

.content-accordion h2 {
  margin-bottom: 30px;
  text-align: center;
}

.content-accordion .accordion-item {
  margin-top: 20px;
}

.content-accordion p {
  margin: 10px 0;
  padding: 10px 20px;
}

.content-accordion .accordion-item h3 {
  border-bottom: 1px solid var(--wp--preset--color--dark);
  cursor: pointer;
  font-family: var(--font-sans);
  font-style: normal;
  margin: 0;
  padding: 20px;
}

.open-close-icon {
  float: right;
  height: 20px;
  position: relative;
  width: 20px;
}

.open-close-icon span {
  position: absolute;
  transition: 300ms;
  border-radius: 2px;
}

.open-close-icon span:first-child {
  top: 25%;
  bottom: 25%;
  width: 10%;
  left: 45%;
}

.open-close-icon span:last-child {
  left: 25%;
  right: 25%;
  height: 10%;
  top: 45%;
}

.accordion-open .open-close-icon span {
  transform: rotate(90deg);
}

.accordion-open .open-close-icon span:last-child {
  left: 50%;
  right: 50%;
}

.content-accordion .accordion-content {
  display: none;
}

.content-accordion .accordion-item .accordion-content a {
  text-decoration: underline !important;
}

@media only screen and (min-width:425px) {
  .accordion-left {
    display: flex;
    top: 7rem;
    left: 1rem;
    z-index: -1;
    position: absolute;
    width: 15%;
  }

  .accordion-right {
    display: flex;
    top: 7rem;
    right: 1rem;
    z-index: -1;
    position: absolute;
    width: 15%;
  }
}

@media only screen and (min-width:990px) {
  .accordion-left {
    top: 1rem;
    left: 4rem;
    z-index: -1;
    position: absolute;
    width: 10%;
  }

  .accordion-right {
    top: 1rem;
    right: 4rem;
    z-index: -1;
    position: absolute;
    width: 10%;
  }
}

@media only screen and (max-width:1279px) {
  .content-accordion {
    background-image: none !important;
  }
}

@media only screen and (min-width:1280px) {
  .content-accordion {
    padding: 80px 0;
  }

  .content-accordion .accordion-item,
  .editor-styles-wrapper .content-accordion .row .accordion-item {
    margin: 0 auto;
    max-width: 860px;
  }

  .accordion-left {
    top: 17rem;
    left: -19rem;
    z-index: -1;
    position: absolute;
    width: 30%;
  }

  .accordion-right {
    top: 17rem;
    right: -19rem;
    z-index: -1;
    position: absolute;
    width: 30%;
  }
}

@media only screen and (min-width:1600px) {
  .accordion-left {
    top: 17rem;
    left: 3rem;
    z-index: -1;
    position: absolute;
    width: 15%;
  }

  .accordion-right {
    top: 17rem;
    right: 3rem;
    z-index: -1;
    position: absolute;
    width: 15%;
  }
}