/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  #content-page-1399 {
    padding: var(--sectionPadding);
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Special style for the last tile */
    /* Text Styles */
  }
  #content-page-1399 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4rem);
  }
  #content-page-1399 .cs-title-wrapper {
    width: 100%;
    text-align: center;
  }
  #content-page-1399 .cs-grid-container {
    width: 100%;
    display: grid;
    /* This creates one column on mobile */
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  #content-page-1399 .cs-issue-tile {
    text-align: left;
    padding: clamp(1.25rem, 3vw, 2rem);
    background-color: #f7f7f7;
    border-radius: 1rem;
    border: 1px solid #e8e8e8;
  }
  #content-page-1399 .cs-cta-tile {
    background-color: #fef8f3; /* A light version of your primary color */
    border-color: #fd6a00; /* Assuming --primary is orange */
    text-align: center;
  }
  #content-page-1399 .cs-cta-tile h2 {
    color: var(--primary);
  }
  #content-page-1399 h1.cs-title {
    font-size: clamp(2.4375rem, 4.5vw, 3.0625rem);
    color: var(--headerColor);
    margin: 0;
  }
  #content-page-1399 .cs-issue-tile .title {
    font-size: 1.5625rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    display: block;
  }
  #content-page-1399 .cs-issue-tile .sub-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 1.5rem 0 1rem 0;
    display: block;
  }
  #content-page-1399 h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 0 0 1rem 0;
  }
  #content-page-1399 .cs-color {
    color: var(--primary);
  }
  #content-page-1399 p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  #content-page-1399 .cs-issue-tile p:last-of-type {
    margin-bottom: 0;
  }
  #content-page-1399 .cs-cta-tile p {
    margin-bottom: 0;
  }
  #content-page-1399 ul {
    padding-left: 1.5rem;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #content-page-1399 li {
    list-style: none;
    position: relative;
  }
  #content-page-1399 li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0.625rem; /* 10px */
    left: -0.75rem; /* -12px */
  }
  #content-page-1399 .cs-bubbles {
    font-size: min(2.5vw, 0.7em);
    width: 36.375em;
    height: 34.8125em;
    display: none;
    position: absolute;
    right: -16.25em;
    bottom: -3.125em;
    z-index: -1;
  }
  #content-page-1399 .cs-bubbles:before, #content-page-1399 .cs-bubbles:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  #content-page-1399 .cs-bubbles:before {
    width: 29em;
    height: 29em;
    background: transparent;
    border: 1px solid #1a1a1a;
    top: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
  }
  #content-page-1399 .cs-bubbles:after {
    width: 22.875em;
    height: 22.875em;
    background: var(--primary);
    opacity: 0.15;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-page-1399 .cs-grid-container {
    /* This is the key change: switch to two columns */
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #content-page-1399 .cs-bubbles {
    display: block;
    font-size: 1em;
    margin-left: 37.5rem;
    right: auto;
    left: 50%;
    bottom: -13.75rem;
  }
}
/*-- -------------------------- -->
<---         Subscribe          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #subscribe-1717 {
    background-color: #F7F7F7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  #subscribe-1717 .cs-container {
    width: 100%;
    /* changes to 1312px at tablet */
    max-width: 34.375rem;
    margin: auto;
    padding: var(--sectionPadding);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #subscribe-1717 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  #subscribe-1717 .cs-title {
    max-width: 28ch;
  }
  #subscribe-1717 .cs-text {
    margin-bottom: 1rem;
  }
  #subscribe-1717 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #subscribe-1717 .cs-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #subscribe-1717 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    margin: 0;
    padding: 0;
    padding-left: 1.25rem;
    border: none;
    /* prevents padding from adding to width and height */
    box-sizing: border-box;
    display: block;
  }
  #subscribe-1717 .cs-input::-moz-placeholder {
    color: #767676;
  }
  #subscribe-1717 .cs-input::placeholder {
    color: #767676;
  }
  #subscribe-1717 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #subscribe-1717 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #subscribe-1717 .cs-button-solid:hover:before {
    width: 100%;
  }
  #subscribe-1717 .cs-submit {
    width: 100%;
    border: none;
    color: var(--bodyTextColorWhite);
  }
  #subscribe-1717 .cs-background {
    width: 100%;
    height: 100vw;
    max-height: 25rem;
    display: block;
    order: -1;
    position: relative;
    z-index: 2;
  }
  #subscribe-1717 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #subscribe-1717 .cs-floater {
    /* 296px - 450px */
    width: clamp(18.5rem, 35vw, 28.125rem);
    height: auto;
    mix-blend-mode: soft-light;
    position: absolute;
    right: -8.0625rem;
    top: -9.375rem;
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #subscribe-1717 {
    flex-direction: row;
    align-items: stretch;
  }
  #subscribe-1717 .cs-container {
    max-width: 82rem;
    align-items: flex-end;
  }
  #subscribe-1717 .cs-content {
    width: 45vw;
    max-width: 39.375rem;
  }
  #subscribe-1717 .cs-background {
    width: 50%;
    max-height: 100%;
    height: 100%;
    position: absolute;
    right: 50%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #subscribe-1717 .cs-content {
    /* remove the positioning so the cs-floater is now absolutely positioned to the nearest parent that has a declared position relative, which is the section parent */
    position: initial;
  }
  #subscribe-1717 .cs-form {
    flex-direction: row;
  }
  #subscribe-1717 .cs-button-solid {
    width: auto;
  }
  #subscribe-1717 .cs-floater {
    top: 50%;
    right: -12.5rem;
    transform: translateY(-50%);
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #subscribe-1717 .cs-content {
    width: 100%;
  }
  #subscribe-1717 .cs-background {
    margin-right: 7.375rem;
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-52 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #cta-52 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: var(--sectionPadding);
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #cta-52 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-52 .cs-title,
  #cta-52 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #cta-52 .cs-text {
    margin: 0 0 2rem 0;
    opacity: 0.8;
  }
  #cta-52 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-52 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta-52 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-52 .cs-picture {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-52 .cs-picture:before {
    /* black color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-52 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*# sourceMappingURL=issues-that-matter.css.map */