.support_page section.downloads_block {
  background-image: url(/images/pages/resources-and-support/support-1-bg-m-2x.jpg);
  background-size: 981px;
  background-position: 50% calc(100% + 60px);
  background-repeat: no-repeat;
}

.support_page section.downloads_block .container .wrapper {
  padding-bottom: 100px;
}

.support_page .select-resources-box,
.support_page .select-resources-box > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support_page .downloads_block .select-resources-box {
  border-radius: 6px;
  margin-top: 16px;
  padding: 16px 24px;
  color: var(--white-color);
  background: radial-gradient(222.94% 222.94% at 48.44% 0,
      var(--secondary-font-color) 0,
      var(--secondary-font-color) 39.42%,
      var(--secondary-background-color) 80%);
}

.support_page .downloads_block .select-resources-box .button {
  margin-left: 0;
  margin-right: auto;
}

.support_page .select-resources-box .button span.link-text {
  font-weight: 700;
  padding: 10px 24px;
}

.support_page .downloads_block .resources-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.support_page .downloads_block .container .wrapper .resource_item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.support_page .downloads_block .resource_item > .image_wrapper {
  display: none;
}

.support_page .downloads_block .resource_item > .image_wrapper img {
  width: 100%;
}

.support_page .downloads_block .resource_item > .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support_page .downloads_block .resource_item .content > div:nth-child(1) {
  display: flex;
  flex-direction: row;
}

.support_page .downloads_block .resource_item > .content .image_wrapper {
  margin-bottom: auto;
  margin-top: 0;
  margin-right: 24px;
  display: flex;
}

.support_page .downloads_block .resource_item > .content .image_wrapper img {
  width: 100px;
  box-shadow: 3px 3px 4px 0 var(--shadow-light);
}

.support_page .downloads_block .resource_item > .content .copy p.title {
  font-family: var(--font-montserrat_sans);
  font-size: 20px;
  font-weight: 700;
}
 
.support_page .downloads_block .resource_item > .content .copy p + p {
  margin-top: 4px;
}

.support_page .downloads_block .resource_item .buttons {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.support_page .downloads_block .resource_item .buttons > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support_page .downloads_block .resource_item .buttons label {
  display: flex;
  align-items: center;
}

.support_page .downloads_block .resource_item input[type="checkbox"] {
  outline: none;
  content: none;
  width: 40px;
  height: 40px;
  margin: 0;
  margin-right: 10px;
  box-sizing: border-box;
  padding: 0;
}

.support_page .downloads_block .resource_item input[type="checkbox"]::before {
  content: "";
  background-color: var(--white-color);
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary-font-color);
  border-radius: 4px;
  margin-right: 7px;
  line-height: 35px;
}

.support_page .downloads_block .resource_item input[type="checkbox"]:checked:before {
  background-image: url(../images/Icons/checkmark.svg);
  background-size: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: var(--color-teal-lightest);
}

.support_page .downloads_block .resources-external-link {
  display: none;
}

.support_page .ext_interstitial {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--modal-overlay-color);
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in 0s, visibility 0.5s ease-in 0s;
}

.support_page .ext_interstitial.show {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.support_page .ext_interstitial .ext_int_overlay {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.support_page #email_resources_interstitial .box {
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  width: 360px;
}

.support_page .ext_interstitial .container {
  position: relative;
  z-index: 10;
}

.support_page .ext_interstitial .container,
.interstitial .container {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 6px;
  max-width: 358px;
  text-align: center;
}

.support_page .box {
  padding: 20px 16px;
  background-color: var(--white-color);
  border-radius: 3px;
  border: 0;
  border-top: 3px solid var(--secondary-background-color);
  width: 100%;
  min-height: 20px;
}

.support_page .ext_interstitial .ext_int_close {
  width: 16px;
  height: 16px;
  background-image: url(../images/Icons/modal_close.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
  display: block;
  border: 0;
  background-color: transparent;
  padding: 0;
}

.support_page .ext_int_overlay button {
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  color: inherit;
  font: inherit;
  margin: 0;
}

.support_page .sr-only {
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.support_page .form_eml {
  display: flex;
  flex-direction: column;
}

.support_page .form_eml .form_thanks {
  display: block;
}

.support_page #email_resources_interstitial .box h1 {
  margin-top: 48px;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-font-color);
  line-height: 34px;
}

.support_page .form_eml .form_thanks h1+p {
  margin-top: 32px;
}

.support_page .form_eml .form_thanks > div {
  margin-top: 24px;
  background-color: var(--color-teal-lightest);
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.support_page .button.cancel {
  background-color: var(--white-color);
  border: 1px solid var(--secondary-font-color);
  color: var(--secondary-font-color);
  padding: 8px 16px;
}

.support_page section.seagen-secure_block {
  background-image: url(/images/pages/resources-and-support/support-2-bg-m-2x.jpg);
  background-size: 981px;
  background-position: calc(50% + 14px) calc(100% + 0px);
  background-repeat: no-repeat;
}

.support_page section.seagen-secure_block .container .wrapper {
  padding-top: 90px;
  padding-bottom: 80px;
}

.support_page section.seagen-secure_block .what-is-seagen-secure {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support_page section.seagen-secure_block .what-is-seagen-secure img {
  width: 230px;
}

.support_page section.seagen-secure_block .what-is-seagen-secure .heading_h2 {
  font-size: 28px;
  line-height: 33.6px;
}

.support_page section.seagen-secure_block .copy_block h3 {
  margin-top: 40px;
  color: var(--primary-font-color);
}

.support_page section.seagen-secure_block .container .wrapper .copy_block ul {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support_page section.seagen-secure_block .copy_block ul li {
  font-weight: 600;
}

.support_page section.seagen-secure_block .copy_block .footnote_block {
  margin-top: 32px;
}

.support_page section.seagen-secure_block .footnote_block .footnote + .footnote {
  margin-top: 0;
}

.support_page section.seagen-secure_block .footnote_block .rball {
  top: 0;
  font-size: 100%;
}

.support_page section.seagen-secure_block .copy_block .left_bar {
  margin-bottom: 32px;
}

.support_page section.seagen-secure_block .text-nowrap {
  white-space: nowrap;
}

.support_page section.seagen-secure_block .copy_block h3 sup {
  font-weight: 400;
}

.support_page section.seagen-secure_block .copy_block .link_download {
  margin-top: 16px;
  font-family: var(--font-montserrat_sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary-font-color);
}

.support_page section.seagen-secure_block .copy_block .link_download span.text {
  position: relative;
  margin-right: 24px;
}

.support_page section.seagen-secure_block .link_download span.text:after {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  background-image: url(../images/Icons/download_orange.svg);
  background-size: 18px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.support_page section.seagen-secure_block .copy_block ul li.line {
  height: 1px;
  background-color: var(--color-teal-light);
}

.support_page.tivdak-texts {
  background-image: url(/images/pages/resources-and-support/support-3-bg-m-2x.jpg);
  background-size: 981px;
  background-position: calc(50% + 14px) calc(0% + 0px);
  background-repeat: no-repeat;
}

.support_page.tivdak-texts .container .wrapper {
  padding-top: 90px;
  padding-bottom: 48px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-headline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-headline h1 {
  font-size: 28px;
  line-height: 33.6px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-headline .spanish {
  border-left: 1px solid var(--cta-border-color);
  padding-left: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-headline .spanish p {
  margin-top: 0;
}

.support_page.tivdak-texts .copy_block p.heading_h3 {
  color: var(--primary-font-color);
}

.support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}

.support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits img {
  width: 77px;
}

.support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits p {
  font-size: 18px;
  font-weight: 700;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps img {
  width: 170px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul li p.left_bar {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul li p.left_bar:before {
  background-color: var(--color-light-grey-background);
  height: 20px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul li p + p {
  margin-top: 10px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul li p + ul {
  margin-top: 16px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content .footnote_block {
  margin-top: 32px;
}

.support_page.tivdak-texts .copy_block .tivdakTexts-steps .content a.link_inline {
  color: var(--primary-font-color);
  display: inline;
}

.support_page.advocacy .copy_block h1 + .heading_h3 {
  margin-top: 40px;
  color: var(--primary-font-color);
}

.support_page.advocacy .copy_block .column-list {
  column-count: 2;
}

.support_page.advocacy .copy_block .advocacy-container {
  margin-top: 48px;
  margin-bottom: 32px;
}

.support_page.advocacy .copy_block .advocacy-container,
.support_page.advocacy .copy_block .advocacy-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.support_page.advocacy .copy_block .advocacy-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -ms-flex-align: center;
  align-items: center;
}

.support_page.advocacy .advocacy-wrapper .advocacy-item p.heading_h3 {
  color: var(--primary-font-color);
}

.support_page.advocacy .copy_block .advocacy-item .image_wrapper img {
  width: 160px;
}

.support_page.advocacy .copy_block .advocacy-item .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center
}

.support_page.advocacy .copy_block .advocacy-item .content .copy {
  font-family: var(--font-montserrat-pro_sans);
}

.support_page.advocacy .copy_block .advocacy-item .content p + p {
  margin-top: 16px;
}

.support_page.advocacy .copy_block .advocacy-item .content p + p + p {
  margin-top: 24px;
}

.popup-box {
  padding: 20px 16px;
  background-color: var(--white-color);
  border-radius: 3px;
  border: 0;
  border-top: 3px solid var(--secondary-background-color);
  width: 100%;
  min-height: 20px;
}

.ext_interstitial,
.interstitial {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(95, 97, 101, .5);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-in 0s, visibility .5s ease-in 0s;
}

.ext_interstitial .container,
.interstitial .container {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 6px;
  max-width: 358px;
}

.ext_interstitial .container .wrapper .copy_block p.btn a {
  text-transform: uppercase;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.ext_interstitial .container .wrapper .copy_block p .link {
  border: none;
  font-size: 12px;
  line-height: 15px;
}

.ext_interstitial .container .call_header h3,
.interstitial .container .call_header h3 {
  padding: 0;
}

.ext_interstitial .container h1,
.interstitial .container h1 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
}

.ext_interstitial .container .copy_block,
.interstitial .container .copy_block {
  margin-top: 20px;
}

.ext_interstitial .container .button+.button,
.interstitial .container .button+.button {
  margin-left: 16px;
}

.ext_interstitial .ext_int_close,
.interstitial .ext_int_close {
  width: 16px;
  height: 16px;
  background-image: url(../images/Icons/modal_close.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
  display: block;
  border: 0;
  background-color: transparent;
  padding: 0
}

.ext_interstitial .sr-only {
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  white-space: nowrap;
}

.ext_interstitial .popup-box .flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.ext_interstitial .mt-4 {
  margin-top: 24px;
}

.ext_interstitial .d-flex.mt-4 {
  display: -ms-flexbox;
  display: flex;
}

.ext_interstitial .justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.ext_interstitial .flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.ext_interstitial .button.cancel {
  background-color: var(--white-color);
  border: 1px solid var(--secondary-font-color);
  color: var(--secondary-font-color);
  padding: 8px 16px;
}

.ext_interstitial .button.continue {
  background-color: var(--secondary-font-color);
  border: 1px solid var(--secondary-font-color);
  color: var(--white-color);
  padding: 8px 16px;
}

.ext_interstitial .ext_int_close:focus,
.interstitial .ext_int_close:focus {
  outline: none;
}

.ext_interstitial.show,
.interstitial.show {
  opacity: 1;
  visibility: visible;
  z-index: 1500
}

.ext_interstitial .ext_int_overlay {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.ext_interstitial .container {
  position: relative;
  z-index: 10;
}

.ext_interstitial .container .wrapper .call_header hr {
  margin: 16px auto;
}

.ext_interstitial .container .wrapper .copy_block {
  margin-top: 16px;
}

.ext_interstitial .container .wrapper .copy_block p {
  display: block;
  width: 118px;
  margin: 0 auto;
}

.support_page .tout_container {
  margin-top: 50px;
}


@media screen and (min-width: 981px) {
  .support_page section.downloads_block {
    background-image: url(/images/pages/resources-and-support/support-1-bg-2x.jpg);
    background-size: 1920px;
    background-position: 50% 100%;
  }

  .support_page section.downloads_block .container .wrapper {
    padding-bottom: 80px;
  }

  .support_page .select-resources-box,
  .support_page .select-resources-box > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .support_page .downloads_block .container .wrapper .resources-container {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }

  .support_page .downloads_block .container .wrapper .resource_item {
    align-items: flex-start;
    gap: 24px;
    row-gap: 24px;
    column-gap: 24px;
    max-width: 48%;
  }

  .support_page .downloads_block .resource_item > .image_wrapper {
    display: flex;
    height: 218px;
  }

  .support_page .downloads_block .resource_item > .content .copy p + p {
    margin-top: 16px;
  }

  .support_page .downloads_block .resource_item .image_wrapper img {
    height: 218px;
    width: auto;
    box-shadow: 3px 3px 4px 0 var(--shadow-light);
  }

  .support_page .downloads_block .resource_item > .content .image_wrapper {
    display: none;
  }

  .support_page .downloads_block .resource_item input[type="checkbox"]:checked:before {
    background-size: 14px;
  }
 
  .support_page #email_resources_interstitial .box {
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    width: 560px;
  }

  .support_page .ext_interstitial .container,
  .support_page .interstitial .container {
    max-width: 485px;
  }

  .support_page .downloads_block .resource_item input[type="checkbox"],
  .support_page .downloads_block .resource_item input[type="checkbox"]::before {
    height: 24px;
    width: 24px;
  }

  .support_page section.seagen-secure_block {
    background-image: url(/images/pages/resources-and-support/support-2-bg-2x.jpg);
    background-size: 1920px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
  }

  .support_page section.seagen-secure_block .container .wrapper {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .support_page section.seagen-secure_block .what-is-seagen-secure {
    margin-top: 40px;
    flex-direction: row;
    gap: 40px;
  }

  .support_page section.seagen-secure_block .what-is-seagen-secure img {
    width: 240px;
  }

  .support_page section.seagen-secure_block .container .wrapper .copy_block ul {
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .support_page section.seagen-secure_block .copy_block ul li {
    width: 33%;
  }

  .support_page section.seagen-secure_block .copy_block ul li:first-of-type {
    width: 270px;
  }

  .support_page section.seagen-secure_block .copy_block .footnote_block {
    margin-top: 40px;
  }

  .support_page section.seagen-secure_block .footnote_block .footnote + .footnote {
    margin-top: 8px;
  }

  .support_page section.seagen-secure_block .text-lg-center {
    text-align: center;
  }

  .support_page section.seagen-secure_block .copy_block .left_bar {
    display: inline-block;
  }

  .support_page section.seagen-secure_block .copy_block ul li.line {
    height: 40px;
    width: 1px;
    background-color: var(--color-teal-light);
  }

  .support_page.tivdak-texts {
    background-image: url(/images/pages/resources-and-support/support-3-bg-2x.jpg);
    background-size: 1920px;
    background-position: 50% 0;
    background-repeat: no-repeat;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-headline {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
    -ms-flex-align: center;
    align-items: center;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-headline h1 {
    font-size: 32px;
    line-height: 38.4px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-headline .spanish {
    padding-left: 32px;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
  }

  .support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .support_page.tivdak-texts .copy_block ul.tivdakTexts-benefits img {
    width: 75px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-steps {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-steps img {
    width: 360px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-steps .content {
    margin-top: 24px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-steps .content > ul {
    gap: 32px;
    margin-top: 40px;
  }

  .support_page.tivdak-texts .copy_block .tivdakTexts-steps .content .footnote_block {
    margin-top: 40px;
  }

  .support_page.advocacy .copy_block .advocacy-container {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 64px;
  }

  .support_page.advocacy .copy_block .advocacy-wrapper {
    width: 50%;
  }

  .support_page.advocacy .copy_block .advocacy-item {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .support_page.advocacy .copy_block .advocacy-item:first-of-type {
    min-height: 208px;
  }

  .support_page.advocacy .copy_block .advocacy-item .content {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .support_page.advocacy .copy_block .advocacy-item .content .copy {
    font-family: var(--font-montserrat-pro_sans);
  }

  .support_page.advocacy .copy_block .advocacy-item:nth-of-type(2) {
    min-height: 208px;
  }

  .support_page.advocacy .copy_block .advocacy-item .content p + p {
    margin-top: 16px;
  }

  .support_page.advocacy .copy_block .advocacy-item .content p + p + p {
    margin-top: 24px;
  }

  .ext_interstitial .container .wrapper .copy_block {
    margin: 32px auto 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 256px;
  }

  .ext_interstitial .container,
  .interstitial .container {
    max-width: 485px;
    padding: 20px 32px 32px;
  }

  #third_party_interstitial .container {
    max-width: 540px;
  }
}

@media screen and (min-width: 981px) and (min-width: 1168px) {
  .support_page.advocacy .copy_block .advocacy-item:first-of-type,
  .support_page.advocacy .copy_block .advocacy-item:nth-of-type(2) {
    min-height: 165px;
}
}

@media only screen and (min-width: 981px) and (min-width: 1135px) {
  .support_page.advocacy .copy_block .advocacy-item:nth-of-type(2) {
    min-height: 188px;
}
}
