.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--medium-blue)), to(var(--light-blue)));
  background: linear-gradient(var(--medium-blue), var(--light-blue));
  height: calc(100vh - var(--header-height));
}
.hero .wrapper {
  height: 100%;
}
.hero .wrapper .content-wrapper {
  z-index: 9;
}
.hero .wrapper .content-wrapper img {
  width: 100%;
  height: auto;
  max-width: 37.5rem;
}
.hero .wrapper .content-wrapper h1 {
  font-size: 1.875rem;
  line-height: 2.375rem;
  max-width: 31.25rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.hero .wrapper .content-wrapper .cta {
  margin-bottom: 12.5rem;
}
.hero .wrapper .content-wrapper .cta a {
  padding: 0.625rem 1.25rem;
  background-color: var(--yellow);
  color: var(--dark-blue);
  border-radius: 0.3125rem;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
  text-decoration: none;
  position: relative;
  margin: 0 0.625rem;
  display: inline-block;
}
.hero .wrapper .content-wrapper .cta a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 0.3125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.hero .wrapper .content-wrapper .cta a:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}
.hero .wrapper .content-wrapper .cta a.blue {
  background-color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  color: var(--white);
}
.hero .wrapper .content-wrapper .cta a.blue:before {
  background-color: rgba(255, 255, 255, 0.15);
}
.hero .wrapper .content-wrapper .cta a.blue span:after {
  background: var(--white);
  width: 1.125rem;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hero .wrapper .content-wrapper .cta a.blue:hover:before {
  opacity: 1;
}
.hero .wrapper .content-wrapper .cta a.inversed {
  background-color: transparent;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
}
.hero .wrapper .content-wrapper .cta a.inversed span:after {
  background: var(--dark-blue);
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hero .wrapper .content-wrapper .cta a.inversed:hover:before {
  opacity: 1;
}
.hero .wrapper .content-wrapper .cta a:nth-child(1n) {
  background-color: var(--white);
  color: var(--dark-blue);
}
.hero .wrapper .content-wrapper .cta a:nth-child(1n):hover:before {
  opacity: 1;
}
.hero .wrapper .content-wrapper .cta a:nth-child(2n) {
  background-color: var(--dark-blue);
  color: var(--white);
}
.hero .wrapper .content-wrapper .cta a:nth-child(2n):before {
  background-color: rgba(255, 255, 255, 0.2);
}
.hero .wrapper .content-wrapper .cta a:nth-child(2n):hover:before {
  opacity: 1;
}
.hero .wrapper .content-wrapper .cta a:nth-child(3n) {
  background-color: var(--medium-blue);
  color: var(--dark-blue);
}
.hero .wrapper .content-wrapper .cta a:nth-child(3n):hover:before {
  opacity: 1;
}
@container main (max-width: 47.9375rem) {
  .hero .wrapper .cta a {
    display: block;
    margin: 0.625rem 0;
    text-align: center;
  }
}
.hero .animation-overlay {
  inset: 0px;
  width: 100%;
  height: 80vh;
  position: absolute;
  overflow: visible;
  z-index: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[12];
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.hero .animation-overlay .illustration {
  position: absolute;
  bottom: 0;
  overflow: hidden;
}
.hero .animation-overlay .illustration img {
  width: 100%;
  height: auto;
}
.hero .animation-overlay .illustration.illu1 {
  -ms-grid-column: 7;
  -ms-grid-column-span: 2;
  grid-column: 7/9;
  z-index: 2;
  margin-bottom: -3.75rem;
  margin-left: 11.25rem;
  width: 18.75rem;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}
.hero .animation-overlay .illustration.illu2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/5;
  width: 75rem;
  height: auto;
  right: -2.5rem;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}
.hero .animation-overlay .illustration.illu3 {
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-column: 4/7;
  margin-bottom: -5.625rem;
  width: 31.25rem;
  height: auto;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}
.hero .animation-overlay .illustration.illu4 {
  -ms-grid-column: 8;
  -ms-grid-column-span: 5;
  grid-column: 8/13;
  margin-left: 8.75rem;
  width: 75rem;
  height: auto;
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}
@media (min-width: 64.375rem) and (max-width: 91.1875rem) {
  .hero .animation-overlay {
    height: 75vh;
  }
  .hero .animation-overlay .illustration.illu1 {
    -ms-grid-column: 6;
    -ms-grid-column-span: 2;
    grid-column: 6/8;
    z-index: 2;
    margin-bottom: -3.75rem;
    margin-left: 11.25rem;
    width: 12.5rem;
  }
  .hero .animation-overlay .illustration.illu2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
    width: 62.5rem;
    height: auto;
    right: -5rem;
  }
  .hero .animation-overlay .illustration.illu3 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
    margin-bottom: -5.625rem;
    width: 25rem;
    height: auto;
  }
  .hero .animation-overlay .illustration.illu4 {
    -ms-grid-column: 8;
    -ms-grid-column-span: 5;
    grid-column: 8/13;
    margin-left: 6.25rem;
    width: 62.5rem;
    height: auto;
  }
}
@media (min-width: 48rem) and (max-width: 64.3125rem) {
  .hero .animation-overlay {
    height: 70vh;
  }
  .hero .animation-overlay .illustration.illu1 {
    -ms-grid-column: 7;
    -ms-grid-column-span: 2;
    grid-column: 7/9;
    z-index: 2;
    margin-bottom: -3.75rem;
    margin-left: 11.25rem;
    width: 12.5rem;
  }
  .hero .animation-overlay .illustration.illu2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    width: 62.5rem;
    height: auto;
    right: -5rem;
  }
  .hero .animation-overlay .illustration.illu3 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
    margin-bottom: -5.625rem;
    width: 25rem;
    height: auto;
  }
  .hero .animation-overlay .illustration.illu4 {
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-column: 9/13;
    margin-left: 6.25rem;
    width: 62.5rem;
    height: auto;
  }
}
@media (max-width: 47.9375rem) {
  .hero .animation-overlay {
    height: 90vh;
  }
  .hero .animation-overlay .illustration.illu1 {
    display: none;
  }
  .hero .animation-overlay .illustration.illu2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
    width: 50rem;
    height: auto;
    right: -5rem;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
  .hero .animation-overlay .illustration.illu3 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 3/6;
    margin-bottom: -1.25rem;
    width: 12.5rem;
    height: auto;
    z-index: 99;
  }
  .hero .animation-overlay .illustration.illu4 {
    -ms-grid-column: 4;
    -ms-grid-column-span: 9;
    grid-column: 4/13;
    margin-left: 0;
    width: 37.5rem;
    height: auto;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
}
@media (min-width: 64.375rem) and (max-width: 91.1875rem) {
  .hero {
    height: calc(100vh - var(--header-height));
  }
}
@media (min-width: 48rem) and (max-width: 64.3125rem) {
  .hero {
    height: calc(90vh - var(--header-height));
    padding: 3.75rem 0;
  }
}
@media (max-width: 47.9375rem) {
  .hero {
    height: calc(100vh - var(--header-height));
    padding: 5rem 0;
  }
  .hero .cta {
    display: -ms-grid;
    display: grid;
    row-gap: 10px;
  }
}