@font-face {
  font-family: "Cal Sans UI";
  src: url("/assets/fonts/CalSansUI-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cal Sans UI";
  src: url("/assets/fonts/CalSansUI-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --shadow-color: 53deg 16% 58%;
  --shadow-elevation-low: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
  0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34),
  1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
  --shadow-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
  0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
  2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
  5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  --shadow-color2: 53deg 16% 67%;
  --shadow2-elevation-low: 0.3px 0.5px 0.7px hsl(var(--shadow-color2) / 0.25),
  0.4px 0.8px 1px -1.2px hsl(var(--shadow-color2) / 0.25),
  0.9px 1.7px 2.2px -2.5px hsl(var(--shadow-color2) / 0.25);
  --shadow2-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.26),
  0.7px 1.5px 1.9px -0.8px hsl(var(--shadow-color2) / 0.26),
  1.8px 3.6px 4.5px -1.7px hsl(var(--shadow-color2) / 0.26),
  4.3px 8.7px 10.9px -2.5px hsl(var(--shadow-color2) / 0.26);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5f3e5;
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  padding-top: 0;
  font-weight: 400;
  font-size: 22px;
  color: #000;
  letter-spacing: 0;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  color: #27251B;
  font-family: "Merriweather", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}
p.links {
  display: flex;
}
p.links .partner {
  justify-self: end;
  margin-left: auto;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #989794;
  text-decoration: none;
}
@media (min-width: 992px) {
  p.links .partner {
    font-size: 20px;
  }
}

a {
  color: #e34234;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
a:hover {
  text-decoration: underline;
  color: #297045;
}
a.arrow-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #e34234;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 8px;
  background-color: rgba(148, 148, 148, 0);
}
@media (min-width: 992px) {
  a.arrow-link {
    font-size: 22px;
  }
}
a.arrow-link svg {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  fill: #e34234;
  transition: transform 0.2s ease-in-out;
}
a.arrow-link:hover svg {
  transform: translateX(4px);
}
a.arrow-link:hover {
  transition: background-color 0.2s ease-in;
  background-color: rgba(148, 148, 148, 0.12);
}
a.external-link, a.read-more {
  display: inline-flex;
  align-items: center;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #e34234;
  text-decoration: none;
  margin-right: 24px;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 992px) {
  a.external-link, a.read-more {
    font-size: 20px;
  }
}
a.external-link svg, a.read-more svg {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  fill: #e34234;
  transition: transform 0.2s ease-in-out;
}
a.external-link:hover svg, a.read-more:hover svg {
  transform: translateX(4px);
}
a.external-link:hover, a.read-more:hover {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.btn {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 4px 16px;
}
.btn:after {
  content: url("/assets/images/arrow-right-white.svg");
  fill: #fff;
  display: inline-block;
  margin-left: 8px;
  margin-right: 4px;
  transition: margin 0.2s ease-in-out;
  width: 18px;
  height: 18px;
}
.btn:hover {
  background-color: #297045;
  border-color: #297045;
  color: #fff;
}
.btn:hover:after {
  transition: margin 0.2s ease-in-out;
  margin-left: 12px;
  margin-right: 0;
}
.btn.btn-primary {
  background-color: #e34234;
  color: #fff;
  border: 2px solid #e34234;
  padding: 4px 12px 4px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.btn.btn-secondary {
  background-color: transparent;
  color: #e34234;
  border: 2px solid #e34234;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}
.btn.btn-secondary:after {
  content: url("/assets/images/arrow-right-red.svg");
}
.btn.btn-secondary:hover {
  transition: all 0.2s ease-in-out;
  background-color: #e34234;
  color: #fff;
}
.btn.btn-secondary:hover:after {
  content: url("/assets/images/arrow-right-white.svg");
}
.btn.btn-arrow svg {
  margin-left: 4px;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  fill: #e34234;
}
.btn.btn-arrow:hover svg {
  fill: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -1px;
  color: #e34234;
  line-height: 1.1;
}

h1 {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  color: #e34234;
}
@media (min-width: 768px) {
  h1 {
    font-size: 64px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 80px;
  }
}

h2 {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 56px */
  letter-spacing: -2px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 56px;
  }
}

h3 {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 56px */
  letter-spacing: -2px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 36px;
  }
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
ul li {
  margin-bottom: 0.5rem;
  font-family: "Merriweather", Georgia, serif;
  font-size: 20px;
}
ul.styled-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}
ul.styled-list li {
  margin-bottom: 0;
  text-align: left;
  list-style-type: none;
}
ul.centered-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
ul.centered-list li {
  margin-bottom: 0;
  text-align: center;
  list-style-type: none;
}

.card {
  background-color: #FAF9F2;
  border-radius: 12px;
  box-shadow: var(--shadow2-elevation-medium);
  padding: 24px;
  margin-bottom: 24px;
  border: none;
}
@media (min-width: 992px) {
  .card {
    padding: 32px;
  }
}
.card .card-header {
  padding: 0;
  margin-bottom: 2rem;
  color: inherit;
  background-color: transparent;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.card .card-header h3 {
  margin: 0;
}
.card .card-header p.sub {
  margin: 0;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #989794;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .card .card-header p.sub {
    font-size: 22px;
  }
}
.card .card-header img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

header {
  background: linear-gradient(0deg, hsl(52, 44%, 93%) 1%, hsl(52, 25%, 88%) 100%);
}

#nav-main {
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px 0 0 0;
  width: 100%;
}
@media (min-width: 992px) {
  #nav-main {
    padding: 24px 0;
    width: auto;
    margin: 0;
  }
}
#nav-main .navbar-name {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  color: #27251B;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto;
  width: 100%;
  text-decoration: none;
}
#nav-main .navbar-name span {
  color: #363636;
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 992px) {
  #nav-main .navbar-name {
    width: auto;
    text-align: left;
    margin: 0 48px 0 0;
  }
}
#nav-main .nav {
  width: 100%;
}
@media (min-width: 992px) {
  #nav-main .nav {
    width: auto;
  }
}
#nav-main .nav .navbar-nav {
  display: flex;
  margin: 12px auto 0 auto;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  #nav-main .nav .navbar-nav {
    margin: 0 0 0 auto;
    justify-content: flex-end;
    width: auto;
  }
}
#nav-main .nav .navbar-nav a {
  text-decoration: none;
  color: black;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-left: 8px;
  margin-right: 8px;
}
#nav-main .nav .navbar-nav a:hover {
  color: #e34234;
}
@media (min-width: 992px) {
  #nav-main .nav .navbar-nav a {
    font-size: 24px;
    margin-left: 18px;
    margin-right: 18px;
  }
}

div.intro {
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  justify-content: center;
  background: linear-gradient(148deg, rgba(245, 243, 229, 0.36) 22.25%, rgba(148, 148, 148, 0.16) 76.79%);
}
@media (min-width: 992px) {
  div.intro {
    margin-top: 0;
    padding: 36px;
    border-radius: 24px;
  }
}
div.intro .photo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem auto;
}
@media (min-width: 992px) {
  div.intro .photo-circle {
    width: 150px;
    height: 150px;
  }
}
div.intro .photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.intro h1 {
  margin-bottom: 24px;
}
div.intro h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
div.intro p {
  color: #27251B;
  font-family: "Merriweather", Georgia, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}
div.intro ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 0;
}
@media (min-width: 992px) {
  div.intro ul {
    margin: 24px 0 0 0;
  }
}
div.intro ul li {
  padding: 0;
  list-style-type: none;
  text-align: center;
  color: #747266;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
div.intro ul li:after {
  content: "";
  display: block;
  width: 40px;
  margin: 12px auto;
  border-top: 2px solid rgba(116, 114, 102, 0.5019607843);
}
@media (min-width: 992px) {
  div.intro ul li {
    padding: 8px 0;
  }
  div.intro ul li:after {
    display: none;
  }
}
div.intro ul li a {
  text-decoration: none;
  color: #e34234;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}
div.intro ul li a:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  div.intro.home-intro {
    margin-top: 24px;
    padding: 48px;
    border-radius: 24px;
  }
}
@media (min-width: 992px) {
  div.intro.home-intro p {
    font-size: 28px;
  }
}
div.intro.icon-intro {
  position: relative;
  overflow: hidden;
}
div.intro.icon-intro .bg-icon {
  display: block;
  Z-index: 1;
  content: "";
  position: absolute;
  top: 100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-image: url("/uploads/images/web-programming.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.1;
}

section.section-standard {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  section.section-standard {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

section.section-hero {
  padding-top: 12px;
  padding-bottom: 24px;
  text-align: center;
}
@media (min-width: 992px) {
  section.section-hero {
    padding-top: 32px;
    padding-bottom: 32px;
    text-align: left;
  }
}
section.section-hero .photo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem auto;
}
@media (min-width: 992px) {
  section.section-hero .photo-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem 0;
  }
}
section.section-hero .photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.section-hero h1 {
  margin-bottom: 1rem;
  line-height: 1;
}
section.section-hero h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
section.section-hero p {
  color: #27251B;
  font-family: "Merriweather", Georgia, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}
@media (min-width: 992px) {
  section.section-hero p {
    font-size: 24px;
    padding-right: 5rem;
  }
}
section.section-hero ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 0;
}
@media (min-width: 992px) {
  section.section-hero ul {
    margin: 0 0 0 0;
  }
}
section.section-hero ul li {
  padding: 0 0 12px 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
  color: #747266;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.section-hero ul li:after {
  content: "";
  display: block;
  width: 40px;
  margin: 12px auto 0 auto;
  border-top: 2px solid rgba(116, 114, 102, 0.5019607843);
}
section.section-hero ul li.last-item:after {
  display: none;
}
@media (min-width: 992px) {
  section.section-hero ul li {
    padding: 8px 0;
    text-align: left;
  }
  section.section-hero ul li:after {
    display: none;
  }
}
section.section-hero ul li a {
  text-decoration: none;
  color: #e34234;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}
section.section-hero ul li a:hover {
  text-decoration: underline;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.work-grid div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.div1 {
  grid-area: 1/1/5/5;
}

.div2 {
  grid-area: 5/1/7/3;
}

.div3 {
  grid-area: 5/3/7/5;
}

.div4 {
  grid-area: 1/5/4/7;
}

.div5 {
  grid-area: 4/5/7/7;
}

.work-item {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .work-item {
    margin-bottom: 48px;
  }
}
.work-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow2-elevation-medium);
}
.work-item .content {
  padding: 0 16px;
}
.work-item h3 {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .work-item h3 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .work-item h3 {
    font-size: 32px;
  }
}
.work-item h3 .role {
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  vertical-align: bottom;
  font-size: 14px;
  font-weight: 400;
  color: #989794;
  margin-left: 8px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .work-item h3 .role {
    flex-direction: row;
    font-size: 16px;
    margin-left: 8px;
  }
}
.work-item h3 .role span {
  display: block;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 500;
  color: #e34234;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #e34234;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 2px;
}
@media (min-width: 992px) {
  .work-item h3 .role span {
    display: block;
    margin-top: 0;
  }
}
.work-item p {
  color: #0B0A07;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}
.work-item p.role {
  display: flex;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #989794;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .work-item p {
    font-size: 18px;
  }
  .work-item p.role {
    font-size: 16px;
  }
}

.services-accordion .accordion-item {
  margin-top: 24px;
  border-bottom: 1px solid #DEDCD1;
  padding: 0;
  border-radius: 12px;
}
.services-accordion .accordion-item .accordion-header {
  border-radius: 12px;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e34234;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  border: none;
}
.services-accordion .accordion-item .accordion-header .accordion-button {
  background: none;
  border: none;
  font-size: 28px;
  color: #0B0A07;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.services-accordion .accordion-item .accordion-header .accordion-button.active {
  transform: rotate(45deg);
}
.services-accordion .accordion-item .accordion-header .accordion-button img.service-icon {
  transition: transform 0.2s ease-in-out;
  margin-right: 16px;
  height: 48px !important;
  width: auto;
}
.services-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  color: #989794;
  line-height: 1.6;
}
.services-accordion .accordion-content.active {
  max-height: 500px;
  padding-bottom: 16px;
}

footer {
  margin-top: 48px;
  text-align: left;
  padding: 2rem 1rem;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #747266;
  background: linear-gradient(180deg, hsl(52, 44%, 93%) 1%, hsl(52, 25%, 88%) 100%);
}
footer a {
  color: #e34234;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .copyright p {
  margin: 0;
  font-family: "Cal Sans UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #989794;
  line-height: 1.2;
}
@media (min-width: 992px) {
  footer .copyright p {
    font-size: 20px;
  }
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
}

.icon-external-link {
  width: 24px;
  height: 24px;
  fill: green;
  color: brown;
  vertical-align: middle;
}

.line-2-wrapper {
  display: block; /* Allows container to grow with wrapped text */
  position: relative;
  overflow: hidden;
  width: 100%; /* Take full width on mobile to allow wrapping */
  min-height: 1.2em;
}

.scrolling-line {
  position: absolute; /* Hidden phrases don't take up space */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  /* Remove white-space: nowrap to allow wrapping */
}

/* We will use a class to make the active phrase relative */
.scrolling-line.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.emphasize {
  position: relative;
  display: inline-block;
  z-index: 1; /* Ensure text stays above the highlight */
  --underline-width: 0%;
}

.emphasize::after {
  content: "";
  position: absolute;
  left: 0;
  /* Adjust 'bottom' to move the highlight up/down relative to the text */
  bottom: 4px;
  width: var(--underline-width);
  height: 12px;
  background-color: rgba(227, 66, 52, 0.75);
  z-index: -1; /* Move highlight behind the text */
  pointer-events: none;
}

/* New Hand-Drawn Variation */
.emphasize-drawn {
  position: relative;
  display: inline-block;
  z-index: 1;
  --draw-progress: 100%; /* 100% means hidden for stroke-dashoffset */
}

.emphasize-drawn::after {
  content: "";
  position: absolute;
  left: -5%; /* Slightly wider than the word for a natural look */
  bottom: -4px;
  width: 110%;
  height: 10px;
  background-color: rgb(227, 66, 52);
  z-index: -1;
  /* Hand-drawn SVG Path Mask */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="www.w3.org" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="www.w3.org" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* Animate the reveal using clip-path for a drawing effect */
  clip-path: inset(0 var(--draw-progress) 0 0);
}
