:root {
  --f-primary: "Montserrat", sans-serif;
  --f-tertiary: "Roboto", sans-serif;
  --c-blue: #0A0082;
  --c-blue-light: #0062A1;
  --c-green: #00AA91;
  --c-green-light: #CCEEE9;
  --c-green-dark: #006657;
  --c-minth: #64C3B9;
  --c-pink: #D72864;
  --c-white: #FFFFFF;
  --c-black: #333333;
  --c-wf-primary: #4C535B;
  --c-wf-secondary: #94999F;
  --c-wf-tertiary: #ECEDEF;
  --s-borders: 0.1875rem solid var(--c-blue);
  --s-borders-bold: 0.3125rem solid var(--c-blue);
  --s-shadow: 0.8125rem 0.8125rem 0 0;
  --s-shadow-blue: var(--s-shadow) var(--c-blue);
  --s-shadow-green: var(--s-shadow) var(--c-green);
  --s-shadow-pink: var(--s-shadow) var(--c-pink);
}
@media only screen and (max-width: 43.75rem) {
  :root {
    --s-borders: 0.4285714286vw solid var(--c-blue);
    --s-borders-bold: 0.7142857143vw solid var(--c-blue);
    --s-shadow: 1.8571428571vw 1.8571428571vw 0 0;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100vh;
  color: var(--c-black);
  font: 1em/1.5 var(--f-primary);
  overflow-x: hidden;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body {
  min-height: 100vh;
  background: var(--c-white);
  contain: paint;
}
body main {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

picture {
  font-size: 0;
}

.ratp-header {
  margin: 0 auto;
  width: 100%;
}
.ratp-header h1 {
  text-align: center;
}
.ratp-header h1 picture {
  display: inline-block;
  max-width: 52.125rem;
  width: 100vw;
}
.ratp-header h1 picture img {
  height: auto;
  width: 100%;
}
.ratp-header > h2, .ratp-header > p {
  margin: 0 auto;
  max-width: 52.5rem;
  padding: 0 1.25rem;
  width: calc(100vw - 2.5rem);
}
.ratp-header > h2 {
  color: var(--c-blue);
  margin-bottom: 0.625rem;
  margin-top: 1.875rem;
}
.ratp-header > p {
  color: var(--c-black);
}
@media only screen and (max-width: 43.75rem) {
  .ratp-header > h2, .ratp-header > p {
    padding: 0 2.8571428571vw;
    width: calc(100vw - 5.7142857143vw);
  }
  .ratp-header > h2 {
    margin-bottom: 1.4285714286vw;
    margin-top: 4.2857142857vw;
  }
}

.ratp-title {
  font-family: var(--f-primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2em;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-title {
    font-size: 3.4285714286vw;
  }
}

.ratp-subtitle {
  font-family: var(--f-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2em;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-subtitle {
    font-size: 2.2857142857vw;
  }
}

.ratp-paragraph {
  font-family: var(--f-primary);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4em;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-paragraph {
    font-size: 2vw;
  }
}

.ratp-number {
  font-family: var(--f-primary);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-number {
    font-size: 5.7142857143vw;
  }
}

.ratp-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--c-blue);
  border-radius: 0.3125rem;
  color: var(--c-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 400;
  height: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 3.125rem;
  padding: 0 2rem;
  text-decoration: none;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-button {
    font-size: 2vw;
    height: 7.1428571429vw;
    min-height: 7.1428571429vw;
    padding: 0 4.5714285714vw;
  }
}

.ratp-button-circle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border-radius: 50%;
  border: var(--s-borders);
  cursor: pointer;
  color: var(--c-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 3.125rem;
  width: 3.125rem;
}
.ratp-button-circle.no-border {
  border: none;
  color: var(--c-green-light);
}
@media only screen and (max-width: 43.75rem) {
  .ratp-button-circle {
    height: 7.1428571429vw;
    min-width: 7.1428571429vw;
    width: 7.1428571429vw;
  }
}

.ratp-capsules {
  counter-reset: capsule;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 2.1875rem;
  padding: 3.125rem 0;
  max-width: 50rem;
  width: calc(100% - 2.5rem);
}
@media only screen and (max-width: 43.75rem) {
  .ratp-capsules {
    gap: 5vw;
    padding: 7.1428571429vw 0;
    width: calc(100% - 5.7142857143vw);
  }
}

.ratp-capsule {
  border: var(--s-borders);
  -webkit-box-shadow: var(--s-shadow-pink);
          box-shadow: var(--s-shadow-pink);
  counter-increment: capsule;
  margin-left: 3.75rem;
  margin: 0 0.8125rem 0 3.75rem;
  position: relative;
}
.ratp-capsule::before {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  content: counter(capsule, decimal-leading-zero);
  color: var(--c-minth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--f-tertiary);
  font-size: 2.5rem;
  font-weight: 600;
  height: 5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: -0.125rem;
  position: absolute;
  right: 100%;
  top: 0;
  width: 3.75rem;
}
.ratp-capsule .ratp-capsule--new {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-white);
  background: url("../images/new.svg?v=1") no-repeat center center;
  background-size: 100% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--f-primary);
  font-size: 1rem;
  font-weight: 500;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0.9375rem;
  position: absolute;
  pointer-events: none;
  text-transform: lowercase;
  top: -1.0625rem;
  width: 6.875rem;
}
.ratp-capsule .ratp-capsule--header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--c-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  height: 6.875rem;
  padding: 1.25rem 0.9375rem;
}
.ratp-capsule .ratp-capsule--header div {
  color: var(--c-blue);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.ratp-capsule .ratp-capsule--header div p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ratp-capsule .ratp-capsule--header .ratp-capsule--toggler {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ratp-capsule .ratp-capsule--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  padding: 0 0.9375rem 0.9375rem 0.9375rem;
  overflow: hidden;
  max-height: 15.9375rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ratp-capsule .ratp-capsule--content div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ratp-capsule .ratp-capsule--content div p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.ratp-capsule:not(.open) .ratp-capsule--header .ratp-capsule--toggler {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.ratp-capsule:not(.open) .ratp-capsule--content {
  padding: 0 0.9375rem;
  max-height: 0;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-capsule {
    margin-left: 8.5714285714vw;
    margin: 0 1.8571428571vw 0 8.5714285714vw;
  }
  .ratp-capsule::before {
    font-size: 5.7142857143vw;
    height: 11.4285714286vw;
    width: 8.5714285714vw;
  }
  .ratp-capsule .ratp-capsule--new {
    font-size: 2.2857142857vw;
    height: 4.5714285714vw;
    left: 2.1428571429vw;
    top: -2.4285714286vw;
    width: 15.7142857143vw;
  }
  .ratp-capsule .ratp-capsule--header {
    gap: 1.4285714286vw;
    height: 15.7142857143vw;
    padding: 2.8571428571vw 2.1428571429vw;
  }
  .ratp-capsule .ratp-capsule--header > picture {
    height: 10vw;
    width: 10vw;
  }
  .ratp-capsule .ratp-capsule--header > picture img {
    width: 100%;
  }
  .ratp-capsule .ratp-capsule--content {
    gap: 2.1428571429vw;
    padding: 0 2.1428571429vw 2.1428571429vw 2.1428571429vw;
    max-height: 36.4285714286vw;
  }
  .ratp-capsule .ratp-capsule--content > picture {
    height: 34.2857142857vw;
    width: 27.1428571429vw;
    min-width: 27.1428571429vw;
  }
  .ratp-capsule .ratp-capsule--content > picture img {
    width: 100%;
  }
  .ratp-capsule:not(.open) .ratp-capsule--content {
    padding: 0 2.1428571429vw;
  }
}

.ratp-challenges--header,
.ratp-challenges {
  background: var(--c-green-light);
  border: var(--s-borders);
  max-width: 50rem;
  padding: 0 1.875rem;
  position: relative;
  width: calc(100% - 2.5rem);
}
.ratp-challenges--header > .ratp-title,
.ratp-challenges > .ratp-title {
  color: var(--c-green-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.ratp-challenges--header > .ratp-title span,
.ratp-challenges > .ratp-title span {
  color: var(--c-blue);
}
@media only screen and (max-width: 43.75rem) {
  .ratp-challenges--header,
  .ratp-challenges {
    padding: 0 4.2857142857vw;
    width: calc(100% - 5.7142857143vw);
  }
}

.ratp-challenges--header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-white);
  border-bottom: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5625rem 1.875rem;
  position: sticky;
}
.ratp-challenges--header .ratp-title {
  position: relative;
}
.ratp-challenges--header .ratp-title::after {
  background: url("../images/pops.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  display: inline-block;
  height: 2.1875rem;
  position: absolute;
  left: calc(100% + 0.9375rem);
  top: -1.125rem;
  width: 1.375rem;
}
.ratp-challenges--header::before, .ratp-challenges--header::after {
  background: var(--c-green);
  bottom: 0;
  content: "";
  position: absolute;
  top: 3.125rem;
  width: 50dvw;
}
.ratp-challenges--header::before {
  right: calc(100% + 0.1875rem);
}
.ratp-challenges--header::after {
  left: calc(100% + 0.1875rem);
}
@media only screen and (max-width: 43.75rem) {
  .ratp-challenges--header {
    height: 14.2857142857vw;
    padding: 3.5714285714vw 4.2857142857vw;
  }
  .ratp-challenges--header .ratp-title::after {
    height: 5vw;
    left: calc(100% + 2.1428571429vw);
    top: -2.5714285714vw;
    width: 3.1428571429vw;
  }
  .ratp-challenges--header::before, .ratp-challenges--header::after {
    top: 7.1428571429vw;
  }
  .ratp-challenges--header::before {
    right: calc(100% + 0.4285714286vw);
  }
  .ratp-challenges--header::after {
    left: calc(100% + 0.4285714286vw);
  }
}

.ratp-challenges {
  border: var(--s-borders);
  border-top: 0;
  color: var(--c-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5625rem;
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
}
.ratp-challenges::before {
  background: var(--c-green);
  bottom: -3.3125rem;
  top: 0;
  content: "";
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100dvw;
  z-index: -1;
}
.ratp-challenges > .ratp-paragraph, .ratp-challenges > .ratp-subtitle {
  color: var(--c-blue);
  width: 100%;
}
.ratp-challenges .ratp-challenge {
  width: calc(50% - 0.8125rem);
}
.ratp-challenges .ratp-challenge:first-of-type {
  width: 100%;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-challenges {
    gap: 3.5714285714vw;
    margin-bottom: 7.1428571429vw;
    padding-bottom: 7.1428571429vw;
  }
  .ratp-challenges .ratp-challenge {
    width: calc(50% - 1.8571428571vw);
  }
}

.ratp-challenge {
  border: var(--s-borders-bold);
  -webkit-box-shadow: var(--s-shadow-blue);
          box-shadow: var(--s-shadow-blue);
  background: var(--c-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ratp-challenge .ratp-challenge--hero {
  position: relative;
}
.ratp-challenge .ratp-challenge--hero picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.ratp-challenge .ratp-challenge--hero .ratp-challenge--gift {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--c-white);
  background-image: url("../images/gift.svg");
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 0.6875rem;
  color: var(--c-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--f-primary);
  font-size: 1rem;
  font-weight: 500;
  height: 2.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 3.0625rem 0 0.625rem;
  position: absolute;
  right: 0.875rem;
  top: 0.875rem;
}
.ratp-challenge .ratp-challenge--content {
  color: var(--c-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  padding: 1.5625rem;
}
.ratp-challenge .ratp-challenge--content .ratp-paragraph {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ratp-challenge .ratp-challenge--content .ratp-button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.ratp-challenge:first-of-type {
  -webkit-box-shadow: var(--s-shadow-green);
          box-shadow: var(--s-shadow-green);
}
.ratp-challenge:first-of-type .ratp-challenge--content .ratp-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.ratp-challenge:first-of-type .ratp-challenge--content .ratp-title strong {
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ratp-challenge:first-of-type .ratp-challenge--content .ratp-title span {
  margin-left: 1.25rem;
}
@media only screen and (max-width: 43.75rem) {
  .ratp-challenge .ratp-challenge--hero picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    height: 31.4285714286vw;
    width: 100%;
  }
  .ratp-challenge .ratp-challenge--hero picture img {
    height: 100%;
    width: auto;
  }
  .ratp-challenge .ratp-challenge--hero .ratp-challenge--gift {
    background-size: auto 100%;
    border-radius: 1.5714285714vw;
    font-size: 2.2857142857vw;
    height: 5.5714285714vw;
    padding: 0 7vw 0 1.4285714286vw;
    right: 2vw;
    top: 2vw;
  }
  .ratp-challenge .ratp-challenge--content {
    gap: 3.5714285714vw;
    padding: 3.5714285714vw;
  }
  .ratp-challenge:first-of-type .ratp-challenge--hero picture {
    height: 31.4285714286vw;
    width: 100%;
  }
  .ratp-challenge:first-of-type .ratp-challenge--hero picture img {
    height: 100%;
    width: auto;
  }
  .ratp-challenge:first-of-type .ratp-challenge--content .ratp-title span {
    margin-left: 2.8571428571vw;
  }
}