@import url(reset.css);
/* Media Query Mixins */
/* tools */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Colors */
/* Typography */
@font-face {
  font-family: 'Albert Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fy.ttf) format('truetype');
}
@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rA.ttf) format('truetype');
}
@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rA.ttf) format('truetype');
}
@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rA.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Serif Pro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v17/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v17/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v17/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSs.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourceserifpro/v17/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSs.ttf) format('truetype');
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Albert Sans', sans-serif;
  line-height: 1.2;
}
h1,
h2,
h3 {
  font-weight: 900;
}
h1 {
  font-size: 50px;
}
p {
  font-family: 'Source Serif Pro', serif;
}
p a {
  color: #009774;
  text-decoration: underline;
}
p a:hover,
p a:focus {
  color: #00644d;
}
a {
  text-decoration: none;
}
b,
strong {
  font-weight: 900;
}
@media screen and (max-width: 320px) {
  font-size: 13px;
}
/* Animations */
@keyframes fadeUp {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes translateInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-510px * 4));
  }
}
@media only screen and (max-width: 700px) {
  @keyframes translateInfinite {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-335px * 4));
    }
  }
}
@keyframes raiseUp {
  100% {
    transform: translateY(-5%);
  }
}
/* Global theme */
html {
  background-color: #FAFAFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  scroll-padding-top: 72px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.25s linear;
}
@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1080px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 834px) {
  .container {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }
}
nav,
footer {
  background-color: #ffffff;
  font-family: 'Albert Sans', sans-serif;
}
nav .container,
footer .container {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 1920px) {
  nav .container,
  footer .container {
    max-width: none;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  nav .container,
  footer .container {
    max-width: 1080px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 320px) {
  nav .container,
  footer .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
nav .container ul.links,
footer .container ul.links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-weight: 600;
}
@media only screen and (max-width: 700px) {
  nav .container ul.links,
  footer .container ul.links {
    column-gap: 24px;
  }
}
@media screen and (max-width: 320px) {
  nav .container ul.links,
  footer .container ul.links {
    column-gap: 12px;
  }
}
nav .container ul.links li,
footer .container ul.links li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav .container ul.links li a,
footer .container ul.links li a {
  color: #1A1A1A;
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 320px) {
  nav .container ul.links li a,
  footer .container ul.links li a {
    font-size: 14px;
  }
}
nav .container ul.links li a span,
footer .container ul.links li a span {
  position: relative;
  top: 1.5px;
}
nav .container ul.links li a::after,
footer .container ul.links li a::after {
  content: '';
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: #1A1A1A;
  transition: opacity 0.25s ease-out;
}
nav .container ul.links li a:hover::after,
footer .container ul.links li a:hover::after,
nav .container ul.links li a:focus::after,
footer .container ul.links li a:focus::after {
  opacity: 1;
}
nav {
  position: sticky;
  top: 0;
  padding: 15px 0;
  z-index: 2;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
}
nav .container {
  justify-content: space-between;
}
nav .container .home {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.5px;
  line-height: 1;
}
@media screen and (max-width: 320px) {
  nav .container .home {
    font-size: 18px;
  }
}
nav .container .home a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1A1A1A;
}
nav .container .home a img {
  height: 42px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
footer {
  padding: 30px 0;
  box-shadow: 0 0 -6px 0 rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 700px) {
  footer {
    padding: 42px 0 54px 0;
  }
}
footer .container {
  gap: 30px;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  footer .container {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
  }
}
footer .container .label {
  font-size: 20px;
  font-weight: 900;
}
@media only screen and (max-width: 700px) {
  footer .container .label {
    font-size: 24px;
  }
}
@media screen and (max-width: 320px) {
  footer .container .label {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1024px) {
  footer .container ul.links {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 700px) {
  footer .container ul.links {
    flex-direction: column;
    row-gap: 18px;
    justify-content: center;
    align-items: flex-start;
  }
}
footer .container ul.links li a {
  display: flex;
  gap: 6px;
  align-items: center;
}
footer .container ul.links li a img {
  width: 21px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.button-group a {
  transition: all 0.25s ease;
}
.button-group a:hover,
.button-group a:focus {
  transform: translateY(-5%);
}
/* CTA Repeat */
section.cta-repeat {
  padding: 90px 0;
  background-color: #1A1A1A;
  background-image: url(/images/global/footer/cta-repeat-accent-shapes.svg);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 700px) {
  section.cta-repeat {
    padding: 60px 0;
    background-position: 16% 9%;
  }
}
section.cta-repeat .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
section.cta-repeat .text-group {
  color: #FAFAFA;
  text-align: center;
  max-width: 685px;
  opacity: 0;
}
section.cta-repeat .text-group.trig {
  animation: 1.25s ease 1 normal forwards fadeUp;
}
section.cta-repeat .text-group h5 {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0;
}
section.cta-repeat .text-group h5.trig {
  animation: 2s ease 1 normal forwards fadeUp;
}
@media screen and (max-width: 320px) {
  section.cta-repeat .text-group h5 {
    font-size: 26px;
  }
}
section.cta-repeat .text-group p {
  font-size: 19px;
  line-height: 1.5;
}
@media screen and (max-width: 320px) {
  section.cta-repeat .text-group p {
    font-size: 16px;
  }
}
section.cta-repeat .button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 18px;
  animation: 2s ease 1 fadeUp;
}
@media only screen and (max-width: 700px) {
  section.cta-repeat .button-group {
    width: 100%;
  }
}
section.cta-repeat .button-group a {
  font-family: 'Albert Sans', sans-serif;
  color: #FAFAFA;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  outline: 2px solid #FAFAFA;
  padding: 12px 72px;
  border-radius: 500px;
}
@media only screen and (max-width: 700px) {
  section.cta-repeat .button-group a {
    padding: 12px 30px;
  }
}
@media screen and (max-width: 320px) {
  section.cta-repeat .button-group a {
    font-size: 16px;
    padding: 12px 18px;
  }
}
section.cta-repeat .button-group a:hover,
section.cta-repeat .button-group a:focus {
  background-color: rgba(250, 250, 250, 0.1);
}
section.cta-repeat .self-credit {
  margin-top: 24px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: #FAFAFA;
}
.hero {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.hero .accent {
  position: absolute;
  z-index: -1;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.hero .accent.left {
  top: -320px;
  left: -160px;
}
@media only screen and (min-width: 700px) and (max-width: 1024px) {
  .hero .accent.left {
    top: -100px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .accent.left {
    left: -350px;
  }
}
.hero .accent.right {
  right: -300px;
  bottom: -600px;
}
@media only screen and (max-width: 700px) {
  .hero .accent.right {
    right: -540px;
    bottom: -400px;
  }
}
.hero .container {
  padding-top: 90px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1680px) {
  .hero .container {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content .hero-image {
  max-width: 300px;
  width: 100%;
  margin-bottom: 42px;
  transition: all 0.25s ease;
  animation: 1.25s ease 1 fadeUp;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  .hero .content .hero-image {
    max-width: 280px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .hero-image {
    max-width: 235px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .hero-image {
    max-width: 190px;
  }
}
.hero .content .hero-icons {
  position: absolute;
  overflow-x: hidden;
  transition: all 0.25s ease;
  animation: 2s ease 1 fadeUp;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  z-index: 0;
}
@media screen and (max-width: 1680px) {
  .hero .content .hero-icons {
    max-width: 660px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .hero-icons {
    max-width: 568px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .hero-icons {
    max-width: 400px;
  }
}
.hero .content .text-group {
  max-width: 505px;
  margin-bottom: 42px;
  animation: 1.25s ease 1 fadeUp;
}
.hero .content .text-group h1 {
  margin-bottom: 12px;
}
@media only screen and (max-width: 700px) {
  .hero .content .text-group h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .text-group h1 {
    font-size: 30px;
  }
}
.hero .content .text-group p.subtitle {
  font-size: 23px;
  line-height: 1.5;
}
@media only screen and (max-width: 700px) {
  .hero .content .text-group p.subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .text-group p.subtitle {
    font-size: 18px;
  }
}
.hero .content .button-group {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 120px;
  justify-content: center;
  opacity: 0;
}
.hero .content .button-group.trig {
  animation: 1.25s ease 1 forwards fadeUp;
}
@media screen and (max-width: 1680px) {
  .hero .content .button-group {
    margin-bottom: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero .content .button-group {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .button-group {
    width: 100%;
    margin-bottom: 60px;
  }
}
.hero .content .button-group a.cta-button {
  font-family: 'Albert Sans', sans-serif;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  border-radius: 250px;
  background-color: #3C41BF;
  padding: 12px 0;
  width: 200px;
}
@media only screen and (max-width: 700px) {
  .hero .content .button-group a.cta-button {
    flex: 1;
    max-width: 200px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .button-group a.cta-button {
    font-size: 18px;
  }
}
.hero .content .button-group a.cta-button:hover,
.hero .content .button-group a.cta-button:focus {
  background-color: #303498;
}
.hero .content .clients {
  opacity: 0;
}
.hero .content .clients.trig {
  animation: 2s ease 1 forwards fadeUp;
}
.hero .content .clients span {
  font-family: 'Albert Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1920px) {
  .hero .content .clients span {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .clients span {
    display: inline-block;
    width: 280px;
  }
}
@media screen and (max-width: 320px) {
  .hero .content .clients span {
    font-size: 15px;
  }
}
.hero .content .clients .client-list {
  display: inline-flex;
  column-gap: 54px;
  row-gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 1280px) {
  .hero .content .clients .client-list {
    column-gap: 48px;
    row-gap: 6px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero .content .clients .client-list {
    column-gap: 36px;
    row-gap: 0px;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .clients .client-list {
    column-gap: 30px;
  }
}
.hero .content .clients .client-list img {
  height: 103px;
  width: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  aspect-ratio: 1.66666667;
}
@media only screen and (max-width: 1280px) {
  .hero .content .clients .client-list img {
    aspect-ratio: 2.5;
  }
}
@media only screen and (max-width: 1024px) {
  .hero .content .clients .client-list img {
    aspect-ratio: 2.5;
  }
}
@media only screen and (max-width: 700px) {
  .hero .content .clients .client-list img {
    height: 80px;
    aspect-ratio: 1.66666667;
  }
}
section.about {
  background-color: #DAF0EB;
  box-shadow: 0px 12px 0px #FAFAFA inset;
  padding: 90px 0;
  overflow-x: hidden;
}
@media only screen and (max-width: 700px) {
  section.about {
    padding: 60px 0;
  }
}
section.about .text-group.headline {
  margin-bottom: 42px;
  opacity: 0;
}
section.about .text-group.headline.trig {
  animation: 1.25s ease forwards 1 fadeUp;
}
@media screen and (orientation: portrait) and (max-width: 834px) {
  section.about .text-group.headline {
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
section.about .text-group.headline span {
  font-family: 'Albert Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 28.6px;
  text-transform: uppercase;
}
@media only screen and (max-width: 700px) {
  section.about .text-group.headline span {
    font-size: 14px;
  }
}
@media screen and (max-width: 320px) {
  section.about .text-group.headline span {
    font-size: 12px;
    line-height: 1.2;
  }
}
section.about .text-group.headline h2 {
  font-size: 50px;
  font-weight: 900;
}
@media only screen and (max-width: 700px) {
  section.about .text-group.headline h2 {
    font-size: 44px;
    line-height: 1;
  }
}
@media screen and (max-width: 320px) {
  section.about .text-group.headline h2 {
    font-size: 36px;
    margin-top: 12px;
  }
}
section.about .about-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  margin-bottom: 90px;
  opacity: 0;
}
section.about .about-cards.trig {
  animation: 1.25s ease 1 forwards fadeIn;
}
@media screen and (orientation: portrait) and (max-width: 834px) {
  section.about .about-cards {
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: 600px;
    gap: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 700px) {
  section.about .about-cards {
    max-width: none;
    margin-bottom: 60px;
  }
}
section.about .about-cards .about-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 48px 30px 54px 30px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards .about-card {
    padding: 30px 18px;
  }
}
section.about .about-cards .about-card h3 {
  font-size: 36px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards .about-card h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards .about-card h3 {
    font-size: 24px;
  }
}
section.about .about-cards .about-card ul.tag-group {
  display: flex;
  flex-direction: row;
  gap: 12px 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 0;
  margin-bottom: 36px;
  max-width: 420px;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards .about-card ul.tag-group {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards .about-card ul.tag-group {
    font-size: 13px;
    gap: 12px;
  }
}
section.about .about-cards .about-card ul.tag-group li {
  padding: 6px 18px;
  border-radius: 18px;
}
section.about .about-cards .about-card .learn-more {
  font-family: 'Albert Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border-radius: 27px;
  padding: 10px 22px;
  outline-width: 2px;
  outline-style: solid;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards .about-card .learn-more {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards .about-card .learn-more {
    font-size: 13px;
  }
}
section.about .about-cards .about-card .learn-more img {
  height: 18px;
  width: 18px;
}
@media screen and (max-width: 320px) {
  section.about .about-cards .about-card .learn-more img {
    height: 15px;
    width: 15px;
  }
}
section.about .about-cards .about-card:first-of-type {
  background-color: #FAFAFA;
  color: #1A1A1A;
}
section.about .about-cards .about-card:first-of-type li {
  background-color: #DCDDF4;
  color: #3C41BF;
}
section.about .about-cards .about-card:first-of-type .learn-more {
  color: #3C41BF;
  outline-color: #3C41BF;
}
section.about .about-cards .about-card:first-of-type .learn-more img {
  stroke: #3C41BF;
}
section.about .about-cards .about-card:last-of-type {
  background-color: #3C41BF;
  color: #FAFAFA;
}
section.about .about-cards .about-card:last-of-type li {
  background-color: #ffffff12;
}
section.about .about-cards .about-card:last-of-type .learn-more {
  color: #FAFAFA;
  outline-color: #FAFAFA;
}
section.about .about-cards .about-card:last-of-type .learn-more img {
  stroke: #FAFAFA;
}
section.about .about-cards .about-card:hover,
section.about .about-cards .about-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
section.about .about-cards .about-card:hover:first-of-type .learn-more,
section.about .about-cards .about-card:focus:first-of-type .learn-more {
  background-color: rgba(60, 65, 191, 0.1);
}
section.about .about-cards .about-card:hover:last-of-type .learn-more,
section.about .about-cards .about-card:focus:last-of-type .learn-more {
  background-color: rgba(250, 250, 250, 0.1);
}
section.about .about-cards dialog#atWork,
section.about .about-cards dialog#atHome {
  width: 750px;
  border-radius: 36px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: none;
}
section.about .about-cards dialog#atWork[open],
section.about .about-cards dialog#atHome[open] {
  animation: 0.35s ease 1 fadeUp;
}
section.about .about-cards dialog#atWork[close],
section.about .about-cards dialog#atHome[close] {
  animation: 0.25s ease fadeUp reverse;
}
section.about .about-cards dialog#atWork::backdrop,
section.about .about-cards dialog#atHome::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 1024px) {
  section.about .about-cards dialog#atWork,
  section.about .about-cards dialog#atHome {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 700px) {
  section.about .about-cards dialog#atWork,
  section.about .about-cards dialog#atHome {
    margin-right: 25px;
    margin-left: 25px;
    max-width: fit-content;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards dialog#atWork,
  section.about .about-cards dialog#atHome {
    margin-left: 6px;
    margin-right: 6px;
    border-radius: 18px;
  }
}
section.about .about-cards dialog#atWork .modal-container,
section.about .about-cards dialog#atHome .modal-container {
  width: 100%;
  background-color: #FAFAFA;
  z-index: 5;
  box-shadow: 0px 18px 90px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}
section.about .about-cards dialog#atWork .modal-container img.main-photo,
section.about .about-cards dialog#atHome .modal-container img.main-photo {
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin-bottom: -36px;
  margin-top: -42px;
  overflow: hidden;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
section.about .about-cards dialog#atWork .modal-container img.main-photo:focus,
section.about .about-cards dialog#atHome .modal-container img.main-photo:focus {
  outline: none;
}
section.about .about-cards dialog#atWork .modal-container .close,
section.about .about-cards dialog#atHome .modal-container .close {
  position: sticky;
  height: 42px;
  width: 42px;
  float: right;
  right: 18px;
  top: 18px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
}
section.about .about-cards dialog#atWork .modal-container .close:hover,
section.about .about-cards dialog#atHome .modal-container .close:hover,
section.about .about-cards dialog#atWork .modal-container .close:focus,
section.about .about-cards dialog#atHome .modal-container .close:focus {
  transform: scale(1.1);
  cursor: pointer;
}
section.about .about-cards dialog#atWork .modal-container .close img,
section.about .about-cards dialog#atHome .modal-container .close img {
  height: 18px;
  width: 18px;
  aspect-ratio: 1;
}
section.about .about-cards dialog#atWork .modal-container .modal-content,
section.about .about-cards dialog#atHome .modal-container .modal-content {
  padding: 54px 42px 60px 42px;
  position: relative;
  border-radius: 36px 36px 0px 0px;
  box-shadow: 0px -5px 18px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 700px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content,
  section.about .about-cards dialog#atHome .modal-container .modal-content {
    padding: 36px 24px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content,
  section.about .about-cards dialog#atHome .modal-container .modal-content {
    padding: 18px;
    border-radius: 18px;
  }
}
section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main,
section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main h3,
section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main h3 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main h3,
  section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main h3,
  section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main h3 {
    font-size: 24px;
  }
}
section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main p,
section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main p {
  font-family: 'Source Serif Pro', serif;
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main p,
  section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main p {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards dialog#atWork .modal-container .modal-content .text-group.main p,
  section.about .about-cards dialog#atHome .modal-container .modal-content .text-group.main p {
    font-size: 14px;
  }
}
section.about .about-cards #atWork .modal-content {
  background-color: #FAFAFA;
}
section.about .about-cards #atWork .modal-content .text-group.main h3,
section.about .about-cards #atWork .modal-content .text-group.main p {
  color: #1A1A1A;
}
section.about .about-cards #atHome .modal-container {
  background-color: #363aac !important;
}
section.about .about-cards #atHome .modal-content {
  background-color: #363aac !important;
}
section.about .about-cards #atHome .modal-content .text-group.main h3,
section.about .about-cards #atHome .modal-content .text-group.main p {
  color: #FAFAFA;
}
section.about .about-cards #atHome .modal-content .habit-tracker {
  margin-top: 42px;
}
section.about .about-cards #atHome .modal-content .habit-tracker span.title {
  font-family: 'Albert Sans', sans-serif;
  color: #FAFAFA;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0px;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards #atHome .modal-content .habit-tracker span.title {
    font-size: 21px;
  }
}
@media screen and (max-width: 320px) {
  section.about .about-cards #atHome .modal-content .habit-tracker span.title {
    font-size: 18px;
  }
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-top: 12px;
}
@media only screen and (max-width: 700px) {
  section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid {
    grid-template-columns: 1fr;
  }
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit {
  padding: 18px 12px;
  background-color: #FAFAFA;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit:hover,
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit:focus {
  transform: translateY(-3px);
}
@media screen and (max-width: 320px) {
  section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit {
    padding: 12px;
  }
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .icon {
  height: 44px;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .icon img {
  width: 24px;
  height: auto;
  overflow: hidden;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .text-group {
  gap: 2px;
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .text-group .label {
  font-family: 'Albert Sans', sans-serif;
  color: #3C41BF;
  font-size: 17px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
}
@media screen and (max-width: 320px) {
  section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .text-group .label {
    font-size: 15px;
  }
}
section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .text-group .description {
  font-family: 'Source Serif Pro', serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1;
}
@media screen and (max-width: 320px) {
  section.about .about-cards #atHome .modal-content .habit-tracker .habit-grid .habit .text-group .description {
    font-size: 14px;
  }
}
section.about .reputation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 1920px) {
  section.about .reputation {
    width: 150%;
    margin-left: -25%;
  }
}
@media only screen and (max-width: 1440px) {
  section.about .reputation {
    width: 100vw;
    margin-right: -25px;
    margin-left: -25px;
  }
}
section.about .reputation span {
  display: block;
  width: 100%;
  color: #1A1A1A;
  font-family: 'Albert Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (max-width: 700px) {
  section.about .reputation span {
    max-width: 287px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation span {
    margin-bottom: 18px;
    font-size: 15px;
  }
}
section.about .reputation .splide {
  padding: 60px 0 0 0;
}
@media screen and (max-width: 320px) {
  section.about .reputation .splide {
    padding: 24px 0;
  }
}
section.about .reputation .splide .splide__track {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  cursor: grab;
}
section.about .reputation .splide .splide__track:active {
  cursor: grabbing;
}
section.about .reputation .splide .splide__track .splide__list li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  webkit-perspective: 1000;
  webkit-backface-visibility: none;
}
section.about .reputation .splide .splide__arrow {
  background: #1A1A1A;
  height: 3em;
  width: 3em;
  transition: opacity 0.09s ease;
}
section.about .reputation .splide .splide__arrow svg {
  fill: #FAFAFA;
  height: 1.5em;
  width: 1.5em;
}
@media only screen and (max-width: 700px) {
  section.about .reputation .splide .splide__arrow svg svg {
    height: 18px;
    width: 18px;
  }
}
@media only screen and (max-width: 700px) {
  section.about .reputation .splide .splide__arrow.splide__arrow--prev {
    left: 12px;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation .splide .splide__arrow.splide__arrow--prev {
    left: 6px;
  }
}
@media only screen and (max-width: 700px) {
  section.about .reputation .splide .splide__arrow.splide__arrow--next {
    right: 12px;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation .splide .splide__arrow.splide__arrow--next {
    right: 6px;
  }
}
@media only screen and (max-width: 700px) {
  section.about .reputation .splide .splide__arrow {
    height: 2em;
    width: 2em;
  }
}
section.about .reputation .splide .splide__pagination__page {
  background-color: rgba(26, 26, 26, 0.4);
}
section.about .reputation .splide .splide__pagination__page.is-active {
  background-color: #009774;
}
section.about .reputation figure.quote {
  margin: 0;
}
section.about .reputation figure.quote a {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-right: auto;
  margin-left: auto;
  gap: 30px;
}
@media only screen and (max-width: 700px) {
  section.about .reputation figure.quote a {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
section.about .reputation figure.quote a img {
  border-radius: 100%;
  aspect-ratio: 1;
  width: 94px;
  opacity: 0;
  transition: opacity 1.25s ease;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
@media only screen and (max-width: 700px) {
  section.about .reputation figure.quote a img {
    width: 150px;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation figure.quote a img {
    width: 120px;
  }
}
section.about .reputation figure.quote a .text-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
@media only screen and (max-width: 700px) {
  section.about .reputation figure.quote a .text-group {
    width: 100%;
  }
}
section.about .reputation figure.quote a .text-group blockquote {
  margin: 0;
  font-family: 'Source Serif Pro', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  color: #1A1A1A;
  line-height: 1.5;
}
@media only screen and (max-width: 700px) {
  section.about .reputation figure.quote a .text-group blockquote {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation figure.quote a .text-group blockquote {
    font-size: 13px;
  }
}
section.about .reputation figure.quote a .text-group figcaption > cite {
  font-family: 'Albert Sans', sans-serif;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
}
@media only screen and (max-width: 700px) {
  section.about .reputation figure.quote a .text-group figcaption > cite {
    font-size: 15px;
  }
}
@media screen and (max-width: 320px) {
  section.about .reputation figure.quote a .text-group figcaption > cite {
    font-size: 13px;
  }
}
section#work {
  padding: 90px 0 120px 0;
  background-color: #DCDDF4;
  scroll-padding-top: 90px;
}
@media only screen and (max-width: 700px) {
  section#work {
    padding: 60px 0;
  }
}
section#work .text-group {
  max-width: 600px;
  color: #3C41BF;
  margin-bottom: 72px;
  opacity: 0;
}
section#work .text-group.trig {
  animation: 1.25s ease 1 forwards fadeUp;
}
section#work .text-group h4 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media only screen and (max-width: 700px) {
  section#work .text-group h4 {
    font-size: 46px;
  }
}
@media screen and (max-width: 320px) {
  section#work .text-group h4 {
    font-size: 30px;
  }
}
section#work .text-group p {
  font-size: 19px;
  line-height: 1.5;
}
@media only screen and (max-width: 700px) {
  section#work .text-group p {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 320px) {
  section#work .text-group p {
    font-size: 15px;
  }
}
section#work .project-list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}
@media only screen and (max-width: 1024px) {
  section#work .project-list {
    gap: 18px;
  }
}
@media only screen and (max-width: 700px) {
  section#work .project-list {
    grid-template-columns: 1fr;
  }
}
section#work .project-list .project {
  display: flex;
  flex-direction: column;
  font-family: 'Albert Sans', sans-serif;
  color: #FAFAFA;
  background: linear-gradient(transparent 59%, #1A1A1A 59%);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: inset 0 0px 0px 6px rgba(26, 26, 26, 0);
  outline: rgba(26, 26, 26, 0) solid 6px;
  opacity: 0;
  transition: all 0.25s ease;
}
section#work .project-list .project.trig {
  animation: 1.25s ease 1 forwards fadeUp;
}
section#work .project-list .project.trig:nth-of-type(2) {
  animation-duration: 1.5s;
}
section#work .project-list .project.trig:nth-of-type(3) {
  animation-duration: 1.7s;
}
section#work .project-list .project.trig:nth-of-type(4) {
  animation-duration: 1.9s;
}
section#work .project-list .project.trig:nth-of-type(5) {
  animation-duration: 2.1s;
}
section#work .project-list .project.trig:nth-of-type(6) {
  animation-duration: 1.355s;
}
@media screen and (max-width: 320px) {
  section#work .project-list .project {
    border-radius: 24px;
  }
}
section#work .project-list .project .img-container {
  position: relative;
  aspect-ratio: 1.6;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
}
@media only screen and (max-width: 700px) {
  section#work .project-list .project .img-container {
    aspect-ratio: 1.4;
  }
}
@media screen and (max-width: 320px) {
  section#work .project-list .project .img-container {
    border-radius: 0 0 24px 24px;
  }
}
section#work .project-list .project .img-container img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.15s ease-in;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
@media only screen and (max-width: 700px) {
  section#work .project-list .project .img-container img {
    aspect-ratio: 1.4;
  }
}
section#work .project-list .project .img-container span {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 4px 12px;
  background-color: #1A1A1A;
  border-radius: 14px;
  font-weight: 900;
}
@media screen and (max-width: 320px) {
  section#work .project-list .project .img-container span {
    font-size: 12px;
    top: 12px;
    left: 12px;
  }
}
section#work .project-list .project .details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section#work .project-list .project .details .title {
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 320px) {
  section#work .project-list .project .details .title {
    font-size: 20px;
  }
}
section#work .project-list .project .details .metadata {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 320px) {
  section#work .project-list .project .details .metadata {
    gap: 18px;
  }
}
section#work .project-list .project .details .metadata .meta {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
@media screen and (max-width: 320px) {
  section#work .project-list .project .details .metadata .meta {
    font-size: 13px;
  }
}
section#work .project-list .project .details .metadata .meta .label {
  font-weight: 900;
}
section#work .project-list .project .details .metadata .meta .value {
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  section#work .project-list .project {
    background: linear-gradient(transparent 40%, #1A1A1A 50%);
  }
}
section#work .project-list .project:hover,
section#work .project-list .project:focus {
  transform: translateY(-6px);
  box-shadow: inset 0 0px 0px 6px #1A1A1A;
  outline-color: #1A1A1A;
}
