.odd-even-chain {
  display: block;
  padding: var(--PT) 0px var(--PB);

  .odd-even-chain__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    text-align: center;

    .odd-even-chain__heading {
      font-size: var(--heading, 1.4rem);
      font-weight: 300;
      line-height: 1.7;
    }

    .odd-even-chain__subheading {
      font-size: var(--subheading, 1.8rem);
      font-weight: 300;
      line-height: 1.25;
    }

    .odd-even-chain__content {
      font-size: var(--content, 1.8rem);
      font-weight: 300;
      line-height: 1.4;
    }
  }

  .odd-even-chain__body {
    display: flex;
    justify-content: center;
    gap: 7rem;

    .odd-even-chain-box {
      background: #f8f5f0;
      border-radius: 1rem;
      max-width: 40rem;
      padding: 2rem 3rem;
      width: 100%;

      .odd-even-chain-box-inner {
        font-family: var(--font-body-family);
        font-style: var(--font-body-style, 'normal');
        font-weight: var(--font-body-weight);

        h4 {
          font-size: 40px;
          line-height: 1.7;
          font-family: var(--font-heading-family);
          font-style: var(--font-heading-style, 'normal');
          font-weight: var(--font-heading-weight);
          padding: 10px 0px 15px;
          margin: 0px;
          letter-spacing: 0px;
          border-bottom: 1px dashed #141b4d;
          padding-right: 90px;
          position: relative;

          .dotswrap {
            position: absolute;
            right: -1px;
            top: 13px;
          }

          .dots {
            width: 11px;
            height: 11px;
            margin: 1px;
            background: #d0debb;
            border-radius: 50%;
            display: inline-block;
          }
        }

        p {
          font-size: 16px;
          line-height: 1.7;
          padding: 15px 0px;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          margin: 0px;
          border-bottom: 1px dashed #141b4d;

          img {
            max-height: 25px;
            display: inline-block;
            margin: 0px 4px;
          }
        }

        h6 {
          font-size: 16px;
          line-height: 150%;
          font-family: var(--font-body-family);
          font-style: var(--font-body-style, 'normal');
          font-weight: var(--font-body-weight);
          padding: 15px 0px;
          margin: 0px;

          span {
            font-family: var(--font-heading-family);
            font-weight: 600;
          }
        }

        ul {
          list-style-type: disc;
          list-style-position: inside;
          padding: 0;

          li {
            font-size: 16px;
            line-height: 150%;
            font-weight: normal;
            list-style-type: disc;
            list-style-position: inside;
          }
        }

        @media (width < 1280px) {
          h4 {
            font-size: 30px;
            line-height: 1.7;
          }

          p {
            padding: 12px 0px 10px;
          }

          p {
            font-size: 14px;
            line-height: 1.7;
          }

          p img {
            max-height: 16px;
          }

          h6 {
            font-size: 14px;
            line-height: 1.7;
          }

          ul li {
            font-size: 14px;
            line-height: 1.7;
          }
        }

        @media (width < 767px) {
          h4 {
            padding-right: 40px;
          }

          p img {
            max-height: 21px;
          }
        }
      }
    }
  }

  @media (width < 991px) {
    .odd-even-chain__header {
      margin-bottom: 3rem;
    }

    .odd-even-chain__body {
      align-items: center;
      flex-direction: column;
      gap: 3rem;
      justify-content: center;

      .odd-even-chain-box {
        max-width: 30rem;
        padding: 2rem;
      }
    }
  }
}