/* Universal breakpoints */
@keyframes from-right {
  0% {
    opacity: 0;
    transform: translateX(40rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.simple-faq {
padding-top: 80px;
color: #3B3D49;
  padding-left: 44px;
  padding-right: 44px;
margin-bottom: 80px; }
  .simple-faq h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0; }
        @media (max-width: 767px) {
         
    
          .simple-faq h3 {
            line-height: 1.25;
          }
        }
    
        @media (max-width: 991px) {
          .simple-faq {
            padding-left: 40px;
            padding-right: 40px;
          }
    
          .simple-faq h3 {
            font-size: 38px;
          }
        }
    @media (max-width: 767px) {
       .simple-faq {
            padding-left: 16px;
            padding-right: 16px;
          }
      .simple-faq h3 {
        font-size: 32px; } }
  .simple-faq .subtitle-2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 16px; }
    @media (max-width: 991px) {
      .simple-faq .subtitle-2 {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .simple-faq .subtitle-2 {
        font-size: 18px; } }
  .simple-faq .one-column,
  .simple-faq .two-columns {
    margin-top: var(--px-32-28-24); }
  .simple-faq .two-columns {
    display: flex;
    gap: 16px;     margin-top: 30px;}
    @media (max-width: 991px) {
      .simple-faq .two-columns {
        flex-direction: column; } }
  .simple-faq__cta-wrapper {
    display: flex;
    justify-content: flex-end; }
    @media (max-width: 767px) {
      .simple-faq__cta-wrapper {
        justify-content: center; } }
    .simple-faq__cta-wrapper a {
      border-radius: 8px;
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      text-decoration: none;
      color: #3b3d49;
      text-align: center;
      cursor: pointer;
      transition: all 200ms ease-in-out;
      border-width: 2px;
      border-style: solid;
      max-width: 100%;
      font-size: 18px;
      font-weight: 700;
      line-height: 24px;
      border-color: transparent;
      background-color: transparent;
      padding: 12px 24px;
      margin-top: var(--px-32-28-24);
      width: -moz-fit-content;
      width: fit-content; }
      @media (max-width: 767px) {
        .simple-faq__cta-wrapper a {
          font-size: 16px; } }
      @media (max-width: 479px) {
        .simple-faq__cta-wrapper a {
          width: 100% !important; } }
      .simple-faq__cta-wrapper a svg {
        flex-shrink: 0; }
        .simple-faq__cta-wrapper a svg path {
          transition: stroke 250ms ease-in-out; }
      .simple-faq__cta-wrapper a:hover {
        background-color: #f3f6f6;
        border-color: #f3f6f6; }




        /* Universal breakpoints */
@keyframes from-right {
  0% {
    opacity: 0;
    transform: translateX(40rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

:root {
  interpolate-size: allow-keywords; }

.faq .flex {
  display: flex;
  gap: 20px; }
  @media (max-width: 991px) {
    .faq .flex {
      flex-direction: column; } }

.accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1; }
  .accordions.plus-minus {
    /** add this class to make the accordions have plus/minus icons built w psuedo elements **/ }
    .accordions.plus-minus summary {
      position: relative;
      padding-right: 32px; }
      .accordions.plus-minus summary::before, .accordions.plus-minus summary::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        width: 12px;
        height: 2px;
        background-color: #3b3d49;
        transform-origin: center;
        transition: transform 200ms ease, opacity 200ms ease; }
      .accordions.plus-minus summary::before {
        transform: translateY(-50%); }
      .accordions.plus-minus summary::after {
        transform: translateY(-50%) rotate(90deg); }
    .accordions.plus-minus details[open] summary::after {
      opacity: 0;
      transform: translateY(-50%) rotate(90deg) scaleX(0); }

details {
  overflow: hidden;
  border: none;
  border-radius: 0;
  padding: 2px;
  border-bottom: 1px solid #b7bdc9; }
  details summary {
    padding: 12px 16px;
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    outline-color: #3b3d49; }
    details summary:focus-visible {
      outline: 2px solid #3b3d49;
  border-radius: 8px; 
  outline-offset: 0px; }
    details summary img {
      transform: rotate(0deg);
      transition: transform 0.3s ease; }
  details .answer {
    padding: 10px 16px 16px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px; }
    details .answer ol,
    details .answer ul {
      margin: 0;
      padding-left: 30px;
      line-height: 24px; }
    details .answer a {
      font-weight: 500;
      color: #3f647c; }
      details .answer a.wrap {
        word-break: break-word; }

details summary::-webkit-details-marker {
  display: none; }

details[open] summary img {
  transform: rotate(180deg); }

details::details-content {
  height: 0;
  transition: height 0.3s, content-visibility 0.3s;
  transition-behavior: allow-discrete; }

details[open]::details-content {
  height: auto; }
