html {
  box-sizing: border-box
}

*,
::before,
::after {
  box-sizing: inherit
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'Figtree', sans-serif
}

:focus {
  outline: none
}

:focus-visible {
  outline: 2px solid #6CA294;
  outline-offset: 2px
}

.top-bar {
  background: linear-gradient(90deg, #6CA294 0%, #86C6CE 100%);
  padding: 10px 0
}

.top-bar-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: .04em;
  text-decoration: none
}

.top-bar-item svg {
  flex-shrink: 0
}

.top-bar-year {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #ffffffbf;
  letter-spacing: .08em;
  font-weight: 600
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #6ca2942e;
  box-shadow: 2px 7px 25px 0 #6ca2941c;
  position: relative;
  z-index: 100
}

.header-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  gap: 20px
}

.brand-zone {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start
}

.logo-ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0 0 0 1px #6ca2944d 2px 2px 5px 0 #6ca2940f 2px 7px 25px 0 #6ca2941c
}

.logo-ring img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  gap: 0
}

.brand-name {
  font-family: 'Figtree', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #2a3d38;
  letter-spacing: -.01em;
  text-decoration: none;
  display: block
}

.brand-tagline {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #6CA294;
  letter-spacing: .05em
}

.header-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, #6ca29440, transparent);
  flex-shrink: 0
}

.nav-zone {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0
}

.primary-nav li {
  display: flex
}

.nav-link {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #2a3d38;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: color .12s ease-out, background-color .12s ease-out, border-color .1s ease-out;
  white-space: nowrap;
  display: block
}

.nav-link:hover {
  color: #6CA294;
  background-color: #befaff59;
  border-color: #86c6ce4d
}

.nav-link.active {
  color: #6CA294;
  background-color: #befaff40
}

@media (max-width: 1024px) {
  .top-bar-item.address-item {
    display: none
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 72px;
    padding: 10px 20px
  }

  .header-divider {
    display: none
  }

  .nav-zone {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 10px
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 10px
  }

  .nav-link {
    font-size: 14px;
    padding: 10px
  }

  .top-bar-year {
    display: none
  }
}

@media (max-width: 640px) {
  .brand-tagline {
    display: none
  }

  .top-bar-inner {
    justify-content: center
  }

  .top-bar-contact {
    gap: 10px
  }
}

.site-footer {
  background: #2a3d38;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6CA294, #86C6CE, #BEFAFF)
}

.footer-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1px 1fr 1px 1fr;
  gap: 40px;
  align-items: start
}

.footer-col-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #6ca2944d, transparent);
  align-self: stretch;
  min-height: 120px
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 20px
}

.footer-logo-ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  background: #ffffff14;
  box-shadow: 0 0 0 1px #86c6ce59 2px 2px 5px 0 #86c6ce0f
}

.footer-logo-ring img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.footer-brand-name {
  font-family: 'Figtree', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #BEFAFF;
  letter-spacing: -.01em
}

.footer-description {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #befaff99;
  max-width: 280px
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-text {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #befaffb3;
  text-decoration: none;
  transition: color .1s ease-out
}

.footer-contact-text:hover {
  color: #BEFAFF
}

.footer-col-label {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #86C6CE;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-nav-link {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #befaffbf;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .1s ease-out
}

.footer-nav-link:hover {
  color: #BEFAFF
}

.footer-nav-link-arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .1s ease-out
}

.footer-nav-link:hover .footer-nav-link-arrow {
  width: 20px
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid #6ca29433;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.footer-copyright {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #befaff73
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.footer-legal-link {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #befaff73;
  text-decoration: none;
  transition: color .1s ease-out
}

.footer-legal-link:hover {
  color: #befaffcc
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1px 1fr
  }

  .footer-brand-col {
    grid-column: 1 / -1
  }

  .footer-col-divider:first-of-type {
    display: none
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr
  }

  .footer-col-divider {
    display: none
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

.cookie-popup {
  display: none;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 520px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 10px 40px 0 #6ca2941c 2px 7px 25px 0 #6ca2941c;
  border: 1px solid #6ca2942e;
  z-index: 2000;
  transform: translateY(-120%);
  transition: transform .22s ease-out;
  overflow: hidden
}

.cookie-popup.visible {
  transform: translateY(0)
}

.cookie-popup-accent {
  height: 3px;
  background: linear-gradient(90deg, #6CA294, #86C6CE, #BEFAFF)
}

.cookie-popup-body {
  padding: 20px
}

.cookie-popup-description {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #3a4f49;
  margin-bottom: 10px
}

.cookie-popup-headline {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #2a3d38;
  margin-bottom: 20px
}

.cookie-settings-panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px;
  background: #befaff33;
  border-radius: 5px;
  border: 1px solid #86c6ce40
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.cookie-toggle-label {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #2a3d38;
  font-weight: 600
}

.cookie-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: #6ca29440;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color .12s ease-out
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 34px;
  transition: transform .12s ease-out;
  box-shadow: 2px 2px 5px 0 #6ca2940f
}

.cookie-toggle-switch input:checked+.cookie-toggle-track {
  background: #6CA294
}

.cookie-toggle-switch input:checked+.cookie-toggle-track::after {
  transform: translateX(18px)
}

.cookie-popup-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.cookie-btn-accept {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background: #6CA294;
  border: 1px solid #6CA294;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color .12s ease-out, border-color .12s ease-out;
  min-height: 44px
}

.cookie-btn-accept:hover {
  background: #5a8f82;
  border-color: #5a8f82
}

.cookie-btn-reject {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #6CA294;
  background: transparent;
  border: 1px solid #6CA294;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color .12s ease-out, color .1s ease-out;
  min-height: 44px
}

.cookie-btn-reject:hover {
  background: #6ca29414
}

.cookie-settings-link {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #86C6CE;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  min-height: 44px;
  transition: color .1s ease-out
}

.cookie-settings-link:hover {
  color: #6CA294
}

.legal-article {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 40px
}

.legal-article h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #1b3a35;
  margin-bottom: 40px;
  letter-spacing: -.5px
}

.legal-article h2 {
  font-size: 36px;
  line-height: 1.35;
  color: #1b3a35;
  margin-top: 80px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #BEFAFF
}

.legal-article h3 {
  font-size: 26px;
  line-height: 1.35;
  color: #2c5a52;
  margin-top: 40px;
  margin-bottom: 20px
}

.legal-article h4 {
  font-size: 16px;
  line-height: 1.55;
  color: #2c5a52;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 10px
}

.legal-article h5 {
  font-size: 16px;
  line-height: 1.55;
  color: #3d6b62;
  margin-top: 20px;
  margin-bottom: 10px
}

.legal-article h6 {
  font-size: 14px;
  line-height: 1.55;
  color: #3d6b62;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px
}

.legal-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 20px
}

.legal-article ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: none
}

.legal-article ol {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: none;
  counter-reset: policy-counter
}

.legal-article ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative
}

.legal-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: #6CA294;
  transform: rotate(45deg)
}

.legal-article ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  counter-increment: policy-counter
}

.legal-article ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #6CA294;
  font-weight: 700
}

.legal-article ul li ul,
.legal-article ul li ol,
.legal-article ol li ul,
.legal-article ol li ol {
  margin-top: 10px;
  margin-bottom: 0
}

.legal-article strong,
.legal-article b {
  font-weight: 700;
  color: #1b3a35
}

.legal-article em,
.legal-article i {
  font-style: italic;
  color: #3d6b62
}

.legal-article hr {
  border: none;
  border-top: 1px solid #86C6CE;
  margin-top: 40px;
  margin-bottom: 40px;
  opacity: .45
}

.legal-article div {
  margin-bottom: 20px
}

.legal-article div.policy-notice {
  background-color: #f2fcfd;
  border-radius: 5px;
  padding: 20px 40px;
  box-shadow: 2px 2px 5px 0 #6ca2940f
}

.legal-article div.policy-notice p {
  margin-bottom: 0
}

@media (max-width: 1024px) {
  .legal-article {
    padding: 80px 40px
  }

  .legal-article h1 {
    font-size: 36px
  }

  .legal-article h2 {
    font-size: 26px;
    margin-top: 40px
  }
}

@media (max-width: 768px) {
  .legal-article {
    padding: 40px 20px
  }

  .legal-article h1 {
    font-size: 36px;
    margin-bottom: 20px
  }

  .legal-article h2 {
    font-size: 26px;
    margin-top: 40px
  }

  .legal-article h3 {
    font-size: 16px;
    margin-top: 20px
  }

  .legal-article h4,
  .legal-article h5,
  .legal-article h6 {
    font-size: 14px;
    margin-top: 20px
  }
}

@media (max-width: 640px) {
  .legal-article {
    padding: 40px 10px
  }

  .legal-article h1 {
    font-size: 26px
  }

  .legal-article h2 {
    font-size: 16px;
    margin-top: 40px
  }

  .legal-article p,
  .legal-article ul li,
  .legal-article ol li {
    font-size: 14px;
    line-height: 1.55
  }

  .legal-article div.policy-notice {
    padding: 20px
  }
}

.contact-us-page {
  background-color: #fff;
  overflow-x: clip;
  position: relative
}

.contact-us-page .upper-band {
  background-color: #f4fbfc;
  padding: 80px 20px;
  position: relative
}

.contact-us-page .upper-band::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #f4fbfc;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1
}

.contact-us-page .upper-band-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  position: relative
}

.contact-us-page .upper-band-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.contact-us-page .upper-band-diagonal svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.contact-us-page .contact-image-column {
  flex: 0 0 420px;
  position: relative
}

.contact-us-page .contact-image-frame {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 10px 40px 0 #6ca2941c
}

.contact-us-page .contact-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15);
  transition: filter .12s ease-out
}

.contact-us-page .contact-image-frame:hover img {
  filter: grayscale(60%) contrast(1.05)
}

.contact-us-page .contact-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #6ca2942e 0%, #86c6ce1f 55%, #befaff14 100%);
  pointer-events: none
}

.contact-us-page .contact-image-frame:hover::after {
  background: linear-gradient(160deg, #6ca2940f 0%, #86c6ce0a 100%);
  transition: background .15s ease-out
}

.contact-us-page .dot-path {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  grid-template-rows: repeat(5, 8px);
  gap: 6px;
  pointer-events: none;
  z-index: 2
}

.contact-us-page .dot-path span {
  width: 4px;
  height: 4px;
  border-radius: 34px;
  background-color: #6CA294;
  display: block;
  opacity: .35
}

.contact-us-page .dot-path span:nth-child(3n) {
  opacity: .6
}

.contact-us-page .contact-text-column {
  flex: 1;
  padding-top: 20px
}

.contact-us-page .label-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6CA294;
  margin-bottom: 20px
}

.contact-us-page .label-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #86C6CE;
  transform: rotate(45deg);
  margin-right: 10px;
  vertical-align: middle
}

.contact-us-page .manifesto-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1e3a34;
  margin-bottom: 20px
}

.contact-us-page .manifesto-body {
  font-size: 16px;
  line-height: 1.55;
  color: #2e4a44;
  margin-bottom: 40px;
  max-width: 440px
}

.contact-us-page .contact-facts {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us-page .fact-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px
}

.contact-us-page .fact-icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #BEFAFF;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-us-page .fact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1e3a34;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us-page .fact-detail {
  flex: 1
}

.contact-us-page .fact-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6CA294;
  margin-bottom: 4px
}

.contact-us-page .fact-value {
  font-size: 16px;
  line-height: 1.35;
  color: #1e3a34
}

.contact-us-page .fact-value a {
  color: #1e3a34;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .1s ease-out
}

.contact-us-page .fact-value a:hover {
  color: #6CA294
}

.contact-us-page .form-band {
  padding: 100px 20px 80px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  background-image: linear-gradient(135deg, #befaff38 0%, #86c6ce14 50%, #6ca2940d 100%);
  animation: bg-shift 6s ease-in-out infinite alternate
}

@keyframes bg-shift {
  0% {
    background-image: linear-gradient(135deg, #befaff38 0%, #86c6ce14 50%, #6ca2940d 100%)
  }

  100% {
    background-image: linear-gradient(315deg, #6ca2941f 0%, #86c6ce0f 50%, #befaff2e 100%)
  }
}

.contact-us-page .form-band-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start
}

.contact-us-page .form-sidebar {
  position: sticky;
  top: 40px
}

.contact-us-page .sidebar-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #1e3a34;
  margin-bottom: 20px
}

.contact-us-page .sidebar-note {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a54;
  margin-bottom: 40px
}

.contact-us-page .sidebar-diamond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us-page .sidebar-diamond-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #2e4a44;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px
}

.contact-us-page .sidebar-diamond-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #86C6CE;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 5px
}

.contact-us-page .form-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 7px 25px 0 #86c6ce1c inset 0 1px 4px 0 #6ca2940f;
  padding: 40px
}

.contact-us-page .form-group {
  margin-bottom: 20px
}

.contact-us-page .form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.contact-us-page .field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #1e3a34;
  margin-bottom: 10px
}

.contact-us-page .field-required {
  color: #6CA294;
  margin-left: 3px
}

.contact-us-page .field-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.35;
  color: #1e3a34;
  background-color: #f7fdfe;
  border: 1.5px solid #c8e8ec;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .1s ease-out, box-shadow .1s ease-out
}

.contact-us-page .field-input::placeholder {
  font-style: italic;
  opacity: .55;
  color: #3a5a54
}

.contact-us-page .field-input:focus {
  border-color: #6CA294;
  box-shadow: 2px 2px 5px 0 #6ca2940f
}

.contact-us-page .field-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.35;
  color: #1e3a34;
  background-color: #f7fdfe;
  border: 1.5px solid #c8e8ec;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236CA294' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .1s ease-out
}

.contact-us-page .field-select:focus {
  border-color: #6CA294
}

.contact-us-page .field-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #1e3a34;
  background-color: #f7fdfe;
  border: 1.5px solid #c8e8ec;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
  transition: border-color .1s ease-out
}

.contact-us-page .field-textarea::placeholder {
  font-style: italic;
  opacity: .55;
  color: #3a5a54
}

.contact-us-page .field-textarea:focus {
  border-color: #6CA294
}

.contact-us-page .form-divider-diamond {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.contact-us-page .form-divider-diamond span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6CA294
}

.contact-us-page .form-divider-diamond::before,
.contact-us-page .form-divider-diamond::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #c8e8ec
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f4fbfc;
  border-radius: 5px;
  border: 1px solid #c8e8ec
}

.contact-us-page .privacy-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #6CA294 !important;
  cursor: pointer
}

.contact-us-page .privacy-text {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a54
}

.contact-us-page .privacy-text a {
  color: #6CA294;
  text-decoration: underline;
  text-underline-offset: 2px
}

.contact-us-page .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px
}

.contact-us-page .submit-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background-color: #6CA294;
  border: none;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color .12s ease-out, box-shadow .12s ease-out;
  box-shadow: 2px 7px 25px 0 #6ca2941c
}

.contact-us-page .submit-button:hover {
  background-color: #5a8e82;
  box-shadow: 2px 10px 40px 0 #6ca2941c
}

.contact-us-page .submit-button:focus {
  outline: 2px solid #6CA294;
  outline-offset: 3px
}

.contact-us-page .submit-button:active {
  background-color: #4e7d72
}

.contact-us-page .submit-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.contact-us-page .submit-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us-page .submit-note {
  font-size: 14px;
  line-height: 1.35;
  color: #6CA294
}

@media (max-width: 1024px) {
  .contact-us-page .upper-band-inner {
    flex-direction: column;
    gap: 40px
  }

  .contact-us-page .contact-image-column {
    flex: none;
    width: 100%;
    max-width: 480px
  }

  .contact-us-page .form-band-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-us-page .form-sidebar {
    position: static
  }
}

@media (max-width: 768px) {
  .contact-us-page .upper-band {
    padding: 40px 20px
  }

  .contact-us-page .manifesto-heading {
    font-size: 26px
  }

  .contact-us-page .form-band {
    padding: 60px 20px 40px
  }

  .contact-us-page .form-card {
    padding: 20px
  }

  .contact-us-page .form-row-double {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .contact-us-page .submit-row {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 640px) {
  .contact-us-page .contact-image-frame img {
    height: 280px
  }

  .contact-us-page .manifesto-heading {
    font-size: 26px
  }

  .contact-us-page .sidebar-heading {
    font-size: 26px
  }

  .contact-us-page .dot-path {
    display: none
  }
}

@media (min-width: 641px) {

  .contact-us-page .field-input,
  .contact-us-page .field-select,
  .contact-us-page .field-textarea,
  .contact-us-page .submit-button {
    transition: border-color .1s ease-out, box-shadow .1s ease-out
  }
}

.portal {
  background: #fff;
  overflow-x: hidden;
  position: relative
}

.portal .portal-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px
}

.portal .split-heading {
  display: inline-block;
  overflow: hidden
}

.portal .split-heading .split-word-left {
  display: inline-block;
  animation: splitLeft .12s ease-out forwards
}

.portal .split-heading .split-word-right {
  display: inline-block;
  animation: splitRight .12s ease-out forwards
}

@keyframes splitLeft {
  from {
    transform: translateX(18px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes splitRight {
  from {
    transform: translateX(-18px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@media (max-width: 640px) {

  .portal .split-heading .split-word-left,
  .portal .split-heading .split-word-right {
    animation: none
  }
}

.portal .divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0
}

.portal .divider-cross .divider-line {
  width: 60px;
  height: 1px;
  background: #6CA294;
  opacity: .4
}

.portal .divider-cross .divider-symbol {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0
}

.portal .divider-cross .divider-symbol::before,
.portal .divider-cross .divider-symbol::after {
  content: "";
  position: absolute;
  background: #6CA294;
  opacity: .6
}

.portal .divider-cross .divider-symbol::before {
  width: 1px;
  height: 10px;
  left: 50%;
  top: 0;
  transform: translateX(-50%)
}

.portal .divider-cross .divider-symbol::after {
  width: 10px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.portal .title-block {
  padding: 80px 0 40px;
  position: relative
}

.portal .title-block .title-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start
}

.portal .title-block .image-strip {
  position: relative;
  width: 220px;
  flex-shrink: 0
}

.portal .title-block .image-strip .strip-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1px;
  filter: saturate(0.55) brightness(0.97)
}

.portal .title-block .image-strip .bracket-top-left,
.portal .title-block .image-strip .bracket-bottom-right {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none
}

.portal .title-block .image-strip .bracket-top-left {
  top: -8px;
  left: -8px;
  border-top: 2px solid #6CA294;
  border-left: 2px solid #6CA294
}

.portal .title-block .image-strip .bracket-bottom-right {
  bottom: -8px;
  right: -8px;
  border-bottom: 2px solid #6CA294;
  border-right: 2px solid #6CA294
}

.portal .title-block .title-text-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px
}

.portal .title-block .label-tag {
  font-size: 14px;
  letter-spacing: .18em;
  color: #6CA294;
  text-transform: uppercase;
  font-weight: 600
}

.portal .title-block .main-heading {
  font-size: 66px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a2e28;
  margin: 0;
  letter-spacing: -.01em
}

.portal .title-block .main-heading .accent-word {
  color: #6CA294
}

.portal .title-block .sub-statement {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4a45;
  max-width: 480px;
  margin: 0
}

.portal .title-block .title-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #6CA294;
  text-decoration: none;
  letter-spacing: .06em;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .1s ease-out, color .1s ease-out
}

.portal .title-block .title-cta:hover {
  color: #4a7a6e;
  border-bottom-color: #6CA294
}

.portal .title-block .title-cta .arrow-indicator {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .1s ease-out
}

.portal .title-block .title-cta .arrow-indicator::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg)
}

.portal .title-block .title-cta:hover .arrow-indicator {
  width: 26px
}

.portal .title-block .math-symbol {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 200px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px #6ca29414;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

@media (max-width: 768px) {
  .portal .title-block .title-inner {
    grid-template-columns: 140px 1fr;
    gap: 20px
  }

  .portal .title-block .main-heading {
    font-size: 36px
  }

  .portal .title-block .image-strip .strip-photo {
    height: 300px
  }

  .portal .title-block .math-symbol {
    display: none
  }
}

@media (max-width: 640px) {
  .portal .title-block .title-inner {
    grid-template-columns: 1fr
  }

  .portal .title-block .image-strip {
    width: 100%
  }

  .portal .title-block .image-strip .strip-photo {
    width: 100%;
    height: 240px
  }
}

.portal .numbers-band {
  background: linear-gradient(158deg, #6CA294 0%, #86C6CE 55%, #BEFAFF 100%);
  padding: 80px 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 100px
}

.portal .numbers-band .numbers-grid {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.portal .numbers-band .metric-item {
  text-align: center
}

.portal .numbers-band .metric-item .metric-value {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: -.02em
}

.portal .numbers-band .metric-item .metric-label {
  font-size: 14px;
  line-height: 1.55;
  color: #ffffffd9;
  margin-top: 10px;
  display: block;
  letter-spacing: .04em
}

@media (max-width: 768px) {
  .portal .numbers-band .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px
  }
}

@media (max-width: 640px) {
  .portal .numbers-band {
    clip-path: none;
    padding-bottom: 80px
  }
}

.portal .approach-block {
  padding: 80px 0 40px;
  background: #fff;
  margin-top: -30px;
  position: relative;
  z-index: 1
}

.portal .approach-block .approach-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px
}

.portal .approach-block .approach-label {
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #86C6CE;
  font-weight: 600;
  display: block;
  margin-bottom: 20px
}

.portal .approach-block .approach-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a2e28;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 40px;
  max-width: 600px
}

.portal .approach-block .two-col-features {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  gap: 40px;
  align-items: start
}

.portal .approach-block .col-divider {
  background: linear-gradient(180deg, #6CA294 0%, #86C6CE 50%, #BEFAFF 100%);
  align-self: stretch;
  border-radius: 1px
}

.portal .approach-block .feature-column {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.portal .approach-block .feature-item .feature-number {
  font-size: 14px;
  font-weight: 700;
  color: #6CA294;
  letter-spacing: .12em;
  display: block;
  margin-bottom: 10px
}

.portal .approach-block .feature-item .feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e28;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px
}

.portal .approach-block .feature-item .feature-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #3a4a45;
  margin: 0
}

@media (max-width: 768px) {
  .portal .approach-block .two-col-features {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .portal .approach-block .col-divider {
    display: none
  }
}

.portal .outcomes-block {
  padding: 80px 0;
  background: #f4fbfa;
  position: relative
}

.portal .outcomes-block .outcomes-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.portal .outcomes-block .outcomes-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
  display: block;
  box-shadow: 2px 10px 40px 0 #6ca2941c
}

.portal .outcomes-block .outcomes-text-side {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.portal .outcomes-block .outcomes-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a2e28;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0
}

.portal .outcomes-block .outcomes-body {
  font-size: 16px;
  line-height: 1.8;
  color: #3a4a45;
  margin: 0
}

.portal .outcomes-block .outcomes-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.portal .outcomes-block .outcomes-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #3a4a45;
  padding-left: 10px
}

@media (max-width: 768px) {
  .portal .outcomes-block .outcomes-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .portal .outcomes-block .outcomes-photo {
    height: 280px
  }
}

.portal .experience-block {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.portal .experience-block .experience-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px
}

.portal .experience-block .experience-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a2e28;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 40px;
  text-align: center
}

.portal .experience-block .testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start
}

.portal .experience-block .testimonial-card {
  background: #f4fbfa;
  border-radius: 5px;
  padding: 40px;
  box-shadow: inset 2px 2px 5px 0 #6ca2940f;
  position: relative
}

.portal .experience-block .testimonial-card .quote-mark {
  width: 28px;
  height: 20px;
  margin-bottom: 20px
}

.portal .experience-block .testimonial-card .quote-mark rect {
  fill: #6CA294;
  opacity: .35
}

.portal .experience-block .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #2a3c38;
  margin: 0 0 20px;
  font-style: italic
}

.portal .experience-block .testimonial-card .person-name {
  font-size: 14px;
  font-weight: 700;
  color: #6CA294;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block
}

.portal .experience-block .testimonial-card .person-detail {
  font-size: 14px;
  color: #5a7a74;
  display: block;
  margin-top: 10px;
  line-height: 1.55
}

.portal .experience-block .side-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.portal .experience-block .side-photo-stack .side-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  display: block;
  box-shadow: 2px 7px 25px 0 #86c6ce1c
}

.portal .experience-block .side-photo-stack .photo-caption {
  font-size: 14px;
  color: #6CA294;
  line-height: 1.55;
  letter-spacing: .04em
}

@media (max-width: 768px) {
  .portal .experience-block .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.portal .fit-block {
  padding: 80px 0;
  background: linear-gradient(158deg, #1a2e28 0%, #2a4a42 100%);
  position: relative;
  overflow: hidden
}

.portal .fit-block .fit-bg-symbol {
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-size: 320px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px #befaff0f;
  pointer-events: none;
  user-select: none
}

.portal .fit-block .fit-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.portal .fit-block .fit-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #BEFAFF;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 40px
}

.portal .fit-block .fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.portal .fit-block .fit-group-title {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px
}

.portal .fit-block .fit-group-title.yes-group {
  color: #86C6CE
}

.portal .fit-block .fit-group-title.no-group {
  color: #befaff66
}

.portal .fit-block .fit-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.portal .fit-block .fit-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffffbf;
  padding-left: 10px
}

.portal .fit-block .fit-list.yes-list li {
  color: #befaffd9
}

@media (max-width: 640px) {
  .portal .fit-block .fit-columns {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .portal .fit-block .fit-bg-symbol {
    display: none
  }
}

.portal .feed-block {
  padding: 80px 0;
  background: #f4fbfa
}

.portal .feed-block .feed-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.portal .feed-block .feed-text-side {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.portal .feed-block .feed-heading {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a2e28;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0
}

.portal .feed-block .feed-body {
  font-size: 16px;
  line-height: 1.8;
  color: #3a4a45;
  margin: 0
}

.portal .feed-block .feed-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #6CA294;
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .12s ease-out
}

.portal .feed-block .feed-link:hover {
  color: #4a7a6e
}

.portal .feed-block .feed-link .arrow-short {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative
}

.portal .feed-block .feed-link .arrow-short::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg)
}

.portal .feed-block .activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 7px 25px 0 #6ca2941c
}

.portal .feed-block .activity-entry {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #6ca2941f;
  transition: background .1s linear
}

.portal .feed-block .activity-entry:last-child {
  border-bottom: none
}

.portal .feed-block .activity-entry:hover {
  background: #f4fbfa
}

.portal .feed-block .activity-entry .entry-icon {
  width: 36px;
  height: 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, #6CA294, #86C6CE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.portal .feed-block .activity-entry .entry-icon svg {
  width: 16px;
  height: 16px
}

.portal .feed-block .activity-entry .entry-content {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.portal .feed-block .activity-entry .entry-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #2a3c38;
  margin: 0
}

.portal .feed-block .activity-entry .entry-time {
  font-size: 14px;
  color: #86C6CE;
  letter-spacing: .06em
}

@media (max-width: 768px) {
  .portal .feed-block .feed-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@keyframes gradientCycle {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.portal .numbers-band {
  background-size: 200% 200%;
  animation: gradientCycle 8s linear infinite
}

.about-us {
  background: #fff;
  overflow-x: clip;
  position: relative
}

.about-us .diagonal-reveal {
  animation: diagonal-fade .9s ease-out both
}

.about-us .diagonal-reveal-2 {
  animation: diagonal-fade .9s .12s ease-out both
}

.about-us .diagonal-reveal-3 {
  animation: diagonal-fade .9s .22s ease-out both
}

@keyframes diagonal-fade {
  from {
    opacity: 0;
    transform: translate(-18px, 18px)
  }

  to {
    opacity: 1;
    transform: translate(0, 0)
  }
}

.about-us .blink-cursor::after {
  content: '|';
  display: inline-block;
  animation: blink-anim .9s linear infinite;
  color: #6CA294;
  margin-left: 2px
}

@keyframes blink-anim {

  0%,
  49% {
    opacity: 1
  }

  50%,
  100% {
    opacity: 0
  }
}

.about-us .typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typewriter 2.2s steps(28, end) .3s both;
  max-width: 100%
}

@keyframes typewriter {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.about-us .title-block {
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(162deg, #fff 0%, #e8f7f5 55%, #d0eff4 100%)
}

.about-us .blob-group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.about-us .blob {
  position: absolute;
  border-radius: 34px;
  filter: blur(48px)
}

.about-us .blob-a {
  width: 320px;
  height: 220px;
  background: #BEFAFF;
  opacity: .35;
  top: -40px;
  left: -60px;
  transform: rotate(-18deg)
}

.about-us .blob-b {
  width: 260px;
  height: 180px;
  background: #86C6CE;
  opacity: .22;
  bottom: 0;
  right: -40px;
  transform: rotate(12deg)
}

.about-us .blob-c {
  width: 180px;
  height: 180px;
  background: #6CA294;
  opacity: .13;
  top: 40px;
  right: 20%;
  border-radius: 34px
}

.about-us .title-inner {
  position: relative;
  max-width: 1170px;
  margin: 0 auto
}

.about-us .label-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6CA294;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid #6CA294;
  border-radius: 5px;
  padding: 4px 14px
}

.about-us .title-heading {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: -.01em;
  margin: 0 auto 20px;
  max-width: 780px
}

.about-us .title-counter-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.about-us .counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.about-us .counter-shape {
  width: 80px;
  height: 80px;
  border: 3px solid #6CA294;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 2px 7px 25px 0 #6ca2941c
}

.about-us .counter-number {
  font-size: 26px;
  font-weight: 800;
  color: #6CA294;
  line-height: 1.1
}

.about-us .counter-label {
  font-size: 14px;
  color: #3d6b63;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.about-us .title-image-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 10px 40px 0 #6ca2941c
}

.about-us .title-image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center
}

.about-us .title-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(162deg, #6ca29447 0%, #86c6ce2e 60%, #befaff1a 100%);
  border-radius: 5px;
  pointer-events: none
}

.about-us .title-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  box-shadow: 2px 7px 25px 0 #6ca2941c;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px
}

.about-us .title-badge-number {
  font-size: 26px;
  font-weight: 800;
  color: #6CA294;
  line-height: 1.1
}

.about-us .title-badge-text {
  font-size: 14px;
  color: #3d6b63;
  font-weight: 600;
  letter-spacing: .06em
}

.about-us .split-block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch
}

.about-us .split-left {
  background: linear-gradient(135deg, #6CA294 0%, #86C6CE 60%, #BEFAFF 100%);
  border-radius: 5px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 10px 40px 0 #6ca2941c;
  position: relative
}

.about-us .split-left-double-border {
  position: absolute;
  inset: 8px;
  border: 2px solid #ffffff61;
  border-radius: 5px;
  pointer-events: none
}

.about-us .split-left-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative
}

.about-us .split-left-body {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffed;
  position: relative
}

.about-us .split-left-stat {
  margin-top: 40px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px
}

.about-us .hex-shape {
  width: 72px;
  height: 72px;
  background: #ffffff2e;
  border: 2px solid #ffffff8c;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about-us .hex-number {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1
}

.about-us .hex-label {
  font-size: 14px;
  color: #ffffffe0;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.about-us .split-right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us .split-right-heading {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: .05em;
  text-transform: uppercase
}

.about-us .split-right-body {
  font-size: 16px;
  line-height: 1.55;
  color: #2c4e48
}

.about-us .split-right-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.about-us .split-right-list li {
  font-size: 16px;
  line-height: 1.55;
  color: #2c4e48
}

.about-us .team-block {
  background: #f2fbfa;
  padding: 80px 20px;
  border-top: 1px solid #d0eff4;
  border-bottom: 1px solid #d0eff4
}

.about-us .team-inner {
  max-width: 1170px;
  margin: 0 auto
}

.about-us .team-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.about-us .team-subtext {
  font-size: 16px;
  line-height: 1.55;
  color: #3d6b63;
  max-width: 560px;
  margin-bottom: 40px
}

.about-us .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.about-us .team-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 2px 5px 0 #6ca2940f 2px 7px 25px 0 #6ca2941c;
  display: flex;
  flex-direction: column;
  transition: box-shadow .13s ease-out
}

.about-us .team-card:hover {
  box-shadow: 2px 10px 40px 0 #6ca2941c
}

.about-us .team-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px
}

.about-us .team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .13s ease-out
}

.about-us .team-card:hover .team-card-image {
  transform: scale(1.03)
}

.about-us .team-card-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #6ca29438 100%);
  pointer-events: none
}

.about-us .team-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  box-shadow: inset 0 3px 8px 0 #6ca2940f
}

.about-us .team-card-name {
  font-size: 16px;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: .06em;
  text-transform: uppercase
}

.about-us .team-card-role {
  font-size: 14px;
  color: #6CA294;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.about-us .team-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #3d6b63
}

.about-us .values-block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 20px
}

.about-us .values-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start
}

.about-us .values-image-col {
  position: relative
}

.about-us .values-image-wrap {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 10px 40px 0 #6ca2941c;
  position: relative
}

.about-us .values-image {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center
}

.about-us .values-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, #86c6ce40 0%, #6ca2942e 100%);
  pointer-events: none
}

.about-us .values-double-border {
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #86C6CE;
  border-radius: 5px;
  pointer-events: none;
  z-index: 0
}

.about-us .values-image-wrap {
  position: relative;
  z-index: 1
}

.about-us .values-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us .values-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: .05em;
  text-transform: uppercase
}

.about-us .values-intro {
  font-size: 16px;
  line-height: 1.55;
  color: #2c4e48;
  max-width: 520px
}

.about-us .values-item {
  background: #f2fbfa;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  box-shadow: inset 2px 2px 5px 0 #6ca2940f;
  transition: background .1s ease-out
}

.about-us .values-item:hover {
  background: #e2f5f3
}

.about-us .values-item-number {
  font-size: 26px;
  font-weight: 800;
  color: #86C6CE;
  line-height: 1.1;
  flex-shrink: 0;
  width: 40px;
  text-align: right
}

.about-us .values-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-us .values-item-heading {
  font-size: 14px;
  font-weight: 800;
  color: #1b3a35;
  letter-spacing: .1em;
  text-transform: uppercase
}

.about-us .values-item-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #3d6b63
}

@media (max-width: 1024px) {
  .about-us .split-block {
    grid-template-columns: 1fr
  }

  .about-us .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-us .values-layout {
    grid-template-columns: 1fr
  }

  .about-us .values-image {
    height: 320px
  }

  .about-us .title-heading {
    font-size: 36px
  }
}

@media (max-width: 768px) {
  .about-us .title-block {
    padding: 40px 20px
  }

  .about-us .title-heading {
    font-size: 36px
  }

  .about-us .title-image {
    height: 260px
  }

  .about-us .team-grid {
    grid-template-columns: 1fr
  }

  .about-us .split-left {
    padding: 20px
  }

  .about-us .title-counter-row {
    gap: 20px
  }

  .about-us .split-block {
    padding: 40px 20px
  }

  .about-us .team-block {
    padding: 40px 20px
  }

  .about-us .values-block {
    padding: 40px 20px
  }
}

@media (max-width: 640px) {
  .about-us .title-heading {
    font-size: 26px
  }

  .about-us .split-left-heading {
    font-size: 26px
  }

  .about-us .title-badge {
    display: none
  }

  .about-us .values-double-border {
    display: none
  }
}

@media (min-width: 641px) {
  .about-us .team-card {
    transition: box-shadow .13s ease-out
  }

  .about-us .team-card-image {
    transition: transform .13s ease-out
  }

  .about-us .values-item {
    transition: background .1s ease-out
  }
}

.services {
  background: #fff;
  overflow-x: clip
}

.services .schema-data {
  display: none
}

.services .top-block {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(128deg, #6CA294 0%, #86C6CE 52%, #BEFAFF 100%);
  overflow: hidden
}

.services .top-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(128deg, #6ca294d9 0%, #86c6ceb3 52%, #befaff8c 100%);
  pointer-events: none
}

.services .top-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 100%, 100% 60%, 60% 0%, 40% 0%, 0 60%);
  pointer-events: none
}

.services .wave-bg {
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, #befaff2e 30%, #86c6ce38 60%, transparent 100%);
  animation: color-wave 7s ease-in-out infinite alternate;
  pointer-events: none
}

@keyframes color-wave {
  0% {
    transform: translateX(-60px);
    opacity: .5
  }

  100% {
    transform: translateX(60px);
    opacity: 1
  }
}

.services .top-block-inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px
}

.services .top-text-area {
  flex: 1 1 55%;
  padding-top: 80px
}

.services .top-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: #6ca29473;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 20px
}

.services .top-heading {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.services .top-heading span {
  display: block;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: #ffffffe0;
  margin-top: 10px
}

.services .top-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffed;
  max-width: 480px;
  margin: 0
}

.services .top-image-area {
  flex: 0 0 38%;
  position: relative
}

.services .top-image-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 2px 10px 40px 0 #6ca2941c;
  position: relative
}

.services .top-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(1.1);
  transition: filter .12s ease-out
}

.services .top-image-frame:hover img {
  filter: brightness(1.04) saturate(1.05)
}

.services .top-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #86c6ce47 0%, transparent 60%);
  border-radius: 34px;
  pointer-events: none
}

.services .top-deco-line {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 80px;
  height: 4px;
  background: #ffffff8c;
  border-radius: 1px
}

.services .top-deco-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #befaffb3;
  border-radius: 1px;
  margin-top: 10px;
  margin-left: 20px
}

.services .zigzag-top {
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(90deg, #6CA294 0px, #6CA294 18px, transparent 18px, transparent 36px);
  clip-path: polygon(0 0, 18px 18px, 36px 0, 54px 18px, 72px 0, 90px 18px, 108px 0, 126px 18px, 144px 0, 162px 18px, 180px 0, 198px 18px, 216px 0, 234px 18px, 252px 0, 270px 18px, 288px 0, 306px 18px, 324px 0, 342px 18px, 360px 0, 378px 18px, 396px 0, 414px 18px, 432px 0, 450px 18px, 468px 0, 486px 18px, 504px 0, 522px 18px, 540px 0, 558px 18px, 576px 0, 594px 18px, 612px 0, 630px 18px, 648px 0, 666px 18px, 684px 0, 702px 18px, 720px 0, 738px 18px, 756px 0, 774px 18px, 792px 0, 810px 18px, 828px 0, 846px 18px, 864px 0, 882px 18px, 900px 0, 918px 18px, 936px 0, 954px 18px, 972px 0, 990px 18px, 1008px 0, 1026px 18px, 1044px 0, 1062px 18px, 1080px 0, 1098px 18px, 1116px 0, 1134px 18px, 1152px 0, 1170px 18px, 1170px 0);
  opacity: .22;
  pointer-events: none;
  margin-bottom: -18px
}

.services .catalog-block {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.services .catalog-inner {
  max-width: 1170px;
  margin: 0 auto
}

.services .catalog-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px
}

.services .catalog-sidebar {
  flex: 0 0 calc(33.333% - 20px);
  position: relative
}

.services .catalog-sidebar-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6CA294;
  margin-bottom: 20px;
  display: block
}

.services .catalog-sidebar-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b3a34;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 20px
}

.services .catalog-sidebar-border {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px
}

.services .catalog-sidebar-border .line-left {
  width: 30px;
  height: 2px;
  background: #6CA294;
  border-radius: 1px
}

.services .catalog-sidebar-border .line-right {
  width: 30px;
  height: 2px;
  background: #86C6CE;
  border-radius: 1px
}

.services .catalog-body-text {
  flex: 1 1 0
}

.services .catalog-body-text p {
  font-size: 16px;
  line-height: 1.55;
  color: #2c4a44;
  margin: 0 0 20px
}

.services .catalog-body-text p:last-child {
  margin-bottom: 0
}

.services .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.services .service-item {
  background: #f4fcfd;
  border-radius: 5px;
  padding: 40px 20px;
  box-shadow: inset 2px 2px 5px 0 #6ca2940f;
  position: relative;
  border-top: 3px solid #86C6CE
}

.services .service-item.featured {
  background: linear-gradient(160deg, #6CA294 0%, #86C6CE 100%);
  border-top: 3px solid #BEFAFF;
  box-shadow: 2px 7px 25px 0 #6ca2941c
}

.services .service-number {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #6ca29426;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -.02em
}

.services .service-item.featured .service-number {
  color: #fff3
}

.services .service-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1b3a34;
  margin: 0 0 10px;
  line-height: 1.35
}

.services .service-item.featured .service-name {
  color: #fff
}

.services .service-description {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a54;
  margin: 0 0 20px
}

.services .service-item.featured .service-description {
  color: #ffffffe0
}

.services .service-detail-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0
}

.services .service-detail-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #2c4a44;
  padding-left: 10px
}

.services .service-item.featured .service-detail-list li {
  color: #ffffffe6
}

.services .catalog-image-row {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px
}

.services .catalog-image-wrap {
  flex: 0 0 42%;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 2px 7px 25px 0 #86c6ce1c
}

.services .catalog-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.87) saturate(1.08);
  transition: filter .14s ease-out
}

.services .catalog-image-wrap:hover img {
  filter: brightness(1.05) saturate(1.04)
}

.services .catalog-facts {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px
}

.services .fact-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f4fcfd;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 #6ca2940f
}

.services .fact-number {
  font-size: 36px;
  font-weight: 800;
  color: #6CA294;
  line-height: 1.1;
  flex: 0 0 auto;
  min-width: 60px
}

.services .fact-text {
  flex: 1 1 0
}

.services .fact-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1b3a34;
  margin-bottom: 10px
}

.services .fact-text p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a5a54;
  margin: 0
}

.services .divider-edges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1170px;
  margin: 0 auto
}

.services .divider-edges .edge-line {
  width: 80px;
  height: 2px;
  background: #86C6CE;
  border-radius: 1px
}

@media (max-width: 1024px) {
  .services .top-block-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px
  }

  .services .top-text-area {
    flex: 1 1 100%;
    padding-top: 40px
  }

  .services .top-image-area {
    flex: 0 0 100%;
    width: 100%
  }

  .services .top-image-frame img {
    height: 280px
  }

  .services .top-heading {
    font-size: 36px
  }

  .services .top-heading span {
    font-size: 26px
  }

  .services .catalog-header {
    flex-direction: column;
    gap: 20px
  }

  .services .catalog-sidebar {
    flex: 0 0 auto
  }

  .services .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .services .catalog-image-row {
    flex-direction: column;
    gap: 40px
  }

  .services .catalog-image-wrap {
    flex: 0 0 auto
  }
}

@media (max-width: 768px) {
  .services .top-block {
    padding: 40px 20px 60px
  }

  .services .top-heading {
    font-size: 26px
  }

  .services .top-heading span {
    font-size: 16px
  }

  .services .service-list {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .services .catalog-sidebar-heading {
    font-size: 26px
  }

  .services .catalog-block {
    padding: 40px 20px
  }

  .services .catalog-header {
    margin-bottom: 40px
  }

  .services .catalog-image-row {
    margin-top: 40px
  }

  .services .fact-row {
    flex-direction: column;
    gap: 10px
  }
}

@media (max-width: 640px) {
  .services .top-eyebrow {
    font-size: 14px;
    padding: 10px
  }

  .services .catalog-facts {
    gap: 10px
  }

  .services .service-item {
    padding: 20px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #fff
}

.success-page .success-wrapper {
  max-width: 1170px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px
}

.success-page .success-icon-area {
  width: 80px;
  height: 80px;
  border-radius: 34px;
  background: linear-gradient(135deg, #6CA294, #86C6CE, #BEFAFF);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 7px 25px 0 #6ca2941c;
  flex-shrink: 0
}

.success-page .success-icon-area .checkmark-svg {
  width: 36px;
  height: 36px
}

.success-page .success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 560px
}

.success-page .success-content .success-label {
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6CA294
}

.success-page .success-content .success-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #1b2e2a;
  margin: 0;
  letter-spacing: .02em
}

.success-page .success-content .success-body {
  font-size: 16px;
  line-height: 1.55;
  color: #3a4f4a;
  margin: 0
}

.success-page .success-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #6CA294, #86C6CE, #BEFAFF);
  border-radius: 1px;
  flex-shrink: 0
}

.success-page .success-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center
}

.success-page .success-actions .action-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  background: #6CA294;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 #6ca2940f;
  transition: background-color .12s ease-out, box-shadow .1s ease-out;
  border: none;
  cursor: pointer
}

.success-page .success-actions .action-primary:hover {
  background: #5a8c7e;
  box-shadow: 2px 7px 25px 0 #6ca2941c
}

.success-page .success-actions .action-primary:focus-visible {
  outline: 2px solid #6CA294;
  outline-offset: 3px
}

.success-page .success-actions .action-primary .arrow-shape {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-page .success-actions .action-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  color: #6CA294;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #86C6CE;
  transition: background-color .09s linear, color .09s linear;
  cursor: pointer
}

.success-page .success-actions .action-secondary:hover {
  background: #BEFAFF;
  color: #3a6b61
}

.success-page .success-actions .action-secondary:focus-visible {
  outline: 2px solid #6CA294;
  outline-offset: 3px
}

.success-page .success-note {
  font-size: 14px;
  line-height: 1.55;
  color: #6a8a84;
  text-align: center;
  max-width: 400px;
  margin: 0
}

@media (max-width: 640px) {
  .success-page {
    padding: 80px 20px
  }

  .success-page .success-content .success-heading {
    font-size: 26px
  }

  .success-page .success-actions {
    flex-direction: column;
    width: 100%
  }

  .success-page .success-actions .action-primary,
  .success-page .success-actions .action-secondary {
    width: 100%;
    justify-content: center
  }
}