:root {
  --font-dm-sans: "DM Sans", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-roboto-condensed: "Roboto Condensed", sans-serif;
}

@media only screen and (max-width: 124.9375em) {
  /* max-width: em(1999) */
}
@media only screen and (max-width: 89.9375em) {
  /* max-width: em(1439) */
}
@media only screen and (max-width: 47.9375em) {
  /* max-width: em(767) */
}
@media only screen and (max-width: 29.9375em) {
  /* max-width: em(479) */
}
@media only screen and (min-width: 30em) {
  /* min-width: em(480) */
}
@media only screen and (min-width: 48em) {
  /* min-width: em(768) */
}
@media only screen and (min-width: 90em) {
  /* min-width: em(1440) */
}
@media only screen and (min-width: 125em) {
  /* min-width: em(2000) */
}
/* reset */
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-after: 0;
  position: relative;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  position: relative;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

div:active, div:focus, nav:active, nav:focus {
  outline: 0;
}

b, i, em, strong,
h1, h2, h3, h4, h5, h6,
th, td, pre, ins, del, address,
input, select, button, textarea {
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
  text-transform: inherit;
  letter-spacing: inherit;
}

a, ins, del, button {
  color: inherit;
  text-decoration: none;
}

ul, ol,
menu {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}

pre,
textarea {
  max-width: 100%;
  overflow: auto;
}

img {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  width: 100%;
}

button {
  overflow: visible;
  cursor: pointer;
}

::moz-focus-inner {
  padding: 0;
  border: none;
}

h1,
.h1-like {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #000000;
}
@media only screen and (max-width: 89.9375em) {
  h1,
  .h1-like {
    font-size: 2rem;
    line-height: 2rem;
  }
}

h2,
.h2-like {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #253B66;
}
@media only screen and (max-width: 47.9375em) {
  h2,
  .h2-like {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}

h3,
.h3-like {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h4,
h5,
h6 {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-weight: 700;
}

p, li, a {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

a {
  text-decoration: none;
}

p a:not(.button) {
  color: #253B66;
}
p a:not(.button)::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #253B66;
  transform: scale3d(0, 1, 0);
  transition: transform 0.2s cubic-bezier(0.25, 0.2, 0.25, 1);
  transform-origin: top left;
}
@media (hover: hover) {
  p a:not(.button):hover::after {
    transform: scale3d(1, 1, 1);
  }
}

strong {
  font-weight: bold;
}
strong em {
  font-weight: inherit;
}

em {
  font-style: italic;
  font-weight: inherit;
}
em strong {
  font-style: inherit;
}

sup,
sub {
  text-transform: none;
}

small {
  font-size: smaller;
}
small * {
  font-size: inherit;
}

details {
  padding-left: 0.5rem;
}
details summary {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-dm-sans), "DM Sans", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  position: relative;
  height: auto;
  color: #000000;
  background-color: #F5F5F5;
}
body.noscroll {
  overflow: hidden;
}

hr {
  margin: 2rem 0;
  border-top: 1px solid #000000;
}

:focus-visible {
  outline: 1px #ffffff solid;
}

:root {
  --gutter-width: 1.25rem;
}

.grid__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--gutter-width) / -2);
  margin-right: calc(var(--gutter-width) / -2);
}
@media only screen and (max-width: 47.9375em) {
  .grid__row {
    --gutter-width: 1.5rem;
  }
}
.grid__row--jcc {
  justify-content: center;
}
.grid__row--jcsa {
  justify-content: space-around;
}
.grid__row--jcsb {
  justify-content: space-between;
}
.grid__row--aic {
  align-items: center;
}
.grid__row--aife {
  align-items: flex-end;
}
.grid__row--reverse {
  flex-direction: row-reverse;
}

[class*=grid__col] {
  float: left;
  width: 100%;
  padding-left: calc(var(--gutter-width) / 2);
  padding-right: calc(var(--gutter-width) / 2);
  padding-bottom: var(--gutter-width);
}

.grid__col--1 {
  width: 7.1428571429%;
}
.grid__col--2 {
  width: 14.2857142857%;
}
.grid__col--3 {
  width: 21.4285714286%;
}
.grid__col--4 {
  width: 28.5714285714%;
}
.grid__col--5 {
  width: 35.7142857143%;
}
.grid__col--6 {
  width: 42.8571428571%;
}
.grid__col--7 {
  width: 50%;
}
.grid__col--8 {
  width: 57.1428571429%;
}
.grid__col--9 {
  width: 64.2857142857%;
}
.grid__col--10 {
  width: 71.4285714286%;
}
.grid__col--11 {
  width: 78.5714285714%;
}
.grid__col--12 {
  width: 85.7142857143%;
}
.grid__col--13 {
  width: 92.8571428571%;
}
.grid__col--14 {
  width: 100%;
}
.grid__col--offset-0 {
  margin-left: 0%;
}
.grid__col--offset-1 {
  margin-left: 7.1428571429%;
}
.grid__col--offset-2 {
  margin-left: 14.2857142857%;
}
.grid__col--offset-3 {
  margin-left: 21.4285714286%;
}
.grid__col--offset-4 {
  margin-left: 28.5714285714%;
}
.grid__col--offset-5 {
  margin-left: 35.7142857143%;
}
.grid__col--offset-6 {
  margin-left: 42.8571428571%;
}
.grid__col--offset-7 {
  margin-left: 50%;
}
.grid__col--offset-8 {
  margin-left: 57.1428571429%;
}
.grid__col--offset-9 {
  margin-left: 64.2857142857%;
}
.grid__col--offset-10 {
  margin-left: 71.4285714286%;
}
.grid__col--offset-11 {
  margin-left: 78.5714285714%;
}
.grid__col--offset-12 {
  margin-left: 85.7142857143%;
}
.grid__col--offset-13 {
  margin-left: 92.8571428571%;
}
.grid__col--offset-14 {
  margin-left: 100%;
}
@media only screen and (min-width: 30em) {
  .grid__col--xs-1 {
    width: 7.1428571429%;
  }
  .grid__col--xs-2 {
    width: 14.2857142857%;
  }
  .grid__col--xs-3 {
    width: 21.4285714286%;
  }
  .grid__col--xs-4 {
    width: 28.5714285714%;
  }
  .grid__col--xs-5 {
    width: 35.7142857143%;
  }
  .grid__col--xs-6 {
    width: 42.8571428571%;
  }
  .grid__col--xs-7 {
    width: 50%;
  }
  .grid__col--xs-8 {
    width: 57.1428571429%;
  }
  .grid__col--xs-9 {
    width: 64.2857142857%;
  }
  .grid__col--xs-10 {
    width: 71.4285714286%;
  }
  .grid__col--xs-11 {
    width: 78.5714285714%;
  }
  .grid__col--xs-12 {
    width: 85.7142857143%;
  }
  .grid__col--xs-13 {
    width: 92.8571428571%;
  }
  .grid__col--xs-14 {
    width: 100%;
  }
  .grid__col--xs-offset-0 {
    margin-left: 0%;
  }
  .grid__col--xs-offset-1 {
    margin-left: 7.1428571429%;
  }
  .grid__col--xs-offset-2 {
    margin-left: 14.2857142857%;
  }
  .grid__col--xs-offset-3 {
    margin-left: 21.4285714286%;
  }
  .grid__col--xs-offset-4 {
    margin-left: 28.5714285714%;
  }
  .grid__col--xs-offset-5 {
    margin-left: 35.7142857143%;
  }
  .grid__col--xs-offset-6 {
    margin-left: 42.8571428571%;
  }
  .grid__col--xs-offset-7 {
    margin-left: 50%;
  }
  .grid__col--xs-offset-8 {
    margin-left: 57.1428571429%;
  }
  .grid__col--xs-offset-9 {
    margin-left: 64.2857142857%;
  }
  .grid__col--xs-offset-10 {
    margin-left: 71.4285714286%;
  }
  .grid__col--xs-offset-11 {
    margin-left: 78.5714285714%;
  }
  .grid__col--xs-offset-12 {
    margin-left: 85.7142857143%;
  }
  .grid__col--xs-offset-13 {
    margin-left: 92.8571428571%;
  }
  .grid__col--xs-offset-14 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 48em) {
  .grid__col--sm-1 {
    width: 7.1428571429%;
  }
  .grid__col--sm-2 {
    width: 14.2857142857%;
  }
  .grid__col--sm-3 {
    width: 21.4285714286%;
  }
  .grid__col--sm-4 {
    width: 28.5714285714%;
  }
  .grid__col--sm-5 {
    width: 35.7142857143%;
  }
  .grid__col--sm-6 {
    width: 42.8571428571%;
  }
  .grid__col--sm-7 {
    width: 50%;
  }
  .grid__col--sm-8 {
    width: 57.1428571429%;
  }
  .grid__col--sm-9 {
    width: 64.2857142857%;
  }
  .grid__col--sm-10 {
    width: 71.4285714286%;
  }
  .grid__col--sm-11 {
    width: 78.5714285714%;
  }
  .grid__col--sm-12 {
    width: 85.7142857143%;
  }
  .grid__col--sm-13 {
    width: 92.8571428571%;
  }
  .grid__col--sm-14 {
    width: 100%;
  }
  .grid__col--sm-offset-0 {
    margin-left: 0%;
  }
  .grid__col--sm-offset-1 {
    margin-left: 7.1428571429%;
  }
  .grid__col--sm-offset-2 {
    margin-left: 14.2857142857%;
  }
  .grid__col--sm-offset-3 {
    margin-left: 21.4285714286%;
  }
  .grid__col--sm-offset-4 {
    margin-left: 28.5714285714%;
  }
  .grid__col--sm-offset-5 {
    margin-left: 35.7142857143%;
  }
  .grid__col--sm-offset-6 {
    margin-left: 42.8571428571%;
  }
  .grid__col--sm-offset-7 {
    margin-left: 50%;
  }
  .grid__col--sm-offset-8 {
    margin-left: 57.1428571429%;
  }
  .grid__col--sm-offset-9 {
    margin-left: 64.2857142857%;
  }
  .grid__col--sm-offset-10 {
    margin-left: 71.4285714286%;
  }
  .grid__col--sm-offset-11 {
    margin-left: 78.5714285714%;
  }
  .grid__col--sm-offset-12 {
    margin-left: 85.7142857143%;
  }
  .grid__col--sm-offset-13 {
    margin-left: 92.8571428571%;
  }
  .grid__col--sm-offset-14 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 90em) {
  .grid__col--md-1 {
    width: 7.1428571429%;
  }
  .grid__col--md-2 {
    width: 14.2857142857%;
  }
  .grid__col--md-3 {
    width: 21.4285714286%;
  }
  .grid__col--md-4 {
    width: 28.5714285714%;
  }
  .grid__col--md-5 {
    width: 35.7142857143%;
  }
  .grid__col--md-6 {
    width: 42.8571428571%;
  }
  .grid__col--md-7 {
    width: 50%;
  }
  .grid__col--md-8 {
    width: 57.1428571429%;
  }
  .grid__col--md-9 {
    width: 64.2857142857%;
  }
  .grid__col--md-10 {
    width: 71.4285714286%;
  }
  .grid__col--md-11 {
    width: 78.5714285714%;
  }
  .grid__col--md-12 {
    width: 85.7142857143%;
  }
  .grid__col--md-13 {
    width: 92.8571428571%;
  }
  .grid__col--md-14 {
    width: 100%;
  }
  .grid__col--md-offset-0 {
    margin-left: 0%;
  }
  .grid__col--md-offset-1 {
    margin-left: 7.1428571429%;
  }
  .grid__col--md-offset-2 {
    margin-left: 14.2857142857%;
  }
  .grid__col--md-offset-3 {
    margin-left: 21.4285714286%;
  }
  .grid__col--md-offset-4 {
    margin-left: 28.5714285714%;
  }
  .grid__col--md-offset-5 {
    margin-left: 35.7142857143%;
  }
  .grid__col--md-offset-6 {
    margin-left: 42.8571428571%;
  }
  .grid__col--md-offset-7 {
    margin-left: 50%;
  }
  .grid__col--md-offset-8 {
    margin-left: 57.1428571429%;
  }
  .grid__col--md-offset-9 {
    margin-left: 64.2857142857%;
  }
  .grid__col--md-offset-10 {
    margin-left: 71.4285714286%;
  }
  .grid__col--md-offset-11 {
    margin-left: 78.5714285714%;
  }
  .grid__col--md-offset-12 {
    margin-left: 85.7142857143%;
  }
  .grid__col--md-offset-13 {
    margin-left: 92.8571428571%;
  }
  .grid__col--md-offset-14 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 125em) {
  .grid__col--lg-1 {
    width: 7.1428571429%;
  }
  .grid__col--lg-2 {
    width: 14.2857142857%;
  }
  .grid__col--lg-3 {
    width: 21.4285714286%;
  }
  .grid__col--lg-4 {
    width: 28.5714285714%;
  }
  .grid__col--lg-5 {
    width: 35.7142857143%;
  }
  .grid__col--lg-6 {
    width: 42.8571428571%;
  }
  .grid__col--lg-7 {
    width: 50%;
  }
  .grid__col--lg-8 {
    width: 57.1428571429%;
  }
  .grid__col--lg-9 {
    width: 64.2857142857%;
  }
  .grid__col--lg-10 {
    width: 71.4285714286%;
  }
  .grid__col--lg-11 {
    width: 78.5714285714%;
  }
  .grid__col--lg-12 {
    width: 85.7142857143%;
  }
  .grid__col--lg-13 {
    width: 92.8571428571%;
  }
  .grid__col--lg-14 {
    width: 100%;
  }
  .grid__col--lg-offset-0 {
    margin-left: 0%;
  }
  .grid__col--lg-offset-1 {
    margin-left: 7.1428571429%;
  }
  .grid__col--lg-offset-2 {
    margin-left: 14.2857142857%;
  }
  .grid__col--lg-offset-3 {
    margin-left: 21.4285714286%;
  }
  .grid__col--lg-offset-4 {
    margin-left: 28.5714285714%;
  }
  .grid__col--lg-offset-5 {
    margin-left: 35.7142857143%;
  }
  .grid__col--lg-offset-6 {
    margin-left: 42.8571428571%;
  }
  .grid__col--lg-offset-7 {
    margin-left: 50%;
  }
  .grid__col--lg-offset-8 {
    margin-left: 57.1428571429%;
  }
  .grid__col--lg-offset-9 {
    margin-left: 64.2857142857%;
  }
  .grid__col--lg-offset-10 {
    margin-left: 71.4285714286%;
  }
  .grid__col--lg-offset-11 {
    margin-left: 78.5714285714%;
  }
  .grid__col--lg-offset-12 {
    margin-left: 85.7142857143%;
  }
  .grid__col--lg-offset-13 {
    margin-left: 92.8571428571%;
  }
  .grid__col--lg-offset-14 {
    margin-left: 100%;
  }
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transform: translateY(-50%);
  margin-top: 50vh;
}
.container--maxwidth-large {
  margin-right: auto;
  max-width: 125rem;
}

/* For hidden <h1> elements and other screen-reader-targeted stuff */
.util--screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.util--big-text {
  font-size: 40px;
  line-height: normal;
}
.util--md-text {
  font-size: 24px;
  line-height: normal;
}
@media only screen and (min-width: 90em) {
  .util--hide-for-medium-up {
    display: none !important;
  }
}
@media only screen and (max-width: 47.9375em) {
  .util--hide-for-small-down {
    display: none !important;
  }
}
.util--color-white {
  color: #ffffff;
}
.util--bgc-white {
  background-color: #ffffff;
}
.util--posr {
  position: relative;
}
.util--posinit {
  position: initial;
}
.util--tac {
  text-align: center;
}
.util--fw700 {
  font-weight: 700;
}
.util--mb-small {
  margin-bottom: 0.5rem;
}
.util--uppercase {
  text-transform: uppercase;
}
.util--hidden {
  display: none;
}

/* icon */
.icon {
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  display: inline-block;
  line-height: inherit;
  width: 1rem;
  height: 1rem;
  speak: none;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s cubic-bezier(0.25, 0.2, 0.25, 1);
}
.icon * {
  transition: fill 0.2s cubic-bezier(0.25, 0.2, 0.25, 1);
}
.icon--20 {
  height: 20px;
  width: 20px;
}
.icon--24 {
  height: 24px;
  width: 24px;
}
.icon--flipped {
  transform: rotate3d(0, 1, 0, 180deg);
}

form,
.form {
  font-family: var(--font-roboto), arial, sans-serif;
}
form label,
form .fake-input__label,
.form label,
.form .fake-input__label {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}
form label.disabled,
form .fake-input__label.disabled,
.form label.disabled,
.form .fake-input__label.disabled {
  opacity: 0.4;
}
form input,
form select,
form textarea,
form .fake-input__value,
.form input,
.form select,
.form textarea,
.form .fake-input__value {
  border-radius: 8px;
  border: 1px solid #D3E7EB;
  background-color: rgba(230, 247, 250, 0.25);
  color: #636D85;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0.5rem;
  width: 100%;
}
form input::placeholder,
form select::placeholder,
form textarea::placeholder,
form .fake-input__value::placeholder,
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder,
.form .fake-input__value::placeholder {
  font-weight: 400;
}
form input[type=search],
form select[type=search],
form textarea[type=search],
form .fake-input__value[type=search],
.form input[type=search],
.form select[type=search],
.form textarea[type=search],
.form .fake-input__value[type=search] {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23636D85" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path d="M13.833,15l-5.25-5.25c-.417.333-.896.597-1.437.792-.542.194-1.118.292-1.729.292-1.514,0-2.795-.524-3.844-1.573-1.049-1.049-1.573-2.33-1.573-3.844S.524,2.622,1.573,1.573C2.622.524,3.903,0,5.417,0s2.795.524,3.844,1.573c1.049,1.049,1.573,2.33,1.573,3.844,0,.611-.097,1.188-.292,1.729-.194.542-.458,1.021-.792,1.437l5.25,5.25-1.167,1.167ZM5.417,9.167c1.042,0,1.927-.365,2.656-1.094.729-.729,1.094-1.615,1.094-2.656s-.365-1.927-1.094-2.656c-.729-.729-1.615-1.094-2.656-1.094s-1.927.365-2.656,1.094c-.729.729-1.094,1.615-1.094,2.656s.365,1.927,1.094,2.656c.729.729,1.615,1.094,2.656,1.094Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem top 50%;
  background-size: 1rem;
}
form input[type=search]::-webkit-search-cancel-button,
form select[type=search]::-webkit-search-cancel-button,
form textarea[type=search]::-webkit-search-cancel-button,
form .fake-input__value[type=search]::-webkit-search-cancel-button,
.form input[type=search]::-webkit-search-cancel-button,
.form select[type=search]::-webkit-search-cancel-button,
.form textarea[type=search]::-webkit-search-cancel-button,
.form .fake-input__value[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
form select,
.form select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23636D85" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M5,8.1l-5-5L1.1,2L5,5.9L8.9,2L10,3.1L5,8.1z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.75rem;
}
form__input,
form .fake-input,
.form__input,
.form .fake-input {
  margin-bottom: 0.5rem;
}
form__input label + input,
form__input .fake-input__label + .fake-input__value,
form .fake-input label + input,
form .fake-input .fake-input__label + .fake-input__value,
.form__input label + input,
.form__input .fake-input__label + .fake-input__value,
.form .fake-input label + input,
.form .fake-input .fake-input__label + .fake-input__value {
  margin-top: 0.5rem;
}
form__radios,
.form__radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
form__actions,
.form__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.field-validation-error {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
}
input[type=radio] ~ label {
  cursor: pointer;
  display: flex;
  gap: 8px;
  color: #253B66;
  font-weight: 400;
}
input[type=radio] ~ label::before, input[type=radio] ~ label:after {
  content: "";
  display: block;
  border-radius: 100%;
}
input[type=radio] ~ label::before {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid black;
  transition: border-color 0.2s cubic-bezier(0.25, 0.2, 0.25, 1);
}
input[type=radio] ~ label::after {
  z-index: 1;
  opacity: 0;
  background: black;
  transition: opacity 0.2s ease-in-out;
  position: absolute;
  inset: 4px;
  width: 8px;
  height: 8px;
}
@media (hover: hover) and (pointer: fine) {
  input[type=radio] ~ label:hover:before, input[type=radio] ~ label:focus-visible:before {
    border-color: black;
  }
}
input[type=radio]:focus ~ label:before {
  border-color: black;
}
input[type=radio]:disabled ~ label {
  opacity: 0.5;
  pointer-events: none;
}
input[type=radio]:checked ~ label::after {
  opacity: 1;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E3E1E1;
  color: #000000;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  padding: 1.5rem 1rem;
}
.card__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.card__header-title {
  position: relative;
  z-index: 0;
}
.card__header-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #00F1F1;
  bottom: 4px;
  left: 0;
  position: absolute;
  z-index: -1;
}

.button {
  background-color: rgba(230, 247, 250, 0.25);
  border: 1px solid #D3E7EB;
  border-radius: 8px;
  color: #253B66;
  display: flex;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  line-height: normal;
  font-family: var(--font-roboto), arial, sans-serif;
}
.button:hover {
  background-color: rgba(230, 247, 250, 0.5);
}
.button:active {
  background-color: rgba(230, 247, 250, 0.75);
  border-color: #91C0CE;
}
.button--active, .button--active:hover {
  background-color: #E6F7FA;
  border-color: #91C0CE;
}
.button--no-border {
  border: none;
  background-color: transparent;
}
.button--no-border:hover {
  background-color: transparent;
}

.logo {
  display: flex;
  margin: 0 auto 16px;
  line-height: 0;
  width: 100%;
  max-width: 120px;
}
