:root {
  --white: #FFFFFF;
  --grey-900: #0e1016;
  --grey-800: #1a1f28;
  --grey-700: #2c323f;
  --grey-600: #3f4655;
  --grey-500: #535b6a;
  --grey-400: #a6abb5;
  --grey-300: #bec1c5;
  --grey-200: #e7e8e9;
  --grey-100: whitesmoke;
  --blue: #7bccca;
  --green: #00d1b2;
  --pink: #e684af;
  --green-faded: rgba(0, 209, 178, 0.12);
  --blue-faded: rgba(123, 204, 202, 0.12);
  --pink-faded: rgba(230, 132, 175, 0.12);
  --green-dark: #00947e;
  --blue-dark: #4fbab9;
  --pink-dark: #db518d;
  --bg: var(--white);
  --color: var(--grey-900);
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1.6rem;
  color: var(--color);
  background: var(--bg);
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 7.2rem;
  line-height: 110%;
  font-weight: 900;
}

h2 {
  font-size: 5.6rem;
  line-height: 128%;
  font-weight: 900;
}

h3 {
  font-size: 4.4rem;
  line-height: 128%;
  font-weight: 900;
}

h4 {
  font-size: 3.6rem;
  line-height: 128%;
  font-weight: 600;
}

h5 {
  font-size: 2.8rem;
  line-height: 128%;
  font-weight: 600;
}

h6 {
  font-size: 1.6rem;
  line-height: 135%;
  font-weight: 600;
}

p {
  font-size: 1.6rem;
  line-height: 160%;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2.4rem;
}

small {
  font-size: 1.4rem;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
  word-wrap: break-word;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 1100px) {
  .lead {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 1100px) {
  h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1100px) {
  h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 1100px) {
  h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1100px) {
  h4 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 1100px) {
  h5 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1100px) {
  h6 {
    font-size: 1.5rem;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul ul {
  padding-left: 1.6rem;
}

li ul {
  position: relative;
}
li ul:before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 0.2rem;
  background: rgba(0, 0, 0, 0.12);
}

a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--grey-400);
}
a:hover, a:focus {
  border-color: var(--green);
  background: var(--green-faded);
  box-shadow: 0px 0px 0px 0.8rem var(--green-faded);
}

.l-layout {
  width: 100%;
  max-width: 960px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  grid-column-gap: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-layout {
    grid-template-columns: 1fr;
  }
}
.l-layout__item {
  position: relative;
}

.l-footer {
  border-top: 1px solid var(--grey-200);
  padding: 1.6rem 0;
}
.l-footer__body {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.c-title {
  position: sticky;
  top: 0;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .c-title {
    position: relative;
    padding-top: 0;
  }
}

.c-list {
  padding-top: 12rem;
}
@media screen and (max-width: 768px) {
  .c-list {
    padding-top: 2.4rem;
  }
}

.c-grapa {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
}
.c-grapa__link {
  text-decoration: none;
  border: 0;
  color: var(--grey-500);
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  transition: all 120ms ease-out 0s;
}
.c-grapa__link:hover, .c-grapa__link:focus {
  color: var(--green);
}

.c-card {
  display: block;
  width: 100%;
  border-radius: 0.4rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}

.c-logo {
  display: inline-flex;
  flex-direction: column;
  margin: 1.6rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-logo {
    display: flex;
    align-items: center;
    margin-top: 4rem;
  }
}
.c-logo__icon {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 0.8rem;
}
.c-logo__wordmark {
  margin: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  .c-logo__wordmark {
    margin: 2.4rem 0 0;
    font-size: 3.6rem;
  }
}

.c-checkbox {
  padding: 0.8rem 1.6rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  transition: all 120ms ease-out 0s;
}
.c-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  top: 0;
  left: 0;
}
.c-checkbox__label {
  padding-left: 0.8rem;
}
.c-checkbox--active {
  opacity: 0.54;
}
.c-checkbox--active .c-checkbox__icon {
  -webkit-animation: iconAnimate 300ms ease forwards;
          animation: iconAnimate 300ms ease forwards;
}
.c-checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: currentColor;
  border-radius: 0.4rem;
  transition: all 120ms ease-out 0s;
}
.c-checkbox:hover:after, .c-checkbox:focus:after {
  opacity: 0.12;
}

.u-bg--light {
  background: var(--grey-100) !important;
}

.u-text--light {
  color: var(--grey-100) !important;
}

.u-bg--medium {
  background: var(--grey-500) !important;
}

.u-text--medium {
  color: var(--grey-500) !important;
}

.u-bg--dark {
  background: var(--grey-900) !important;
}

.u-text--dark {
  color: var(--grey-900) !important;
}

.u-bg--green {
  background: var(--green) !important;
}

.u-text--green {
  color: var(--green) !important;
}

.u-bg--green-faded {
  background: var(--green-faded) !important;
}

.u-text--green-faded {
  color: var(--green-faded) !important;
}

.u-bg--green-dark {
  background: var(--green-dark) !important;
}

.u-text--green-dark {
  color: var(--green-dark) !important;
}

.u-bg--blue {
  background: var(--blue) !important;
}

.u-text--blue {
  color: var(--blue) !important;
}

.u-bg--blue-faded {
  background: var(--blue-faded) !important;
}

.u-text--blue-faded {
  color: var(--blue-faded) !important;
}

.u-bg--blue-dark {
  background: var(--blue-dark) !important;
}

.u-text--blue-dark {
  color: var(--blue-dark) !important;
}

.u-bg--pink {
  background: var(--pink) !important;
}

.u-text--pink {
  color: var(--pink) !important;
}

.u-bg--pink-faded {
  background: var(--pink-faded) !important;
}

.u-text--pink-faded {
  color: var(--pink-faded) !important;
}

.u-bg--pink-dark {
  background: var(--pink-dark) !important;
}

.u-text--pink-dark {
  color: var(--pink-dark) !important;
}

.u-mt--0 {
  margin-top: 0;
}

.u-pt--0 {
  margin-padding-top: 0;
}

.u-mb--0 {
  margin-bottom: 0;
}

.u-pb--0 {
  margin-padding-bottom: 0;
}

.u-ml--0 {
  margin-left: 0;
}

.u-pl--0 {
  margin-padding-left: 0;
}

.u-mr--0 {
  margin-right: 0;
}

.u-pr--0 {
  margin-padding-right: 0;
}

.u-mt--xxs {
  margin-top: 0.2rem;
}

.u-pt--xxs {
  margin-padding-top: 0.2rem;
}

.u-mb--xxs {
  margin-bottom: 0.2rem;
}

.u-pb--xxs {
  margin-padding-bottom: 0.2rem;
}

.u-ml--xxs {
  margin-left: 0.2rem;
}

.u-pl--xxs {
  margin-padding-left: 0.2rem;
}

.u-mr--xxs {
  margin-right: 0.2rem;
}

.u-pr--xxs {
  margin-padding-right: 0.2rem;
}

.u-mt--xs {
  margin-top: 0.4rem;
}

.u-pt--xs {
  margin-padding-top: 0.4rem;
}

.u-mb--xs {
  margin-bottom: 0.4rem;
}

.u-pb--xs {
  margin-padding-bottom: 0.4rem;
}

.u-ml--xs {
  margin-left: 0.4rem;
}

.u-pl--xs {
  margin-padding-left: 0.4rem;
}

.u-mr--xs {
  margin-right: 0.4rem;
}

.u-pr--xs {
  margin-padding-right: 0.4rem;
}

.u-mt--sm {
  margin-top: 0.8rem;
}

.u-pt--sm {
  margin-padding-top: 0.8rem;
}

.u-mb--sm {
  margin-bottom: 0.8rem;
}

.u-pb--sm {
  margin-padding-bottom: 0.8rem;
}

.u-ml--sm {
  margin-left: 0.8rem;
}

.u-pl--sm {
  margin-padding-left: 0.8rem;
}

.u-mr--sm {
  margin-right: 0.8rem;
}

.u-pr--sm {
  margin-padding-right: 0.8rem;
}

.u-mt--md {
  margin-top: 1.6rem;
}

.u-pt--md {
  margin-padding-top: 1.6rem;
}

.u-mb--md {
  margin-bottom: 1.6rem;
}

.u-pb--md {
  margin-padding-bottom: 1.6rem;
}

.u-ml--md {
  margin-left: 1.6rem;
}

.u-pl--md {
  margin-padding-left: 1.6rem;
}

.u-mr--md {
  margin-right: 1.6rem;
}

.u-pr--md {
  margin-padding-right: 1.6rem;
}

.u-mt--lg {
  margin-top: 2.4rem;
}

.u-pt--lg {
  margin-padding-top: 2.4rem;
}

.u-mb--lg {
  margin-bottom: 2.4rem;
}

.u-pb--lg {
  margin-padding-bottom: 2.4rem;
}

.u-ml--lg {
  margin-left: 2.4rem;
}

.u-pl--lg {
  margin-padding-left: 2.4rem;
}

.u-mr--lg {
  margin-right: 2.4rem;
}

.u-pr--lg {
  margin-padding-right: 2.4rem;
}

.u-mt--xl {
  margin-top: 4.8rem;
}

.u-pt--xl {
  margin-padding-top: 4.8rem;
}

.u-mb--xl {
  margin-bottom: 4.8rem;
}

.u-pb--xl {
  margin-padding-bottom: 4.8rem;
}

.u-ml--xl {
  margin-left: 4.8rem;
}

.u-pl--xl {
  margin-padding-left: 4.8rem;
}

.u-mr--xl {
  margin-right: 4.8rem;
}

.u-pr--xl {
  margin-padding-right: 4.8rem;
}

.u-mt--xxl {
  margin-top: 8rem;
}

.u-pt--xxl {
  margin-padding-top: 8rem;
}

.u-mb--xxl {
  margin-bottom: 8rem;
}

.u-pb--xxl {
  margin-padding-bottom: 8rem;
}

.u-ml--xxl {
  margin-left: 8rem;
}

.u-pl--xxl {
  margin-padding-left: 8rem;
}

.u-mr--xxl {
  margin-right: 8rem;
}

.u-pr--xxl {
  margin-padding-right: 8rem;
}

.u-text--center {
  text-align: center !important;
}

.u-text--left {
  text-align: left !important;
}

.u-text--right {
  text-align: right !important;
}

@-webkit-keyframes iconAnimate {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes iconAnimate {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}