@charset "UTF-8";
/* ---
   author: kamal@designr.in
   ---
*/
:root {
  --primary: #005826;
  --secondary: #934E32;
  --accent: #F9B738;
  --tertiary: aliceblue;
  --ground: #934E32;
  --mist: aliceblue;
  --puff: #E2B6EE;
  --peace: #bc6632;
  --core: #39293E;
  --footer-fill: #39293E;
  --dsnr-green: #226f2b;
  --dsnr-blue: #abcbf5;
  --dsnr-link: var(--accent);
  --hero-blend-color: aliceblue;
  --selection-bg: var(--primary);
  --selection-color: white;
  --text-dark: #1a1a1a;
  --text-gray: #4a5568;
  --text-light: #718096;
  --border-subtle: #e2e8f0;
  --text-highlight-color: var(--ground);
  --max-logo-width: 210px;
  --font-wght: 400;
  --default-font: Montserrat, sans-serif;
  --button-line-h: 24px;
  --button-border-radius: var(--button-line-h);
  --button-padding: 10px 25px;
  --button-font: Quicksand, sans-serif;
  --button-font-weight: 700;
  --button-font-size: 1rem;
  --line-button-bg: transparent;
  --line-button-color: var(--primary);
  --line-button-text-color: var(--line-button-color);
  --line-button-shadow-color: var(--line-button-color);
  --solid-button-color: var(--accent);
  --solid-button-hover-color: var(--accent);
  --solid-button-color-hover: var(--solid-button-hover-color);
  --solid-button-shadow-color: var(--solid-button-hover-color);
  --solid-button-text-color: white;
  --outline-button-color: transparent;
  --outline-button-text-color: var(--solid-button-color);
  --line-button-text-color-ondark: white;
  --line-button-shadow-color-ondark: var(--line-button-text-color-ondark);
  --shrink-duration: 0.1s;
  --main-top-spacing: 0;
}

._shiny-gradient-text, h3 span.g2, h3 span.g1, .gradient-text {
  background: linear-gradient(to right, #005826 0%, #F9B738 45%, #934E32 75%, #F9B738 90%);
  background-clip: text;
  color: rgba(0, 0, 0, 0);
  background-size: 500% auto;
  animation: moving_gradient_text 5s ease-in-out infinite alternate;
}

h3 span.g1 {
  background: linear-gradient(to right, #27db9d 0%, #f2d600 45%, #27db9d 75%, #f2d600 90%);
}
h3 span.g2 {
  background: linear-gradient(to right, #005826 0%, #F9B738 45%, #934E32 75%, #F9B738 90%);
}

@keyframes _menu_fade_in {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes img_fade_in {
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes _fade_in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes _fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes _progress_bar_stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes rotate_360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes zoom_in_out {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
/* shining gradient text effect */
@keyframes moving_gradient_text {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* pulsating buttons */
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0 var(--solid-button-shadow-color);
  }
}
@keyframes outline_pulse {
  from {
    box-shadow: 0 0 0 0 var(--line-button-shadow-color);
  }
}
@keyframes pulse_dark {
  from {
    box-shadow: 0 0 0 0 var(--line-button-shadow-color-ondark);
  }
}
@keyframes logo_train {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll_watcher {
  to {
    scale: 1 1;
  }
}
/*
buttons for thcecostays
*/
._main_cta_button, .caret-button a,
.caret-button b, .solid-button a,
.solid-button button,
.line-button button,
.line-button a {
  display: inline-block;
  position: relative;
  color: white;
  background: var(--accent);
  line-height: var(--button-line-h);
  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  border: 0;
  text-decoration: none;
  text-transform: none;
  font-family: var(--button-font);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  z-index: 5;
}

.solid-button, .line-button, .caret-button {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.caret-button a,
.caret-button b {
  background: none;
  color: var(--primary);
  padding: 0;
}

.caret-button {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.caret-button::after {
  display: block;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border: 3px solid var(--primary);
  transform-origin: center;
  transform: rotateZ(45deg);
  border-bottom-width: 0;
  border-left-width: 0;
  margin-left: 0.5rem;
  transition: margin 0.3s ease;
}
.caret-button:hover::after {
  margin-left: 0.8rem;
  border-color: currentColor;
}
.caret-button a:hover, .caret-button:hover a {
  color: var(--dsnr-link);
}

.textlink a {
  display: flex;
  align-items: center;
  position: relative;
  font-family: var(--font);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--primary);
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
.textlink a::after {
  display: block;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border: 3px solid var(--primary);
  transform-origin: center;
  transform: rotateZ(45deg);
  border-bottom-width: 0;
  border-left-width: 0;
  margin-left: 0.9rem;
  transition: margin 0.3s ease;
}
.textlink:hover a, .textlink a:hover {
  color: var(--dsnr-link);
}
.textlink:hover a::after {
  margin-left: 18px;
  border-color: currentColor;
}

/* NOTE:
   This rule and its corresponding usage will be removed in a future update
   Recommended usage for future is to always wrap more than two of these buttons in
   .button-group.
   eg:
   <div class='button-group'> <!-- for buttons that *should not* wrap, add class "inline" -->
    <div class='line-button'><a href="#">button 1</a></div>
    <div class='line-button'><a href="#">button 2</a></div>
   </div>
*/
.solid-button:not(:first-of-type),
.line-button:not(:first-of-type) {
  margin-left: 1rem;
}

.line-button a,
.line-button button {
  line-height: calc(var(--button-line-h) - 2px);
  background: var(--line-button-bg);
  color: var(--line-button-text-color);
  border: 1px solid var(--line-button-text-color);
}
.line-button a:hover,
.line-button button:hover {
  color: var(--primary) !important;
  border-color: var(--primary);
}

.solid-button.pulse a:hover,
.solid-button.pulse button:hover {
  background: var(--solid-button-hover-color);
  box-shadow: 0 0 0 18px transparent;
  animation: pulse 1s ease-in-out infinite;
  color: #efe;
}

.line-button.pulse a:hover,
.line-button.pulse button:hover {
  box-shadow: 0 0 0 18px transparent;
  animation: outline_pulse 1s ease-out infinite;
}

.dark .line-button a,
.dark .line-button button {
  color: var(--line-button-text-color-ondark);
  background: transparent;
  border: 1px solid var(--line-button-text-color-ondark);
  display: inline-block;
}

.dark .line-button.pulse a:hover,
.dark .line-button.pulse button:hover {
  box-shadow: 0 0 0 18px transparent;
  animation: pulse_dark 1s ease-in-out infinite;
}

.toggle-button {
  text-align: center;
  height: 12px;
  width: 22px;
}

.toggle-button,
.toggle-button + label {
  display: inline-block;
}

.toggle-button + label {
  margin-left: 0.2rem;
}

.toggle-wrapper {
  width: 100%;
  height: 100%;
  padding: 1px;
  position: relative;
  display: block;
  border-radius: 12px;
  background-color: var(--lightgrey3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4);
}

.toggle-wrapper::before {
  display: block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 12px;
  position: absolute;
  left: 1px;
  content: "";
  transition: 0.1s left ease;
}

/* on state */
input.toggle-button-control {
  /* take this out of view since this is only acting to hold native state, but not for visuals */
  transform: translateX(-300vw);
  width: 1px;
  height: 1px;
  border: 0 none;
  opacity: 0;
  overflow: hidden;
  display: block;
}

input.toggle-button-control:checked + .toggle-button .toggle-wrapper::before {
  left: 50%;
}

input.toggle-button-control:checked + .toggle-button .toggle-wrapper {
  background-color: skyblue; /* default bg color */
}

input.toggle-button-control:checked + .toggle-button.green .toggle-wrapper {
  background-color: var(--toggle-button-accent);
}

.button-group {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.button-group.inline {
  flex-flow: row nowrap;
}
.button-group [class*=button] {
  margin: 0;
}

/* end of buttons */
.default-thin {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 100;
}

.default-light {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 300;
}

.default-regular {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.default-medium {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.default-bold {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.default-black {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 900;
}

.default-thin-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 100;
}

.default-light-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 300;
}

.default-regular-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
}

.default-medium-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 500;
}

.default-bold-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 700;
}

.default-black-italic {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 900;
}

.playfair-thin {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}

.playfair-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}

.playfair-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.playfair-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.playfair-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.playfair-black {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

.quicksand-thin {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}

.quicksand-light {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}

.quicksand-regular {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.quicksand-medium {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.quicksand-bold {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.quicksand-black {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

._shiny-gradient-text, .gradient-text-1 {
  background: linear-gradient(-25deg, #005826 0%, #934E32 100%);
  background-clip: text;
  color: rgba(0, 0, 0, 0);
  background-size: 60% auto;
}

.colored-text-1 {
  color: var(--text-highlight-color);
}

.lead {
  --para-font-size: 1.25rem;
  --para-font-wght: 500;
  --para-line-height: 1.8;
  padding-top: 40px;
}
.lead.end {
  margin-top: 50px;
  border-top: 1px solid var(--border-subtle);
}
.lead.quote {
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-left: 0.5rem solid var(--puff);
}

.smooth-scroll {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-section img {
    animation: _fade_in linear 1s forwards;
  }
  .page-section img.pop, .page-section svg.pop {
    opacity: 0;
    scale: 0.8;
    animation: img_fade_in linear forwards;
    animation-timeline: view();
    animation-range: 250px 500px;
  }
}
.of-scroll {
  overflow: scroll;
}

@media screen and (max-width: 1079px) {
  .ofx-scroll {
    overflow-x: scroll;
  }
}
.ofy-scroll {
  overflow-y: scroll;
}

.x-hidden {
  overflow-x: hidden;
}

.y-hidden {
  overflow-y: hidden;
}

.of-hidden {
  overflow: hidden;
}

.full-width {
  max-width: 100%;
  margin: 0;
}

.page-width {
  max-width: 93%;
  margin: auto;
}

.pill {
  --pill-color: var(--puff);
  border-radius: 1rem;
  padding: 0.2rem 0.8rem;
  margin: 0.5rem auto;
  display: inline-block;
  font-weight: 400;
  color: black;
  background-color: var(--pill-color);
}
.pill.small {
  font-size: 0.67rem;
  padding: 2px 0.6rem;
  border-radius: 0.5rem;
}
.pill.primary {
  --pill-color: var(--primary);
  color: white;
}
.pill.mist {
  --pill-color: var(--mist);
}
.pill.ground {
  --pill-color: var(--ground);
  color: white;
}
.pill.peace {
  --pill-color: var(--peace);
}
.pill.core {
  --pill-color: var(--core);
  color: white;
}
.pill.dark {
  --pill-color: var(--text-dark);
  color: white;
}
.pill.gray {
  --pill-color: var(--text-gray);
  color: white;
}
.pill.light {
  --pill-color: var(--mist);
}

.code {
  font-family: "Fira Code", monospace;
}

.font-family-1 {
  font-family: "Quicksand", sans-serif;
}

.font-family-2 {
  font-family: "Montserrat", sans-serif;
}

.font-family-3 {
  font-family: "Playfair Display", serif;
}

.small {
  font-size: 0.8rem;
}

.medium {
  font-size: 1.2rem;
}

.large {
  font-size: 1.5rem;
}

.flex, .panels, .flex-row-reverse, .flex-row {
  display: flex;
}

.grid, .center-child {
  display: grid;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.center-child {
  place-items: center;
}

.text-center {
  text-align: center;
}

.spread-flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.space-between {
  justify-content: space-between;
}

.flex-row {
  flex-flow: row nowrap;
}

.flex-row-reverse {
  flex-flow: row-reverse nowrap;
}

.panels {
  flex-flow: row nowrap;
  gap: 0;
}

.panel + .panel {
  border-left: 1px solid var(--tertiary, #ccc);
}

.panel {
  padding: 2rem;
  padding-bottom: 3rem;
}

.panel.lighter {
  background-color: rgba(245, 245, 245, 0.3960784314);
}

.hidden {
  display: none;
}

.column-flex {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.column-flex.right {
  align-items: flex-end;
}

.flex-bottom-align {
  align-items: flex-end;
}

.white-card {
  background-color: white;
  border-radius: 6px;
}

ul.checklist {
  --check-color: #005826;
  --check-mark: "✔";
  list-style: none;
}
ul.checklist li::before {
  content: var(--check-mark);
  color: var(--check-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

a.neutral, .page-section h3 a.neutral {
  color: currentColor;
  background: transparent;
  text-decoration: none;
  border: 0 none;
}

.section-type-1 {
  background-color: var(--mist);
}

.section-type-2 {
  background-color: var(--puff);
}

.section-type-3 {
  background-color: var(--ground);
}

.section-type-4 {
  background-color: var(--accent);
  color: white;
}

.section-type-5 {
  background-color: #efefff;
}

/*
 Default styles
 author: kamal@designr.in
 NOTE: this was intended to be a mobile first stylesheet,
 but this is no longer a mobile first sheet as some mobile
 styles require some specific MQ overrides at the bottom
 of this stylesheet. Remove this comment if the file is
 renamed.
 */
:root {
  font-size: 18px;
  box-sizing: border-box;
}

:root * {
  box-sizing: inherit;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}

body {
  --font-wght: 400;
  width: 100vw;
  overflow-x: hidden;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-wght);
}

main {
  padding-top: var(--main-top-spacing);
  transition: padding-top var(--shrink-duration, 0.4s) ease;
}

.center {
  text-align: center;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

h1 {
  font-size: 1.6rem;
  line-height: 3rem;
}

b, i {
  font-weight: inherit;
  font-style: inherit;
}

strong {
  font-weight: 800;
}

a {
  --link-color: currentColor;
  --link-border-color: currentColor;
  --link-highlight-color: var(--accent);
  --link-highlight-bg: transparent;
  --link-decor: none;
  color: var(--link-color);
  text-decoration: var(--link-decor);
}

code {
  color: var(--ground);
  border: 1px solid var(--puff);
  border-radius: 3px;
  padding: 2px 4px;
}

.page-section a {
  --link-color: var(--primary);
  --link-border-color: var(--primary);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.page-section a:not([class*=button]) {
  --link-highlight-bg: var(--primary);
  border-bottom: 1px dashed var(--link-border-color);
}
.page-section a:hover {
  background-color: var(--link-highlight-bg);
  color: var(--link-highlight-color);
}

menu {
  list-style: none;
  padding: 0;
}
menu a {
  text-decoration: none;
  border: 0 none;
}
menu a.login-now-button {
  --link-color: var(--accent);
  --link-border-color: var(--accent);
}

html:has(#sidebar_nav:checked) {
  overflow-x: hidden;
  overflow-y: hidden;
}

p {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.feature > .column {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.feature > .column .feature-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  display: inline-block;
}

footer {
  --footer-decoration-image-aux: url(../brand/footer-tree.svg);
  --para-color: white;
  display: block;
  min-height: 20vh;
  background-color: var(--footer-fill, #222);
  color: white;
  padding: 90px 0;
  background-image: url(../brand/site-footer.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
footer h1 {
  font-size: 2.5rem;
}
footer h2 {
  color: #888;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1.8rem;
}
footer > section:last-child {
  position: relative;
}
footer > section:last-child::before {
  position: absolute;
  left: 0;
  bottom: -2.8rem;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: var(--footer-decoration-image-aux) no-repeat bottom left;
  background-size: cover;
}

.right {
  text-align: right;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background-color: transparent;
  transition: none;
}
.footer-nav a:hover {
  color: var(--accent);
  background-color: transparent;
}
.footer-nav li {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6rem;
}

.suspense {
  min-height: 2.5rem;
  background: url(../images/suspense.svg) repeat 0 0;
  opacity: 0.2;
}

footer hr.dashed.separator {
  height: 1px;
  border: 0 transparent;
  overflow-y: hidden;
  margin: 1rem auto 0.5rem auto;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23fff4' stroke-width='1' stroke-dasharray='4%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
footer .list {
  font-size: 0.7rem;
  line-height: 1.2rem;
  opacity: 0.8;
}
footer .list-item, footer .list-item > a {
  color: white;
  text-decoration: none;
}
footer .list-item:hover, footer .list-item > a:hover {
  color: var(--accent);
}

.footer-info a {
  color: #abf;
  text-decoration: none;
  border-bottom: 1px solid #666;
}

.footer-socials menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-socials menu li {
  padding: 0;
  margin: 5px 0;
}
.footer-socials menu li a {
  color: white;
}
.footer-socials menu li a:hover {
  color: #666;
}

.footer-social-link {
  fill: currentColor;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.developer {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: #515151;
}
.developer a {
  color: #866;
}

hr.thin {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

:root {
  --para-top-padding: 1rem;
  --para-font-size: 1rem;
  --para-line-height: 1.6rem;
  --para-font-wght: 500;
  --para-font-family: Montserrat, sans-serif;
  --para-color: #333;
}

p {
  padding: var(--para-top-padding) 0 0;
  font-size: var(--para-font-size);
  line-height: var(--para-line-height);
  font-weight: var(--para-font-wght);
  font-family: var(--para-font-family);
  color: var(--para-color);
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-blend-mode: hard-light;
}
.hero h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.hero, .heading-group {
  --para-top-padding: 1rem;
  --para-font-size: 1.2rem;
  --para-line-height: 1.9rem;
  --para-font-wght: 600;
  --para-font-family: Montserrat, sans-serif;
  color: #222;
}
.hero p, .heading-group p {
  padding: var(--para-top-padding) 0 0;
  font-size: var(--para-font-size);
  line-height: var(--para-line-height);
  font-weight: var(--para-font-wght);
  font-family: var(--para-font-family);
}

.page-container {
  --pg-padding: 0 1rem;
  padding: var(--pg-padding);
}

ol.stats {
  --number-font-size: 1rem;
  --number-font-wght: 800;
  --stat-padding: 0.5rem;
  --stats-max-width: 606px;
  list-style: none;
  padding: 0;
  max-width: var(--stats-max-width);
}
ol.stats li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  margin: 1rem 0;
}
ol.stats li + li {
  padding-left: var(--stat-padding);
  border-left: 1px solid rgba(221, 221, 221, 0.5333333333);
}
ol.stats span {
  font-weight: 600;
}
ol.stats span:nth-child(1) {
  font-size: var(--number-font-size);
  font-weight: var(--number-font-wght);
  color: #F9B738;
}
ol.stats span + span {
  font-size: 0.7rem;
}

.page-section {
  padding: 2rem 0;
}
.page-section h2 {
  font-size: 2.5rem;
}
@media screen and (min-width: 1080px) {
  .page-section h2 {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 1080px) {
  .page-section .heading-group {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 1080px) {
  .page-section .heading-group h2 {
    padding: 0;
  }
}
.page-section .heading-group p {
  margin-top: 0;
  padding-top: 0;
}

.cta-button-icon {
  display: inline-block;
  width: 22px;
  line-height: 0.8rem;
  vertical-align: top;
}

.founder-message {
  padding: 90px 0;
  font-size: smaller;
}
.founder-message .message-block {
  position: relative;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
}
.founder-message .message-block:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translate(-50%, 0);
  width: 110px;
  height: 110px;
  border-radius: 110px;
  border: 1px solid #eee;
  background-image: url(../images/thce-logo-encircled.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 102%;
}

.salient-features {
  --salient-features-bg-image: url(../images/zigzag-bg.png);
  padding: 2rem 0;
}
@media screen and (min-width: 1080px) {
  .salient-features {
    background: center/cover no-repeat var(--salient-features-bg-image);
  }
}

.swiper {
  position: relative;
  --swiper-pagination-color: var(--secondary);
  --swiper-pagination-bottom: -80px;
}
.salient-features .swiper {
  height: 200px;
}
.testimonials .swiper {
  height: 400px;
}

.testimonials-prev-next-nav {
  bottom: 0;
  right: 0.5rem;
  z-index: 2;
}
@media screen and (min-width: 1080px) {
  .testimonials-prev-next-nav {
    right: 4rem;
  }
}
.testimonials-prev-next-nav button {
  background: transparent none;
  border: 0 none;
  cursor: pointer;
}

swiper-container {
  --font-wght: 400;
  --default-font: Montserrat, sans-serif;
  --opacity-for-fade: 0;
  width: 90%;
  height: 100%;
  box-sizing: border-box;
}
swiper-container::part(container) {
  overflow: visible;
}
swiper-container::part(button-prev) {
  --swiper-navigation-sides-offset: -5rem;
}

.why-us-slides swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: var(--font-wght, 400);
  font-family: var(--default-font);
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.why-us-slides swiper-slide .swiper-slide-prev,
.why-us-slides swiper-slide .swiper-slide-next,
.why-us-slides swiper-slide .swiper-slide-active {
  visibility: visible;
}

swiper-slide .white-card {
  border: 1px solid #ccc;
  height: 310px;
}

.story-content p {
  --para-color: var(--text-gray);
}
.story-content p.lead {
  --para-color: var(--text-dark);
}

.story-graphics > img {
  width: 90vw;
  text-align: center;
  margin: 0 auto;
}

.case-studies .story-block + .story-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ccd;
}
.case-studies .story-graphics > img {
  margin: auto;
  max-width: 500px;
}

.why-us-list {
  --why-us-cols: 1;
}
.why-us-list.grid {
  gap: 2rem;
}

.why-us-item-container {
  --container-bottom-spacer: 0;
  --decoration-pos-x: -36rem;
  --decoration-pos-y: 4rem;
  --decoration-rotation: -70deg;
  --decoration-color: #F9B738;
  border: 1px solid #ddd;
  border-radius: 1rem;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  margin-bottom: 15px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: start;
  overflow: hidden;
  position: relative;
}
.why-us-item-container p.title {
  --para-top-padding: 1rem;
  --para-font-size: 1rem;
  --para-line-height: 1.6rem;
  --para-font-wght: 600;
  position: relative;
  z-index: 1;
  padding-left: 2rem;
  min-width: 314.26px;
}
.why-us-item-container p.content {
  --para-top-padding: 0.5rem;
  --para-font-size: 0.8rem;
  --para-line-height: 1.5rem;
  --para-font-wght: 500;
  --para-pos-y: 76%;
  --para-pos-x: 3rem;
  display: hidden;
  opacity: 0;
  position: absolute;
}
.why-us-item-container img.icon {
  width: 60px;
  height: 60px;
}
.why-us-item-container:nth-child(1)::after {
  --decoration-color: var(--accent);
}
.why-us-item-container:nth-child(2)::after {
  --decoration-color: var(--puff);
}
.why-us-item-container:nth-child(3)::after {
  --decoration-color: var(--primary);
}
.why-us-item-container:nth-child(4)::after {
  --decoration-color: var(--core);
}
.why-us-item-container:nth-child(5)::after {
  --decoration-color: var(--ground);
}
.why-us-item-container:nth-child(6)::after {
  --decoration-color: var(--accent);
}

.why-us-item {
  justify-content: flex-start;
}

.offerings {
  --services-tree-top-offset: 30px;
}

.service-card {
  --card-height: 3rem;
  --card-padding: 0.5rem 1.5rem;
  --card-bottom-margin: 1rem;
  --card-font-size: 0.8rem;
  background-color: white;
  border-radius: var(--card-height);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  height: var(--card-height);
  width: max-content;
  padding: var(--card-padding);
  margin-bottom: var(--card-bottom-margin);
}
.service-card:hover {
  cursor: pointer;
}
.service-card .service-card-content {
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.service-card .service-card-icon {
  height: 100%;
}
.service-card .service-card-icon img {
  height: 100%;
  max-height: 120px;
}
.service-card .service-card-title {
  font-size: var(--card-font-size);
  font-weight: 600;
  line-height: 1.67;
}

.m-services-tree-background {
  margin-top: var(--services-tree-top-offset);
  margin-bottom: var(--services-tree-top-offset);
}
.m-services-tree-background svg {
  width: 160vw;
  max-height: 600px;
  margin-left: -72%;
  margin-top: 50px;
  transform: scaleX(-1);
}

.m-services-tree-foreground {
  --column-width: 300px;
  --card-offset-left: 0px;
  top: var(--services-tree-top-offset);
  right: 0;
  min-height: 90vh;
}
.m-services-tree-foreground .services-column {
  min-width: var(--column-width);
}
.m-services-tree-foreground .service-card {
  margin-left: var(--card-offset-left);
}
.m-services-tree-foreground .service-card:nth-child(1) {
  --card-offset-left: -20px;
}
.m-services-tree-foreground .service-card:nth-child(2) {
  --card-offset-left: 60px;
}
.m-services-tree-foreground .service-card:nth-child(3) {
  --card-offset-left: 100px;
}
.m-services-tree-foreground .service-card:nth-child(4) {
  --card-offset-left: 102px;
}
.m-services-tree-foreground .service-card:nth-child(5) {
  --card-offset-left: 100px;
}
.m-services-tree-foreground .service-card:nth-child(6) {
  --card-offset-left: 40px;
}
.m-services-tree-foreground .service-card:nth-child(7) {
  --card-offset-left: -40px;
}
.m-services-tree-foreground .service-card:nth-child(8) {
  --card-offset-left: -60px;
}

.services .mobile-variant {
  margin: 0 -4rem;
}

.testimonials .grid {
  gap: 1.5rem;
}
.testimonials img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 1rem;
  margin-left: 0;
}
.testimonials .card-content {
  padding: 0.8rem;
}
.testimonials .card-content .card-title {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.3rem;
}
.testimonials .card-content .card-meta {
  font-size: 0.6rem;
  font-weight: 800;
}
.testimonials .card-content .card-text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0.5rem 0;
}
.testimonials .card-content .stars {
  position: relative;
  margin-bottom: 0.5rem;
}
.testimonials .card-content .stars::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonials .card-content .stars.r-5::after {
  content: "⭐️⭐️⭐️⭐️⭐️";
}
.testimonials .card-content .stars.r-4::after {
  content: "⭐️⭐️⭐️⭐️";
}
.testimonials .card-content .stars.r-3::after {
  content: "⭐️⭐️⭐️";
}
.testimonials .card-content .stars.r-2::after {
  content: "⭐️⭐️";
}
.testimonials .card-content .stars.r-1::after {
  content: "⭐️";
}

#announcements {
  position: relative;
}
#announcements.closed {
  display: none !important;
  height: 0px;
  overflow: hidden;
  opacity: 0;
}
#announcements #close-announcements {
  --x-btn-size: 2rem;
  --x-btn-offset: 1.5rem;
  position: absolute;
  border-radius: 100%;
  width: var(--x-btn-size);
  height: var(--x-btn-size);
  line-height: var(--x-btn-size);
  right: var(--x-btn-offset);
  top: var(--x-btn-offset);
  background-color: #444;
  color: #fff;
  font-size: 1.5rem;
  border: 0 none;
  cursor: pointer;
}
#announcements #close-announcements:hover {
  background-color: #333;
}

.announcements.top {
  --para-top-padding: 0;
  --para-color: #999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 3rem;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.flowchart-cta {
  margin-bottom: 2rem;
}

@media screen and (max-width: 1079px) {
  .hidden-on-mobile {
    display: none;
  }
  .bottom_cta > section h2 {
    font-family: "Verveine", script;
  }
  .flex-2 {
    flex-direction: column;
  }
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .articles {
    --grid-cols: 1;
  }
  .message-block {
    margin: 1.5rem;
    width: 90%;
  }
  .footer-wrapper {
    display: flex;
    flex-direction: column;
  }
  .footer-info {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
  #what_we_do .couch.flex {
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #what_we_do .couch.flex .couch img {
    z-index: 0;
    object-fit: cover;
    height: 100%;
    max-height: 450px;
    max-width: 450px;
    border-radius: 1rem;
    position: absolute;
    right: -9rem;
    bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .hidden-on-desktop,
  .main-nav.hidden-on-desktop {
    display: none;
  }
  .page-width {
    max-width: 72%;
    margin: auto;
  }
  .max-desktop-page-width {
    max-width: 93%;
    margin: auto;
  }
  section.highlights {
    padding: 60px 0;
  }
  .bottom_cta {
    background-color: #eeefff;
  }
  .bottom_cta > section {
    padding: 90px 0;
    text-align: center;
  }
  .footer-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  footer h1 {
    font-size: 2.5rem;
  }
  footer h2 {
    color: #888;
    text-transform: uppercase;
    font-weight: 300;
  }
  footer section.column {
    max-width: 40%;
  }
  footer .column.about p {
    font-size: 14px;
  }
  h1, h2, h3, h4, h5 {
    margin: 1rem 0;
    line-height: 2.5rem;
  }
  h1 span, h2 span, h3 span, h4 span, h5 span {
    display: block;
  }
  .hero {
    height: 60vh;
    min-height: max-content;
    padding: 1rem 0;
  }
  .hero p {
    margin: 0 auto;
  }
  .story-graphics > img {
    position: sticky;
    left: 0;
    top: 180px;
    width: 100%;
    margin-left: 2rem;
  }
  #what_we_do .couch img {
    max-width: 475px;
  }
  .services-tree-background {
    width: 600px;
    margin: auto;
  }
  .services-tree-foreground {
    width: 100%;
    top: 0;
  }
  .service-card {
    --card-height: 5rem;
    --card-padding: 0.5rem 2rem;
    --card-bottom-margin: 1rem;
    --card-font-size: 1rem;
    max-width: calc(4 * var(--card-height));
  }
  .services-column:nth-child(1) .service-card:nth-child(1) {
    margin-left: 6rem;
  }
  .services-column:nth-child(1) .service-card:nth-child(2) {
    margin-left: 3rem;
  }
  .services-column:nth-child(1) .service-card:nth-child(3) {
    margin-left: 3rem;
  }
  .services-column:nth-child(1) .service-card:nth-child(4) {
    margin-left: 5rem;
  }
  .services-column:nth-child(2) .service-card:nth-child(1) {
    margin-left: -2rem;
  }
  .services-column:nth-child(2) .service-card:nth-child(2) {
    margin-left: 2rem;
  }
  .services-column:nth-child(2) .service-card:nth-child(3) {
    margin-left: 2rem;
  }
  .services-column:nth-child(2) .service-card:nth-child(4) {
    margin-left: -2rem;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-container {
    --pg-padding: 0 5rem;
  }
  ol.stats {
    --number-font-size: 1.5rem;
    --number-font-wght: 800;
    --stat-padding: 2rem;
  }
  .footer-socials menu {
    max-width: 250px;
    gap: 1rem;
  }
  .feature {
    padding: 30px 0;
  }
  .feature p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .feature > .column {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .feature:nth-child(2n) .feature-details {
    padding-left: 120px;
  }
  .feature:nth-child(2n+1) > .column {
    flex-direction: row-reverse;
  }
  .feature:nth-child(2n+1) .feature-details {
    padding-right: 120px;
  }
  .founder-message {
    padding: 90px 0;
    font-size: smaller;
  }
  .founder-message .message-block {
    position: relative;
    width: 500px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    border-radius: 1rem;
    border: 1px solid #ddd;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  }
  .founder-message .message-block:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: -3rem;
    transform: translate(-50%, 0);
    width: 110px;
    height: 110px;
    border-radius: 110px;
    border: 1px solid #eee;
    background-image: url(../images/thce-logo-encircled.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 102%;
  }
  .why-us-item-container {
    min-width: 600px;
  }
}
/* Forms */
.form-element-text, .input-inline input, label {
  line-height: calc(var(--button-line-h) - 2px);
  padding: var(--button-padding);
}

label {
  font-size: 0.8rem;
  font-weight: 700;
}

.input-inline {
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.input-inline input {
  flex: 1;
  border-radius: var(--button-border-radius);
  border: 1px solid var(--tertiary);
}

.form-help {
  margin-top: 0.8rem;
}

.login-form .input-inline input {
  min-width: 280px;
}

/* navigation menu - mobile first */
menu.main-nav a.menu-top {
  --mobile-menu-line-height: 2rem;
  text-decoration: none;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 3px;
  transition: all 0.3s;
  color: black;
  line-height: var(--mobile-menu-line-height);
}
menu.main-nav a.menu-top:hover {
  color: var(--dsnr-link);
  background-color: #eeefff;
}

.learn_more a {
  font-size: smaller;
  font-weight: 500;
  text-decoration: underline;
  color: var(--dsnr-link);
}

.home-link a {
  display: inline-block;
  transition: all 17s ease;
}
.home-link a img {
  width: 300px;
  max-width: var(--max-logo-width, 110px);
}
.home-link a:hover {
  background-color: transparent;
  transform: scale(1.08, 1.08) rotate(-0.01turn);
}

.nav-wrapper-mobile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  max-width: 93%;
  margin: auto;
  margin-right: 0;
}
.nav-wrapper-mobile menu li a.menu-top {
  border-bottom: 1px solid #ccc;
}
.nav-wrapper-mobile menu li:last-child a.menu-top {
  border: none;
}
.nav-wrapper-mobile a {
  text-decoration: none;
}
.nav-wrapper-mobile .ext-mobile-nav {
  display: list-item;
}
.nav-wrapper-mobile .sidebar-nav-drawer {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  width: 80vw;
  min-width: 300px;
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  padding-top: 120px;
  border-left: 1px solid #ddd;
  box-shadow: -2px 0 10px 2px rgba(0, 0, 0, 0.3);
  transition: all 250ms ease-in;
}
.nav-wrapper-mobile .sidebar-nav-drawer span.close-drawer-switch {
  display: block;
  position: absolute;
  top: 4.2rem;
  right: 2.2rem;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
}
.nav-wrapper-mobile .sidebar-nav-drawer span.close-drawer-switch label {
  font-size: 40px;
  line-height: unset;
  padding: unset;
  cursor: pointer;
}
.nav-wrapper-mobile input#sidebar_nav {
  position: fixed;
  width: 1px;
  height: 1px;
  display: block;
  opacity: 0;
  left: -2000vh;
  top: -2000vh;
}
.nav-wrapper-mobile input#sidebar_nav ~ .sidebar-nav-drawer {
  transform: translateX(150%);
  opacity: 0;
}
.nav-wrapper-mobile input#sidebar_nav:checked ~ .sidebar-nav-drawer {
  transform: translateX(0);
  opacity: 1;
}

#nav_drawer {
  overflow-y: auto;
  height: calc(100vh - 140px);
}
#nav_drawer .has-submenu .submenu-drawer {
  opacity: 1;
}

html:has(#sidebar_nav:checked) {
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile-nav-always-show {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

a.menu-top {
  display: inline-block;
  width: 100%;
}

.has-submenu {
  position: relative;
}
.has-submenu a.menu-top::after {
  content: "+";
  z-index: 1;
}
.nav-wrapper-mobile .has-submenu a.menu-top::after {
  display: block;
  position: absolute;
  right: 1rem;
  top: 0;
  line-height: 2rem;
  padding-top: 0.4rem;
}
.has-submenu .submenu-drawer {
  opacity: 0;
  transition: all 300ms ease-out;
  position: relative;
  top: 0;
  min-width: 300px;
  max-width: 80vw;
  background: #eeefff;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}
.has-submenu .submenu-drawer h3, .has-submenu .submenu-drawer h4 {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.has-submenu .submenu-drawer .columns p {
  font-size: 0.8rem;
}

/* mobile navigaton elements */
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem auto;
}
.columns .column {
  width: 100%;
}

.submenu, .submenu-column {
  width: 100%;
}

.submenu-column a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1rem;
  color: black;
}
.submenu-column .feature-image img {
  width: 120px;
  max-height: 40px;
  margin: 4px;
  object-fit: cover;
  border-radius: 3px;
}

.cta-menu {
  gap: 0.5rem;
  align-items: center;
}

header {
  transition: all var(--shrink-duration, 0.4s) ease;
}

header#_top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  max-height: 180px;
  z-index: 100;
  background-color: white;
  border-bottom: 1px solid white;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.js_sticky_header {
  --main-top-spacing: 0;
}
.js_sticky_header header#_top {
  --max-logo-width: 140px;
  max-height: 80px;
  border-color: #efefef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
}
.js_sticky_header header#_top .cta-menu.column-flex {
  flex-direction: row;
  align-items: center;
  margin-top: 0;
}

@media screen and (max-width: 1079px) {
  .hidden-on-mobile {
    display: none;
  }
  .nav-wrapper-mobile .brand-link {
    max-width: var(--max-logo-width);
    transition: max-width 200ms ease, width 200ms ease;
  }
  .js_sticky_header .brand-link {
    --max-logo-width: 130px;
  }
  .has-submenu .submenu {
    margin: 0.5rem 1rem;
  }
  .submenu-drawer {
    max-height: 0;
    overflow: hidden;
  }
  .js_open .submenu-drawer {
    max-height: 500px;
  }
  .menu-hamburger {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    cursor: pointer;
  }
  .menu-hamburger svg#i1 {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: var(--dsnr-link);
    stroke-width: 6;
  }
  .menu-hamburger svg#i1 .ham-line {
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
@media screen and (min-width: 1080px) {
  .hidden-on-desktop,
  .main-nav.hidden-on-desktop {
    display: none;
  }
  .has-submenu {
    position: relative;
  }
  .has-submenu a.menu-top::after {
    content: "+";
    padding-left: 4px;
  }
  .has-submenu .submenu-drawer {
    opacity: 0;
    transition: all 200ms ease;
    transform: translateY(25px);
    position: absolute;
    top: 2.5rem;
    pointer-events: none;
    min-width: 700px;
    max-width: 800px;
    background: #eeefff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  }
  .has-submenu .submenu-drawer h3, .has-submenu .submenu-drawer h4 {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
  }
  .has-submenu .submenu-drawer .columns p {
    font-size: 0.8rem;
  }
  .has-submenu .submenu-drawer .submenu-column a.unit {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 100ms ease-in-out;
  }
  .has-submenu .submenu-drawer .submenu-column a.unit:hover {
    background-color: #ccc;
  }
  .has-submenu:hover {
    z-index: 10;
  }
  .has-submenu:hover .submenu-drawer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem auto;
  }
  .columns .column {
    width: 100%;
  }
  .submenu, .submenu-column {
    width: 100%;
  }
  .submenu-column {
    display: flex;
    flex-flow: column nowrap;
  }
  .submenu-column .feature-image img {
    margin: 4px;
    object-fit: cover;
    width: 96%;
    max-height: 110px;
    border-radius: 3px;
  }
  menu.main-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  menu.main-nav .brand-link {
    max-width: var(--max-logo-width);
    transition: max-width 200ms ease, width 200ms ease;
  }
  menu.main-nav a {
    font-size: 0.85rem;
    text-decoration: none;
    color: black;
  }
  menu.main-nav a span.learn_more {
    text-decoration: underline;
    font-weight: bold;
    color: var(--dsnr-link);
  }
  menu.main-nav a:hover span.learn_more {
    color: black;
  }
  menu.main-nav a .feature-details {
    padding-left: 4px;
  }
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
article.post {
  margin-bottom: 2rem;
}
article.post p {
  --para-top-padding: 0;
}

.articles {
  --grid-cols: 3;
  --grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) {
  .articles {
    --grid-cols: 2;
  }
}
@media screen and (max-width: 640px) {
  .articles {
    --grid-cols: 1;
  }
}
.article-card {
  border-radius: 0.8rem;
  border: 1px solid #ddd;
  padding: 0.25rem 1rem 1rem;
  transition: box-shadow 300ms ease-in-out;
  --cover-image-offset: 140px;
}
.has-cover-image .article-card__content {
  padding-top: var(--cover-image-offset);
}
.article-card__image {
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.article-card__image img {
  width: 100%;
  max-height: var(--cover-image-offset);
  object-fit: cover;
}
.featured .article-card {
  border-color: var(--primary);
}
.article-card:hover {
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
}
.article-card__title {
  margin: 0;
  line-height: 1.4rem;
  letter-spacing: -0.67px;
}
.article-card__content {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5rem;
}
.article-card__description {
  --para-font-size: 0.8rem;
  --para-line-height: 1.2rem;
  --para-top-padding: 0;
}

.post-wrapper img {
  width: 100%;
}

.feature-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2rem 0 1rem;
  padding: 0.4rem;
  border-radius: 8px;
  border: 1px solid #ccf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.feature-image__caption {
  font-size: 70%;
  line-height: 1.2;
  text-align: right;
  color: #99B;
  margin-top: 6px;
}

.post .heading-group [class$=button] {
  align-self: center;
}

/*# sourceMappingURL=styles.css.map */
