@charset "UTF-8";
#header {
  background-color: white !important;
  min-height: 100px;
  color: black;
  z-index: 1000;
}
#header .navbar-brand img {
  max-width: 190px;
}
@media (max-width: 776px) {
  #header .navbar-brand img {
    max-width: 150px;
  }
}
#header .menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-lang {
  display: none;
}

.header-lang__link {
  color: #102b2a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-lang__link:hover {
  color: #102b2a;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(16, 43, 42, 0.2);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #102b2a;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header-nav__spacer {
  display: block;
}

.navbar-nav li.current-lang {
  display: none;
}
.navbar-nav li a {
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: black;
  font-size: 14px;
  font-weight: 700;
}
.navbar-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navbar-nav li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.navbar-nav li a:hover {
  color: black;
}
.navbar-nav li.current-menu-item a::after {
  background-color: #c8db59;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.navbar-nav li.menu-cta a {
  padding: 14px 20px !important;
  background-color: #c8db59;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navbar-nav li.menu-cta a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

#menu-main-menu, #menu-main-menu-fr {
  gap: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu-main-right, #menu-main-right-fr {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#menu-main-right li a::after, #menu-main-right-fr li a::after {
  display: none;
}

@media (min-width: 992px) {
  #header {
    height: 100px;
  }
  .menu-toggle {
    display: none;
  }
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 991.98px) {
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: 25px;
  }
  .header-nav .lang-item {
    display: none;
  }
  .header-nav {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 4px 0 16px;
  }
  .header-nav.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav__spacer {
    display: none;
  }
  #menu-main-menu,
  #menu-main-menu-fr,
  #menu-main-right,
  #menu-main-right-fr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    gap: 4px;
  }
  #menu-main-menu, #menu-main-menu-fr {
    padding: 4px 0 8px;
  }
  .navbar-nav li {
    width: 100%;
    text-align: left;
  }
  .navbar-nav li a {
    padding: 8px 0 !important;
    display: block;
    text-align: left;
  }
  .navbar-nav li.menu-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
  }
}
#footer {
  padding: 65px 8vw 28px;
  color: white;
  background-color: #031f25;
}
#footer .footer-logo img {
  max-width: 190px;
}
#footer .footer-logo p {
  color: #afc2bf;
  max-width: 280px;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.55;
}
#footer .footer-menu .footer-title {
  text-transform: uppercase;
  font-family: "Metrophobic", sans-serif;
  letter-spacing: 0.15em;
  color: #91aaa8;
  font-size: 10px;
  margin-bottom: 15px;
}
#footer .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  gap: 12px;
}
#footer .footer-menu ul li a {
  color: #d4dfdc;
  font-size: 13px;
  padding: 0;
}
#footer .copyright {
  color: #78918f;
  border-top: 1px solid rgba(255, 255, 255, 0.1294117647);
  grid-column: 1/-1;
  margin-top: 50px;
  padding-top: 22px;
  font-size: 11px;
}
@media (max-width: 991px) {
  #footer .footer-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#footer .footer-logo p.footer-french {
  display: none;
}

html[lang=fr-CA] #footer .footer-logo p.footer-english {
  display: none;
}
html[lang=fr-CA] #footer .footer-logo p.footer-french {
  display: block;
}

.section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: var(--section-label-color, #102b2a);
}
.section-label__line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: var(--section-label-line, #c8db59);
}
.section-label__text {
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.boxed-text {
  padding: 40px 44px;
  background-color: var(--boxed-text-bg, transparent);
}
.boxed-text--border {
  border-left: 1px solid var(--boxed-text-border, #d8ddd7);
}
.boxed-text__label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--boxed-text-label, #102b2a);
}
.boxed-text__title {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
  color: var(--boxed-text-title, #102b2a);
}
.boxed-text__description {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--boxed-text-description, #607477);
}
.boxed-text__description p {
  margin: 0 0 0.8em;
}
.boxed-text__description p:last-child {
  margin-bottom: 0;
}

.boxed-row .wpb_wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1803921569);
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.boxed-row .wpb_wrapper .boxed-text {
  padding-top: 0;
  padding-bottom: 0;
}
.boxed-row .wpb_wrapper .boxed-text:first-child {
  padding-left: 0;
}
.boxed-row .wpb_wrapper .boxed-text:last-child {
  padding-right: 0;
}

@media (max-width: 991px) {
  .boxed-row .wpb_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .boxed-row .wpb_wrapper .boxed-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 50%;
            flex: 0 50%;
    border: none !important;
    margin-bottom: 50px;
  }
  .boxed-row .wpb_wrapper .boxed-text:nth-child(odd) {
    padding-left: 0;
  }
  .boxed-row .wpb_wrapper .boxed-text:nth-child(even) {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .boxed-row .wpb_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .boxed-row .wpb_wrapper .boxed-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
    border: none !important;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }
}
.text-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--text-card-border, #d8ddd7);
  background-color: var(--text-card-bg, #ffffff);
}
.text-card__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 40px);
  font-weight: 650;
  line-height: 1.08;
  color: var(--text-card-title, #0f5a58);
}
.text-card__description {
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-card-description, #102b2a);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.text-card__description p {
  margin: 0 0 0.8em;
}
.text-card__description p:last-child {
  margin-bottom: 0;
}
.text-card__footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--text-card-border, #d8ddd7);
}
.text-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.text-card__link:hover .text-card__icon {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.text-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--text-card-tags, #607477);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.text-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #607477;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--text-card-tags, #607477);
}
.text-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-card__tag:not(:last-child)::after {
  content: "·";
  margin: 0 0.7em;
  letter-spacing: 0;
}

.text-card-row .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.text-card-row .wpb_wrapper .text-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 calc(33.33% - 25px);
          flex: 0 calc(33.33% - 25px);
}
@media (max-width: 767px) {
  .text-card-row .wpb_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-card-row .wpb_wrapper .text-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
  }
}

.tagged-card {
  display: block;
  position: relative;
  padding: 32px 36px;
  border: 1px solid var(--tagged-card-border, #d8ddd7);
  background-color: var(--tagged-card-bg, #ffffff);
  color: inherit;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.tagged-card:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 16px 40px rgba(16, 43, 42, 0.14);
          box-shadow: 0 16px 40px rgba(16, 43, 42, 0.14);
  z-index: 1;
  color: inherit;
}
.tagged-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.tagged-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--tagged-card-tags, #607477);
}
.tagged-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tagged-card__tag:not(:last-child)::after {
  content: "·";
  margin: 0 0.7em;
  letter-spacing: 0;
}
.tagged-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  color: var(--tagged-card-title, #102b2a);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.tagged-card--link:hover .tagged-card__icon {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.tagged-card__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 650;
  line-height: 1.25;
  color: var(--tagged-card-title, #102b2a);
}

@media (prefers-reduced-motion: reduce) {
  .tagged-card,
  .tagged-card:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.latest-updates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
}
.latest-updates .tagged-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 767px) {
  .latest-updates {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .latest-updates .tagged-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.link-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid var(--link-cards-border, #3d5c58);
  background-color: var(--link-cards-bg, #031f25);
}
.link-cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--link-cards-border, #3d5c58);
  color: var(--link-cards-text, #ffffff);
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.link-cards__item:last-child {
  border-right: none;
}
.link-cards__item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  z-index: 1;
  color: var(--link-cards-text, #ffffff);
}
.link-cards__subtitle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--link-cards-subtitle, #c8db59);
}
.link-cards__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
  color: inherit;
}
.link-cards__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  color: inherit;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
a.link-cards__item:hover .link-cards__icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 767px) {
  .link-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .link-cards__item {
    border-right: none;
    border-bottom: 1px solid var(--link-cards-border, #3d5c58);
  }
  .link-cards__item:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .link-cards__item,
  .link-cards__item:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.simple-card-row .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
.simple-card-row .wpb_wrapper > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12.5px);
          flex: 0 0 calc(50% - 12.5px);
}
@media (max-width: 767px) {
  .simple-card-row .wpb_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .simple-card-row .wpb_wrapper > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
  }
}

.simple-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 28px 32px;
  border: 1px solid var(--simple-card-border, #d8ddd7);
  background-color: var(--simple-card-bg, #ffffff);
}
.simple-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
  color: var(--simple-card-text, #102b2a);
}
.simple-card__subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--simple-card-subtitle, #607477);
}

.updates-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid var(--updates-bar-border, #d8ddd7);
  background-color: var(--updates-bar-bg, #ffffff);
}
.updates-bar > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid var(--updates-bar-border, #d8ddd7);
}
.updates-bar > *:last-child {
  border-right: none;
}
.updates-bar__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  padding: 28px 32px;
  color: var(--updates-bar-label, #102b2a);
}
.updates-bar__line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: var(--updates-bar-line, #c8db59);
}
.updates-bar__label-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.updates-bar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 148px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
}
.updates-bar a.updates-bar__item:hover .updates-bar__icon {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.updates-bar__date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--updates-bar-date, #607477);
}
.updates-bar__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.updates-bar__title {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
  color: var(--updates-bar-title, #102b2a);
}
.updates-bar__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 4px;
  color: var(--updates-bar-title, #102b2a);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 991px) {
  .updates-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .updates-bar__label {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--updates-bar-border, #d8ddd7);
  }
  .updates-bar__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
@media (max-width: 767px) {
  .updates-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .updates-bar > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--updates-bar-border, #d8ddd7);
  }
  .updates-bar > *:last-child {
    border-bottom: none;
  }
  .updates-bar__item {
    min-height: 0;
  }
}

.book-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  aspect-ratio: 2/3;
  container-type: inline-size;
  background-color: var(--book-card-bg, #f0f2f1);
  color: var(--book-card-text, #102b2a);
  max-height: 350px;
  margin: auto;
  max-width: 300px;
}
.book-card__spine {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  min-width: 10px;
  background-color: var(--book-card-spine, #102b2a);
}
.book-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 28px 34px;
  min-width: 0;
}
.book-card__eyebrow, .book-card__footer {
  margin: 0;
  font-size: clamp(11px, 4.8cqw, 12px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: inherit;
}
.book-card__number {
  margin: 0;
  font-size: clamp(64px, 42cqw, 150px);
  font-weight: 500;
  line-height: 0.85;
  color: inherit;
}
.book-card--small-number .book-card__number {
  font-size: clamp(18px, 12cqw, 45px);
}
.book-card--shadow {
  -webkit-box-shadow: 0 25px 48px rgba(5, 47, 56, 0.1882352941);
          box-shadow: 0 25px 48px rgba(5, 47, 56, 0.1882352941);
}
.book-card--angled {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}

.single-post {
  color: #102b2a;
}
.single-post__header {
  margin-bottom: 40px;
}
.single-post__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.single-post__line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: #c8db59;
}
.single-post__eyebrow-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #607477;
}
.single-post__eyebrow-text a {
  color: #607477;
  text-decoration: none;
}
.single-post__eyebrow-text a:hover {
  color: #102b2a;
}
.single-post__dot {
  margin: 0 0.7em;
  letter-spacing: 0;
}
.single-post__title {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 650;
  line-height: 1.08;
  color: #102b2a;
}
.single-post__media {
  margin: 32px 0 0;
  border: 1px solid #d8ddd7;
}
.single-post__media img {
  display: block;
  width: 100%;
  height: auto;
}
.single-post__content {
  font-size: 17px;
  line-height: 1.8;
  color: #102b2a;
}
.single-post__content > *:first-child {
  margin-top: 0;
}
.single-post__content h2,
.single-post__content .h2 {
  margin: 36px 0 16px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 650;
  line-height: 1.2;
}
.single-post__content h3,
.single-post__content .h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.3;
}
.single-post__content p {
  margin: 0 0 1.1em;
}
.single-post__content a {
  color: #0f5a58;
  text-underline-offset: 3px;
}
.single-post__content a:hover {
  color: #102b2a;
}
.single-post__content ul,
.single-post__content ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}
.single-post__content li + li {
  margin-top: 0.4em;
}
.single-post__content blockquote {
  margin: 28px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid #c8db59;
  color: #0f5a58;
  font-weight: 500;
}
.single-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
}
.single-post__content figure {
  margin: 28px 0;
}
.single-post__content figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #607477;
}
.single-post__pages {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
.single-post__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d8ddd7;
}
.single-post__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #607477;
}
.single-post__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post__tag:not(:last-child)::after {
  content: "·";
  margin: 0 0.7em;
  letter-spacing: 0;
}
.single-post__tag a {
  color: #607477;
  text-decoration: none;
}
.single-post__tag a:hover {
  color: #102b2a;
}
.single-post__edit a {
  font-size: 13px;
  font-weight: 600;
  color: #607477;
  text-decoration: none;
}
.single-post__edit a:hover {
  color: #102b2a;
}
.single-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.single-post__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  border: 1px solid #d8ddd7;
  background-color: #ffffff;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.single-post__nav-link:hover {
  -webkit-box-shadow: 0 16px 40px rgba(16, 43, 42, 0.1);
          box-shadow: 0 16px 40px rgba(16, 43, 42, 0.1);
  color: inherit;
}
.single-post__nav-link--empty {
  border: none;
  padding: 0;
}
.single-post__nav-link--next {
  text-align: right;
}
.single-post__nav-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #607477;
}
.single-post__nav-title {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
  color: #102b2a;
}

@media (max-width: 767px) {
  .single-post {
    padding: 40px 0 64px;
  }
  .single-post__nav {
    grid-template-columns: 1fr;
  }
  .single-post__nav-link--empty {
    display: none;
  }
  .single-post__nav-link--next {
    text-align: left;
  }
}
.archive__header {
  margin-bottom: 36px;
}

.archive__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.archive__line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: #c8db59;
}

.archive__eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #607477;
}

.archive__title {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 650;
  line-height: 1.08;
  color: #102b2a;
}

.archive__intro {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #607477;
}
.archive__intro p {
  margin: 0 0 0.6em;
}
.archive__intro p:last-child {
  margin-bottom: 0;
}

.archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.archive-list__item {
  margin: 0;
  margin-bottom: 30px;
}

.archive-list__link {
  display: block;
  padding: 28px 32px;
  border: 1px solid #d8ddd7;
  background-color: #ffffff;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.archive-list__link:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 0 16px 40px rgba(16, 43, 42, 0.12);
          box-shadow: 0 16px 40px rgba(16, 43, 42, 0.12);
  color: inherit;
}

.archive-list__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 650;
  line-height: 1.25;
  color: #102b2a;
}

.archive-list__excerpt {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #607477;
}

.archive #nav-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 0;
}
.archive #nav-below a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  background: #102b2a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.archive #nav-below a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 767px) {
  .archive {
    padding: 40px 0 64px;
  }
  .archive-list__link {
    padding: 22px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .archive-list__link,
  .archive-list__link:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.error-page {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0 100px;
  color: #102b2a;
}

.error-page__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.error-page__line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 3px;
  background-color: #c8db59;
}

.error-page__eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #607477;
}

.error-page__mark {
  margin: 0 0 8px;
  color: rgba(7, 62, 73, 0.09);
  letter-spacing: -0.08em;
  font-size: clamp(120px, 22vw, 200px);
  font-weight: 700;
  line-height: 0.8;
}

.error-page__title {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 650;
  line-height: 1.08;
  color: #102b2a;
}

.error-page__text {
  margin: 0 0 32px;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.7;
  color: #607477;
}

.error-page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.error-page__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 22px;
  background: #c8db59;
  color: #102b2a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.error-page__button:hover {
  color: #102b2a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.error-page .search-form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 240px;
          flex: 1 1 240px;
  max-width: 360px;
  margin: 0;
}

.error-page .search-form .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.error-page .search-form .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  height: auto;
  padding: 14px 16px;
  border: 1px solid #d8ddd7;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 15px;
  color: #102b2a;
  background: #ffffff;
}
.error-page .search-form .form-control:focus {
  border-color: #102b2a;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.error-page .search-form .btn {
  padding: 14px 20px;
  background: #102b2a;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.error-page .search-form .btn:hover {
  background: #0f5a58;
  color: #ffffff;
}

@media (max-width: 767px) {
  .error-page {
    padding: 48px 0 72px;
  }
  .error-page__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .error-page .search-form {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-page__button,
  .error-page__button:hover {
    -webkit-transform: none;
            transform: none;
  }
}
div.hero.home-hero {
  min-height: calc(100dvh - 100px);
}
div.hero {
  position: relative;
}
div.hero:before {
  content: " " !important;
  display: block !important;
  height: 100%;
  width: 100%;
  position: absolute !important;
  background: -webkit-gradient(linear, left top, right top, from(rgb(3, 40, 47)), color-stop(70%, rgba(3, 40, 47, 0.74)), color-stop(90%, rgba(3, 40, 47, 0.08))), -webkit-gradient(linear, left top, left bottom, color-stop(5%, rgba(0, 0, 0, 0)), to(rgba(3, 40, 47, 0.35)));
  background: linear-gradient(90deg, rgb(3, 40, 47), rgba(3, 40, 47, 0.74) 70%, rgba(3, 40, 47, 0.08) 90%), linear-gradient(rgba(0, 0, 0, 0) 5%, rgba(3, 40, 47, 0.35));
  left: 0;
  top: 0;
}
div.hero h1 {
  font-size: clamp(50px, 5.8vw, 84px);
  font-weight: 650;
  line-height: 1.01;
  margin: 20px 0px;
}
div.hero .hero-intro {
  font-size: 18px;
}
div.hero .hero-button-container .vc_column-inner .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
div.hero .bottom-scroll {
  position: absolute;
  bottom: 2%;
  left: 0;
  text-align: center;
}
div.hero .bottom-scroll .vc_general.vc_btn3 {
  border-radius: 0;
  color: white !important;
  padding: 15px 0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
div.hero .bottom-scroll .vc_general.vc_btn3 i {
  position: relative;
  right: initial !important;
  top: initial !important;
  left: initial !important;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  border: 1px solid white;
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
  font-size: 9px;
}

.btn-light-green button.vc_general.vc_btn3,
.btn-light-green button.vc_general.vc_btn3:hover,
.btn-light-green a.vc_general.vc_btn3,
.btn-light-green a.vc_general.vc_btn3:hover {
  color: #102b2a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #c8db59;
  border-width: 0px;
  border-style: none;
  border-color: currentcolor;
  -o-border-image: none;
     border-image: none;
  gap: 14px;
  padding: 15px 22px !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
}
.btn-light-green button.vc_general.vc_btn3 i,
.btn-light-green button.vc_general.vc_btn3:hover i,
.btn-light-green a.vc_general.vc_btn3 i,
.btn-light-green a.vc_general.vc_btn3:hover i {
  position: relative;
  right: initial !important;
  top: initial !important;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-light-green button.vc_general.vc_btn3:hover i,
.btn-light-green button.vc_general.vc_btn3:hover:hover i,
.btn-light-green a.vc_general.vc_btn3:hover i,
.btn-light-green a.vc_general.vc_btn3:hover:hover i {
  -webkit-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
}

.btn-dark-green a.vc_general.vc_btn3,
.btn-dark-green a.vc_general.vc_btn3:hover,
.btn-dark-green button.vc_general.vc_btn3,
.btn-dark-green button.vc_general.vc_btn3:hover {
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #102b2a;
  border-width: 0px;
  border-style: none;
  border-color: currentcolor;
  -o-border-image: none;
     border-image: none;
  gap: 14px;
  padding: 15px 22px !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
}
.btn-dark-green a.vc_general.vc_btn3 i,
.btn-dark-green a.vc_general.vc_btn3:hover i,
.btn-dark-green button.vc_general.vc_btn3 i,
.btn-dark-green button.vc_general.vc_btn3:hover i {
  position: relative;
  right: initial !important;
  top: initial !important;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-dark-green a.vc_general.vc_btn3:hover i,
.btn-dark-green a.vc_general.vc_btn3:hover:hover i,
.btn-dark-green button.vc_general.vc_btn3:hover i,
.btn-dark-green button.vc_general.vc_btn3:hover:hover i {
  -webkit-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
}

.btn-dark-green-outline a.vc_general.vc_btn3,
.btn-dark-green-outline a.vc_general.vc_btn3:hover,
.btn-dark-green-outline button.vc_general.vc_btn3,
.btn-dark-green-outline button.vc_general.vc_btn3:hover {
  color: #102b2a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: transparent;
  border-width: 0px;
  border-style: none;
  border: 1px solid rgba(16, 43, 42, 0.2);
  -o-border-image: none;
     border-image: none;
  gap: 14px;
  padding: 15px 22px !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
}
.btn-dark-green-outline a.vc_general.vc_btn3 i,
.btn-dark-green-outline a.vc_general.vc_btn3:hover i,
.btn-dark-green-outline button.vc_general.vc_btn3 i,
.btn-dark-green-outline button.vc_general.vc_btn3:hover i {
  position: relative;
  right: initial !important;
  top: initial !important;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.btn-underline .vc_general.vc_btn3,
.btn-underline .vc_general.vc_btn3:hover {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: 0px 0px;
  border-width: 0px 0px 1px;
  border-style: none none solid;
  border-color: currentcolor;
  -o-border-image: none !important;
     border-image: none !important;
  border-bottom: 1px solid;
  gap: 11px;
  padding: 15px 0 !important;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #0f5a58 !important;
  background-color: transparent !important;
  background-image: none !important;
  border-bottom: 1px solid #0f5a58 !important;
}
.btn-underline .vc_general.vc_btn3 i,
.btn-underline .vc_general.vc_btn3:hover i {
  position: relative;
  right: initial !important;
  top: initial !important;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-underline .vc_general.vc_btn3:hover i,
.btn-underline .vc_general.vc_btn3:hover:hover i {
  -webkit-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
}
.btn-underline.white-button .vc_general.vc_btn3 {
  border-radius: 0;
  color: white !important;
  border-bottom: 1px solid white !important;
}

.check-list > .wpb_column > .vc_column-inner > .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  border-top: 1px solid rgba(16, 43, 42, 0.2196078431);
  padding-top: 15px;
}
.check-list > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_text_column {
  -webkit-box-flex: 0;
      -ms-flex: 0 calc(50% - 25px);
          flex: 0 calc(50% - 25px);
  border-bottom: 1px solid rgba(16, 43, 42, 0.2196078431);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.check-list > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_text_column p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 0;
  color: rgb(16, 43, 42);
  padding: 10px 0;
}
@media (max-width: 767px) {
  .check-list > .wpb_column > .vc_column-inner > .wpb_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .check-list > .wpb_column > .vc_column-inner > .wpb_wrapper .wpb_text_column {
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
  }
}

.solution-mark p {
  color: rgba(7, 62, 73, 0.0901960784);
  letter-spacing: -0.1em;
  align-self: stretch;
  place-items: center;
  font-size: clamp(220px, 32vw, 400px);
  font-weight: 700;
  line-height: 0.75;
  display: grid;
  text-align: left;
  padding-right: 5%;
}

p {
  font-size: 17px;
  line-height: 1.8;
}

body {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Lora", sans-serif;
  font-weight: 500;
  letter-spacing: -0.1rem;
}

h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
  letter-spacing: 0;
}

h2,
.h2 {
  margin: 18px 0;
  font-size: clamp(38px, 4.35vw, 55px);
  font-weight: 620;
  line-height: 1.08;
}

.h3,
h3 {
  font-size: 27px;
  font-weight: 650;
  line-height: 1.42;
}

.text-blue {
  color: #102b2a;
}

.text-teal {
  color: #c8db59;
}

.text-lightgreen {
  color: #b9cdca !important;
}

body {
  --primary: #102b2a;
  --bs-primary: #102b2a;
  --bs-primary-rgb: 0, 174, 237;
  --primary-rgb: 0, 174, 237;
  --secondary: #0f5a58;
  --bs-secondary: #003070;
  --bs-secondary-rgb: 0, 48, 112;
  --secondary-rgb: 0, 48, 112;
  font-family: "DM Sans", sans-serif !important;
  color: var(--primary);
  font-size: 16px;
  --ink: #102b2a;
  --teal: #0f5a58;
  --teal-dark: #0b3433;
  --yellow: #c8db59;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --line: #d8ddd7;
  --muted: #607477;
}

.btn-primary {
  --bs-btn-color: var(--secondary);
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--secondary);
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--secondary);
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--secondary);
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  div.animated {
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -webkit-transition-duration: 0.8s !important;
    transition-duration: 0.8s !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}/*# sourceMappingURL=main.css.map */