@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Patrick+Hand&display=swap);
/*! minireset.css v0.0.7 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

@charset "UTF-8";
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.5;
}

.font-title, .font-element-title {
  color: #183a4e;
  text-transform: uppercase;
  font-family: "Patrick Hand", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.font-subtitle, .statement__title {
  color: #089883;
  text-transform: uppercase;
  font-family: "Patrick Hand", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.font-element-title {
  font-size: 23px;
}

.font-body, .readmore__label, .form__message, .textbox .textbox__content input,
.textbox .textbox__content textarea, .textbox .textbox__wrapper.form-select {
  color: #183a4e;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}
.font-body ul, .readmore__label ul, .form__message ul, .textbox .textbox__content input ul,
.textbox .textbox__content textarea ul, .textbox .textbox__wrapper.form-select ul {
  padding-left: 2rem;
  list-style: disc;
}
.font-body ul > li, .readmore__label ul > li, .form__message ul > li, .textbox .textbox__content input ul > li,
.textbox .textbox__content textarea ul > li, .textbox .textbox__wrapper.form-select ul > li {
  margin: 0.5rem 0;
}

.font-label {
  color: #089883;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

img.left {
  float: left;
  margin: 0 20px 20px 0;
}

img.right {
  float: right;
  margin: 0 0 20px 20px;
}

img.leftAlone {
  display: block;
  margin: 0 20px 20px 0;
}

img.rightAlone {
  display: block;
  margin: 0 0 20px 20px;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.noscroll {
  overflow-y: hidden;
}

main {
  overflow: hidden;
  flex: 1;
  color: #183a4e;
}

.container {
  max-width: calc(1000px + 4rem);
  width: 100%;
}
.container:not(.container--half) {
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.container--half {
  max-width: calc(500px + 2rem);
}

.button, .form__actions input[type=submit] {
  line-height: 25px;
  min-width: 125px;
  border-radius: 13px;
  transition: 0.15s background-color;
  cursor: pointer;
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 11px 20px 9px 20px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
}
.button[disabled], .form__actions input[disabled][type=submit] {
  opacity: 0.5;
  pointer-events: none;
}

.button--teal, .form__actions input[type=submit] {
  background-color: #089883;
}
.button--teal:hover, .form__actions input[type=submit]:hover {
  background-color: #07806e;
}

.button--navy {
  background-color: #183a4e;
}
.button--navy:hover {
  background-color: #122c3b;
}

.button--transparent {
  background-color: transparent;
  color: #183a4e;
}
.button--transparent:hover {
  background-color: transparent;
  color: #183a4e;
}

.button--large, .form__actions input[type=submit] {
  padding: 22px 50px;
}

.button--none {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  min-width: 0;
}
.button--none > img {
  display: block;
}

.button[data-note], .form__actions input[data-note][type=submit] {
  position: relative;
}
.button[data-note].button--large, .form__actions input[data-note][type=submit] {
  padding: 14px 50px 30px 50px;
}
.button[data-note]::after, .form__actions input[data-note][type=submit]::after {
  position: absolute;
  top: calc(100% - 1em - 16px);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.75rem;
  content: attr(data-note);
  text-transform: none;
  opacity: 0.75;
  width: 100%;
  line-height: 1;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 25px 0;
  border-bottom: 2px solid #d1d8dc;
  outline: none;
}
.accordion__header:focus {
  border-bottom: 2px solid #089883;
}

.accordion__label {
  font-size: 16px;
  font-weight: 700;
  color: #089883;
  margin-top: 5px;
}

.accordion__toggle {
  transition: 0.3s transform;
  transform-origin: center;
}

.accordion__item .accordion__content {
  display: none;
}
.accordion__item.accordion__item--open .accordion__content {
  display: block;
}
.accordion__item.accordion__item--open .accordion__toggle {
  transform: rotate(180deg);
}

.accordion__content {
  padding-top: 20px;
}

.statement {
  position: relative;
}
.statement .modal__content .textbox {
  margin-bottom: 50px;
}
.statement .modal__content .button, .statement .modal__content .form__actions input[type=submit], .form__actions .statement .modal__content input[type=submit] {
  width: 100%;
}
.statement.statement--review .statement__title {
  color: #183a4e;
}
.statement.statement--review .statement__evaluations {
  justify-content: flex-end;
}
.statement.statement--review .statement__button {
  border: 5px solid #183a4e;
}
.statement.statement--review .statement__button.statement__button--selected {
  background-color: #183a4e;
  color: white;
}
.statement.statement--review .statement__content {
  color: #183a4e;
  padding-right: 0;
}
.statement.statement--review .statement__buttons {
  display: none;
}
.statement.statement--review .statement__extras {
  flex-direction: row;
  gap: 5px;
}
.statement.statement--review .statement__extras .statement__extra.extra:not(:first-child) {
  margin-top: 0;
}
.statement.statement--review .statement__extras .statement__extra.extra.statement__extra--hint {
  position: static;
}
.statement.statement--review .statement__extras .extra__info {
  display: none;
}

.statement__content {
  width: 100%;
  color: white;
  margin-bottom: 50px;
}

.statement__button {
  line-height: 60px;
  border: 5px solid #aad7d8;
  border-radius: 30px;
  width: 145px;
  font-family: "Patrick Hand", sans-serif;
  font-size: 18px;
  color: #183a4e;
  cursor: pointer;
  background: white;
  text-transform: uppercase;
  background-color: white;
  outline: none;
}
.statement__button:focus {
  box-shadow: 0 0 0 2px #089883;
}
.statement__button.statement__button--selected {
  background-color: #aad7d8;
  color: #183a4e;
}

.statement__title {
  margin-bottom: 30px;
  color: white;
}

.statement__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.statement__evaluations {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.statement__buttons {
  margin: 50px 0 80px 0;
  display: flex;
  justify-content: space-between;
}

.statement__next {
  margin-left: auto;
}

.statement__prev {
  margin-right: auto;
}

.statement__extras {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 10px;
}

.statement__extra.extra {
  display: flex;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  align-items: center;
  padding: 0;
}
.statement__extra.extra:not(:first-child) {
  margin-top: 20px;
}
.statement__extra.extra.statement__extra--hint {
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
}
.statement__extra.extra .extra__icon {
  width: 75px;
  height: 75px;
}
.statement__extra.extra .extra__info {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.statement__extra.extra .extra__title {
  margin-bottom: 5px;
  text-align: left;
}
.statement__extra.extra .extra__text {
  color: white;
  text-align: left;
}

.attachments__header .attachments__back,
.attachments__header .comments__back,
.comments__header .attachments__back,
.comments__header .comments__back {
  cursor: pointer;
  margin-left: auto;
}

.attachments__footer,
.comments__footer {
  margin-top: 75px;
  display: flex;
  justify-content: flex-end;
}
.attachments__footer .comments__add,
.attachments__footer .attachments__add,
.comments__footer .comments__add,
.comments__footer .attachments__add {
  cursor: pointer;
}

.attachments__footer {
  margin-top: 35px;
}

.comments__item.comment {
  background-color: #dde2e5;
  border-radius: 30px;
  position: relative;
  padding: 25px 35px;
  color: #183a4e;
}
.comments__item.comment:not(:first-child) {
  margin-top: 60px;
}
.comments__item.comment:nth-child(even) .comment__triangle {
  right: auto;
  left: 40px;
}
.comments__item.comment .comment__text {
  margin-bottom: 20px;
  color: #183a4e;
}
.comments__item.comment .comment__name {
  font-weight: 600;
}
.comments__item.comment .comment__triangle {
  position: absolute;
  top: calc(100% - 1px);
  right: 40px;
}

.attachments__item.attachment {
  background-color: #dde2e5;
  border-radius: 30px;
  padding: 25px 35px;
  color: #183a4e;
  display: flex;
  align-items: center;
}
.attachments__item.attachment:not(:first-child) {
  margin-top: 30px;
}
.attachments__item.attachment .attachment__link {
  font-weight: 600;
  margin-left: auto;
  margin-right: 30px;
  cursor: pointer;
  text-decoration: none;
}
.attachments__item.attachment .attachment__link:hover {
  text-decoration: underline;
}
.attachments__item.attachment .attachment__delete {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
}
.attachments__item.attachment .attachment__delete img {
  width: 30px;
}

.statement .modal__content .attachments__filepicker {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.statement .modal__content .attachments__filepicker .textbox {
  margin-bottom: 0;
}
.statement .modal__content .attachments__filepicker p {
  font-size: 14px;
}

.textbox {
  display: flex;
  flex-direction: column;
}
.textbox.textbox--error .textbox__wrapper {
  border-color: #ce554a;
  background-color: rgba(206, 85, 74, 0.25);
}
.textbox.textbox--multiline textarea {
  min-height: 150px;
}
.textbox.textbox--icon .textbox__wrapper {
  padding-right: 70px;
}
.textbox .textbox__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transform: translateY(-50%);
}
.textbox .textbox__label {
  margin-bottom: 20px;
  display: block;
  font-size: 20px;
  color: #183a4e;
  flex: 1;
}
.textbox .textbox__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #979797;
  padding: 25px 15px;
  transition: 0.15s border;
  position: relative;
}
.textbox .textbox__wrapper:focus-within {
  border: 1px solid #183a4e;
}
.textbox .textbox__wrapper.form-select[disabled] {
  opacity: 0.5;
}
.textbox .textbox__wrapper.form-select:invalid {
  color: gray;
}
.textbox .textbox__content {
  width: 100%;
  overflow: hidden;
}
.textbox .textbox__content input,
.textbox .textbox__content textarea {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  padding: 0;
  width: 100%;
  outline: none;
}
.textbox .textbox__content input[disabled],
.textbox .textbox__content textarea[disabled] {
  opacity: 0.5;
}
.textbox .textbox__value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.textbox .textbox__edit {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #089883;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  padding: 0;
  margin-left: 10px;
}
.textbox .textbox__error {
  color: #ce554a;
  font-size: 17px;
  margin: 10px 0 0 15px;
}

.pagination__controls {
  display: flex;
  justify-content: center;
  margin-top: 120px;
  align-items: center;
}

.pagination__button {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
  outline: none;
  opacity: 0.5;
  transition: 0.15s opacity;
}
.pagination__button.pagination__button--active {
  opacity: 1;
  cursor: pointer;
}

.pagination__current {
  font-family: "Patrick Hand", sans-serif;
  margin: 0 35px;
  font-size: 24px;
  color: #183a4e;
}

.newsletter {
  position: relative;
  padding: 40px;
  margin: 50px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #183a4e;
}
.newsletter .newsletter__content {
  position: relative;
  z-index: 1;
  color: #183a4e;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.newsletter .newsletter__heading {
  color: #183a4e;
  font-size: 36px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.newsletter__form .newsletter__form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.newsletter__form .newsletter__form-fields .form-group {
  width: 100%;
  max-width: unset;
}
.newsletter__form .newsletter__form-fields input {
  padding: 10px;
  font-size: 14px;
  color: #183a4e;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  min-width: 300px;
}
.newsletter__form .newsletter__submit {
  font-size: 14px;
  font-weight: 600;
}

.header {
  display: flex;
  justify-content: space-between;
  background-color: white;
  z-index: 1000;
  padding: 10px;
  position: sticky;
  top: 0;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.05);
}

.header__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__actions {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  order: 2;
}
.header__actions > *:not(:first-child) {
  margin-left: 10px;
}

.header__navigation {
  order: 1;
}

.header__menu {
  display: flex;
  align-items: center;
  position: relative;
}
.header__menu > svg {
  position: absolute;
  pointer-events: none;
  top: 5px;
  right: 0;
}
.header__menu.header__menu--active button img:nth-child(2) {
  display: inline-block;
}
.header__menu.header__menu--active button img:nth-child(1) {
  display: none;
}
.header__menu.header__menu--active + .header__right {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__menu.header__menu--active > svg {
  display: none;
}
.header__menu button {
  outline: none;
  border: none;
  background: transparent;
}
.header__menu button img:nth-child(2) {
  display: none;
}

.header__profile {
  position: relative;
}
.header__profile.header__profile--unread {
  padding-right: 43px;
}
.header__profile svg {
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 20px;
}

.navigation {
  display: flex;
  flex-direction: column;
}

.navigation__dropdown {
  pointer-events: none;
  background-color: white;
  visibility: hidden;
  opacity: 0;
  display: none;
  padding-left: 30px;
}

.navigation__link {
  position: relative;
}
.navigation__link.navigation__link--current {
  color: #089883;
}
.navigation__link.navigation__link--current a {
  color: #089883;
}
.navigation__link.navigation__link--current .navigation__dropdown a {
  color: #183a4e;
}
.navigation__link a {
  display: flex;
  color: #183a4e;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  white-space: nowrap;
  font-weight: 600;
}
.navigation__link a img {
  margin-left: auto;
  transition: 0.15s transform;
  padding: 5px;
}
.navigation__link.navigation__link--active .navigation__dropdown {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.navigation__link.navigation__link--active a img {
  transform: rotate(180deg);
}

.hero {
  background-size: cover;
  background-position: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 150px;
}

.hero__wave {
  line-height: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100vw;
}
.hero__wave object {
  width: 100vw;
  height: 100px;
}

.hero__title {
  width: 100%;
  color: white;
  font-size: clamp(1.75rem, 0.9625rem + 3.5vw, 2.8rem);
  font-family: "Patrick Hand", sans-serif;
  text-transform: uppercase;
  overflow: visible;
  position: relative;
  isolation: isolate;
  margin: 25% 0;
}
.hero__title::after {
  content: "";
  width: 130%;
  display: block;
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: url(/images/cloud.png);
  background-position: center;
  background-size: contain;
  z-index: -10;
  padding-bottom: calc(70.7% + (0.707 * 30%));
}
.hero__title.resource::after, .hero__title.notice::after {
  background: none;
}

.hero__actions {
  margin-top: 100px;
}
.hero__actions > .button:not(:first-child), .form__actions .hero__actions > input[type=submit]:not(:first-child) {
  margin-left: 12px;
}

.hero__subtitle {
  color: white;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  isolation: isolate;
  margin-bottom: 15px;
}
.hero__subtitle .resource-type {
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer {
  width: 100%;
  color: white;
}

.footer__wave {
  line-height: 0;
  overflow: hidden;
}
.footer__wave object {
  width: 300vw;
  transform: translateX(-35%);
  height: auto;
  margin-bottom: -5px;
}

.footer__wrapper {
  background-color: #183a4e;
  padding: 2rem 0;
}
.footer__wrapper .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer__main {
  width: 100%;
}

.footer__logo {
  width: 100%;
  display: block;
}
.footer__logo img {
  display: block;
}

.footer__info {
  margin: 25px 0;
}

.footer__contact {
  margin: 25px 0;
}
.footer__contact span {
  display: block;
}
.footer__contact span:not(:last-child) {
  margin-bottom: 5px;
}
.footer__contact span:first-child {
  color: #09b098;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer__contact a {
  color: white;
  text-decoration: none;
}
.footer__contact a:hover {
  text-decoration: underline;
}

.footer__quicklinks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.footer__quicklinks span {
  color: #09b098;
  text-transform: uppercase;
  font-weight: 500;
  grid-column: 1/3;
}
.footer__quicklinks a {
  color: white;
  text-decoration: none;
}
.footer__quicklinks a:hover {
  text-decoration: underline;
}

.footer__tto {
  margin-top: 40px;
}

.percentage {
  width: 140px;
  height: 134px;
  background-image: url(/images/progress-blob.svg);
  background-size: contain;
  background-position: center;
  overflow: hidden;
}
.percentage.percentage--hint .percentage__oval {
  background-color: transparent;
}
.percentage.percentage--hint .percentage__oval button,
.percentage.percentage--hint .percentage__oval button img {
  width: 100%;
}
.percentage.percentage--small {
  width: 112px;
  height: 107px;
}
.percentage.percentage--small .percentage__oval {
  width: 82px;
  height: 82px;
  margin: 13px auto auto 17px;
}
.percentage.percentage--small .percentage__value {
  font-size: 21px;
}
.percentage.percentage--small .percentage__subtext {
  font-size: 14px;
}
.percentage.percentage--complete {
  background-image: url(/images/progress-blob-complete.svg);
}
.percentage.percentage--complete .percentage__star + .percentage__subtext {
  margin-top: 5px;
}
.percentage.percentage--complete .percentage__oval {
  background-color: transparent;
}
.percentage.percentage--complete .percentage__subtext {
  color: white;
  font-size: 20px;
}
.percentage.percentage--complete .percentage__link {
  color: white;
}
.percentage.percentage--complete.percentage--small .percentage__subtext {
  font-size: 16px;
}

.percentage__oval {
  width: 102px;
  height: 102px;
  border-radius: 100px;
  background-color: white;
  margin: 18px auto auto 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.percentage__value {
  font-family: "Patrick Hand", sans-serif;
  font-size: 30px;
  color: #183a4e;
  line-height: 1;
}

.percentage__subtext {
  font-family: "Patrick Hand", sans-serif;
  font-size: 18px;
  color: #183a4e;
  text-transform: uppercase;
}

.percentage__link {
  color: #089883;
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.modal__box {
  position: relative;
  border: 5px solid #089883;
  border-radius: 55px;
  min-height: min(420px, 80vh);
  padding: 30px 40px;
  background: white;
  width: 770px;
  max-height: 80vh;
  max-width: calc(100vw - 80px);
  overflow: visible;
}

.modal__content {
  overflow-y: auto;
  max-height: calc(80vh - 100px);
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: center;
  transform: scale(0.5) translate(75%, -75%);
  cursor: pointer;
  outline: none;
}
.modal__close:focus {
  -webkit-animation: wiggle 0.3s;
          animation: wiggle 0.3s;
}

.modal__header {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
.modal__header .modal__icon {
  height: 100px;
  margin-right: 30px;
}
.modal__header .modal__title {
  color: #183a4e;
}

@-webkit-keyframes wiggle {
  from {
    transform: translate(50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(50%, -50%) rotate(-10deg);
  }
  50% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  75% {
    transform: translate(50%, -50%) rotate(10deg);
  }
  to {
    transform: translate(50%, -50%) rotate(0deg);
  }
}

@keyframes wiggle {
  from {
    transform: translate(50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(50%, -50%) rotate(-10deg);
  }
  50% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  75% {
    transform: translate(50%, -50%) rotate(10deg);
  }
  to {
    transform: translate(50%, -50%) rotate(0deg);
  }
}
.form {
  max-width: 650px;
  border: 20px solid #183a4e;
  border-radius: 50px;
  background-color: white;
  padding: 60px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.form__message {
  margin-bottom: 20px;
}

.commitment__title,
.commitment__text {
  margin-bottom: 50px;
}

.commitment__acceptance {
  font-weight: 600;
}

.commitment__accept {
  border: 3px solid #183a4e;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background-color: transparent;
  flex-shrink: 0;
  cursor: pointer;
}

.related-elements__container {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.related-elements__container .resource__card {
  width: 100%;
}

.related-elements__title {
  font-family: "Patrick Hand", sans-serif;
  margin-bottom: 45px;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: 0.42px;
  color: #183a4e;
}

.page {
  padding: 60px 0;
}

.buildingblock__note {
  padding: 15px;
  background-color: #089883;
  color: white;
  display: flex;
  justify-content: space-between;
}
.buildingblock__note a {
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.buildingblock__note a:hover {
  text-decoration: underline;
}

.buildingblock__header {
  display: flex;
  position: relative;
  flex-direction: column;
}

.buildingblock__image {
  width: 100%;
}

.buildingblock__info {
  width: 100%;
  align-self: center;
  padding: 0 1.5rem;
  margin-top: 30px;
}

.buildingblock__summary {
  margin: 24px 0;
}

.buildingblock__back {
  display: flex;
  font-size: 15px;
  color: #089883;
  font-weight: 600;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 30px;
}
.buildingblock__back:hover {
  text-decoration: underline;
}
.buildingblock__back img {
  margin-right: 15px;
}

.buildingblock__percentage {
  position: absolute;
}

.buildingblock__main {
  padding: 60px 0;
}

.buildingblock__readmore {
  display: block;
  overflow: hidden;
}
.buildingblock__readmore.buildingblock__readmore--collapsed {
  display: none;
}

.buildingblock__intro.intro {
  margin-bottom: 60px;
}
.buildingblock__intro.intro .intro__title {
  margin-bottom: 40px;
}
.buildingblock__intro.intro .intro__content {
  margin-bottom: 30px;
}
.buildingblock__intro.intro .intro__images {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}
.buildingblock__intro.intro .intro__images svg {
  display: block;
  width: 70%;
}

.buildingblock__messages.messages {
  margin-top: 60px;
}
.buildingblock__messages.messages .messages__title {
  margin-bottom: 40px;
}
.buildingblock__messages.messages .messages__content {
  margin-bottom: 30px;
}

.buildingblock__facts.facts {
  margin-top: 60px;
}
.buildingblock__facts.facts .facts__title {
  margin-bottom: 40px;
}
.buildingblock__facts.facts .facts__content {
  margin-bottom: 30px;
}

.buildingblock__fullimage {
  width: 100%;
  margin: 60px 0;
}

.buildingblock__principles.principles .principles__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
}
.buildingblock__principles.principles .principles__item {
  border: 7px solid var(--color);
  border-radius: 25px;
  padding: 30px 20px;
}
.buildingblock__principles.principles .principles__item b {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 20px;
  display: block;
}
.buildingblock__principles.principles .principles__title {
  margin-bottom: 40px;
}

.buildingblock__outro.outro {
  margin-top: 60px;
}
.buildingblock__outro.outro .outro__title {
  margin-bottom: 40px;
}
.buildingblock__outro.outro .outro__content {
  margin-bottom: 30px;
}

.buildingblock__progress {
  padding: 60px 0;
}
.buildingblock__progress .progress__percentage .percentage {
  margin: 0 auto;
}
.buildingblock__progress .progress__title {
  margin: 20px 0;
  text-align: center;
}
.buildingblock__progress .progress__text {
  text-align: center;
}
.buildingblock__progress .progress__subblocks {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  flex-direction: column;
}

.blockcard {
  border: 7px solid var(--color);
  border-radius: 25px;
  padding: 20px 25px;
  color: #183a4e;
  display: flex;
  flex-direction: column;
}
.blockcard.blockcard--compact .blockcard__summary {
  display: none;
}
.blockcard .blockcard__complete {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20px, -30px);
}
.blockcard .blockcard__progress {
  font-weight: 700;
  color: #089883;
  font-size: 14px;
}
.blockcard .blockcard__title {
  font-weight: 600;
  font-size: 21px;
  text-transform: uppercase;
  margin-top: 25px !important;
}
.blockcard .blockcard__subtitle {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 25px;
}
.blockcard .blockcard__summary {
  margin-bottom: 25px;
}
.blockcard .blockcard__link {
  width: 100%;
  margin-top: auto;
}

.buildingblock__summary.summary {
  margin: 0;
}
.buildingblock__summary.summary .summary__wave {
  height: 60px;
}
.buildingblock__summary.summary .summary__wave svg {
  width: 100%;
  height: 100%;
}
.buildingblock__summary.summary .summary__back {
  display: flex;
  font-size: 15px;
  color: #089883;
  font-weight: 600;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
}
.buildingblock__summary.summary .summary__back:hover {
  text-decoration: underline;
}
.buildingblock__summary.summary .summary__back img {
  margin-right: 15px;
}
.buildingblock__summary.summary .summary__header {
  position: relative;
  padding-bottom: 200px;
  padding-top: 40px;
}
.buildingblock__summary.summary .summary__percentage {
  margin-top: 30px;
}
.buildingblock__summary.summary .summary__title {
  margin-top: 30px;
}
.buildingblock__summary.summary .summary__footer {
  margin: 40px 0 80px 0;
}
.buildingblock__summary.summary .statement {
  padding: 35px 0;
  border-bottom: 2px solid #d1d8dc;
  margin-bottom: 10px;
}

.buildingblock__subblock.subblock {
  margin: 0;
}
.buildingblock__subblock.subblock .subblock__wave {
  height: 120px;
}
.buildingblock__subblock.subblock .subblock__wave svg {
  width: 100%;
  height: 100%;
}
.buildingblock__subblock.subblock .subblock__back {
  display: flex;
  font-size: 15px;
  color: #089883;
  font-weight: 600;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
}
.buildingblock__subblock.subblock .subblock__back:hover {
  text-decoration: underline;
}
.buildingblock__subblock.subblock .subblock__back:last-child {
  margin: 120px 0;
}
.buildingblock__subblock.subblock .subblock__back img {
  margin-right: 15px;
}
.buildingblock__subblock.subblock .subblock__header {
  position: relative;
  padding-top: 40px;
}
.buildingblock__subblock.subblock .subblock__title {
  margin-top: 80px;
}
.buildingblock__subblock.subblock .subblock__scroll {
  margin-top: 20px;
}
.buildingblock__subblock.subblock .subblock__statements.statements {
  padding: 160px 0 220px 0;
  background-image: url(/images/buildingblock/wave-background.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.buildingblock__subblock.subblock .subblock__statements.statements .statements__hint {
  margin-bottom: 20px;
}
.buildingblock__subblock.subblock .subblock__statements.statements .statements__title {
  color: white;
  margin-bottom: 35px;
}
.buildingblock__subblock.subblock .subblock__statements.statements .statements__text {
  color: white;
}
.buildingblock__subblock.subblock .subblock__statements.statements .statements__overview {
  display: flex;
  gap: 10px;
  margin: 50px 0 100px 0;
  flex-wrap: wrap;
}
.buildingblock__subblock.subblock .subblock__statements.statements .statementstatus {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  outline: none;
  padding: 0;
}
.buildingblock__subblock.subblock .subblock__related.related {
  padding: 60px 0;
}
.buildingblock__subblock.subblock .subblock__related.related .related__title {
  text-align: center;
  margin-bottom: 30px;
}
.buildingblock__subblock.subblock .subblock__related.related .related__text {
  text-align: center;
  margin-bottom: 40px;
}
.buildingblock__subblock.subblock .subblock__related.related .related__subblocks {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.buildingblock__subblock.subblock .subblock__help.help {
  padding: 60px 0;
  text-align: center;
}
.buildingblock__subblock.subblock .subblock__help.help .help__title {
  text-align: center;
  margin-bottom: 30px;
}
.buildingblock__subblock.subblock .subblock__help.help .help__text {
  text-align: center;
  margin-bottom: 40px;
}

.buildingblock__reflection {
  margin: 70px 0 100px 0;
}
.buildingblock__reflection .reflection__items .textbox:not(:first-child) {
  margin-top: 70px;
}
.buildingblock__reflection .reflection__actions {
  margin-top: 70px;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

div.dashboard {
  padding: 60px 0;
}

.certificate__title,
.dashboard__title {
  margin-bottom: 40px;
  text-align: center;
}

.certificate__content,
.dashboard__content {
  text-align: center;
}

.certificate__content {
  margin-bottom: 40px;
}

.certificate__title {
  margin-top: 60px;
}

.certificate__container {
  display: flex;
  flex-direction: column;
}

.certificate__link {
  display: block;
  align-self: center;
}
.certificate__link img {
  display: block;
}

.dashboard__blocks {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 16px;
  margin-top: 100px;
}

.block {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color);
  background-image: url(/images/bg-texture-transparent.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  padding: 85px 25px;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.block.block--compact {
  padding: 25px;
  padding-top: 55px;
}
.block .block__percentage {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10px, -25px);
  z-index: 100;
}
.block .block__image {
  width: 50%;
  margin: 0 auto 15px auto;
}
.block .block__image svg {
  width: 100%;
}
.block .block__title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.block .block__subtitle {
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.block .block__button {
  width: 100%;
  font-weight: 600;
  margin-top: 30px;
}

.profile {
  padding: 60px 0;
}

.notifications__title,
.profile__title {
  margin-bottom: 30px;
  text-align: center;
}

.notifications__text,
.profile__text {
  margin-bottom: 100px;
  text-align: center;
}

.profile__contact,
.profile__els {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 40px;
  margin: 30px 0;
}

.notifications {
  padding: 60px 0;
}

.notifications__indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.notifications__list {
  max-width: 650px;
  margin: 0 auto;
}

.notifications__item.notification {
  background-color: #dde2e5;
  border-radius: 30px;
  position: relative;
  padding: 25px 35px;
}
.notifications__item.notification:not(:first-child) {
  margin-top: 80px;
}
.notifications__item.notification:nth-child(even) .notification__triangle {
  right: auto;
  left: 40px;
}
.notifications__item.notification.notification--new .notification__status {
  color: #ce554a;
}
.notifications__item.notification .notification__info {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  color: #3f8a8b;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.notifications__item.notification .notification__title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #183a4e;
}
.notifications__item.notification .notification__content {
  margin-bottom: 20px;
  color: #183a4e;
}
.notifications__item.notification .notification__triangle {
  position: absolute;
  top: calc(100% - 1px);
  right: 40px;
}

.signup {
  padding: 60px 0;
}

.signup__text {
  margin-bottom: 60px;
}

.signup__form {
  max-width: 650px;
}

.signup__items {
  display: flex;
  margin: 80px 0 60px 0;
}

.signup__item {
  font-family: "Patrick Hand", sans-serif;
  color: #183a4e;
  font-size: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
}
.signup__item:not(:last-child) {
  margin-right: 20px;
}
.signup__item.signup__item--active span {
  display: block;
}
.signup__item.signup__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.signup__item svg {
  margin-right: 15px;
}

.signup__step.step .step__title {
  margin-bottom: 60px;
}
.signup__step.step .step__content {
  margin-bottom: 50px;
}
.signup__step.step .step__content .textbox:not(:last-child) {
  margin-bottom: 40px;
}
.signup__step.step .step__button {
  width: 100%;
}

.login {
  padding: 60px 0;
  margin-top: -20vh;
  position: relative;
  z-index: 100;
}

.login__form {
  max-width: 650px;
  border: 10px solid #183a4e;
  border-radius: 25px;
  background-color: white;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.login__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.login__link {
  color: #089883;
}
.login__link:visited {
  color: #089883;
}

.login__content {
  margin-bottom: 50px;
}
.login__content .textbox:not(:last-child) {
  margin-bottom: 40px;
}

.login__button {
  width: 100%;
}

.login__forgot {
  display: inline-block;
  align-self: center;
  margin: 20px auto 0 auto;
}

.resources-content {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 27px;
}

.resources {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.resources__container .pagination__controls {
  margin-top: 60px;
  margin-bottom: 80px;
}

.filter {
  background-color: #ecf0f1;
  margin-bottom: 25px;
  padding: 20px;
}
.filter .filter__header {
  text-transform: uppercase;
  font-family: "Patrick Hand", sans-serif;
  color: #183a4e;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.44px;
  margin-bottom: 15px;
}
.filter .filter__header .filter__header-title {
  display: inline-block;
}
.filter .filter__content-clearSelected {
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: #089883;
  font-weight: 700;
  margin-bottom: 15px;
}

.resource__card {
  border: 1px solid #183a4e;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Placeholder style, I guess */
}
.resource__card .resource__card-imgholder {
  background: #d1d8dc;
  height: 220px;
  margin-bottom: 10px;
}
.resource__card .resource__card-content {
  flex: 1;
}
.resource__card .resource__card-content .resource__card-type {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  color: #183a4e;
  padding-bottom: 15px;
}
.resource__card .resource__card-content .resource__card-type span {
  color: #58595b;
  font-weight: 500;
}
.resource__card .resource__card-content .resource__card-type span::before {
  content: "•";
  margin: 0 5px;
  display: inline-block;
}
.resource__card .resource__card-content .resource__card-title {
  font-family: "Patrick Hand", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #183a4e;
  text-transform: uppercase;
}
.resource__card .resource__card-moreinfo {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #089883;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
  text-decoration: none;
  letter-spacing: 0.25px;
}

.filter__content-block:not(:last-child),
.filter__content-resourceType:not(:last-child) {
  margin-bottom: 15px;
}

.checkbox .checkbox-input:not(:checked), .checkbox .checkbox-input:checked {
  position: absolute;
  left: -9999px;
}
.checkbox .checkbox-input:not(:checked) + .checkbox-label::after {
  opacity: 0;
}
.checkbox .checkbox-label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
}
.checkbox .checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #183a4e;
  background: white;
}
.checkbox .checkbox-label::after {
  content: url(/images/filter-select.svg);
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 18px;
  line-height: 0.8;
  transition: all 0.1s;
  transform-origin: center;
}

.resource-page-hero {
  background-color: #089883;
}

.resource-content {
  margin: 50px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0.31px;
  color: #183a4e;
}
.resource-content .download {
  margin-top: 30px;
}
.resource-content .download-link {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #089883;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.noticeboard {
  padding: 60px 0;
}

.notice__card {
  border: 1px solid #183a4e;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.notice__card-imgholder {
  background: #d1d8dc;
  height: 220px;
  margin-bottom: 10px;
}
.notice__card .notice__card-content {
  flex: 1;
}
.notice__card .notice__card-content .notice__card-date {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  color: #183a4e;
  padding-bottom: 15px;
}
.notice__card .notice__card-content .notice__card-title {
  font-family: "Patrick Hand", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #183a4e;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.notice__card .notice__card-moreinfo {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #089883;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
  text-decoration: none;
  letter-spacing: 0.25px;
}

.notices__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 25px;
}

.noticeboard__toptext {
  margin-bottom: 30px;
}

.notice-article-content {
  margin: 50px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0.31px;
  color: #183a4e;
}

.notice-article-hero {
  background-color: #089883;
}

.contact {
  padding: 60px 0;
}
.contact .container + .container {
  margin-top: 60px;
}

.hpfield {
  opacity: 0;
  position: absolute;
  left: 10000em;
}

.contact__wrapper {
  max-width: 650px;
}

.contact__message {
  padding: 20px 30px;
  border: 1px solid #183a4e;
}
.contact__message.contact__message--good {
  border: 1px solid #089883;
  background: #edfefc;
}
.contact__message.contact__message--bad {
  border: 1px solid #ce554a;
  background: #efc6c2;
}

.contact__form .textbox {
  margin-bottom: 50px;
}
.contact__form button {
  width: 100%;
}
.contact__form .honeypotfield,
.contact__form .textbox:first-child {
  position: absolute;
  left: -10000em;
  opacity: 0;
}

.contact__title {
  margin-bottom: 20px;
}

.contact__text {
  margin-bottom: 40px;
}

.contact__option + .contact__option {
  margin-top: 20px;
}
.contact__option span {
  font-size: 20px;
}
.contact__option a {
  display: block;
  font-size: 28px;
  color: #089883;
  text-decoration: none;
}
.contact__option a:hover {
  text-decoration: underline;
}

.overallreflection {
  margin: 70px 0 100px 0;
}
.overallreflection .overallreflection__content {
  margin-bottom: 50px;
}
.overallreflection .overallreflection__items .textbox:not(:first-child) {
  margin-top: 70px;
}
.overallreflection .overallreflection__actions {
  margin-top: 70px;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.app__elements__textimageelement + .app__elements__textimageelement {
  margin-top: -50px;
}

.textimage {
  padding: 60px 0;
}
.textimage.textimage--inverted .textimage__content {
  order: 2;
}
.textimage.textimage--inverted .textimage__image {
  order: 1;
}
.textimage.textimage--inverted .textimage__image *[id^=clip] {
  transform: none;
}

.textimage__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.textimage__content {
  width: 100%;
  color: #183a4e;
  order: 2;
}

.textimage__image {
  width: 100%;
  order: 1;
  margin-bottom: 20px;
}
.textimage__image *[id^=clip] {
  transform: rotateY(180deg);
  transform-origin: center;
}

.textimage__title {
  margin-bottom: 10px;
}

.textimage__subtitle {
  margin-bottom: 20px;
}

.textimage__text {
  margin-top: 20px;
}

.textimage__link {
  margin-top: 20px;
}

.cta {
  background-color: #183a4e;
  background-image: url(/images/cross-pattern.png);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.cta__title {
  text-align: center;
  color: white;
}

.cta__text {
  margin: 30px 0;
  text-align: center;
  color: white;
}

.imagecta {
  background-size: cover;
  background-position: center;
}

.imagecta__image {
  display: block;
}

.imagecta__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url(/images/watercolor-blob.png);
  background-size: 1000px;
  background-position: center;
}

.imagecta__content {
  text-align: center;
  color: white;
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 60px 0;
}

.imagecta__title {
  line-height: 1.2;
  color: white;
}

.imagecta__text {
  margin: 30px 0;
  color: white;
}

.partners {
  padding: 60px 0;
}

.partners__title {
  font-family: "Patrick Hand", sans-serif;
  color: #183a4e;
  font-size: 23px;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.partners__item {
  height: 45px;
}

.readmore {
  padding: 60px 0;
}
.readmore.readmore--collapsed .readmore__more {
  display: none;
}

.readmore__label {
  font-weight: 600;
  color: #089883;
  margin-bottom: 15px;
}

.readmore__title {
  margin-bottom: 25px;
}

.readmore__more {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}

.readmore__toggle {
  margin-top: 25px;
}

.steps {
  background-color: #3f8a8b;
  background-image: url(/images/cross-pattern-teal.png);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  text-align: center;
}

.steps__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.steps__title {
  font-family: "Patrick Hand", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.steps__text {
  margin-top: 20px;
}

.steps__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 40px;
}

.steps__step {
  text-align: center;
}
.steps__step img {
  display: block;
  height: 90px;
  margin: 0 auto 20px auto;
}

.blobs {
  padding: 60px 0;
}

.blobs__container {
  display: grid;
  grid-template-columns: 1fr;
}

.blobs__left,
.blobs__right {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 250%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 1.5rem;
}

.blobs__left {
  background-image: url(/images/blob-teal.png);
}

.blobs__right {
  background-image: url(/images/blob-navy.png);
}

.blobs__title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.blobs__content {
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.blobs__button.button--navy {
  max-width: 260px;
  padding: 22px 25px;
}

.card__element-container {
  margin: 25px 0;
}
.card__element-container .card__element {
  border: 7px solid #183a4e;
  border-radius: 25px;
  padding: 25px;
  margin: 24px 0;
}
.card__element-container .card__element .card__element-title {
  padding-top: 40px;
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.38px;
  text-transform: uppercase;
  font-weight: 600;
  color: #183a4e;
  margin-bottom: 20px;
}
.card__element-container .card__element .card__element-content {
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  line-height: 25px;
  letter-spacing: 0.31px;
  color: #183a4e;
}

.full-width-img {
  width: 100vw;
  margin: 50px 0;
}

.weave__element {
  padding: 130px 0;
}
.weave__element .weave__element-title {
  font-family: "Patrick Hand", sans-serif;
  font-size: 40px;
  line-height: 68px;
  letter-spacing: 0.73px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
.weave__element .weave__element-twoCols .weave__element-leftCol,
.weave__element .weave__element-twoCols .weave__element-rightCol {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.31px;
  color: white;
}
.weave__element .weave__element-oneCol {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.31px;
  color: white;
}

.buildingblocks {
  padding: 60px 0;
}

.buildingblocks__container {
  text-align: center;
}

.buildingblocks__title {
  margin-bottom: 35px;
}

.buildingblocks__text {
  margin-bottom: 20px;
}

.buildingblocks__link {
  margin-bottom: 75px;
}

.buildingblocks__slider.slider {
  overflow: visible;
  text-align: left;
}
.buildingblocks__slider.slider .slider__wrapper {
  position: relative;
}
.buildingblocks__slider.slider .slider__swiper .swiper-container {
  overflow: visible;
}
.buildingblocks__slider.slider .slider__swiper .swiper-slide {
  opacity: 0.25;
  transition: 0.15s opacity;
}
.buildingblocks__slider.slider .slider__swiper .swiper-slide-active {
  opacity: 1;
}
.buildingblocks__slider.slider .slider__controls .slider__button {
  position: absolute;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.15s opacity;
  z-index: 100;
}
.buildingblocks__slider.slider .slider__controls .slider__button:hover {
  opacity: 1;
}
.buildingblocks__slider.slider .slider__controls .slider__button--prev {
  left: -100px;
}
.buildingblocks__slider.slider .slider__controls .slider__button--next {
  right: -100px;
}

.content {
  padding: 60px 0;
}

.content__title {
  margin-bottom: 20px;
}
.content__title + .content__subtitle {
  margin-top: -10px;
}

.content__subtitle {
  margin-bottom: 20px;
  color: #089883;
}

@media (min-width: 600px) {
  .container:not(.container--half) {
    padding: 0 2rem;
  }
  .statement.statement--review .statement__wrapper {
    flex-direction: row;
  }
  .statement.statement--review .statement__content,
.statement.statement--review .statement__actions {
    width: calc(50% - 40px);
  }
  .statement__content {
    padding-right: 150px;
  }
  .statement__evaluations {
    gap: 20px;
  }
  .statement__extras {
    margin-top: 50px;
    gap: 20px;
  }
  .comments__item.comment:not(:first-child) {
    margin-top: 80px;
  }
  .pagination__controls {
    justify-content: flex-end;
  }
  .newsletter {
    margin: 100px 0 0 0;
  }
  .hero {
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .hero__wave object {
    height: 150px;
  }
  .hero__title {
    width: 60%;
    margin: 10% 0;
  }
  .footer__wave object {
    width: 105%;
    margin-left: -2.5%;
    transform: none;
  }
  .footer__wrapper {
    padding: 5rem 0;
  }
  .footer__wrapper .container {
    flex-direction: row;
  }
  .footer__main {
    width: 30%;
  }
  .footer__contact {
    margin: 25px 0 0 0;
  }
  .footer__quicklinks {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 10px;
    align-self: flex-end;
    margin-top: 0;
  }
  .percentage {
    width: 186px;
    height: 178px;
  }
  .percentage__oval {
    width: 136px;
    height: 136px;
    margin: 24px auto auto 28px;
  }
  .percentage__value {
    font-size: 40px;
  }
  .percentage__link {
    font-size: 10px;
    margin-top: 5px;
  }
  .modal__box {
    border: 10px solid #089883;
  }
  .commitment__footer {
    display: flex;
    justify-content: space-between;
  }
  .related-elements__container {
    flex-direction: row;
    margin-bottom: 150px;
  }
  .related-elements__title {
    font-size: 40px;
    line-height: 68px;
    margin-bottom: 70px;
  }
  .page {
    padding: 100px 0;
  }
  .buildingblock__header {
    flex-direction: row;
  }
  .buildingblock__image {
    width: 50%;
  }
  .buildingblock__info {
    margin-right: auto;
    padding: 150px 1.5rem 0 50px;
    width: 50%;
    margin-top: 0;
  }
  .buildingblock__back {
    position: absolute;
    transform: translateY(-120px);
    margin-bottom: 0;
  }
  .buildingblock__percentage {
    left: 50%;
    transform: translateX(-150%);
    bottom: 0;
  }
  .buildingblock__main {
    padding: 100px 0;
  }
  .buildingblock__intro.intro .intro__title {
    padding-right: 20%;
  }
  .buildingblock__intro.intro .intro__content {
    padding-right: 20%;
  }
  .buildingblock__intro.intro .intro__images {
    flex-direction: row;
  }
  .buildingblock__intro.intro .intro__images svg {
    width: 100%;
  }
  .buildingblock__messages.messages .messages__title {
    padding-right: 20%;
  }
  .buildingblock__messages.messages .messages__content {
    padding-right: 20%;
  }
  .buildingblock__facts.facts .facts__title {
    padding-right: 20%;
  }
  .buildingblock__facts.facts .facts__content {
    padding-right: 20%;
  }
  .buildingblock__principles.principles .principles__list {
    grid-template-columns: 1fr 1fr;
  }
  .buildingblock__principles.principles .principles__title {
    padding-right: 20%;
  }
  .buildingblock__outro.outro .outro__title {
    padding-right: 20%;
  }
  .buildingblock__outro.outro .outro__content {
    padding-right: 20%;
  }
  .buildingblock__progress {
    padding: 100px 0;
  }
  .buildingblock__progress .progress__subblocks {
    flex-direction: row;
  }
  .buildingblock__progress .progress__subblock {
    width: calc(33.333% - 16px);
  }
  .buildingblock__summary.summary .summary__wave {
    height: 120px;
  }
  .buildingblock__summary.summary .summary__percentage {
    position: absolute;
    margin-top: 0;
    top: 0;
    right: 0;
  }
  .buildingblock__summary.summary .summary__title {
    margin-top: 80px;
  }
  .buildingblock__summary.summary .summary__footer {
    margin: 120px 0;
  }
  .buildingblock__subblock.subblock .subblock__statements.statements .statements__container {
    padding-right: 150px;
  }
  .buildingblock__subblock.subblock .subblock__related.related .related__subblocks {
    flex-direction: row;
  }
  .buildingblock__subblock.subblock .subblock__related.related .related__subblocks .blockcard {
    width: calc(33.333% - 16px);
  }
  .buildingblock__reflection {
    margin: 120px 0 180px 0;
  }
  .buildingblock__reflection .reflection__items .textbox:not(:first-child) {
    margin-top: 120px;
  }
  .buildingblock__reflection .reflection__actions {
    margin-top: 120px;
  }
  .dashboard__blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile {
    padding: 100px 0;
  }
  .profile__contact,
.profile__els {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: 30px 80px 30px 0;
    grid-gap: 60px 100px;
  }
  .notifications {
    padding: 100px 0;
  }
  .notifications__item.notification:not(:first-child) {
    margin-top: 130px;
  }
  .signup {
    padding: 100px 0;
  }
  .signup__item:not(:last-child) {
    margin-right: 50px;
  }
  .login {
    padding: 100px 0;
  }
  .login__form {
    padding: 60px;
    border: 20px solid #183a4e;
    border-radius: 50px;
  }
  .resources-content {
    width: 75%;
    margin: 50px 0;
  }
  .resources {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 40px;
  }
  .resources__container {
    display: flex;
  }
  .resources__container .pagination {
    flex: 1;
  }
  .resources__container .pagination .pagination__controls {
    margin-top: 80px;
    margin-bottom: 120px;
  }
  .filter__container {
    max-width: 25%;
  }
  .filter .filter__header .filter__toggle {
    display: none;
  }
  .resource__card .resource__card-moreinfo {
    padding-top: 30px;
  }
  .resource-content {
    width: 75%;
    margin: 90px 0;
  }
  .notice__card {
    width: 100%;
  }
  .notice__card .notice__card-moreinfo {
    padding-top: 30px;
  }
  .notices__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .noticeboard__toptext {
    width: 75%;
    margin-bottom: 50px;
  }
  .notice-article-content {
    margin: 90px 0;
  }
  .contact {
    padding: 100px 0;
  }
  .contact .container + .container {
    margin-top: 100px;
  }
  .overallreflection {
    margin: 120px 0 180px 0;
  }
  .overallreflection .overallreflection__items .textbox:not(:first-child) {
    margin-top: 120px;
  }
  .overallreflection .overallreflection__actions {
    margin-top: 120px;
  }
  .app__elements__textimageelement:nth-child(even) {
    transform: translateX(-40px);
  }
  .app__elements__textimageelement:nth-child(odd) {
    transform: translateX(40px);
  }
  .textimage {
    padding: 100px 0;
  }
  .textimage__container {
    flex-direction: row;
    align-items: center;
  }
  .textimage__content {
    width: 35%;
    order: 1;
  }
  .textimage__image {
    width: 55%;
    order: 2;
    margin-bottom: 0;
  }
  .textimage__link {
    margin-top: 40px;
  }
  .cta {
    padding: 100px 0;
  }
  .cta__title {
    max-width: 65%;
  }
  .cta__text {
    max-width: 55%;
  }
  .imagecta {
    padding: 150px 0;
  }
  .imagecta__image {
    display: none;
  }
  .imagecta__container {
    flex-direction: row;
    background-image: none;
  }
  .imagecta__content {
    width: 65%;
    padding: 100px 75px 50px 75px;
  }
  .imagecta__content::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    background-image: url(/images/watercolor-blob.png);
    background-size: contain;
    background-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;
    padding-bottom: 95.6%;
  }
  .partners {
    padding: 100px 0;
  }
  .partners__title {
    font-size: 40px;
  }
  .partners__list {
    gap: 2.5rem;
  }
  .partners__item {
    height: 65px;
  }
  .readmore {
    padding: 100px 0;
  }
  .steps {
    padding: 100px 0;
  }
  .steps__title {
    font-size: 40px;
    max-width: 65%;
  }
  .steps__wrapper {
    flex-direction: row;
  }
  .steps__step {
    width: 30%;
  }
  .blobs {
    padding: 100px 0;
  }
  .blobs__left,
.blobs__right {
    padding: 50px 2rem;
  }
  .card__element-container {
    display: flex;
    flex-wrap: wrap;
  }
  .card__element-container .card__element {
    width: calc(50% - 24px);
    margin: 12px;
  }
  .weave__element .weave__element-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .weave__element .weave__element-twoCols {
    display: flex;
    justify-content: space-around;
  }
  .weave__element .weave__element-twoCols .weave__element-leftCol,
.weave__element .weave__element-twoCols .weave__element-rightCol {
    width: 50%;
  }
  .buildingblocks {
    padding: 100px 0;
  }
  .buildingblocks__slider.slider .slider__swiper .swiper-slide-active + .swiper-slide {
    opacity: 1;
  }
  .content {
    padding: 100px 0;
  }
}

@media screen and (min-width: 768px) {
  .newsletter__form .newsletter__form-fields .form-group {
    max-width: 300px;
  }
}

@media (min-width: 768px) {
  .newsletter__form {
    flex-direction: row;
    gap: 20px;
  }
  .newsletter__form .newsletter__form-fields {
    flex-direction: row;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .navigation__link:hover .navigation__dropdown {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .navigation__link:hover a img {
    transform: rotate(180deg);
  }
}

@media (min-width: 1200px) {
  .font-title, .font-element-title {
    font-size: 45px;
  }
  .font-subtitle, .statement__title {
    font-size: 35px;
  }
  .font-element-title {
    font-size: 40px;
  }
  .font-body, .readmore__label, .form__message, .textbox .textbox__content input,
.textbox .textbox__content textarea, .textbox .textbox__wrapper.form-select {
    font-size: 17px;
  }
  .header {
    padding: 10px 45px;
  }
  .header__actions {
    justify-content: flex-end;
    margin: 0;
    order: 1;
  }
  .header__navigation {
    order: 2;
  }
  .header__menu {
    display: none;
  }
  .header__left {
    display: flex;
    align-items: center;
  }
  .navigation {
    flex-direction: row;
  }
  .navigation__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    padding: 20px 0;
  }
  .navigation__dropdown a {
    padding: 20px 40px;
    white-space: unset;
  }
  .navigation__dropdown a:hover {
    background-color: rgba(8, 152, 131, 0.2);
  }
  .navigation__link a img {
    margin-left: 10px;
  }
  .hero {
    padding-top: 200px;
    padding-bottom: 250px;
  }
  .hero__wave object {
    height: 200px;
  }
  .hero__title {
    width: 50%;
    margin: 5% 0;
  }
  .modal__box {
    border: 20px solid #089883;
  }
  .modal__close {
    transform: translate(50%, -50%) scale(1);
  }
  .buildingblock__note {
    padding: 20px 45px;
  }
  .buildingblock__info {
    padding-right: 2rem;
  }
  .buildingblock__subblock.subblock .subblock__related.related {
    padding: 100px 0;
  }
  .buildingblock__subblock.subblock .subblock__help.help {
    padding: 100px 0;
  }
  div.dashboard {
    padding: 100px 0;
  }
  .certificate__title {
    margin-top: 200px;
  }
  .dashboard__blocks {
    grid-template-columns: repeat(3, 1fr);
  }
  .resources {
    margin-left: 80px;
  }
  .imagecta__content {
    width: 55%;
    padding: 100px 75px 50px 75px;
  }
  .readmore__title {
    margin-bottom: 35px;
  }
  .readmore__toggle {
    margin-top: 35px;
  }
  .blobs__container {
    grid-template-columns: 1fr 110px 1fr;
    grid-template-rows: 160px 385px 160px;
  }
  .blobs__left,
.blobs__right {
    padding: 0 110px 0 90px;
    background-size: contain;
  }
  .blobs__left {
    grid-row: 1/3;
    grid-column: 1/3;
  }
  .blobs__right {
    grid-row: 2/4;
    grid-column: 2/4;
  }
  .blobs__title {
    text-transform: none;
  }
  .card__element-container .card__element {
    width: calc(100% / 3 - 24px);
    margin: 12px;
  }
  .buildingblocks__slider.slider .slider__swiper .swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 1;
  }
}

@media (min-width: 1800px) {
  .buildingblock__percentage {
    top: 200px;
    bottom: auto;
    left: 50%;
    transform: translateX(-65%);
  }
}

@media (max-width: 599px) {
  .statement__prev {
    display: none;
  }
  .statement__extra.extra.statement__extra--hint {
    top: -50px;
  }
  .hero__actions .button, .hero__actions .form__actions input[type=submit], .form__actions .hero__actions input[type=submit] {
    width: 100%;
  }
  .hero__actions > .button:not(:first-child), .form__actions .hero__actions > input[type=submit]:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
  .percentage.percentage--small {
    width: 100px;
    height: 96px;
  }
  .percentage.percentage--small .percentage__oval {
    width: 75px;
    height: 75px;
    margin: 11px auto auto 15px;
  }
  .modal__header .modal__icon {
    height: 60px;
    margin-right: 15px;
  }
  .commitment__accept {
    width: 100%;
    margin-top: 15px;
  }
  .commitment__modal .modal__box {
    max-width: calc(100vw - 40px);
    padding: 30px 20px;
  }
  .related-elements__title {
    text-transform: uppercase;
  }
  .buildingblock__image {
    position: relative;
  }
  .buildingblock__info {
    max-width: none !important;
  }
  .buildingblock__percentage {
    right: 1.5rem;
    bottom: 0;
  }
  .buildingblock__toggle {
    margin: 0 auto;
    display: block;
  }
  .buildingblock__progress .progress__subblock:not(:first-child) {
    margin-top: 30px;
  }
  .buildingblock__summary.summary .summary__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }
  .signup__item span {
    display: none;
    margin-right: 20px;
  }
  .signup__item:not(.signup__item--active) svg {
    margin-right: 0;
  }
  .signup__item svg {
    width: 55px;
    flex-shrink: 0;
  }
  .filter__container {
    margin-top: 15px;
  }
  .filter .filter__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: unset;
  }
  .filter .filter__toggle {
    height: 40px;
    transition: 0.3s transform;
    transform-origin: center;
  }
  .filter .filter__body {
    display: none;
  }
  .filter.filter--open .filter__header {
    margin-bottom: 15px;
  }
  .filter.filter--open .filter__body {
    display: block;
  }
  .filter.filter--open .filter__toggle {
    transform: rotate(180deg);
  }
  .imagecta {
    background: none !important;
  }
  .steps__step:not(:first-child) {
    margin-top: 30px;
  }
  .weave__element .weave__element-twoCols .weave__element-rightCol {
    margin-top: 30px;
  }
  .buildingblocks__slider.slider .slider__controls .slider__button {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header__right {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.15s opacity, 0.15s visibility;
    background: white;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-bottom: 7px solid #089883;
  }
  .header__logo img {
    max-height: 55px;
  }
  .blobs__container {
    padding: 0 !important;
  }
}
