@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.link-arrow {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.2s ease-in-out;
}
.link-arrow:hover, .link-arrow:focus, .link-arrow:active {
  text-decoration: none;
}
.link-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.link-arrow--light {
  color: #364153;
}
.link-arrow--light:hover, .link-arrow--light:focus {
  color: #2f5f62;
}
.link-arrow--dark {
  color: #ffffff;
}
.link-arrow--dark:hover, .link-arrow--dark:focus {
  color: #43797c;
  opacity: 0.9;
}
.link-arrow:hover, .link-arrow:focus {
  color: #2f5f62;
}
.link-arrow:hover::after, .link-arrow:focus::after {
  transform: translateX(4px);
}
.link-arrow:focus-visible {
  outline: 2px solid #43797c;
  outline-offset: 2px;
  border-radius: 4px;
}
.link-arrow[aria-disabled=true], .link-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.link-arrow--left::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 8px;
}
.link-arrow--left:hover::after {
  transform: rotate(180deg);
}
.link-arrow--left::after {
  margin-left: 0;
  margin-right: 8px;
}
.link-arrow--left:hover::after, .link-arrow--left:focus::after {
  transform: translateX(-4px) rotate(180deg);
}

.link-arrow--small {
  font-size: 14px;
}
.link-arrow--small::after {
  width: 0.5em;
  height: 0.5em;
}

.link-arrow--large {
  font-size: 18px;
}
.link-arrow--large::after {
  width: 0.7em;
  height: 0.7em;
}

.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.btn:focus-visible {
  outline: 2px solid #43797c;
  outline-offset: 2px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary, .btn--light-arrow,
.btn--dark-arrow, .btn--light,
.btn--dark {
  background-color: #d4994c;
  color: #f5f0e9;
  border: none;
  border-radius: 16777200px;
  padding: 12px 31.156px 12px 32px;
}
.btn--primary:hover, .btn--light-arrow:hover,
.btn--dark-arrow:hover, .btn--light:hover,
.btn--dark:hover, .btn--primary:focus, .btn--light-arrow:focus,
.btn--dark-arrow:focus, .btn--light:focus,
.btn--dark:focus {
  background-color: #bf8438;
  color: #f5f0e9;
  transform: none;
  box-shadow: none;
}
.btn--primary:active, .btn--light-arrow:active,
.btn--dark-arrow:active, .btn--light:active,
.btn--dark:active {
  transform: none;
  box-shadow: none;
  background-color: #d4994c;
}

.btn--secondary, .btn--beige {
  background-color: #43797c;
  color: #ffffff;
  border: none;
  border-radius: 16777200px;
  padding: 12px 31.039px 12px 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.btn--secondary:hover, .btn--beige:hover, .btn--secondary:focus, .btn--beige:focus {
  background-color: #2f5f62;
  color: #ffffff;
  transform: none;
  box-shadow: none;
}
.btn--secondary:active, .btn--beige:active {
  transform: none;
  box-shadow: none;
}

.btn--outline {
  background-color: transparent;
  color: #d4994c;
  border: 2px solid #cccccc;
}
.btn--outline:hover, .btn--outline:focus {
  border-color: #d4994c;
  background-color: #f5f0e9;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: #d4994c;
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #f5f0e9;
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--light-arrow,
.btn--dark-arrow {
  gap: 10px;
}
.btn--light-arrow::after,
.btn--dark-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--light-arrow::after,
.btn--dark-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease-in-out;
}
.btn--light-arrow:hover::after, .btn--light-arrow:focus::after,
.btn--dark-arrow:hover::after,
.btn--dark-arrow:focus::after {
  filter: brightness(0) invert(1);
}

.btn--small {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 24px 40px;
  font-size: 18px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  gap: 8px;
}
.btn--icon svg,
.btn--icon .icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--arrow::after {
  margin-left: 8px;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  transform: translateX(4px);
}
.btn--arrow.btn--dark::after, .btn--dark .btn--arrow::after {
  filter: brightness(0) invert(1);
}

.btn-group {
  display: inline-flex;
  gap: 8px;
}
.btn-group .btn {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  position: relative;
  padding: 0;
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out, font-weight 0.2s ease-in-out;
}
.nav-link:hover, .nav-link:focus, .nav-link:active {
  text-decoration: none;
}
.nav-link:hover, .nav-link:focus, .nav-link.active, .nav-link[aria-current=page] {
  color: #2f5f62;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 25%;
  text-decoration-thickness: 1px;
}
.nav-link:focus-visible {
  outline: 2px solid #43797c;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-link--light {
  color: #43797c;
}
.nav-link--light:hover, .nav-link--light:focus, .nav-link--light.active, .nav-link--light[aria-current=page] {
  color: #2f5f62;
}

.nav-link--dark {
  color: #43797c;
}
.nav-link--dark:hover, .nav-link--dark:focus, .nav-link--dark.active, .nav-link--dark[aria-current=page] {
  color: #2f5f62;
}

.nav-link--minimal::after {
  display: none;
}
.nav-link--minimal:hover, .nav-link--minimal:focus {
  opacity: 0.8;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nav-list--horizontal {
  flex-direction: row;
}
.nav-list--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.nav-list--vertical .nav-link {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.nav-list--vertical .nav-link::after {
  left: 0;
  right: 0;
}
.nav-list--center {
  justify-content: center;
}
.nav-list--spaced {
  gap: 24px;
}

.nav-item {
  margin: 0;
}
.nav-item--has-dropdown {
  position: relative;
}

.site-main--blog {
  background-color: #f5f0e9;
}

.blog-page {
  padding: 80px 0 120px;
}
.blog-page__container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .blog-page__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-page__hero {
  margin-bottom: 70px;
}
.blog-page__title {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 55px;
  line-height: 1.18;
  font-weight: 700;
  color: #43797c;
}
.blog-page__lead {
  margin: 0;
  max-width: 800px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
  color: #4a5565;
}
.blog-page__section {
  margin-bottom: 80px;
}
.blog-page__section--latest .blog-page__section-title {
  color: #43797c;
}
.blog-page__section--featured .blog-page__section-title {
  color: #43797c;
}
.blog-page__section-title {
  margin: 0 0 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  line-height: 1.28;
  font-weight: 700;
  color: #ffffff;
}
.blog-page__section-title--centered {
  text-align: center;
}
.blog-page__featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  min-height: 475px;
}
.blog-page__featured-image, .blog-page__card-image {
  display: block;
}
.blog-page__featured-image img, .blog-page__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page__featured-image {
  min-height: 475px;
}
.blog-page__image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, #f5f0e9 0%, #d4994c 100%);
}
.blog-page__featured-content {
  padding: 50px;
}
.blog-page__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-page__category {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d4994c;
}
.blog-page__date {
  font-size: 12px;
  line-height: 1.5;
  color: #4a5565;
}
.blog-page__featured-title, .blog-page__card-title {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #43797c;
}
.blog-page__featured-title a, .blog-page__card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-page__featured-title {
  font-size: 35px;
  line-height: 1.28;
  max-width: 460px;
}
.blog-page__featured-excerpt, .blog-page__card-excerpt {
  margin-bottom: 30px;
  color: #17332e;
}
.blog-page__featured-excerpt p, .blog-page__card-excerpt p {
  margin: 0;
}
.blog-page__featured-excerpt {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.56;
}
.blog-page__read-more {
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.5;
}
.blog-page__read-more--small {
  padding: 10px 18px;
  font-size: 12px;
  line-height: 1.5;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.blog-page__card {
  background: #ffffff;
  border-radius: 40px;
  overflow: hidden;
}
.blog-page__card-image {
  height: 250px;
}
.blog-page__card-body {
  padding: 30px;
}
.blog-page__card-title {
  font-size: 24px;
  line-height: 1.34;
  min-height: 64px;
}
.blog-page__card-excerpt {
  font-size: 16px;
  line-height: 1.5;
  min-height: 96px;
}
.blog-page__categories {
  padding: 60px;
  border-radius: 50px;
  background-color: #17332e;
}
.blog-page__categories-subtitle {
  margin: 0 0 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.56;
  color: #ffffff;
}
.blog-page__category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.blog-page__category-btn {
  padding: 10px 16px;
  font-size: 12px;
  line-height: 1.5;
}
.blog-page__membership {
  padding: 37px 43px;
  border-radius: 50px;
  background-color: #17332e;
}
.blog-page__membership .blog-page__section-title {
  color: #d4994c;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.blog-page__membership-inner {
  border: 2px solid #d4994c;
  border-radius: 40px;
  padding: 72px 40px;
  text-align: center;
}
.blog-page__membership-subtitle {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #f5f0e9;
}
.blog-page__membership-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.blog-page__empty {
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  color: #4a5565;
}
.blog-page__empty--inline {
  background: transparent;
  padding: 0;
  color: #f5f0e9;
}
@media (max-width: 1023px) {
  .blog-page__title {
    font-size: 42px;
  }
  .blog-page__lead {
    font-size: 20px;
  }
  .blog-page__featured-card {
    grid-template-columns: 1fr;
  }
  .blog-page__featured-image {
    min-height: 320px;
  }
  .blog-page__featured-title {
    font-size: 30px;
  }
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .blog-page {
    padding-top: 48px;
  }
  .blog-page__hero {
    margin-bottom: 44px;
  }
  .blog-page__title {
    font-size: 36px;
    margin-bottom: 14px;
  }
  .blog-page__lead {
    font-size: 18px;
    line-height: 1.5;
  }
  .blog-page__section {
    margin-bottom: 52px;
  }
  .blog-page__section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .blog-page__featured-content {
    padding: 24px 20px;
  }
  .blog-page__featured-title {
    font-size: 28px;
    max-width: 100%;
  }
  .blog-page__featured-excerpt {
    font-size: 16px;
  }
  .blog-page__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-page__card-image {
    height: 220px;
  }
  .blog-page__card-body {
    padding: 20px;
  }
  .blog-page__card-title {
    min-height: 0;
    font-size: 22px;
  }
  .blog-page__card-excerpt {
    min-height: 0;
  }
  .blog-page__categories, .blog-page__membership {
    border-radius: 30px;
    padding: 28px 20px;
  }
  .blog-page__membership-inner {
    border-radius: 24px;
    padding: 36px 16px;
  }
  .blog-page__membership-subtitle {
    font-size: 20px;
  }
  .blog-page__membership-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.blog-page--category .blog-page__hero--category {
  margin-bottom: 48px;
}
.blog-page--category .blog-page__eyebrow {
  margin: 0 0 10px;
  color: #d4994c;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-page--category .blog-page__section-title {
  color: #43797c;
}
.blog-page--category .blog-page__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.blog-page--category .blog-page__pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-page--category .blog-page__pagination a,
.blog-page--category .blog-page__pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  border: 1px solid rgba(44, 62, 54, 0.2);
  color: #17332e;
  background: #ffffff;
}
.blog-page--category .blog-page__pagination .current {
  background: #17332e;
  border-color: #17332e;
  color: #f5f0e9;
}
@media (max-width: 767px) {
  .blog-page--category .blog-page__hero--category {
    margin-bottom: 30px;
  }
  .blog-page--category .blog-page__pagination {
    margin-top: 26px;
  }
}

.site-main--blog-single {
  background-color: #f5f0e9;
}

.blog-single .page-hero {
  position: relative;
  width: 100%;
  padding: 93px 0;
}
.blog-single .page-hero .container {
  position: relative;
  z-index: 1;
}
.blog-single .page-hero--bg-dark {
  background: #b3dbdc;
}
.blog-single .page-hero__content {
  max-width: 764px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.blog-single .page-hero__heading {
  margin: 0;
  text-align: center;
}
.blog-single__content-wrap {
  max-width: 940px !important;
  margin: 0 auto;
  padding-bottom: 90px;
}
.blog-single__content-card {
  background: transparent;
  border-radius: 10px;
  padding: 80px 0;
}
.blog-single__content {
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
.blog-single__content p {
  margin: 0 0 22px;
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
}
.blog-single__content strong {
  font-weight: 600;
}
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4 {
  margin: 26px 0 14px;
  font-family: "Montserrat", sans-serif;
  color: #43797c;
  line-height: 1.3;
}
.blog-single__content h2 strong,
.blog-single__content h3 strong,
.blog-single__content h4 strong {
  font-weight: 700;
}
.blog-single__content h2 {
  font-size: 28px;
}
.blog-single__content h3 {
  font-size: 26px;
}
.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 24px 20px;
  padding: 0;
}
.blog-single__content li {
  margin-bottom: 10px;
}
.blog-single__content blockquote {
  margin: 48px 0;
  border-radius: 25px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
}
.blog-single__content blockquote.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow p {
  color: #17332e;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 29.25px;
  margin: 0;
  text-align: left;
}
.blog-single__content blockquote.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow p::before {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  margin: -24px 0 24px -24px;
  background-image: url("../img/Single Blog/“.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
}
.blog-single__content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 24px 0;
}
.blog-single__content a {
  color: #437a7c;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.25px;
  text-decoration: none;
}
.blog-single__content a:hover, .blog-single__content a:focus {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .blog-single .page-hero {
    padding: 56px 0;
  }
  .blog-single__content-wrap {
    padding-bottom: 64px;
  }
  .blog-single__content-card {
    padding: 56px 0;
  }
}

.site-header {
  background: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  height: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .site-header {
    height: auto;
    min-height: 120px;
    padding: 15px 0;
  }
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .site-header .container {
    padding: 0 30px;
  }
}
.site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 31px 0;
}
@media (max-width: 767px) {
  .site-header__content {
    flex-direction: row;
    gap: 20px;
    padding: 30px 0;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo .custom-logo {
  width: auto;
  max-width: 177px;
  display: block;
}
.site-header__logo .site-header__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #43797c;
  display: block;
  line-height: 57px;
}
.site-header__logo .site-header__logo-text:hover, .site-header__logo .site-header__logo-text:focus, .site-header__logo .site-header__logo-text:active {
  text-decoration: none;
}
.site-header__logo .site-header__logo-text:hover {
  opacity: 0.9;
}
.site-header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav--desktop .nav-list {
  gap: 32px;
  height: auto;
  align-items: center;
}
.site-header__nav--desktop .nav-list .nav-link {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
  height: auto;
  white-space: nowrap;
}
.site-header__nav--desktop .nav-list .nav-link::after {
  display: none;
}
.site-header__nav--desktop .nav-list .nav-link:hover, .site-header__nav--desktop .nav-list .nav-link:focus, .site-header__nav--desktop .nav-list .nav-link.active, .site-header__nav--desktop .nav-list .nav-link[aria-current=page] {
  color: #2f5f62;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 25%;
  text-decoration-thickness: 1px;
}
.site-header__nav--desktop .nav-list > .nav-item:last-child .nav-link {
  display: flex;
  padding: 12px 31.156px 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  background: #d4994c;
  color: #f5f0e9;
  text-decoration: none;
  line-height: 24px;
}
.site-header__nav--desktop .nav-list > .nav-item:last-child .nav-link:hover,
.site-header__nav--desktop .nav-list > .nav-item:last-child .nav-link:focus,
.site-header__nav--desktop .nav-list > .nav-item:last-child .nav-link.active,
.site-header__nav--desktop .nav-list > .nav-item:last-child .nav-link[aria-current=page] {
  color: #f5f0e9;
  text-decoration: none;
  background: #bf8438;
}
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 52px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 1023px) {
  .site-header__burger {
    display: flex;
  }
}
.site-header__burger-line {
  width: 100%;
  height: 5px;
  background-color: #43797c;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -12px);
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #b3dbdc;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  overflow-y: auto;
}
.site-header__mobile-menu[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.site-header__mobile-menu-header {
  display: flex;
  align-items: center;
  padding: 32px 30px 0 30px;
  background: #b3dbdc;
}
@media (max-width: 319px) {
  .site-header__mobile-menu-header {
    padding: 40px 20px 0 20px;
  }
}
.site-header__mobile-logo {
  flex-shrink: 0;
  height: 57px;
}
.site-header__mobile-logo .custom-logo {
  height: 57px;
  width: auto;
  max-width: 187px;
  display: block;
  object-fit: contain;
}
.site-header__mobile-logo .site-header__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #43797c;
  display: block;
  height: 57px;
  line-height: 57px;
}
.site-header__mobile-logo .site-header__logo-text:hover, .site-header__mobile-logo .site-header__logo-text:focus, .site-header__mobile-logo .site-header__logo-text:active {
  text-decoration: none;
}
.site-header__mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: #b3dbdc;
}
.site-header__mobile-nav .nav-list--mobile {
  gap: 40px;
  align-items: center;
}
.site-header__mobile-nav .nav-list .nav-link--mobile {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding: 0;
  white-space: nowrap;
}
.site-header__mobile-nav .nav-list .nav-link--mobile::after {
  display: none;
}
.site-header__mobile-nav .nav-list .nav-link--mobile:hover, .site-header__mobile-nav .nav-list .nav-link--mobile:focus, .site-header__mobile-nav .nav-list .nav-link--mobile.active, .site-header__mobile-nav .nav-list .nav-link--mobile[aria-current=page] {
  color: #2f5f62;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 25%;
  text-decoration-thickness: 1px;
}
.site-header__mobile-nav .nav-list--mobile > .nav-item:last-child .nav-link {
  display: flex;
  padding: 12px 31.156px 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  background: #d4994c;
  color: #f5f0e9;
  text-decoration: none;
  line-height: 24px;
}
.site-header__mobile-nav .nav-list--mobile > .nav-item:last-child .nav-link:hover, .site-header__mobile-nav .nav-list--mobile > .nav-item:last-child .nav-link:focus, .site-header__mobile-nav .nav-list--mobile > .nav-item:last-child .nav-link.active, .site-header__mobile-nav .nav-list--mobile > .nav-item:last-child .nav-link[aria-current=page] {
  color: #f5f0e9;
  text-decoration: none;
  background: #bf8438;
}

.site-footer {
  background-color: #17332e;
  color: #d1d5dc;
  padding: 60px 90px;
  z-index: 3;
}
@media (max-width: 1023px) {
  .site-footer {
    padding: 27px 40px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 70px 30px;
  }
}
.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 20px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1023px) {
  .site-footer__top {
    flex-direction: column;
    gap: 30px;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 420px;
}
@media (max-width: 767px) {
  .site-footer__brand {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: none;
  }
}
.site-footer__brand .custom-logo,
.site-footer__brand .site-footer__logo-img {
  max-width: 240px;
  height: auto;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 767px) {
  .site-footer__brand .custom-logo,
  .site-footer__brand .site-footer__logo-img {
    max-width: 180px;
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 0;
}
.site-footer__brand .site-footer__logo-link:hover, .site-footer__brand .site-footer__logo-link:focus, .site-footer__brand .site-footer__logo-link:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-link {
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-link:hover {
  opacity: 0.9;
}
.site-footer__brand .site-footer__logo-link img {
  max-width: 240px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-link img {
    max-width: 180px;
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 0;
}
.site-footer__brand .site-footer__logo-text:hover, .site-footer__brand .site-footer__logo-text:focus, .site-footer__brand .site-footer__logo-text:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-text {
    text-align: center;
  }
}
.site-footer__brand .site-footer__logo-text:hover {
  opacity: 0.9;
}
.site-footer__description {
  color: #d1d5dc;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.site-footer__description p {
  margin: 0 0 8px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.site-footer__description p:last-child {
  margin-bottom: 0;
}
.site-footer__description strong,
.site-footer__description b {
  color: #d1d5dc;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.site-footer__right {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .site-footer__right {
    gap: 60px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .site-footer__right {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
  }
}
.site-footer__menus {
  display: flex;
  gap: 60px;
}
@media (max-width: 1023px) {
  .site-footer__menus {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .site-footer__menus {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: center;
  }
}
.site-footer__menu {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .site-footer__menu {
    width: 100%;
    padding-right: 0 !important;
  }
}
.site-footer__menu .nav-list {
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__menu .nav-list {
    align-items: center;
    gap: 30px;
  }
}
.site-footer__menu .nav-list .nav-link {
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5dc;
}
@media (max-width: 767px) {
  .site-footer__menu .nav-list .nav-link {
    text-align: center;
  }
}
.site-footer__menu .nav-list .nav-link::after {
  background-color: #d1d5dc;
  height: 1px;
  left: 0;
  right: 0;
}
.site-footer__menu .nav-list .nav-link:hover, .site-footer__menu .nav-list .nav-link:focus {
  color: #d1d5dc;
  opacity: 0.9;
}
.site-footer__menu .nav-list .nav-link.active, .site-footer__menu .nav-list .nav-link[aria-current=page] {
  color: #d1d5dc;
}
.site-footer__menu .nav-list .nav-link--footer-primary {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.site-footer__menu .nav-list .nav-link--footer-primary::after {
  background-color: #ffffff;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 284px;
}
@media (max-width: 767px) {
  .site-footer__contact {
    min-width: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.site-footer__address {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #d1d5dc;
}
@media (max-width: 767px) {
  .site-footer__address {
    text-align: center;
  }
}
.site-footer__address .footer-contact-label {
  margin-bottom: 0;
}
.site-footer__address .site-footer__contact-link--phone {
  display: inline-block;
  margin-top: 0;
}
.site-footer__address .site-footer__contact-link--map {
  display: inline-block;
  margin-top: 0;
}
.site-footer .footer-contact-label {
  display: inline-block;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.site-footer span.nav-link.nav-link--footer-primary.footer-contact-label {
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: none;
}
.site-footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__contact-details {
    align-items: center;
    width: 100%;
  }
}
.site-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .site-footer__contact-item {
    justify-content: center;
    align-items: center;
  }
}
.site-footer__contact-link {
  text-decoration: none;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5dc;
  white-space: pre-line;
}
.site-footer__contact-link:hover, .site-footer__contact-link:focus, .site-footer__contact-link:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__contact-link {
    text-align: center;
  }
}
.site-footer__contact-link:hover, .site-footer__contact-link:focus {
  opacity: 0.9;
  text-decoration: underline;
}
.site-footer__divider {
  height: 1px;
  width: 100%;
  background: rgba(209, 213, 220, 0.35);
  margin: 20px 0;
}
@media (max-width: 767px) {
  .site-footer__divider {
    margin: 20px auto;
  }
}
.site-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.site-footer__bottom-left {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__bottom-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
.site-footer__copyright {
  color: #99a1af;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}
@media (max-width: 767px) {
  .site-footer__copyright {
    text-align: center;
  }
}
.site-footer__legal {
  color: #99a1af;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}
@media (max-width: 767px) {
  .site-footer__legal {
    text-align: center;
  }
}
.site-footer__legal-link {
  text-decoration: none;
  color: inherit;
  color: #99a1af;
}
.site-footer__legal-link:hover, .site-footer__legal-link:focus, .site-footer__legal-link:active {
  text-decoration: none;
}
.site-footer__legal-link:hover, .site-footer__legal-link:focus {
  opacity: 0.9;
  text-decoration: underline;
}
.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767px) {
  .site-footer__social {
    justify-content: center;
  }
}
.site-footer__social--brand {
  margin-top: 4px;
}
.site-footer__social-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: #d1d5dc;
  transition: opacity 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.site-footer__social-link:hover, .site-footer__social-link:focus, .site-footer__social-link:active {
  text-decoration: none;
}
.site-footer__social-link:hover, .site-footer__social-link:focus {
  opacity: 0.8;
}
.site-footer__social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.site-footer__social-icon-fallback {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #364153;
  background-color: #f5f0e9;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
.h1 {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
}

h2,
.h2 {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

h3,
.h3 {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.text-intro {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px;
}

p,
.text-description {
  color: #364153;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
}

ul {
  color: #364153 !important;
}

label,
.text-label {
  color: #43797c;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.text-name {
  color: #43797c;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.text-title {
  color: #4a5565;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.centered {
  text-align: center;
}

.page-content__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
.page-content__inner p {
  margin: 0 0 1em;
  color: #364153;
}
.page-content__inner h1, .page-content__inner h2, .page-content__inner h3, .page-content__inner h4 {
  font-family: "Montserrat", sans-serif;
  color: #43797c;
  margin: 1.5em 0 0.5em;
}
.page-content__inner h1:first-child, .page-content__inner h2:first-child, .page-content__inner h3:first-child, .page-content__inner h4:first-child {
  margin-top: 0;
}
.page-content__inner h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}
.page-content__inner h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}
.page-content__inner h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.page-content__inner a {
  color: #43797c;
  text-decoration: underline;
}
.page-content__inner a:hover {
  opacity: 0.85;
}
.page-content__inner ul, .page-content__inner ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}
.page-content__inner li {
  margin-bottom: 0.5em;
}

.error-404 {
  padding: 80px 0 100px;
  text-align: center;
}
.error-404__content {
  max-width: 560px;
  margin: 0 auto;
}
.error-404__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #43797c;
  margin: 0 0 1rem;
}
.error-404__text {
  font-size: 18px;
  line-height: 1.5;
  color: #364153;
  margin: 0 0 1.5rem;
}
.error-404__link {
  display: inline-block;
  text-decoration: none;
}

.site-main--thank-you {
  min-height: calc(100vh - 206px);
  display: flex;
  align-items: center;
}

.thank-you {
  flex: 1;
  padding: 64px 0 80px;
  background-color: #f5f0e9;
}
.thank-you__container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .thank-you__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.thank-you__card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 64px 40px;
  box-sizing: border-box;
  padding: 64px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .thank-you__card {
    padding: 64px 100px 80px;
  }
}
.thank-you__icon {
  color: #d4994c;
  line-height: 0;
  flex-shrink: 0;
}
.thank-you__icon svg {
  width: 120px;
  height: 120px;
  display: block;
}
.thank-you__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 60px;
  color: #43797c;
  margin: 0;
}
.thank-you__text {
  font-size: 18px;
  line-height: 29.25px;
  color: #364153;
  margin: 0;
  max-width: 466px;
}
.thank-you__actions {
  margin-top: 8px;
}
.thank-you__btn {
  text-decoration: none;
}
.thank-you__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.thank-you__contact-prompt {
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  margin: 0;
}
.thank-you__contact-email, .thank-you__contact-phone {
  font-size: 20px;
  font-weight: 600;
  color: #43797c;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
.thank-you__contact-email:hover, .thank-you__contact-phone:hover {
  opacity: 0.85;
}
.thank-you__contact-email {
  text-decoration: underline;
}

div#nutshell-form-XuLJQB {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  display: flex;
}

label.css-1hcabxi {
  text-align: left;
}

input#\36 11-wfFields,
input#\36 03-wfFields,
input#\37 47-wfFields,
input#\36 07-wfFields,
input#\36 15-wfFields {
  border-radius: 14px !important;
  border: 1px solid #d1d5dc !important;
}

textarea#\36 19-wfFields {
  border-radius: 14px !important;
  border: 1px solid #d1d5dc !important;
}

.css-29pv05.css-29pv05 {
  position: relative;
  max-width: 100% !important;
  margin: 0px auto;
  text-align: left;
}

#cats-portal-widget .cats-widget a {
  color: #17332e;
  font-weight: 600;
}

#cats-portal-widget .cats-widget .cats-column-name span {
  color: #5e5e5e;
}