/***********/
/**PREFFIX*/
/***********/
/***********/
/**MAX-WIDTH*/
/***********/
/***********/
/**FONTS/
/***********/
/***********/
/**COLORS*/
/***********/
/**************/
/**BREKPOINTS**/
/**************/
/**************/
/**CONTAINER HEIGHTS**/
/**************/
/**************/
/**CONTAINER WIDTHS**/
/**************/
/**************/
/**GAPS**/
/**************/
/***********/
/**FONT-SIZES*/
/***********/
/**************/
/**ANIMATION**/
/**************/
/***********/
/**PREFFIX*/
/***********/
/***********/
/**MAX-WIDTH*/
/***********/
/***********/
/**FONTS/
/***********/
/***********/
/**COLORS*/
/***********/
/**************/
/**BREKPOINTS**/
/**************/
/**************/
/**CONTAINER HEIGHTS**/
/**************/
/**************/
/**CONTAINER WIDTHS**/
/**************/
/**************/
/**GAPS**/
/**************/
/***********/
/**FONT-SIZES*/
/***********/
/**************/
/**ANIMATION**/
/**************/
/**
 * fullheight
 */
/**
 * Touch
 */
/**
 * No Touch
 */
/**
 * Touch
 */
/**
 * background-color rgba
 */
/**
 * color rgba
 */
/**
 * breakpoint
 */
.hp-wpb_accordion {
  position: relative;
}
.hp-wpb_accordion .accordion-element {
  border-top: 1px solid #000000;
}
.hp-wpb_accordion .accordion-element:last-child {
  border-bottom: 1px solid #000000;
}
.hp-wpb_accordion .accordion-element > .title,
.hp-wpb_accordion .accordion-element > .content {
  text-align: center;
}
.hp-wpb_accordion .accordion-element > .title > .inner,
.hp-wpb_accordion .accordion-element > .content > .inner {
  position: relative;
  text-align: left;
  margin: auto;
}
.hp-wpb_accordion .accordion-element > .title {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  cursor: pointer;
  font-size: var(--wp-font-size-copy);
  line-height: 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.2s ease-out, color 0.2s ease-out;
  text-transform: uppercase;
  font-weight: 700;
}
html.wpb-is-device-touch .hp-wpb_accordion .accordion-element > .title:active > .icon, html:not(.wpb-is-device-touch) .hp-wpb_accordion .accordion-element > .title:hover > .icon {
  transform: translateY(5px);
}
.hp-wpb_accordion .accordion-element > .title > .inner {
  padding-right: 50px;
}
.hp-wpb_accordion .accordion-element > .title > .icon {
  position: absolute;
  right: 0;
  top: 27px;
  height: 20px;
  width: 20px;
  transition: transform 0.2s ease-out;
}
.hp-wpb_accordion .accordion-element > .title > .icon::after {
  position: absolute;
  transform-origin: center center;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../assets/img/arrow-down.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease-out;
}
.hp-wpb_accordion .accordion-element > .content {
  height: 0;
  pointer-events: none;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hp-wpb_accordion .accordion-element > .content > .inner {
  padding-bottom: 50px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-out;
}
.hp-wpb_accordion .accordion-element.is-opening > .content > .inner {
  transform: translateY(0);
  opacity: 1;
}
.hp-wpb_accordion .accordion-element.is-opening > .title > .icon::after {
  transform: scaleY(-1);
}
html.wpb-is-device-touch .hp-wpb_accordion .accordion-element.is-open > .title:active > .icon, html:not(.wpb-is-device-touch) .hp-wpb_accordion .accordion-element.is-open > .title:hover > .icon {
  transform: translateY(0);
}
.hp-wpb_accordion .accordion-element.is-open > .content {
  display: block;
  overflow: visible;
  opacity: 1;
  height: auto !important;
  pointer-events: auto;
}
.hp-wpb_accordion .accordion-element.is-open > .content > .inner > .row {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}