#multiMediaContent {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto !important;
  &.blue {
    background: #1e365d !important;
    .container {
      .textContainer {
        p.kicker {
          color: #b58254;
        }
        h2,
        .copy p,
        .copy p a,
        .copy p a:visited {
          color: #ffffff !important;
        }

        .copy p a,
        .copy p a:visited {
          text-decoration: underline;
        }
      }
    }
  }
  &.white {
    background: #ffffff;
    .container {
      .textContainer {
        p.kicker {
          color: #b58254;
        }
        h2 {
          color: #1e365d !important;
        }
        .copy p,
        .copy p a,
        .copy p a:visited {
          color: #54565a !important;
        }
        .copy p a,
        .copy p a:visited {
          text-decoration: underline;
        }
      }
    }
  }
  &.brown {
    background: #b58254 !important;
    .container {
      .textContainer {
        h2,
        p.kicker,
        .copy p,
        .copy p a,
        .copy p a:visited {
          color: #ffffff !important;
        }

        .copy p a,
        .copy p a:visited {
          text-decoration: underline;
        }
      }
    }
  }

  & .container {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 6rem;
    @media only screen and (max-width: 820px) {
      flex-direction: column;
      padding: 0 4rem;
      gap: 3rem;
    }
    @media only screen and (max-width: 600px) {
      flex-direction: column;
      padding: 0 2rem;
    }

    .column {
      width: calc(50% - 3rem);
      position: relative;
      &.first img {
        padding: 4rem 0 0 0;
      }
      &.first a img {
        padding: 0rem 0 0 0;
      }
      &.second img {
        padding: 0rem 0 2rem 0;
      }
      .textContainer {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .headingContainer {
          display: flex;
          gap: 1rem;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
        }
        .copy p {
          font-size: clamp(16px, 1vw, 20px) !important;
          font-family: brother-1816, Arial, Helvetica, sans-serif;
          font-weight: normal;
        }
      }
      img {
        width: 100%;
        max-width: 100%;
        height: auto;
      }
      @media only screen and (max-width: 820px) {
        width: 100%;
      }
    }
  }
}
