.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.is-removed {
  display: none;
}

@keyframes soft {
  from {
    -webkit-text-decoration: underline 0.15em rgba(var(--blue_), 0.5);
            text-decoration: underline 0.15em rgba(var(--blue_), 0.5);
    text-underline-offset: 0.2em;
  }
  to {
    -webkit-text-decoration: underline 0.15em rgba(var(--red_), 0.5);
            text-decoration: underline 0.15em rgba(var(--red_), 0.5);
    text-underline-offset: 0.2em;
  }
}
@keyframes movemove {
  0% {
    transform: translateX(calc(-50vw - 15vmax));
    background-color: #FFBEBE;
    filter: blur(0px);
  }
  25% {
    filter: blur(0px);
  }
  100% {
    transform: translateX(calc(50vw + 15vmax));
    background-color: #5377F9;
    filter: blur(20px);
  }
}
[data-container=layout] {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  justify-content: center;
  padding: var(--small-space);
}
@media screen and (min-width: 480px) {
  [data-container=layout] {
    padding: var(--small-space) var(--variable-space);
  }
}
[data-container=layout].alternative-bkg {
  background-color: var(--background-alt);
}
@media screen and (min-width: 480px) {
  [data-container=layout].only-mobile {
    display: none;
  }
}
[data-container=layout].is-hidden {
  display: none !important;
}
@media screen and (min-width: 0px) and (max-width: 479px) {
  [data-container=layout].only-desktop {
    display: none;
  }
}
[data-container=layout].is-center .column {
  padding: 1.5rem 0;
}
[data-container=layout].is-center .column .block {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
[data-container=layout].is-center .column .block a {
  margin-top: 0;
}
[data-container=layout][data-bkg=alternative] {
  background-color: var(--background-alt);
}
[data-container=layout][data-bkg=pattern] {
  background-image: repeating-linear-gradient(45deg, var(--background-contrast) 0, var(--background-contrast) 1px, var(--background-color) 0, var(--background-color) 50%);
  background-size: 10px 10px;
}
[data-container=layout] a[title=button] {
  font-size: 1rem;
}
[data-container=layout][data-layout=half-width] {
  gap: var(--variable-space);
  width: 100%;
}
@media screen and (min-width: 480px) {
  [data-container=layout][data-layout=half-width] {
    gap: var(--variable-space);
    padding: var(--small-space) var(--variable-space);
  }
}
@media screen and (min-width: 1920px) {
  [data-container=layout][data-layout=half-width] {
    padding: var(--small-space) calc(var(--variable-space) * 2);
  }
}
@media screen and (min-width: 860px) {
  [data-container=layout][data-layout=half-width].is-sticky .column {
    position: sticky;
    top: 90px;
  }
}
[data-container=layout][data-layout=half-width].cta {
  align-items: center;
}
@media screen and (max-width: 799px) {
  [data-container=layout][data-layout=half-width] .column {
    grid-column: span 12;
  }
}
[data-container=layout][data-layout=half-width] figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
[data-container=layout][data-layout=half-width] figure.is-square img,
[data-container=layout][data-layout=half-width] figure.is-square video {
  max-width: 520px;
  width: 75%;
  height: auto;
}
@media screen and (min-width: 800px) {
  [data-container=layout][data-layout=half-width] figure.is-square img,
  [data-container=layout][data-layout=half-width] figure.is-square video {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  [data-container=layout][data-layout=half-width] figure.is-square img,
  [data-container=layout][data-layout=half-width] figure.is-square video {
    width: 85%;
  }
}
@media screen and (min-width: 1440px) {
  [data-container=layout][data-layout=half-width] figure.is-square img,
  [data-container=layout][data-layout=half-width] figure.is-square video {
    width: 75%;
  }
}
[data-container=layout][data-layout=half-width] figure.is-vertical img,
[data-container=layout][data-layout=half-width] figure.is-vertical video {
  max-width: 360px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
[data-container=layout][data-layout=full-width] {
  width: 100%;
}
[data-container=layout][data-layout=full-width] figure {
  max-width: calc(800px + 15vw);
  width: 100%;
}
[data-container=layout][data-layout=full-width] .column {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
[data-container=layout] .column {
  grid-column: span var(--span);
}
[data-container=layout].cta {
  width: 100%;
}
[data-container=layout].cta figure.is-vertical img,
[data-container=layout].cta figure.is-square img {
  max-width: 180px !important;
}
[data-container=layout].cta figure.is-horizontal img {
  width: 50%;
  min-width: 200px;
  max-width: 300px;
}
[data-container=layout].cta .column {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[data-container=layout].cta .column .block.title {
  margin-top: 0;
}
[data-container=layout].cta figure.is-vertical {
  aspect-ratio: unset !important;
}
[data-container=layout].cta * > strong.u {
  animation: soft infinite alternate 3s;
}
[data-container=layout].half-width.cta .column {
  height: 100%;
}
[data-container=layout].half-width.cta.cta-red-left .column:nth-child(1) {
  background-color: var(--red);
  color: #fff;
}
[data-container=layout].half-width.cta.cta-red-right .column:nth-child(2) {
  background-color: var(--red);
  color: #fff;
}
[data-container=layout].half-width.cta.cta-blue-left .column:nth-child(1) {
  background-color: var(--blue);
  color: #fff;
}
[data-container=layout].half-width.cta.cta-blue-right .column:nth-child(2) {
  background-color: var(--blue);
  color: #fff;
}
[data-container=layout].cta-border > * {
  border: 1px solid;
  padding: 20px;
}

.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.is-removed {
  display: none;
}

@keyframes soft {
  from {
    -webkit-text-decoration: underline 0.15em rgba(var(--blue_), 0.5);
            text-decoration: underline 0.15em rgba(var(--blue_), 0.5);
    text-underline-offset: 0.2em;
  }
  to {
    -webkit-text-decoration: underline 0.15em rgba(var(--red_), 0.5);
            text-decoration: underline 0.15em rgba(var(--red_), 0.5);
    text-underline-offset: 0.2em;
  }
}
.block {
  width: 100%;
}
.block figcaption a {
  background-color: var(--base-color);
  border: 2px solid var(--base-color);
  color: var(--background-color);
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.25em 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.block figcaption a:hover {
  cursor: pointer;
  color: var(--base-color);
  border: 2px solid var(--base-color);
  background-color: var(--background-color);
}
.block .flex-block {
  display: flex;
}

.block.media {
  margin: var(--small-space) 0;
}

.block.lottie {
  margin: var(--small-space) 0;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.block.lottie .lottie-wrapper.is-horizontal {
  max-width: calc(800px + 15vw);
  width: 100%;
}
.block.lottie .lottie-wrapper.is-square {
  width: 75%;
  max-width: 520px;
}
.block.lottie .lottie-wrapper.is-vertical {
  max-width: 280px;
  max-height: 80vh;
  width: 50%;
  height: auto;
}
.block.lottie .lottie-el {
  border-radius: var(--border-radius);
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.block.lottie .lottie-el > svg {
  border-radius: var(--border-radius);
}

.block.title {
  max-width: calc(640px + 15vw);
  width: 100%;
  margin-bottom: var(--small-space);
  margin-top: var(--small-space);
  width: 100%;
}
.block.title h1,
.block.title h2,
.block.title h3 {
  font-size: 1.875rem;
  line-height: 1.2;
}

.block.subtitle {
  max-width: calc(640px + 15vw);
  width: 100%;
}
.block.subtitle h1,
.block.subtitle h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 0.5em;
}
.block.subtitle h3, .block.subtitle h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.25em;
  margin-top: 24px;
}

.block.text {
  max-width: calc(640px + 15vw);
  width: 100%;
}
.block.text h1,
.block.text h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.block.text h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.25em;
}
.block.text p {
  margin-bottom: 1em;
}
.block.text p:last-of-type {
  margin-bottom: 0;
}
.block.text strong.u {
  animation: soft infinite alternate 3s;
  text-decoration: none;
}
.block.text strong:not(.u) {
  font-family: "TTCommons-DemiBold", sans-serif;
}
.block.text ul {
  font-size: 1.25rem;
  line-height: 1.3;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1em;
  margin-left: 0;
  margin-top: 1em;
  padding-left: 1.5em;
}
@media screen and (min-width: 640px) {
  .block.text ul {
    padding-left: 0;
  }
}
.block.text ul li {
  padding-left: 0em;
  margin-bottom: 0.25em;
}
.block.text ul li:before {
  background-color: currentColor;
  content: "";
  height: 2px;
  margin-left: -1.2em;
  margin-top: calc(1em - 2px);
  position: absolute;
  width: 0.8em;
}
.block.text hr {
  margin: 40px 0 16px 0;
}

.block.line {
  display: block;
  height: var(--small-space);
}
.block.line hr {
  height: 0;
  opacity: 0;
}

.block.quote {
  max-width: calc(640px + 15vw);
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
}

.block.list {
  max-width: calc(640px + 15vw);
  width: 100%;
  padding-left: 1.5em;
  padding-right: var(--small-space);
}
@media screen and (min-width: 640px) {
  .block.list {
    padding-left: 0;
  }
}
.block.list ul {
  font-size: 1.25rem;
  line-height: 1.3;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1em;
  margin-left: 0;
  margin-top: 1em;
}
.block.list ul li {
  padding-left: 0em;
  margin-bottom: 0.25em;
}
.block.list ul li:before {
  background-color: currentColor;
  content: "";
  height: 2px;
  margin-left: -1.2em;
  margin-top: calc(1em - 2px);
  position: absolute;
  width: 0.8em;
}

.block.cta {
  max-width: calc(800px + 15vw);
  width: 100%;
  margin: calc(var(--small-space) * 2) 0 calc(var(--small-space) * 2.5) 0;
  text-align: center;
}
.block.cta h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.block.cta h3 strong.u {
  animation: soft infinite alternate 3s;
  text-decoration: none;
}

.block.image {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: var(--small-space) 0;
}
.block.image:empty {
  margin: 0;
  border: 1px solid red;
}
.block.image figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.block.image figure.is-vertical {
  width: 50%;
  max-width: 280px;
}
.block.image figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.block.localvideo {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: var(--small-space) 0;
}
.block.localvideo figure video {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.block.gallery {
  margin: 60px 0.5em;
}
.block.gallery figure {
  margin: 0 auto;
}
.block.gallery figure ul {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(1, 1fr);
  list-style-type: none;
  padding-left: 0;
}
@media screen and (min-width: 375px) {
  .block.gallery figure ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .block.gallery figure ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .block.gallery figure ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.block.gallery figure ul img {
  border-radius: var(--border-radius);
}
.block.gallery figure figcaption {
  font-size: 0.75rem;
  margin: 0.25em 0;
}

.main > .intro {
  max-width: calc(1280px + 15vw);
  width: 100%;
  align-self: center;
  margin-top: 10rem;
  padding: 0 var(--variable-space) 0 var(--variable-space);
}
.main > .intro .article-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .main > .intro .article-heading {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.main > .intro .article-heading img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main > .intro .article-heading h1 {
  font-size: 3rem;
  line-height: 1;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 1200px) {
  .main > .intro .article-heading h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}
.main > .intro .article-heading .author-name {
  font-size: 1.313rem;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 14px;
}
.main > .intro .article-heading .author-name img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main > .intro .article-heading .reading-time {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #828282;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (min-width: 800px) {
  .main > .intro .article-heading .grid.half-width {
    align-items: center;
    display: grid;
    gap: var(--small-space);
    grid-template-columns: repeat(2, 1fr);
  }
}
.main > .intro .article-heading .grid.half-width h1 {
  font-family: "Spectral", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
}
.main > .intro .article-heading .grid.half-width .column {
  padding: 0;
}
.main > .intro .article-heading .grid.half-width .column .block.image {
  margin: 0;
}
.main > .intro .article-heading .grid.half-width img {
  width: 520px;
  max-width: 100% !important;
}
.main > .intro .article-heading .article-tags {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 12px 0;
}
.main > .intro .article-heading .article-tags .tag {
  padding: 2px 4px;
  border: 1px solid #DDE4FE;
  background: #DDE4FE;
  border-radius: 4px;
  text-decoration: none;
  color: #5377F9;
}
.main > .intro .article-description {
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 0 80px;
}
@media screen and (max-width: 800px) {
  .main > .intro .article-description {
    padding: 0 16px;
  }
}
.main > .content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  font-size: 1.313rem;
}
.main > .content h2,
.main > .content h3,
.main > .content h4 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.main > .content p {
  font-size: 1.125rem;
}
.main > .our-method-link {
  width: 100%;
  align-self: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background-image: repeating-linear-gradient(45deg, var(--background-contrast) 0, var(--background-contrast) 1px, var(--background-color) 0, var(--background-color) 50%);
  background-size: 10px 10px;
  padding: 50px 0;
}
.main > .our-method-link img {
  width: 100px;
  height: auto;
}
.main > .our-method-link > a {
  display: inline-block;
  background-color: #000;
  padding: 9px 30px;
}
.main > .our-method-link > a p {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
}
.main > .article-related {
  max-width: calc(1280px + 15vw);
  width: 100%;
  align-self: center;
  margin: 64px 0;
  padding: 0 var(--variable-space) 1em var(--variable-space);
}
.main > .article-related > h2 {
  text-align: center;
  font-size: 1.625rem;
  margin-bottom: 24px;
}
.main > .article-related > ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  padding: 0;
}
@media screen and (max-width: 800px) {
  .main > .article-related > ul {
    grid-template-columns: 1fr;
  }
}
.main > .article-related > ul h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 24px;
}
.main > .article-related > ul .author-name {
  color: #828282;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}
.main > .article-related > ul .reading-time {
  color: #828282;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.main > .article-related > ul .article-tags {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 12px 0;
}
.main > .article-related > ul .article-tags .tag {
  padding: 2px 4px;
  border: 1px solid #DDE4FE;
  background: #DDE4FE;
  border-radius: 4px;
  text-decoration: none;
  color: #5377F9;
}
