:root {
  --black: #000;
  --white: #fff;
  --transparent: #ddd0;
  --dark-green: #0d4241;
  --grey-1: #3e3e3e;
  --green-1: #248567;
  --8px: 8px;
  --16px: 16px;
  --light-green: #3dc47e;
  --grey-2: #c9c9c9;
  --grey-3: #f1f1f1;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

p {
  text-align: justify;
  margin-bottom: 24px;
  line-height: 1.6;
}

a {
  text-decoration: underline;
}

li {
  margin-bottom: 12px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero {
  color: var(--white);
  background-color: #063e34;
  background-image: url('../images/CA-header-home-page.png');
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-flow: column;
  display: flex;
}

.container {
  max-width: 1400px;
}

.navbar {
  background-color: var(--transparent);
  justify-content: center;
  align-items: center;
  padding: 12px 48px;
  display: flex;
}

.navbar.green {
  background-color: var(--dark-green);
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navlink {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.navlink.main {
  font-weight: 600;
  text-decoration: none;
}

.hero-content-wrapper {
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 900px;
  margin-top: 62px;
  margin-bottom: 72px;
  display: flex;
}

.hero-content-wrapper.no-bottom-space {
  margin-bottom: 62px;
}

.h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.8rem;
  line-height: 1.2;
}

.h1.articles {
  color: var(--white);
  font-size: 2.6rem;
}

.h1.white {
  color: var(--white);
}

.subheading {
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 48px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.subheading.articles {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

.subheading.no-bottom-space {
  margin-bottom: 32px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.body {
  color: var(--black);
}

.categories {
  color: #000;
  padding: 32px 48px;
}

.category-cards-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  line-height: 1.1rem;
  display: grid;
}

.category-card-icon {
  width: 36px;
  height: 36px;
}

.category-card-name {
  font-family: Bricolage Grotesque, sans-serif;
  font-weight: 700;
}

.category-card-description {
  color: var(--grey-1);
  line-height: 1.5rem;
}

.main-articles {
  padding: 32px 48px;
}

.main-articles.bottomspace {
  margin-bottom: 92px;
}

.main-articles-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.highlighted-articles-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.highlighted-articles-wrapper.article {
  display: none;
}

.highlighted-articles-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.article-info-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.article-title {
  line-height: 1.3rem;
}

.category-badge {
  color: var(--green-1);
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  font-weight: 500;
}

.category-badge.article {
  display: none;
}

.arrow-icon {
  flex: 0 auto;
}

.cta {
  padding: 48px;
}

.cta-content-wrapper {
  background-color: #0d4241;
  border-radius: 16px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
}

.cta-left-content {
  flex-flow: column;
  flex: 1;
  max-width: 700px;
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
}

.h2 {
  font-size: 1.6rem;
}

.h2.article {
  font-size: 1rem;
}

.buttons-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.button {
  border-radius: var(--8px);
  background-color: var(--green-1);
  padding: 12px 16px;
}

.button.banner {
  border-radius: var(--16px);
  text-align: center;
  align-self: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
}

.button.banner:hover {
  background-color: var(--light-green);
}

.button.mobile.hide {
  display: none;
}

.cta-image {
  object-fit: cover;
}

.category-card-content-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-radius: var(--16px);
  background-color: var(--white);
  color: #000;
  border: 1px solid #c9c9c9;
  flex-flow: column;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  display: flex;
}

.category-card-content-wrapper:hover {
  background-color: #f1f1f1;
}

.article-card-content-wrapper {
  border: 1px solid var(--grey-2);
  color: var(--black);
  border-radius: 16px;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  display: flex;
}

.article-card-content-wrapper:hover {
  background-color: var(--grey-3);
}

.breadcrumbs-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
  display: flex;
}

.breadcrumb {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.image {
  flex: 0 auto;
  display: none;
}

.article-content {
  padding: 72px 48px;
}

.rich-text-help {
  color: #000;
  flex: 1;
  line-height: 1.4;
  text-decoration: none;
}

.rich-text-help h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.rich-text-help h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 2rem;
  line-height: 2rem;
}

.rich-text-help h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.rich-text-help blockquote {
  color: #fff;
  background-color: #2d7a5b;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 16px 24px;
}

.rich-text-help a {
  color: var(--green-1);
  font-weight: 600;
  text-decoration: none;
}

.rich-text-help a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--dark-green);
  padding: 72px 48px;
}

.footer-content-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

.footer-header-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.link-button {
  background-color: var(--transparent);
  color: var(--light-green);
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-nav {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
}

.footer-nav.legals {
  margin-top: 0;
  margin-bottom: 0;
}

.footer-nav.hide {
  display: none;
}

.footer-nav-links-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marca-registrada {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-title {
  font-size: 2.8rem;
}

.search-results {
  z-index: 9999;
  border: 1px solid var(--grey-2);
  border-radius: var(--8px);
  opacity: 0;
  -webkit-backdrop-filter: drop-shadow(0 0 5px #000000b3);
  backdrop-filter: drop-shadow(0 0 5px #000000b3);
  flex-flow: column;
  margin-top: 8px;
  transition: transform .2s, opacity .2s;
  display: none;
  position: absolute;
  inset: 100% 0% auto;
  overflow: hidden;
  transform: translate(0, 8px);
}

.search-results-heading {
  background-color: var(--white);
  color: var(--grey-1);
  text-align: left;
  padding: 10px 16px;
  font-size: .8rem;
  position: relative;
}

.collection-item {
  flex-flow: column;
  display: flex;
}

.search-result-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--white);
  color: var(--green-1);
  text-align: left;
  flex-flow: column;
  padding: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.search-result-item:hover {
  background-color: #f1f1f1;
}

.search-result-item:focus-visible, .search-result-item[data-wf-focus-visible] {
  background-color: var(--white);
}

.search-result-category {
  color: #6a6a6a;
  font-size: .75rem;
}

.search-result-title {
  font-size: .9rem;
}

.article-result-card-divider {
  background-color: var(--grey-2);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.search-bar {
  position: relative;
}

.search-input {
  background-color: var(--transparent);
  color: var(--dark-green);
  border: 1px #000;
  min-width: 320px;
  margin-bottom: 0;
  padding: 12px 16px;
}

.search-input:active {
  background-color: var(--transparent);
}

.search-input:focus {
  border-color: var(--light-green);
}

.search-input:focus-visible, .search-input[data-wf-focus-visible] {
  background-color: var(--transparent);
}

.search-input::placeholder {
  color: var(--light-green);
}

.search-input:lang(en) {
  background-color: var(--transparent);
}

.form-block {
  color: var(--dark-green);
  margin-bottom: 0;
}

.search-input-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: var(--8px);
  background-color: var(--white);
  color: var(--dark-green);
  border: 1px solid #3dc47e;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  padding: 6px 12px;
  display: flex;
}

.result-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--green-1);
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

.search-no-results {
  background-color: var(--white);
  color: var(--grey-1);
  text-align: center;
  padding: 12px 16px;
  font-size: .8rem;
  display: none;
}

.article-info-box {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.section-article {
  background-color: var(--dark-green);
  background-image: url('../images/Line.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 120%;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  padding-left: 48px;
  padding-right: 48px;
}

.header-text {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
}

.article-content-wrapper {
  display: flex;
}

.article-info-column {
  min-width: 380px;
  max-width: 380px;
  margin-right: 62px;
  position: relative;
}

.article-author-info {
  flex-flow: row;
  display: flex;
}

.author-photo-container {
  border-radius: 8px;
  width: 56px;
  height: 56px;
  overflow: hidden;
}

.author-photo {
  width: 100%;
  height: 100%;
}

.author-info-text-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-left: 16px;
  display: flex;
}

.author-name {
  font-weight: 500;
}

.author-role {
  font-size: .9rem;
  font-weight: 600;
}

.line-divider {
  background-color: #d9d9d9;
  height: 2px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.article-banner {
  background-color: #f1f1f1;
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 400px;
  display: block;
  position: sticky;
  top: 32px;
}

.banner-title {
  color: var(--dark-green);
  text-align: center;
  font-family: Bricolage Grotesque, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.banner-img {
  width: 100%;
}

.banner-img-container {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 0 12px 5px #0000001a;
}

.article-menu {
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 0;
}

.list {
  margin-bottom: 0;
  padding-left: 0;
}

.list-2 {
  padding-left: 0;
}

.ordered-list {
  text-align: left;
  margin-bottom: 24px;
  margin-left: -24px;
  padding-left: 0;
}

.unordered-list {
  margin-bottom: 24px;
  padding-left: 0;
}

.nav-button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--light-green);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-button.hide {
  display: none;
}

.nav-button-icon {
  color: var(--light-green);
  width: 20px;
  height: 20px;
}

.nav-link-text {
  color: var(--light-green);
}

.full-img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1280px) {
  .hero {
    background-size: 100%;
  }

  .search-input {
    color: #3dc47e;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    background-position: 50% 0;
    background-size: 140%;
  }

  .hero-content-wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }

  .h1.white {
    font-size: 3rem;
  }

  .category-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content-wrapper {
    flex-flow: column;
  }

  .button.mobile {
    text-align: center;
    flex: 1;
  }

  .article-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .rich-text-help {
    order: -1;
  }

  .footer-nav {
    flex-flow: column;
  }

  .footer-nav-links-wrapper {
    margin-top: 32px;
  }

  .header-text {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .article-content-wrapper {
    flex-flow: column;
  }

  .article-info-column {
    order: -1;
    align-self: stretch;
    min-width: 0;
    max-width: none;
    margin-right: 0;
  }

  .article-author-info {
    align-self: stretch;
  }

  .article-banner {
    display: none;
  }

  .article-menu {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .navbar.green {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .navbar-wrapper {
    justify-content: center;
    align-items: center;
  }

  .hero-content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .h1.articles {
    font-size: 2rem;
    line-height: 1.5;
  }

  .subheading {
    font-size: 1rem;
    line-height: 1.6;
  }

  .categories {
    padding-left: 24px;
    padding-right: 24px;
  }

  .category-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .main-articles {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta, .cta-content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
  }

  .breadcrumb {
    font-size: .7rem;
  }

  .article-content, .footer {
    padding: 48px 24px;
  }

  .footer-header-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .link-button {
    padding-left: 0;
    display: none;
  }

  .footer-nav {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer-nav-links-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    align-self: stretch;
    margin-top: 32px;
  }

  .cta-title {
    font-size: 2.3rem;
  }

  .section-article {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-text {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .nav-button {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero-content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h1.articles {
    font-size: 1.5rem;
  }

  .h1.white {
    font-size: 2rem;
  }

  .subheading.articles {
    font-size: .8rem;
  }

  .buttons-wrapper {
    flex-flow: column;
  }

  .breadcrumbs-wrapper {
    flex-flow: column;
    display: none;
  }

  .cta-title {
    font-size: 2rem;
    line-height: 1.5;
  }

  .search-bar {
    align-self: center;
    width: 100%;
    max-width: 400px;
  }

  .search-input {
    min-width: 0;
  }

  .author-role {
    line-height: 1.3;
  }

  .nav-button {
    display: none;
  }
}


