/*-- -------------------------- -->
<---        Our Approach        -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #approach-method {
    padding: 10em 0;
    background-color: var(--primaryDark);
    position: relative;
    overflow: hidden;
  }
  #approach-method .container {
    width: 92%;
    max-width: 85em;
    margin: auto;
  }
  #approach-method .content-group {
    display: flex;
    flex-direction: column;
    gap: 2.625em;
  }
  #approach-method .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75em;
    margin-bottom: 1em;
  }
  #approach-method .breadcrumb span {
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: 0.6875em;
    font-weight: 700;
  }
  #approach-method .breadcrumb span:first-child {
    position: relative;
    padding-right: 2.54545455em;
  }
  #approach-method .breadcrumb span:first-child:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.45454545em;
    height: 1px;
    background-color: var(--sand);
  }
  #approach-method .breadcrumb span:last-child {
    color: var(--paper);
  }
  #approach-method .topper {
    display: block;
    margin-bottom: 1.75em;
    color: var(--goldLight);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: 0.6875em;
    line-height: 1.4em;
    font-weight: 700;
  }
  #approach-method h2 {
    margin: 0 0 0.5em;
    max-width: 41.25em;
    color: var(--gold);
    font-size: min(14vw, 4.6em);
    line-height: .98em;
    font-weight: 400;
    letter-spacing: -0.045em;
  }
  #approach-method h2 em {
    font-style: italic;
    font-weight: 400;
  }
  #approach-method .content > p {
    margin: 0 0 2em;
    max-width: 32.5em;
    color: var(--paper);
    font-size: 1.25em;
    line-height: 1.55em;
  }
  #approach-method .tags {
    padding-top: 1.5em;
    border-top: 1px solid var(--sage);
    display: flex;
    flex-wrap: wrap;
    gap: 1.125em 1.75em;
  }
  #approach-method .tags span {
    position: relative;
    padding-left: 1.125em;
    color: var(--goldLight);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 0.6875em;
    line-height: 1.4em;
    font-weight: 700;
  }
  #approach-method .tags span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.54545455em;
    height: 0.54545455em;
    border-radius: 50%;
    background-color: var(--sage);
    transform: translateY(-50%);
  }
  #approach-method .image {
    width: 100%;
    height: 28.75em;
    display: block;
    overflow: hidden;
    border-radius: 0.25em;
  }
  #approach-method .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  #approach-method .phase-group {
    margin-top: 3.375em;
    padding-top: 1.5em;
    border-top: 1px solid var(--sage);
  }
  #approach-method .phase-topper {
    display: block;
    margin-bottom: 1.75em;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: 0.6875em;
    line-height: 1.4em;
    font-weight: 700;
  }
  #approach-method .phases {
    border-top: 1px solid var(--sage);
    border-bottom: 1px solid var(--sage);
  }
  #approach-method .phase {
    padding: 1.5em 0;
    display: grid;
    grid-template-columns: 2.125em 1fr;
    gap: 1em;
    border-bottom: 1px solid var(--sage);
  }
  #approach-method .phase:last-child {
    border-bottom: none;
  }
  #approach-method .phase .number {
    color: var(--gold);
    font-size: 0.8125em;
    line-height: 1.4em;
    font-style: italic;
  }
  #approach-method .phase h3 {
    margin: 0 0 0.375em;
    color: var(--gold);
    font-size: 1.5em;
    line-height: 1.1em;
    font-weight: 400;
  }
  #approach-method .phase p {
    margin: 0;
    color: var(--primaryShade);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 0.6875em;
    line-height: 1.4em;
    font-weight: 700;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #approach-method {
    padding: 5.75em 0;
  }
  #approach-method .content-group {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 4.375em;
    align-items: end;
  }
  #approach-method .breadcrumb {
    margin-bottom: 7.5em;
  }
  #approach-method .image {
    height: 38.75em;
  }
  #approach-method .phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  #approach-method .phase {
    border-bottom: none;
    border-right: 1px solid var(--sage);
    padding: 1.875em 1.75em;
  }
  #approach-method .phase:last-child {
    border-right: none;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #approach-method {
    padding: 6.5em 0 5.75em;
  }
  #approach-method .content-group {
    grid-template-columns: 45em 28.375em;
    gap: 6em;
    align-items: end;
  }
  #approach-method .breadcrumb {
    margin-bottom: 7.5em;
  }
  #approach-method h2 {
    font-size: 4.75em;
  }
  #approach-method .image {
    height: 38.75em;
    margin-top: 3em;
  }
  #approach-method .phase-group {
    margin-top: 3.5em;
  }
}
/*-- -------------------------- -->
<---          Foundation        -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #foundation {
    padding: 4.5em 0;
    background-color: var(--paper);
  }
  #foundation .container {
    width: 92%;
    max-width: 85em;
    margin: auto;
  }
  #foundation .intro-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75em;
    margin-bottom: 3.5em;
  }
  #foundation .intro-row h2 {
    margin: 0;
    padding-left: 1.25em;
    border-left: 1px solid var(--sage);
    color: var(--primary);
    font-size: min(10vw, 3.2em);
    line-height: 1.18em;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-align: left;
  }
  #foundation .intro-row h2 em {
    display: block;
    color: var(--sage);
    font-style: italic;
  }
  #foundation .intro-row p {
    margin: 0;
    color: var(--bodyMuted);
    font-size: 1.0625em;
    line-height: 1.65em;
    font-weight: 500;
    text-align: left;
  }
  #foundation .foundation-content {
    margin-bottom: 2.125em;
    text-align: left;
  }
  #foundation .topper {
    display: block;
    margin-bottom: 1.125em;
    color: var(--goldDark);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 0.6875em;
    line-height: 1.2em;
    font-weight: 700;
  }
  #foundation h3 {
    margin: 0 0 1.375em;
    max-width: 100%;
    color: var(--primary);
    font-size: min(11vw, 3.6em);
    line-height: 1.08em;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-align: left;
  }
  #foundation h3 span {
    display: block;
  }
  #foundation .foundation-content p {
    margin: 0;
    max-width: 100%;
    color: var(--bodyMuted);
    font-size: 1.125em;
    line-height: 1.55em;
    font-weight: 400;
    text-align: left;
  }
  #foundation .image-wrap {
    position: relative;
    margin-bottom: 3.5em;
    overflow: hidden;
    border-radius: 0.25em;
  }
  #foundation .image-wrap picture {
    display: block;
  }
  #foundation .image-wrap img {
    width: 100%;
    height: 20em;
    display: block;
    object-fit: cover;
  }
  #foundation .image-wrap:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 54, 46, 0) 40%, rgba(27, 54, 46, 0.75) 100%);
    z-index: 1;
  }
  #foundation .image-wrap span {
    position: absolute;
    left: 1.375em;
    bottom: 1.375em;
    z-index: 2;
    max-width: 85%;
    color: var(--paper);
    font-size: 1.125em;
    line-height: 1.35em;
    font-style: italic;
    text-align: left;
  }
  #foundation .belief-list {
    border-top: 1px solid rgba(47, 93, 80, 0.16);
  }
  #foundation .belief {
    display: grid;
    grid-template-columns: 3em 1fr;
    gap: 1em;
    padding: 1.875em 0;
    border-bottom: 1px solid rgba(47, 93, 80, 0.16);
    text-align: left;
  }
  #foundation .belief .number {
    color: var(--sage);
    font-size: 1.875em;
    line-height: 1em;
    font-style: italic;
  }
  #foundation .belief h4 {
    margin: 0 0 0.875em;
    color: var(--primary);
    font-size: 1.625em;
    line-height: 1.12em;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  #foundation .belief h4 span {
    display: block;
  }
  #foundation .belief p {
    grid-column: 2;
    margin: 0;
    color: var(--bodyMuted);
    font-size: 1em;
    line-height: 1.6em;
    font-weight: 400;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #foundation {
    padding: 5.5em 0;
  }
  #foundation .intro-row {
    grid-template-columns: 1fr .9fr;
    gap: 5em;
    align-items: start;
    margin-bottom: 4.5em;
  }
  #foundation .foundation-content {
    max-width: 47.5em;
    margin-bottom: 2.875em;
  }
  #foundation .image-wrap {
    margin-bottom: 4.375em;
  }
  #foundation .image-wrap img {
    height: 31.25em;
  }
  #foundation .image-wrap span {
    font-size: 1.5em;
  }
  #foundation .belief {
    grid-template-columns: 4.375em 16.25em 1fr;
    gap: 1.625em;
    align-items: start;
  }
  #foundation .belief h4 {
    margin: 0;
  }
  #foundation .belief p {
    grid-column: auto;
    font-size: 1.125em;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #foundation {
    padding: 4.875em 0 6em;
  }
  #foundation .intro-row {
    margin-bottom: 6em;
  }
  #foundation .intro-row h2 {
    font-size: 2.875em;
  }
  #foundation .intro-row p {
    max-width: 31.11111111em;
    font-size: 1.125em;
  }
  #foundation .foundation-content {
    margin-bottom: 2.75em;
  }
  #foundation h3 {
    font-size: 3.5em;
  }
  #foundation .image-wrap {
    margin-bottom: 4.5em;
  }
  #foundation .image-wrap img {
    height: 32.5em;
  }
  #foundation .belief {
    grid-template-columns: 4.5em 18.75em 1fr;
    gap: 2.25em;
    padding: 2.875em 0;
  }
  #foundation .belief .number {
    font-size: 2.25em;
  }
  #foundation .belief h4 {
    font-size: 2.125em;
  }
  #foundation .belief p {
    max-width: 42.22222222em;
  }
}
/*-- -------------------------- -->
<---      Four Phases Method    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #four-phases {
    padding: 5em 0;
    background: var(--sand);
  }
  #four-phases .container {
    width: 92%;
    max-width: 85em;
    margin: auto;
  }
  #four-phases .left-content {
    margin-bottom: 5em;
  }
  #four-phases .topper {
    display: block;
    margin-bottom: 1.5em;
    color: var(--goldDark);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 0.75em;
    font-weight: 600;
  }
  #four-phases h2 {
    margin: 0 0 1em;
    color: var(--primary);
    font-size: min(13vw, 4.2em);
    line-height: 1.05em;
    font-weight: 400;
    letter-spacing: -0.03em;
  }
  #four-phases h2 span {
    display: block;
  }
  #four-phases .left-content p {
    margin: 0 0 2.5em;
    color: var(--bodyMuted);
    font-size: 1.25em;
    line-height: 1.7em;
  }
  #four-phases .method-tag {
    display: flex;
    align-items: center;
    gap: 0.875em;
    margin-bottom: 2.5em;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 0.75em;
    font-weight: 600;
  }
  #four-phases .method-tag span {
    width: 0.375em;
    height: 0.375em;
    border-radius: 50%;
    background: var(--sage);
  }
  #four-phases .method-image {
    display: block;
    width: 100%;
    max-width: 31.25em;
  }
  #four-phases .method-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.25em;
  }
  #four-phases .timeline {
    position: relative;
  }
  #four-phases .timeline:before {
    content: '';
    position: absolute;
    left: 1.625em;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(47, 93, 80, 0.25);
  }
  #four-phases .phase {
    position: relative;
    padding-left: 5em;
    margin-bottom: 4.375em;
  }
  #four-phases .phase:last-child {
    margin-bottom: 0;
  }
  #four-phases .phase .marker {
    position: absolute;
    left: 1.625em;
    top: 0;
    width: 3.25em;
    height: 3.25em;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(47, 93, 80, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    transition: background-color 0.3s, border-color 0.3s;
  }
  #four-phases .phase .marker span {
    color: var(--primary);
    font-size: 0.875em;
    transition: color .3s;
  }
  #four-phases .phase:hover .marker {
    background: var(--primary);
    border-color: var(--primary);
  }
  #four-phases .phase:hover .marker span {
    color: #fff;
  }
  #four-phases .phase-topper {
    display: block;
    margin-bottom: 0.75em;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 0.6875em;
    font-weight: 600;
  }
  #four-phases h3 {
    margin: 0 0 1em;
    color: var(--primary);
    font-size: 2.625em;
    line-height: 1.1em;
    font-weight: 400;
  }
  #four-phases .content p {
    margin: 0 0 1.5em;
    color: var(--bodyMuted);
    font-size: 1.25em;
    line-height: 1.7em;
  }
  #four-phases .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
  }
  #four-phases .chips span {
    padding: 0.75em 1.125em;
    border: 1px solid rgba(47, 93, 80, 0.12);
    border-radius: 6.25em;
    color: var(--primary);
    font-size: 0.875em;
    line-height: 1em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #four-phases .container {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 5em;
  }
  #four-phases .left-content {
    margin-bottom: 0;
  }
  #four-phases .method-image {
    margin-top: 2.5em;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #four-phases {
    padding: 6.875em 0;
  }
  #four-phases .container {
    grid-template-columns: 31.25em 1fr;
    gap: 5.625em;
    align-items: start;
  }
  #four-phases h2 {
    font-size: 4.625em;
    max-width: 26.875em;
  }
  #four-phases .timeline {
    padding-left: 1.25em;
  }
  #four-phases .timeline:before {
    left: 2.875em;
  }
  #four-phases .phase {
    margin-bottom: 5.125em;
  }
  #four-phases .phase .marker {
    left: 1.625em;
  }
  #four-phases h3 {
    font-size: 3.25em;
  }
}
/*-- -------------------------- -->
<---     Session Principles     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #session-principles {
    padding: 5em 0;
    background: var(--paper);
  }
  #session-principles .container {
    width: 92%;
    max-width: 85em;
    margin: auto;
  }
  #session-principles .topper {
    display: block;
    margin-bottom: 1.25em;
    color: var(--goldDark);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 0.75em;
    font-weight: 600;
  }
  #session-principles h2 {
    margin: 0 0 1em;
    color: var(--primary);
    font-size: min(12vw,4em);
    line-height: 1.08em;
    font-weight: 400;
  }
  #session-principles h2 span {
    display: block;
  }
  #session-principles .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(47, 93, 80, 0.14);
  }
  #session-principles .card {
    padding: 2.5em 2em;
    background: transparent;
    border-bottom: 1px solid rgba(47, 93, 80, 0.14);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  #session-principles .card:last-child {
    border-bottom: none;
  }
  #session-principles .card:hover {
    background: var(--primary);
  }
  #session-principles .card:hover .number,
  #session-principles .card:hover h3,
  #session-principles .card:hover p {
    color: #fff;
  }
  #session-principles .card:hover img {
    filter: brightness(0) invert(1);
  }
  #session-principles .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2em;
  }
  #session-principles .card-top img {
    width: 5.25em;
    height: 4em;
    transition: .3s ease;
  }
  #session-principles .number {
    color: var(--goldDark);
    font-size: 0.75em;
    letter-spacing: .18em;
    transition: .3s ease;
  }
  #session-principles h3 {
    margin: 0 0 1.5em;
    color: var(--primary);
    font-size: 2.125em;
    line-height: 1.3em;
    font-weight: 400;
    transition: .3s ease;
  }
  #session-principles p {
    margin: 0;
    color: var(--bodyMuted);
    font-size: 1.125em;
    line-height: 1.7em;
    transition: .3s ease;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #session-principles .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #session-principles .card {
    border-right: 1px solid rgba(47, 93, 80, 0.14);
  }
  #session-principles .card:nth-child(2n) {
    border-right: none;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #session-principles {
    padding: 6.875em 0;
  }
  #session-principles h2 {
    font-size: 4.625em;
    max-width: 9.45945946em;
  }
  #session-principles .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #session-principles .card {
    min-height: 27.5em;
    padding: 3.5em 2.875em;
    border-bottom: none;
  }
  #session-principles .card:not(:last-child) {
    border-right: 1px solid rgba(47, 93, 80, 0.14);
  }
  #session-principles h3 {
    font-size: 1.75em;
    max-width: 7.85714286em;
  }
  #session-principles p {
    font-size: 1.125em;
  }
}
/*-- -------------------------- -->
<---       Inside A Session     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #inside-session {
    padding: 5em 0;
    background-color: var(--primary);
    color: var(--paper);
  }
  #inside-session .container {
    width: 92%;
    max-width: 85em;
    margin: auto;
  }
  #inside-session .intro {
    margin-bottom: 3.5em;
  }
  #inside-session .topper {
    display: block;
    margin-bottom: 1.125em;
    color: var(--goldLight);
    text-transform: uppercase;
    letter-spacing: .34em;
    font-size: 0.75em;
    line-height: 1.2em;
    font-weight: 700;
  }
  #inside-session h2 {
    margin: 0 0 1.5em;
    max-width: 38.75em;
    color: var(--paper);
    font-size: min(12vw, 4.4em);
    line-height: 1.02em;
    font-weight: 400;
    letter-spacing: -0.04em;
  }
  #inside-session h2 span {
    display: block;
  }
  #inside-session .intro p {
    margin: 0;
    max-width: 36em;
    color: rgba(247, 245, 241, 0.76);
    font-size: 1.25em;
    line-height: 1.55em;
    font-weight: 600;
  }
  #inside-session .session-list {
    border-top: 1px solid rgba(247, 245, 241, 0.18);
  }
  #inside-session .session-item {
    padding: 2.125em 0;
    border-bottom: 1px solid rgba(247, 245, 241, 0.18);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125em;
  }
  #inside-session .step {
    color: rgba(247, 245, 241, 0.82);
    font-size: 1.375em;
    line-height: 1.2em;
    font-style: italic;
  }
  #inside-session h3 {
    margin: 0 0 1em;
    color: var(--paper);
    font-size: 1.4375em;
    line-height: 1.25em;
    font-weight: 700;
  }
  #inside-session .text p {
    margin: 0;
    max-width: 42.22222222em;
    color: rgba(247, 245, 241, 0.7);
    font-size: 1.0625em;
    line-height: 1.65em;
    font-weight: 600;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #inside-session {
    padding: 5.75em 0;
  }
  #inside-session .intro {
    max-width: 47.5em;
    margin-bottom: 4em;
  }
  #inside-session .session-item {
    grid-template-columns: 10.625em 1fr;
    gap: 3em;
    padding: 2.625em 0;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #inside-session {
    padding: 5.375em 0 6.875em;
  }
  #inside-session .intro {
    margin-bottom: 4.5em;
  }
  #inside-session h2 {
    font-size: 3.5em;
  }
  #inside-session .intro p {
    font-size: 1.375em;
  }
  #inside-session .session-item {
    grid-template-columns: 11.25em 1fr;
    gap: 3.75em;
    padding: 2.75em 0;
  }
  #inside-session .step {
    font-size: 1.375em;
  }
  #inside-session h3 {
    font-size: 1.5em;
  }
  #inside-session .text p {
    font-size: 1.0625em;
  }
}
/*-- -------------------------- -->
<---        Method Outcome      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #method-outcome {
    padding: 5.375em 0;
    background-color: var(--paper);
    text-align: center;
  }
  #method-outcome .container {
    width: 92%;
    max-width: 56.25em;
    margin: auto;
  }
  #method-outcome .topper {
    display: block;
    margin-bottom: 2em;
    color: var(--goldDark);
    text-transform: uppercase;
    letter-spacing: .34em;
    font-size: 0.75em;
    line-height: 1.2em;
    font-weight: 700;
  }
  #method-outcome h2 {
    margin: 0 auto 0.5em;
    max-width: 51.25em;
    color: var(--primary);
    font-size: min(11vw, 4.8em);
    line-height: 1.12em;
    font-weight: 400;
    letter-spacing: -0.035em;
  }
  #method-outcome h2 em {
    display: block;
    color: var(--sage);
    font-style: italic;
    font-weight: 400;
  }
  #method-outcome p {
    margin: 0 auto 2.375em;
    max-width: 37.77777778em;
    color: var(--bodyMuted);
    font-size: 1.125em;
    line-height: 1.65em;
    font-weight: 500;
  }
  #method-outcome .line {
    display: block;
    width: 4em;
    height: 1px;
    margin: auto;
    background-color: var(--sage);
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #method-outcome {
    padding: 6.5em 0;
  }
  #method-outcome h2 {
    font-size: min(7vw, 5.2em);
  }
  #method-outcome p {
    font-size: 1.25em;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #method-outcome {
    padding: 6.75em 0 6em;
  }
  #method-outcome h2 {
    font-size: 3.625em;
  }
  #method-outcome p {
    font-size: 1.125em;
    max-width: 36.11111111em;
  }
}
/*-- -------------------------- -->
<---        Evaluation CTA      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #evaluation-cta {
    padding: 4.5em 0;
    background-color: var(--sand);
  }
  #evaluation-cta .container {
    position: relative;
    width: 92%;
    max-width: 73.75em;
    margin: auto;
    padding: 4.5em 1.5em;
    overflow: hidden;
    border-radius: 0.375em;
    background-color: var(--primary);
    text-align: center;
  }
  #evaluation-cta .content {
    position: relative;
    z-index: 2;
    max-width: 45em;
    margin: auto;
  }
  #evaluation-cta .topper {
    display: block;
    margin-bottom: 1.75em;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .38em;
    font-size: 0.75em;
    line-height: 1.2em;
    font-weight: 700;
  }
  #evaluation-cta h2 {
    margin: 0 auto 1.875em;
    max-width: 38.75em;
    color: var(--paper);
    font-size: min(12vw, 4.2em);
    line-height: 1.1em;
    font-weight: 400;
    letter-spacing: -0.035em;
  }
  #evaluation-cta h2 span {
    display: block;
  }
  #evaluation-cta p {
    margin: 0 auto 2.375em;
    max-width: 33em;
    color: rgba(247, 245, 241, 0.78);
    font-size: 1.25em;
    line-height: 1.55em;
    font-weight: 600;
  }
  #evaluation-cta .button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  #evaluation-cta .button-solid,
  #evaluation-cta .button-transparent {
    width: 100%;
    max-width: 20em;
    min-height: 3.5em;
    padding: 0 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 0.8125em;
    line-height: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }
  #evaluation-cta .button-solid span,
  #evaluation-cta .button-transparent span {
    margin-left: 0.625em;
  }
  #evaluation-cta .button-solid {
    background-color: var(--paper);
    color: var(--primary);
    border: 1px solid var(--paper);
  }
  #evaluation-cta .button-solid:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primaryDark);
  }
  #evaluation-cta .button-transparent {
    background-color: transparent;
    color: var(--paper);
    border: 1px solid rgba(247, 245, 241, 0.24);
  }
  #evaluation-cta .button-transparent:hover {
    background-color: rgba(247, 245, 241, 0.1);
    border-color: rgba(247, 245, 241, 0.5);
  }
  #evaluation-cta .mark {
    position: absolute;
    right: -2.875em;
    bottom: -2.875em;
    width: 13.75em;
    height: auto;
    opacity: .08;
    pointer-events: none;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #evaluation-cta {
    padding: 5.5em 0;
  }
  #evaluation-cta .container {
    padding: 5.125em 3em;
  }
  #evaluation-cta .button-group {
    flex-direction: column;
  }
  #evaluation-cta .mark {
    right: -2.125em;
    bottom: -3.625em;
    width: 16.25em;
  }
}
/* Desktop */
@media only screen and (min-width: 1300px) {
  #evaluation-cta {
    padding: 6em 0;
  }
  #evaluation-cta .container {
    max-width: 73.5em;
    padding: 5.25em 4em;
  }
  #evaluation-cta h2 {
    font-size: 3em;
  }
  #evaluation-cta p {
    font-size: 1.375em;
  }
  #evaluation-cta .mark {
    right: -1.125em;
    bottom: -3.375em;
    width: 16.25em;
  }
}
