@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/700.css";

* {
  box-sizing: border-box
}

html {
  font-size: 100%
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh
}

.top-bar {
  background-color: #41A691;
  padding: 8px 0
}

.top-bar-box {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.top-bar-phone-link {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .25s ease-in-out
}

.top-bar-phone-link:hover {
  opacity: .82
}

.top-bar-phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.top-bar-email-link {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #F3F8F7;
  text-decoration: none;
  letter-spacing: 0;
  transition: opacity .28s ease-in-out
}

.top-bar-email-link:hover {
  opacity: .78
}

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

.primary-header {
  background-color: #fff;
  border-bottom: 1px solid #9EC9BB;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.primary-header-box {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px
}

.brand-mark-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #F3F8F7;
  border: 1px solid #9EC9BB;
  box-shadow: 1px 3px 5px -1px #41a6910d 1px 6px 28px -1px #41a6911a;
  padding: 8px;
  border-radius: 0;
  width: 72px;
  height: 72px;
  justify-content: center
}

.brand-mark-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block
}

.brand-name-text {
  font-family: 'Archivo', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-left: 16px;
  white-space: nowrap
}

.brand-name-text span {
  color: #41A691
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px
}

.primary-nav-link {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: -.01em;
  line-height: 1.35;
  white-space: nowrap;
  transition: background-color .25s ease-in-out, color .25s ease-in-out;
  display: inline-flex;
  align-items: center;
  min-height: 44px
}

.primary-nav-link:hover {
  background-color: #F3F8F7;
  color: #41A691
}

.primary-nav-link.active {
  background-color: #F3F8F7;
  color: #41A691;
  font-weight: 600
}

.brand-identity-strip {
  background: linear-gradient(135deg, #F3F8F7 0%, #e8f4f1 100%);
  border-bottom: 1px solid #9EC9BB;
  padding: 16px 0
}

.brand-identity-strip-box {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.brand-tagline {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: -.01em;
  line-height: 1.35
}

.brand-tagline strong {
  font-weight: 600;
  color: #41A691
}

.header-cta-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #41A691;
  border: none;
  border-radius: 4px;
  padding: 8px 32px;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: background-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden
}

.header-cta-btn:hover {
  background-color: #38917e;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.header-cta-btn:hover .btn-arrow-icon {
  transform: translateX(4px)
}

.btn-arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s ease-in-out
}

.header-cta-btn:focus {
  outline: none;
  filter: invert(1)
}

@media (max-width: 1024px) {
  .brand-identity-strip-box {
    gap: 16px
  }
}

@media (max-width: 768px) {
  .top-bar-box {
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 8px
  }

  .top-bar-contact-group {
    gap: 16px
  }

  .primary-header-box {
    padding: 0 16px;
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 16px
  }

  .primary-nav {
    width: 100%;
    gap: 4px
  }

  .brand-identity-strip-box {
    padding: 0 16px
  }

  .brand-name-text {
    font-size: 17px
  }
}

@media (max-width: 480px) {
  .top-bar-email-link {
    display: none
  }

  .brand-identity-strip {
    display: none
  }
}

.site-footer {
  background-color: #41A691
}

.footer-main-box {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 64px;
  align-items: start
}

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

.footer-logo-box {
  background-color: #fff;
  border: 1px solid #fff9;
  box-shadow: 1px 3px 5px -1px #41a6910d 1px 6px 28px -1px #41a6911a;
  padding: 8px;
  border-radius: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

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

.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1
}

.footer-brand-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffd1;
  line-height: 1.55;
  max-width: 220px
}

.footer-mid-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px
}

.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-address-label {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.35
}

.footer-address-text {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffd1;
  line-height: 1.55
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-contact-link {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffe6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
  transition: color .25s ease-in-out
}

.footer-contact-link:hover {
  color: #fff
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px
}

.footer-nav-label {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-bottom: 8px
}

.footer-nav-link {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffd1;
  text-decoration: none;
  line-height: 1.55;
  transition: color .25s ease-in-out;
  white-space: nowrap
}

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

.footer-bottom-bar {
  border-top: 1px solid #ffffff38;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-copyright {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffa6;
  line-height: 1.35
}

.footer-founded {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff80;
  line-height: 1.35
}

@media (max-width: 1024px) {
  .footer-main-box {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

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

@media (max-width: 768px) {
  .footer-main-box {
    grid-template-columns: 1fr;
    padding: 32px 16px 16px;
    gap: 32px
  }

  .footer-bottom-bar {
    padding: 16px
  }
}

@media (max-width: 480px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
}

.consent-strip {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 560px;
  max-width: calc(100vw - 32px);
  background-color: #fff;
  border: 1px solid #9EC9BB;
  border-radius: 6px;
  box-shadow: 1px 12px 36px -1px #41a6911f;
  padding: 16px 32px;
  z-index: 2000;
  display: none;
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-strip.visible {
  transform: translateX(0)
}

.consent-desc {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.55;
  margin-bottom: 8px
}

.consent-policy-note {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.35;
  margin-bottom: 16px
}

.consent-policy-note a {
  color: #41A691;
  text-decoration: underline;
  transition: opacity .25s ease-in-out
}

.consent-policy-note a:hover {
  opacity: .75
}

.consent-headline {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.consent-accept-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #41A691;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  min-height: 44px;
  cursor: pointer;
  transition: background-color .25s ease-in-out
}

.consent-accept-btn:hover {
  background-color: #38917e
}

.consent-accept-btn:focus {
  outline: none;
  filter: invert(1)
}

.consent-decline-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #41A691;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: underline;
  min-height: 44px;
  transition: opacity .25s ease-in-out
}

.consent-decline-btn:hover {
  opacity: .7
}

.consent-decline-btn:focus {
  outline: none;
  filter: invert(1)
}

.consent-mini-bar {
  position: fixed;
  bottom: 0;
  right: 32px;
  background-color: #41A691;
  border-radius: 6px 6px 0 0;
  padding: 8px 16px;
  z-index: 1999;
  display: none;
  cursor: pointer;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: background-color .25s ease-in-out
}

.consent-mini-bar:hover {
  background-color: #38917e
}

.consent-mini-bar:focus {
  outline: none;
  filter: invert(1)
}

.consent-mini-label {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  white-space: nowrap
}

.ss-doc-info {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2d3a36
}

.ss-doc-info p {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 16px;
  color: #2d3a36
}

.ss-doc-info ul,
.ss-doc-info ol {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 16px;
  padding-left: 32px
}

.ss-doc-info li {
  margin-bottom: 8px;
  color: #2d3a36
}

.ss-doc-info ul li {
  list-style-type: disc
}

.ss-doc-info ol li {
  list-style-type: decimal
}

.ss-doc-info ul ul,
.ss-doc-info ol ol,
.ss-doc-info ul ol,
.ss-doc-info ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.ss-doc-info strong,
.ss-doc-info b {
  font-weight: 700;
  color: #1e2d29
}

.ss-doc-info em,
.ss-doc-info i {
  font-style: italic;
  color: #3a4f48
}

.ss-doc-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.55;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.ss-doc-info thead {
  background-color: #41A691
}

.ss-doc-info thead th {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 16px;
  letter-spacing: -.01em;
  border: none
}

.ss-doc-info tbody tr {
  border-bottom: 1px solid #9EC9BB;
  transition: background-color .25s ease-in-out
}

.ss-doc-info tbody tr:last-child {
  border-bottom: none
}

.ss-doc-info tbody tr:nth-child(even) {
  background-color: #F3F8F7
}

.ss-doc-info tbody tr:hover {
  background-color: #9ec9bb2e
}

.ss-doc-info td {
  padding: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #2d3a36;
  vertical-align: top;
  border-right: 1px solid #9ec9bb59
}

.ss-doc-info td:last-child {
  border-right: none
}

.ss-doc-info div {
  margin-bottom: 16px
}

@media (max-width: 768px) {
  .ss-doc-info {
    padding: 32px 16px
  }

  .ss-doc-info p,
  .ss-doc-info ul,
  .ss-doc-info ol {
    font-size: 15px
  }

  .ss-doc-info table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 480px) {
  .ss-doc-info {
    padding: 32px 16px
  }

  .ss-doc-info thead th,
  .ss-doc-info td {
    padding: 8px;
    font-size: 15px
  }

  .ss-doc-info ul,
  .ss-doc-info ol {
    padding-left: 16px
  }
}

.intl-students {
  background-color: #fff;
  overflow-x: clip
}

.intl-students .reveal-1 {
  animation: revealUp .35s cubic-bezier(0.4, 0, 0.2, 1) both
}

.intl-students .reveal-2 {
  animation: revealUp .35s cubic-bezier(0.4, 0, 0.2, 1) .08s both
}

.intl-students .reveal-3 {
  animation: revealUp .38s cubic-bezier(0.4, 0, 0.2, 1) .16s both
}

.intl-students .reveal-4 {
  animation: revealUp .4s cubic-bezier(0.4, 0, 0.2, 1) .26s both
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

.intl-students .pg-entry {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
  align-items: center;
  position: relative
}

.intl-students .pg-entry-img-col {
  position: relative
}

.intl-students .pg-entry-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #9EC9BB;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  position: relative
}

.intl-students .pg-entry-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.4) sepia(0.3) hue-rotate(0deg);
  transition: filter .35s ease-in-out
}

.intl-students .pg-entry-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #41a69161 0%, #9ec9bb2e 100%);
  border-radius: 6px;
  pointer-events: none
}

.intl-students .pg-entry-geo-shape {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 120px;
  height: 120px;
  border: 1.5px solid #41a69138;
  border-radius: 4px;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0
}

.intl-students .pg-entry-geo-dot {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 56px;
  height: 56px;
  border: 1.5px solid #9ec9bb4d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.intl-students .pg-entry-text-col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.intl-students .pg-entry-eyebrow {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-style: italic
}

.intl-students .pg-entry-h1 {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1b2b27;
  margin: 0
}

.intl-students .pg-entry-h1 .framed-word {
  display: inline-block;
  border: 1.5px solid #41A691;
  border-radius: 4px;
  padding: 0 8px;
  color: #41A691;
  font-style: italic
}

.intl-students .pg-entry-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #2e4a43;
  max-width: 540px;
  margin: 0
}

.intl-students .pg-entry-stats {
  display: flex;
  flex-direction: row;
  gap: 32px
}

.intl-students .pg-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.intl-students .pg-stat-num {
  font-size: 37px;
  line-height: 1.1;
  color: #41A691;
  letter-spacing: -.02em
}

.intl-students .pg-stat-label {
  font-size: 15px;
  line-height: 1.35;
  color: #4a6b62
}

.intl-students .pg-entry-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center
}

.intl-students .btn-primary-filled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #41A691;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.intl-students .btn-primary-filled:hover {
  background-color: #35907d;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.intl-students .btn-primary-filled:hover .btn-arrow {
  transform: translateX(4px)
}

.intl-students .btn-arrow {
  display: inline-block;
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.intl-students .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #41A691;
  font-size: 15px;
  line-height: 1.35;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1.5px solid #9EC9BB;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .28s ease-in-out, color .28s ease-in-out
}

.intl-students .btn-outline-light:hover {
  border-color: #41A691;
  color: #2e7a6a
}

.intl-students .btn-outline-light:hover .btn-arrow {
  transform: translateX(4px)
}

.intl-students .pg-entry-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.intl-students .pg-entry-divider svg {
  display: block;
  width: 100%
}

.intl-students .intl-compare-wrap {
  background-color: #F3F8F7;
  padding: 64px 32px;
  position: relative
}

.intl-students .intl-compare-wrap::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 64px;
  width: 180px;
  height: 180px;
  border: 1.5px solid #41a69121;
  border-radius: 0;
  transform: rotate(30deg);
  pointer-events: none
}

.intl-students .compare-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.intl-students .compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end
}

.intl-students .compare-h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2b27;
  font-style: italic;
  margin: 0
}

.intl-students .compare-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3d5e56;
  margin: 0
}

.intl-students .compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.intl-students .compare-card {
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #d0e8e2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: box-shadow .3s ease-in-out;
  position: relative
}

.intl-students .compare-card:hover {
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.intl-students .compare-card.recommended {
  background-color: #41A691;
  border-color: #41A691;
  box-shadow: 1px 12px 36px -1px #41a6911f
}

.intl-students .compare-badge {
  display: inline-block;
  background-color: #fff;
  color: #41A691;
  font-size: 15px;
  line-height: 1.35;
  padding: 4px 8px;
  border-radius: 4px;
  font-style: italic;
  align-self: flex-start
}

.intl-students .compare-card-label {
  font-size: 15px;
  line-height: 1.35;
  color: #4a6b62;
  text-transform: uppercase;
  letter-spacing: .07em
}

.intl-students .compare-card.recommended .compare-card-label {
  color: #ffffffbf
}

.intl-students .compare-card-name {
  font-size: 27px;
  line-height: 1.1;
  color: #1b2b27;
  font-style: italic;
  margin: 0
}

.intl-students .compare-card.recommended .compare-card-name {
  color: #fff
}

.intl-students .compare-card-price {
  font-size: 37px;
  line-height: 1.1;
  color: #41A691;
  letter-spacing: -.02em
}

.intl-students .compare-card.recommended .compare-card-price {
  color: #fff
}

.intl-students .compare-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #3d5e56;
  margin: 0
}

.intl-students .compare-card.recommended .compare-card-desc {
  color: #ffffffe0
}

.intl-students .compare-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.intl-students .compare-feat-list li {
  font-size: 15px;
  line-height: 1.55;
  color: #2e4a43;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.intl-students .compare-card.recommended .compare-feat-list li {
  color: #ffffffe6
}

.intl-students .feat-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px
}

.intl-students .compare-card.recommended .feat-check path {
  stroke: #fff
}

.intl-students .compare-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.35;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid #9EC9BB;
  color: #41A691;
  background: transparent;
  transition: border-color .28s ease-in-out, background-color .28s ease-in-out, color .28s ease-in-out;
  align-self: flex-start
}

.intl-students .compare-card-btn:hover {
  border-color: #41A691;
  background-color: #F3F8F7
}

.intl-students .compare-card.recommended .compare-card-btn {
  background-color: #fff;
  border-color: #fff;
  color: #41A691
}

.intl-students .compare-card.recommended .compare-card-btn:hover {
  background-color: #F3F8F7
}

.intl-students .compare-card-btn:hover .btn-arrow {
  transform: translateX(4px)
}

.intl-students .intl-global-wrap {
  padding: 64px 32px;
  position: relative;
  background-color: #fff
}

.intl-students .global-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 32px;
  align-items: start
}

.intl-students .global-text-col {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.intl-students .global-h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2b27;
  font-style: italic;
  margin: 0
}

.intl-students .global-lead {
  font-size: 17px;
  line-height: 1.55;
  color: #3d5e56;
  margin: 0
}

.intl-students .global-support-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.intl-students .global-support-item {
  background-color: #F3F8F7;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #d0e8e2
}

.intl-students .global-support-label {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  font-style: italic;
  margin-bottom: 4px
}

.intl-students .global-support-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2e4a43;
  margin: 0
}

.intl-students .global-img-col {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #9EC9BB;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  aspect-ratio: 4/3
}

.intl-students .global-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1);
  transition: filter .38s ease-in-out
}

.intl-students .global-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #41a69173 0%, #9ec9bb40 100%);
  pointer-events: none;
  transition: opacity .38s ease-in-out
}

.intl-students .global-img-col:hover img {
  filter: grayscale(0)
}

.intl-students .global-img-col:hover::after {
  opacity: .4
}

.intl-students .global-img-overlay {
  position: absolute;
  inset: 0;
  background-color: #1b2b2700;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background-color .35s ease-in-out;
  z-index: 1
}

.intl-students .global-img-col:hover .global-img-overlay {
  background-color: #1b2b278c
}

.intl-students .global-img-caption {
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out
}

.intl-students .global-img-col:hover .global-img-caption {
  opacity: 1;
  transform: translateY(0)
}

.intl-students .global-metrics-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px
}

.intl-students .metric-tile {
  background-color: #F3F8F7;
  border-radius: 6px;
  border: 1px solid #d0e8e2;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: box-shadow .28s ease-in-out
}

.intl-students .metric-tile:hover {
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.intl-students .metric-tile-num {
  font-size: 37px;
  line-height: 1.1;
  color: #41A691;
  letter-spacing: -.02em
}

.intl-students .metric-tile-label {
  font-size: 15px;
  line-height: 1.35;
  color: #3d5e56
}

.intl-students .metric-tile-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px
}

.intl-students .divider-triangle-right {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.intl-students .divider-triangle-right svg {
  display: block;
  width: 100%
}

.intl-students .review-strip {
  background-color: #F3F8F7;
  padding: 32px;
  border-top: 1px solid #d0e8e2
}

.intl-students .review-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px
}

.intl-students .review-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #9EC9BB;
  flex-shrink: 0
}

.intl-students .review-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.intl-students .review-quote {
  font-size: 17px;
  line-height: 1.55;
  color: #1b2b27;
  font-style: italic;
  margin: 0;
  flex: 1
}

.intl-students .review-attr {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  margin-top: 8px
}

.intl-students .review-rating {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  flex-shrink: 0
}

.intl-students .star-svg {
  width: 18px;
  height: 18px
}

@media (max-width: 1024px) {
  .intl-students .pg-entry {
    grid-template-columns: 200px 1fr;
    gap: 32px
  }

  .intl-students .pg-entry-h1 {
    font-size: 37px
  }

  .intl-students .global-inner {
    grid-template-columns: 1fr 1fr
  }

  .intl-students .global-text-col {
    grid-column: 1 / -1
  }

  .intl-students .global-img-col {
    grid-column: 1 / -1
  }

  .intl-students .global-metrics-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .intl-students .pg-entry {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px
  }

  .intl-students .pg-entry-img-col {
    display: none
  }

  .intl-students .pg-entry-h1 {
    font-size: 37px
  }

  .intl-students .compare-grid {
    grid-template-columns: 1fr
  }

  .intl-students .compare-header {
    grid-template-columns: 1fr
  }

  .intl-students .global-inner {
    grid-template-columns: 1fr
  }

  .intl-students .global-text-col {
    grid-column: auto
  }

  .intl-students .global-metrics-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .intl-students .review-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .intl-students .intl-compare-wrap {
    padding: 32px 16px
  }

  .intl-students .intl-global-wrap {
    padding: 32px 16px
  }
}

@media (max-width: 480px) {
  .intl-students .pg-entry-stats {
    flex-direction: column;
    gap: 16px
  }

  .intl-students .pg-entry-cta-row {
    flex-direction: column;
    align-items: flex-start
  }

  .intl-students .global-metrics-row {
    grid-template-columns: 1fr
  }
}

.abt-pg {
  overflow-x: hidden
}

.abt-pg .reveal-item {
  animation: revealUp .38s cubic-bezier(0.4, 0, 0.2, 1) both
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: scale(0.97)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.abt-pg .reveal-item:nth-child(2) {
  animation-delay: .08s
}

.abt-pg .reveal-item:nth-child(3) {
  animation-delay: .16s
}

.abt-pg .reveal-item:nth-child(4) {
  animation-delay: .24s
}

.abt-pg .framed-word {
  display: inline-block;
  border: 1px solid #41A691;
  padding: 0 8px;
  border-radius: 4px;
  font-style: normal
}

.abt-pg .metric-divider {
  width: 1px;
  background: #9EC9BB;
  align-self: stretch;
  min-height: 48px
}

.abt-pg .double-border-target {
  border: 1px solid transparent;
  transition: border-color .25s ease-in-out, box-shadow .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .double-border-target:hover {
  border-color: #41A691;
  box-shadow: 0 0 0 3px #41a69126 1px 6px 28px -1px #41a6911a
}

.abt-pg .btn-primary-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #41A691;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.abt-pg .btn-primary-act:hover {
  background: #368a78;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.abt-pg .btn-primary-act svg {
  transition: transform .28s ease-in-out
}

.abt-pg .btn-primary-act:hover svg {
  transform: translateX(4px)
}

.abt-pg .btn-outline-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #41A691;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1px solid #41A691;
  cursor: pointer;
  text-decoration: none;
  transition: background .28s ease-in-out, color .28s ease-in-out
}

.abt-pg .btn-outline-act:hover {
  background: #41A691;
  color: #fff
}

.abt-pg .btn-outline-act svg {
  transition: transform .28s ease-in-out
}

.abt-pg .btn-outline-act:hover svg {
  transform: translateX(4px)
}

.abt-pg .title-band {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  align-items: stretch
}

.abt-pg .title-img-left,
.abt-pg .title-img-right {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 420px;
  box-shadow: 1px 12px 36px -1px #41a6911f
}

.abt-pg .title-img-left img,
.abt-pg .title-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #41a6912e;
  border-radius: 6px
}

.abt-pg .title-img-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #41a6918c 0%, #f3f8f714 100%);
  pointer-events: none;
  border-radius: 6px
}

.abt-pg .title-img-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, #41a69173 0%, #f3f8f70f 100%);
  pointer-events: none;
  border-radius: 6px
}

.abt-pg .title-shape-left {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid #41a6914d;
  border-radius: 6px;
  top: 32px;
  left: -32px;
  pointer-events: none
}

.abt-pg .title-shape-right {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #9ec9bb66;
  border-radius: 4px;
  bottom: 32px;
  right: -24px;
  pointer-events: none
}

.abt-pg .title-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px 16px
}

.abt-pg .title-eyebrow {
  font-size: 15px;
  color: #41A691;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.abt-pg .title-h1 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3a34;
  font-style: italic;
  font-weight: 700;
  margin: 0
}

.abt-pg .title-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a5a52;
  margin: 0
}

.abt-pg .title-metrics {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 16px;
  background: #F3F8F7;
  border-radius: 6px;
  border: 1px solid #41a6911f
}

.abt-pg .title-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1
}

.abt-pg .title-metric-num {
  font-size: 27px;
  font-weight: 700;
  color: #41A691;
  line-height: 1.1
}

.abt-pg .title-metric-label {
  font-size: 15px;
  color: #3a5a52;
  line-height: 1.35;
  text-align: center
}

.abt-pg .title-metric-sep {
  width: 1px;
  height: 40px;
  background: #9EC9BB
}

.abt-pg .title-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

@media (max-width: 1024px) {
  .abt-pg .title-band {
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
    padding: 32px 16px
  }

  .abt-pg .title-img-right {
    display: none
  }
}

@media (max-width: 768px) {
  .abt-pg .title-band {
    grid-template-columns: 1fr;
    padding: 32px 16px
  }

  .abt-pg .title-img-left {
    min-height: 240px
  }

  .abt-pg .title-h1 {
    font-size: 27px
  }
}

.abt-pg .story-band {
  background: #F3F8F7;
  padding: 64px 0
}

.abt-pg .story-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center
}

.abt-pg .story-left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-pg .story-label {
  font-size: 15px;
  color: #41A691;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #9EC9BB;
  display: inline-block
}

.abt-pg .story-h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3a34;
  font-style: italic;
  font-weight: 700;
  margin: 0
}

.abt-pg .story-body {
  font-size: 17px;
  line-height: 1.55;
  color: #3a5a52;
  margin: 0
}

.abt-pg .story-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.abt-pg .story-pair {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #41a6911f;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.abt-pg .story-pair-label {
  font-size: 15px;
  color: #41A691;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid #9EC9BB
}

.abt-pg .story-pair-value {
  font-size: 15px;
  color: #3a5a52;
  line-height: 1.35
}

.abt-pg .story-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-pg .story-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 1px 12px 36px -1px #41a6911f
}

.abt-pg .story-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #41a6912e;
  border-radius: 6px
}

.abt-pg .story-img-caption {
  font-size: 15px;
  color: #41A691;
  line-height: 1.35;
  padding: 8px 0;
  border-top: 1px solid #9EC9BB
}

@media (max-width: 1024px) {
  .abt-pg .story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px
  }
}

@media (max-width: 768px) {
  .abt-pg .story-band {
    padding: 32px 0
  }

  .abt-pg .story-pair-row {
    grid-template-columns: 1fr
  }

  .abt-pg .story-h2 {
    font-size: 27px
  }
}

.abt-pg .team-band {
  padding: 64px 0;
  background: #fff
}

.abt-pg .team-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px
}

.abt-pg .team-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px
}

.abt-pg .team-top-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-pg .team-label {
  font-size: 15px;
  color: #41A691;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase
}

.abt-pg .team-h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3a34;
  font-style: italic;
  font-weight: 700;
  margin: 0
}

.abt-pg .team-top-right {
  font-size: 17px;
  line-height: 1.55;
  color: #3a5a52;
  padding-top: 8px
}

.abt-pg .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.abt-pg .team-card {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 6px;
  background: #F3F8F7;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: box-shadow .38s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s ease-in-out;
  border: 1px solid transparent
}

.abt-pg .team-card:hover {
  box-shadow: 1px 6px 28px -1px #41a6911a;
  border-color: #9EC9BB
}

.abt-pg .team-portrait-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #41a69140;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.abt-pg .team-portrait-wrap img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt-pg .team-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-pg .team-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #1e3a34;
  line-height: 1.35;
  margin: 0
}

.abt-pg .team-card-role {
  font-size: 15px;
  color: #41A691;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #9EC9BB
}

.abt-pg .team-card-bio {
  font-size: 15px;
  line-height: 1.55;
  color: #3a5a52;
  margin: 0
}

.abt-pg .team-no-portrait {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9EC9BB 0%, #41A691 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #41a69140
}

.abt-pg .team-no-portrait-initials {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1
}

@media (max-width: 1024px) {
  .abt-pg .team-top {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .abt-pg .team-grid {
    grid-template-columns: 1fr
  }

  .abt-pg .team-inner {
    padding: 0 16px
  }
}

@media (max-width: 768px) {
  .abt-pg .team-band {
    padding: 32px 0
  }

  .abt-pg .team-h2 {
    font-size: 27px
  }

  .abt-pg .team-card {
    flex-direction: column;
    gap: 16px
  }

  .abt-pg .team-top {
    margin-bottom: 32px
  }
}

.abt-pg .approach-band {
  position: relative;
  padding: 64px 0;
  overflow: hidden
}

.abt-pg .approach-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block
}

.abt-pg .approach-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e3a34e0 0%, #41a691b8 100%);
  z-index: 1;
  pointer-events: none
}

.abt-pg .approach-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center
}

.abt-pg .approach-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-pg .approach-label {
  font-size: 15px;
  color: #9EC9BB;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.abt-pg .approach-h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  font-style: italic;
  font-weight: 700;
  margin: 0
}

.abt-pg .approach-body {
  font-size: 17px;
  line-height: 1.55;
  color: #f3f8f7e6;
  margin: 0
}

.abt-pg .approach-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-pg .approach-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 6px;
  background: #f3f8f714;
  border: 1px solid #9ec9bb33;
  transition: background .28s ease-in-out, border-color .28s ease-in-out
}

.abt-pg .approach-item:hover {
  background: #f3f8f724;
  border-color: #9ec9bb73
}

.abt-pg .approach-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #41a69159;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.abt-pg .approach-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.abt-pg .approach-item-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0
}

.abt-pg .approach-item-desc {
  font-size: 15px;
  color: #f3f8f7d9;
  line-height: 1.55;
  margin: 0
}

.abt-pg .approach-cta-row {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.abt-pg .btn-light-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e3a34;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .28s ease-in-out, color .28s ease-in-out
}

.abt-pg .btn-light-act:hover {
  background: #41A691;
  color: #fff
}

.abt-pg .btn-light-act svg {
  transition: transform .28s ease-in-out
}

.abt-pg .btn-light-act:hover svg {
  transform: translateX(4px)
}

@media (max-width: 1024px) {
  .abt-pg .approach-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px
  }
}

@media (max-width: 768px) {
  .abt-pg .approach-band {
    padding: 32px 0
  }

  .abt-pg .approach-h2 {
    font-size: 27px
  }
}

@media (max-width: 480px) {
  .abt-pg .title-metrics {
    flex-direction: column
  }

  .abt-pg .title-metric-sep {
    width: 40px;
    height: 1px
  }

  .abt-pg .title-cta-row {
    flex-direction: column
  }

  .abt-pg .approach-cta-row {
    flex-direction: column
  }
}

.ctus-pg {
  width: 100%;
  overflow-x: clip
}

.ctus-pg .reach-band {
  background: #F3F8F7;
  position: relative;
  padding: 64px 16px
}

.ctus-pg .reach-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(128deg, #41A691 0%, #F3F8F7 60%);
  opacity: .13;
  pointer-events: none
}

.ctus-pg .reach-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.ctus-pg .reach-text-col {
  flex: 0 0 400px;
  max-width: 400px;
  padding-top: 8px
}

.ctus-pg .reach-eyebrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid #9EC9BB;
  padding-bottom: 4px
}

.ctus-pg .reach-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1b2e2a;
  margin: 0 0 16px;
  font-style: italic
}

.ctus-pg .reach-heading .accent-word {
  font-style: normal;
  border: 1px solid #41A691;
  border-radius: 4px;
  padding: 0 6px;
  color: #41A691
}

.ctus-pg .reach-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #2c4a44;
  margin: 0 0 32px
}

.ctus-pg .reach-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus-pg .reach-contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ctus-pg .reach-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 1px 3px 5px -1px #41a6910d 1px 6px 28px -1px #41a6911a;
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus-pg .reach-contact-icon svg {
  width: 20px;
  height: 20px
}

.ctus-pg .reach-contact-label {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  display: block;
  margin-bottom: 4px
}

.ctus-pg .reach-contact-value {
  font-size: 17px;
  line-height: 1.35;
  color: #1b2e2a;
  text-decoration: none;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus-pg .reach-contact-value:hover {
  color: #41A691
}

.ctus-pg .reach-contact-addr {
  font-size: 17px;
  line-height: 1.55;
  color: #1b2e2a;
  font-style: normal
}

.ctus-pg .reach-intl-note {
  margin-top: 32px;
  padding: 16px;
  background: #fff;
  border-radius: 6px;
  border-top: 2px solid #9EC9BB;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.ctus-pg .reach-intl-note-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2c4a44;
  margin: 0
}

.ctus-pg .reach-intl-note-text a {
  color: #41A691;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .25s ease-in-out
}

.ctus-pg .reach-intl-note-text a:hover {
  opacity: .75
}

.ctus-pg .reach-form-col {
  flex: 1 1 0;
  min-width: 0
}

.ctus-pg .reach-form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 6px 28px -1px #41a6911a 1px 12px 36px -1px #41a6911f;
  padding: 32px;
  position: relative;
  overflow: hidden
}

.ctus-pg .reach-form-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid #41a6911f;
  pointer-events: none
}

.ctus-pg .reach-form-card-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid #41a69112;
  pointer-events: none
}

.ctus-pg .reach-form-heading {
  font-size: 21px;
  line-height: 1.35;
  color: #1b2e2a;
  margin: 0 0 8px;
  font-style: italic
}

.ctus-pg .reach-form-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #4a7068;
  margin: 0 0 32px
}

.ctus-pg .reach-field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px
}

.ctus-pg .reach-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0
}

.ctus-pg .reach-field-group.full-w {
  flex: 0 0 100%
}

.ctus-pg .reach-label {
  font-size: 15px;
  line-height: 1.35;
  color: #1b2e2a;
  font-weight: 500
}

.ctus-pg .reach-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 16px;
  font-size: 17px;
  line-height: 1.55;
  color: #1b2e2a;
  background: #F3F8F7;
  border: 1px solid #9EC9BB;
  border-radius: 6px;
  outline: none;
  box-shadow: inset 0 2px 4px #41a6910f;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus-pg .reach-input::placeholder {
  color: #1b2e2a66
}

.ctus-pg .reach-input:focus {
  border-color: #41A691;
  box-shadow: inset 0 2px 4px #41a6910f 0 0 0 3px #41a6911f
}

.ctus-pg .reach-services-label {
  font-size: 15px;
  line-height: 1.35;
  color: #1b2e2a;
  font-weight: 500;
  margin-bottom: 8px;
  display: block
}

.ctus-pg .reach-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px
}

.ctus-pg .reach-checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F3F8F7;
  border: 1px solid #9EC9BB;
  border-radius: 6px;
  cursor: pointer;
  transition: background .25s ease-in-out, border-color .25s ease-in-out
}

.ctus-pg .reach-checkbox-item:hover {
  background: #e8f5f1;
  border-color: #41A691
}

.ctus-pg .reach-checkbox-input {
  width: 16px;
  height: 16px;
  accent-color: #41A691;
  cursor: pointer;
  flex-shrink: 0
}

.ctus-pg .reach-checkbox-text {
  font-size: 15px;
  line-height: 1.35;
  color: #1b2e2a
}

.ctus-pg .reach-privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: #F3F8F7;
  border-radius: 6px
}

.ctus-pg .reach-privacy-check {
  width: 16px;
  height: 16px;
  accent-color: #41A691;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px
}

.ctus-pg .reach-privacy-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2c4a44;
  margin: 0
}

.ctus-pg .reach-privacy-text a {
  color: #41A691;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .25s ease-in-out
}

.ctus-pg .reach-privacy-text a:hover {
  opacity: .75
}

.ctus-pg .reach-submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #41A691;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  transition: background .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden
}

.ctus-pg .reach-submit-btn:hover {
  background: #358a78;
  box-shadow: 1px 12px 36px -1px #41a6911f
}

.ctus-pg .reach-submit-btn:hover .btn-arrow {
  transform: translateX(4px)
}

.ctus-pg .reach-submit-btn:focus-visible {
  outline: 2px solid #41A691;
  outline-offset: 3px
}

.ctus-pg .reach-submit-btn:active {
  background: #2d7a69
}

.ctus-pg .btn-arrow {
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex
}

.ctus-pg .reach-divider-band {
  height: 4px;
  background: linear-gradient(90deg, #F3F8F7 0%, #9EC9BB 40%, #41A691 70%, #F3F8F7 100%);
  opacity: .5
}

.ctus-pg .map-alt-band {
  padding: 64px 16px;
  background: #fff;
  position: relative
}

.ctus-pg .map-alt-band::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(128deg, #fff 0%, #F3F8F7 100%);
  pointer-events: none
}

.ctus-pg .map-alt-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center
}

.ctus-pg .map-alt-visual {
  flex: 0 0 480px;
  max-width: 480px;
  position: relative
}

.ctus-pg .map-alt-img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  border: 1px solid #9EC9BB;
  position: relative
}

.ctus-pg .map-alt-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block
}

.ctus-pg .map-alt-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, #1b2e2ab8 0%, transparent 100%);
  border-radius: 0 0 10px 10px
}

.ctus-pg .map-alt-img-caption {
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  margin: 0
}

.ctus-pg .map-alt-deco-circles {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 160px;
  height: 160px;
  pointer-events: none
}

.ctus-pg .map-alt-quote-col {
  flex: 1 1 0;
  min-width: 0
}

.ctus-pg .map-alt-quote-block {
  padding: 32px;
  background: #F3F8F7;
  border-radius: 10px;
  border-top: 2px solid #41A691;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  margin-bottom: 32px
}

.ctus-pg .map-alt-quote-text {
  font-size: 27px;
  line-height: 1.35;
  color: #1b2e2a;
  font-style: italic;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.ctus-pg .map-alt-quote-attr {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691
}

.ctus-pg .map-alt-details {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus-pg .map-alt-detail-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ctus-pg .map-alt-detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #F3F8F7;
  border: 1px solid #9EC9BB;
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus-pg .map-alt-detail-icon svg {
  width: 18px;
  height: 18px
}

.ctus-pg .map-alt-detail-text {
  flex: 1 1 0
}

.ctus-pg .map-alt-detail-label {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  display: block;
  margin-bottom: 4px
}

.ctus-pg .map-alt-detail-val {
  font-size: 17px;
  line-height: 1.35;
  color: #1b2e2a
}

.ctus-pg .reach-form-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #9EC9BB, transparent);
  margin: 16px 0
}

@keyframes bg-shift {
  0% {
    background-position: 0 50%
  }

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

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

.ctus-pg .animated-bg-strip {
  height: 8px;
  background: linear-gradient(90deg, #41A691, #9EC9BB, #F3F8F7, #9EC9BB, #41A691);
  background-size: 300% 100%;
  animation: bg-shift 15s linear infinite
}

@media (max-width: 1024px) {
  .ctus-pg .reach-band-inner {
    flex-direction: column;
    gap: 32px
  }

  .ctus-pg .reach-text-col {
    flex: none;
    max-width: 100%
  }

  .ctus-pg .map-alt-inner {
    flex-direction: column;
    gap: 32px
  }

  .ctus-pg .map-alt-visual {
    flex: none;
    max-width: 100%;
    width: 100%
  }
}

@media (max-width: 768px) {
  .ctus-pg .reach-band {
    padding: 32px 16px
  }

  .ctus-pg .reach-heading {
    font-size: 27px
  }

  .ctus-pg .reach-form-card {
    padding: 16px
  }

  .ctus-pg .reach-field-row {
    flex-direction: column
  }

  .ctus-pg .reach-services-grid {
    grid-template-columns: 1fr
  }

  .ctus-pg .map-alt-band {
    padding: 32px 16px
  }

  .ctus-pg .map-alt-quote-text {
    font-size: 21px
  }
}

@media (max-width: 480px) {
  .ctus-pg .reach-heading {
    font-size: 21px
  }

  .ctus-pg .reach-submit-btn {
    width: 100%;
    justify-content: center
  }
}

.tstm-pg {
  background-color: #fff;
  overflow-x: clip
}

.tstm-pg .rating-band {
  background: linear-gradient(112deg, #2a7a68 0%, #41A691 100%);
  padding: 64px 16px;
  position: relative;
  overflow: hidden
}

.tstm-pg .rating-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px
}

.tstm-pg .rating-band::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 80px;
  width: 1px;
  height: 140%;
  background: #ffffff14;
  transform: rotate(18deg);
  pointer-events: none
}

.tstm-pg .rating-band::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 140px;
  width: 1px;
  height: 140%;
  background: #ffffff0d;
  transform: rotate(18deg);
  pointer-events: none
}

.tstm-pg .rating-bg-letter {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  font-weight: 900;
  color: #ffffff0a;
  line-height: 1.1;
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none
}

.tstm-pg .rating-left {
  flex: 0 0 auto
}

.tstm-pg .rating-score-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px
}

.tstm-pg .rating-score-num {
  font-size: 68px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px
}

.tstm-pg .rating-score-label {
  font-size: 15px;
  color: #ffffffb8;
  line-height: 1.35
}

.tstm-pg .rating-stars-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: 8px
}

.tstm-pg .rating-star {
  width: 22px;
  height: 22px
}

.tstm-pg .rating-divider-v {
  width: 1px;
  height: 80px;
  background: #ffffff2e;
  flex-shrink: 0
}

.tstm-pg .rating-center {
  flex: 1 1 auto
}

.tstm-pg .rating-pg-accent {
  width: 32px;
  height: 3px;
  background: #ffffff73;
  border-radius: 1px;
  margin-bottom: 16px
}

.tstm-pg .rating-pg-heading {
  font-size: 37px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  font-style: italic;
  margin: 0 0 16px
}

.tstm-pg .rating-pg-sub {
  font-size: 17px;
  color: #fffc;
  line-height: 1.55;
  max-width: 480px;
  margin: 0
}

.tstm-pg .rating-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.tstm-pg .rating-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px
}

.tstm-pg .rating-stat-num {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1
}

.tstm-pg .rating-stat-desc {
  font-size: 15px;
  color: #ffffffa6;
  line-height: 1.35
}

.tstm-pg .reviews-grid-area {
  background-color: #F3F8F7;
  padding: 64px 16px;
  position: relative
}

.tstm-pg .reviews-grid-area-inner {
  max-width: 1320px;
  margin: 0 auto
}

.tstm-pg .reviews-area-accent {
  width: 28px;
  height: 3px;
  background: #41A691;
  border-radius: 1px;
  margin-bottom: 16px
}

.tstm-pg .reviews-area-heading {
  font-size: 27px;
  font-weight: 700;
  color: #1b3a33;
  line-height: 1.35;
  font-style: italic;
  margin: 0 0 32px
}

.tstm-pg .reviews-three-col {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 32px;
  align-items: start
}

.tstm-pg .review-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  position: relative;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.tstm-pg .review-card:hover {
  box-shadow: 1px 12px 36px -1px #41a6911f;
  transform: translateY(-4px)
}

.tstm-pg .review-card-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent #F3F8F7 transparent transparent;
  border-radius: 0 6px 0 0;
  transition: border-width .35s ease-in-out
}

.tstm-pg .review-card:hover .review-card-fold {
  border-width: 0 40px 40px 0
}

.tstm-pg .review-card-fold-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 28px 0 0;
  border-color: #41a69126 transparent transparent;
  border-radius: 0 6px 0 0;
  transition: border-width .35s ease-in-out
}

.tstm-pg .review-card:hover .review-card-fold-inner {
  border-width: 40px 40px 0 0
}

.tstm-pg .review-card-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 16px
}

.tstm-pg .review-card-quote {
  font-size: 17px;
  color: #1b3a33;
  line-height: 1.55;
  margin: 0 0 24px
}

.tstm-pg .review-card-quote em {
  font-style: normal;
  color: #41A691;
  font-weight: 600
}

.tstm-pg .review-card-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #41a6911f;
  padding-top: 16px
}

.tstm-pg .review-portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1px solid #41a69133
}

.tstm-pg .review-person-name {
  font-size: 15px;
  font-weight: 700;
  color: #1b3a33;
  line-height: 1.35;
  margin: 0 0 4px
}

.tstm-pg .review-person-role {
  font-size: 15px;
  color: #4a7a6e;
  line-height: 1.35;
  margin: 0
}

.tstm-pg .review-card-no-portrait {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9EC9BB 0%, #41A691 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tstm-pg .review-card-no-portrait-initials {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1
}

.tstm-pg .reviews-featured-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.tstm-pg .review-card-image-bg {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 280px;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.tstm-pg .review-card-image-bg:hover {
  box-shadow: 1px 12px 36px -1px #41a6911f;
  transform: translateY(-4px)
}

.tstm-pg .review-card-image-bg:hover .review-card-fold {
  border-width: 0 40px 40px 0
}

.tstm-pg .review-card-image-bg:hover .review-card-fold-inner {
  border-width: 40px 40px 0 0
}

.tstm-pg .review-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none
}

.tstm-pg .review-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1b3a33b8 0%, #41a6918c 100%)
}

.tstm-pg .review-card-image-bg-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.tstm-pg .review-card-image-bg-content .review-card-quote {
  color: #fff
}

.tstm-pg .review-card-image-bg-content .review-card-quote em {
  color: #9EC9BB
}

.tstm-pg .review-card-image-bg-content .review-card-person {
  border-top-color: #ffffff2e
}

.tstm-pg .review-card-image-bg-content .review-person-name {
  color: #fff
}

.tstm-pg .review-card-image-bg-content .review-person-role {
  color: #ffffffb8
}

.tstm-pg .review-glass-card {
  background: #ffffff8c;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #41a6912e;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  position: relative;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.tstm-pg .review-glass-card:hover {
  box-shadow: 1px 12px 36px -1px #41a6911f;
  transform: translateY(-4px)
}

.tstm-pg .review-glass-card:hover .review-card-fold {
  border-width: 0 40px 40px 0
}

.tstm-pg .review-glass-card:hover .review-card-fold-inner {
  border-width: 40px 40px 0 0
}

.tstm-pg .section-divider-mono {
  text-align: center;
  padding: 8px 0;
  position: relative
}

.tstm-pg .section-divider-mono::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #41a69126
}

.tstm-pg .section-divider-mono-letter {
  display: inline-block;
  position: relative;
  background: #F3F8F7;
  padding: 0 16px;
  font-size: 21px;
  font-weight: 800;
  color: #41a6914d;
  letter-spacing: 4px;
  line-height: 1.35
}

@media (max-width: 1024px) {
  .tstm-pg .rating-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px
  }

  .tstm-pg .rating-right {
    flex-direction: row;
    gap: 32px
  }

  .tstm-pg .rating-stat {
    align-items: flex-start
  }

  .tstm-pg .reviews-three-col {
    grid-template-columns: 1fr 1fr
  }

  .tstm-pg .reviews-three-col .review-card:last-child {
    grid-column: 1 / -1
  }
}

@media (max-width: 768px) {
  .tstm-pg .rating-band {
    padding: 32px 16px
  }

  .tstm-pg .rating-pg-heading {
    font-size: 27px
  }

  .tstm-pg .rating-score-num {
    font-size: 37px
  }

  .tstm-pg .rating-divider-v {
    display: none
  }

  .tstm-pg .reviews-three-col {
    grid-template-columns: 1fr
  }

  .tstm-pg .reviews-featured-row {
    grid-template-columns: 1fr
  }

  .tstm-pg .reviews-grid-area {
    padding: 32px 16px
  }

  .tstm-pg .rating-right {
    flex-direction: column;
    gap: 16px
  }
}

@media (max-width: 480px) {
  .tstm-pg .review-card {
    padding: 16px
  }

  .tstm-pg .review-card-image-bg-content {
    padding: 16px
  }

  .tstm-pg .review-glass-card {
    padding: 16px
  }

  .tstm-pg .rating-bg-letter {
    font-size: 120px
  }
}

.bs-root {
  overflow-x: hidden
}

.bs-root .diagonal-reveal {
  animation: diag-in .55s cubic-bezier(0.4, 0, 0.2, 1) both
}

.bs-root .diagonal-reveal-delay-1 {
  animation: diag-in .55s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

.bs-root .diagonal-reveal-delay-2 {
  animation: diag-in .6s cubic-bezier(0.4, 0, 0.2, 1) .2s both
}

.bs-root .diagonal-reveal-delay-3 {
  animation: diag-in .65s cubic-bezier(0.4, 0, 0.2, 1) .32s both
}

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

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

.bs-root .split-screen {
  display: flex;
  flex-direction: row;
  min-height: 520px;
  position: relative
}

.bs-root .split-left {
  flex: 0 0 52%;
  background-color: #2a4a43;
  padding: 64px 64px 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative
}

.bs-root .split-left::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #41A691
}

.bs-root .split-right {
  flex: 0 0 48%;
  background-color: #F3F8F7;
  padding: 64px 48px 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden
}

.bs-root .split-right-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.6) brightness(0.85);
  transition: filter .38s ease-in-out;
  border: none
}

.bs-root .split-right-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2a4a438c 0%, #41a69147 100%)
}

.bs-root .split-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9EC9BB;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.bs-root .split-h1 {
  font-size: 68px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 1
}

.bs-root .split-h1 .framed-word {
  display: inline;
  border: 1px solid #41A691;
  border-radius: 4px;
  padding: 0 8px;
  font-style: normal
}

.bs-root .split-subtext {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffffd1;
  max-width: 420px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px
}

.bs-root .split-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1
}

.bs-root .btn-primary-filled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #41A691;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  transition: background .28s ease-in-out, box-shadow .28s ease-in-out;
  text-decoration: none
}

.bs-root .btn-primary-filled svg {
  transition: transform .28s ease-in-out
}

.bs-root .btn-primary-filled:hover {
  background: #2a4a43;
  box-shadow: 1px 12px 36px -1px #41a6911f
}

.bs-root .btn-primary-filled:hover svg {
  transform: translateX(5px)
}

.bs-root .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1px solid #ffffff59;
  cursor: pointer;
  font-weight: 500;
  transition: border-color .28s ease-in-out, color .28s ease-in-out;
  text-decoration: none
}

.bs-root .btn-outline-light:hover {
  border-color: #9EC9BB;
  color: #9EC9BB
}

.bs-root .split-right-caption {
  position: relative;
  z-index: 2;
  font-size: 21px;
  line-height: 1.35;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  max-width: 320px
}

.bs-root .split-right-note {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.55;
  color: #ffffffbf;
  margin-top: 16px;
  max-width: 300px
}

.bs-root .zigzag-divider {
  width: 100%;
  display: block;
  height: 18px;
  overflow: hidden
}

.bs-root .zigzag-divider-bottom {
  width: 100%;
  display: block;
  height: 18px;
  overflow: hidden
}

.bs-root .experience-band {
  position: relative;
  background-color: #fff;
  padding: 64px 0
}

.bs-root .experience-band::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #41A691;
  border-radius: 0
}

.bs-root .exp-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.bs-root .exp-portraits {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.bs-root .portrait-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.bs-root .portrait-img-wrap {
  width: 88px;
  height: 117px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #9EC9BB;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.bs-root .portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
  transition: filter .35s ease-in-out;
  display: block
}

.bs-root .portrait-img-wrap:hover .portrait-img {
  filter: blur(0px)
}

.bs-root .portrait-img.blurred {
  filter: blur(2.5px)
}

.bs-root .portrait-img-wrap:hover .portrait-img.blurred {
  filter: blur(0px)
}

.bs-root .portrait-name {
  font-size: 15px;
  line-height: 1.35;
  color: #2a4a43;
  font-weight: 600;
  text-align: center
}

.bs-root .portrait-role {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  text-align: center
}

.bs-root .exp-quotes {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.bs-root .exp-section-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #41A691;
  margin-bottom: 8px
}

.bs-root .exp-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3530;
  font-style: italic;
  margin-bottom: 16px
}

.bs-root .exp-quote-item {
  border-radius: 6px;
  background: #F3F8F7;
  padding: 32px;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .32s ease-in-out
}

.bs-root .exp-quote-item:hover {
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.bs-root .exp-quote-text {
  font-size: 17px;
  line-height: 1.55;
  color: #2a4a43
}

.bs-root .exp-quote-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.bs-root .exp-quote-badge {
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  background: #41a6911a;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 600
}

.bs-root .exp-quote-who {
  font-size: 15px;
  line-height: 1.35;
  color: #5a7a74
}

.bs-root .approach-strip {
  position: relative;
  background: linear-gradient(160deg, #2a4a43 0%, #41A691 100%);
  padding: 64px 0;
  overflow: hidden
}

.bs-root .approach-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, #ffffff12 0%, transparent 70%);
  pointer-events: none
}

.bs-root .approach-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1
}

.bs-root .approach-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px
}

.bs-root .approach-text-col {
  flex: 1 1 auto
}

.bs-root .approach-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #9EC9BB;
  margin-bottom: 16px
}

.bs-root .approach-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  font-style: italic;
  margin-bottom: 16px
}

.bs-root .approach-body {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffffd1;
  max-width: 560px
}

.bs-root .approach-img-col {
  flex: 0 0 360px
}

.bs-root .approach-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #9ec9bb59;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.bs-root .approach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px) saturate(0.7);
  transition: filter .38s ease-in-out;
  display: block
}

.bs-root .approach-img-wrap:hover .approach-img {
  filter: blur(0px) saturate(1)
}

.bs-root .approach-pillars {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.bs-root .approach-pillar {
  flex: 1 1 0;
  background: #ffffff14;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid #9ec9bb2e;
  transition: background .3s ease-in-out, box-shadow .3s ease-in-out
}

.bs-root .approach-pillar:hover {
  background: #ffffff21;
  box-shadow: 1px 6px 28px -1px #41a6911a
}

.bs-root .pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.bs-root .pillar-heading {
  font-size: 17px;
  line-height: 1.35;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px
}

.bs-root .pillar-text {
  font-size: 15px;
  line-height: 1.55;
  color: #ffffffbf
}

.bs-root .journey-strip {
  background-color: #F3F8F7;
  padding: 64px 0;
  position: relative
}

.bs-root .journey-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px
}

.bs-root .journey-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #41A691;
  margin-bottom: 16px
}

.bs-root .journey-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3530;
  font-style: italic;
  margin-bottom: 8px;
  max-width: 560px
}

.bs-root .journey-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #5a7a74;
  max-width: 520px;
  margin-bottom: 64px
}

.bs-root .journey-two-col {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch
}

.bs-root .journey-phases {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 64px;
  border-right: 1px solid #9EC9BB
}

.bs-root .journey-chart-col {
  flex: 0 0 340px;
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.bs-root .phase-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.bs-root .phase-num {
  flex: 0 0 40px;
  height: 40px;
  background: #41A691;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1
}

.bs-root .phase-body {
  flex: 1 1 auto
}

.bs-root .phase-title {
  font-size: 17px;
  line-height: 1.35;
  color: #1e3530;
  font-weight: 700;
  margin-bottom: 4px
}

.bs-root .phase-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #5a7a74
}

.bs-root .journey-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #9EC9BB;
  margin-bottom: 32px;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.bs-root .journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px);
  transition: filter .35s ease-in-out;
  display: block
}

.bs-root .journey-img-wrap:hover .journey-img {
  filter: blur(0px)
}

.bs-root .growth-chart {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bs-root .chart-label-row {
  font-size: 15px;
  line-height: 1.35;
  color: #1e3530;
  font-weight: 600;
  margin-bottom: 8px
}

.bs-root .chart-bar-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.bs-root .chart-bar-label {
  flex: 0 0 80px;
  font-size: 15px;
  line-height: 1.35;
  color: #5a7a74;
  text-align: right
}

.bs-root .chart-bar-track {
  flex: 1 1 auto;
  height: 16px;
  background: #41a6911f;
  border-radius: 4px;
  overflow: hidden
}

.bs-root .chart-bar-fill {
  height: 100%;
  background: #41A691;
  border-radius: 4px;
  animation: bar-grow .7s cubic-bezier(0.4, 0, 0.2, 1) both
}

.bs-root .chart-bar-fill.delay-1 {
  animation-delay: .15s
}

.bs-root .chart-bar-fill.delay-2 {
  animation-delay: .28s
}

.bs-root .chart-bar-fill.delay-3 {
  animation-delay: .4s
}

.bs-root .chart-bar-fill.delay-4 {
  animation-delay: .52s
}

@keyframes bar-grow {
  from {
    width: 0
  }
}

.bs-root .chart-bar-val {
  flex: 0 0 36px;
  font-size: 15px;
  line-height: 1.35;
  color: #41A691;
  font-weight: 700
}

.bs-root .fit-strip {
  background-color: #fff;
  padding: 64px 0;
  position: relative
}

.bs-root .fit-strip::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #9EC9BB
}

.bs-root .fit-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px
}

.bs-root .fit-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin-bottom: 64px;
  align-items: flex-start
}

.bs-root .fit-text-col {
  flex: 1 1 auto
}

.bs-root .fit-label {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #41A691;
  margin-bottom: 16px
}

.bs-root .fit-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1e3530;
  font-style: italic;
  margin-bottom: 16px
}

.bs-root .fit-body {
  font-size: 17px;
  line-height: 1.55;
  color: #5a7a74;
  max-width: 480px
}

.bs-root .fit-img-col {
  flex: 0 0 320px
}

.bs-root .fit-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #9EC9BB;
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.bs-root .fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px) saturate(0.8);
  transition: filter .35s ease-in-out;
  display: block
}

.bs-root .fit-img-wrap:hover .fit-img {
  filter: blur(0px) saturate(1)
}

.bs-root .fit-cards {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.bs-root .fit-card {
  flex: 1 1 0;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid transparent;
  transition: box-shadow .28s ease-in-out, border-color .28s ease-in-out
}

.bs-root .fit-card.good {
  background: #F3F8F7;
  border-color: #41a6912e
}

.bs-root .fit-card.good:hover {
  box-shadow: 1px 6px 28px -1px #41a6911a;
  border-color: #41A691
}

.bs-root .fit-card.not-fit {
  background: #fdf6f4;
  border-color: #c8786426
}

.bs-root .fit-card.not-fit:hover {
  box-shadow: 1px 3px 5px -1px #41a6910d
}

.bs-root .fit-card-head {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #1e3530
}

.bs-root .fit-card-head.negative {
  color: #7a3a2a
}

.bs-root .fit-tag-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bs-root .fit-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a43
}

.bs-root .fit-tag-dot {
  flex: 0 0 8px;
  height: 8px;
  border-radius: 1px;
  background: #41A691
}

.bs-root .fit-tag-dot.red {
  background: #c87864
}

.bs-root .fit-tag.dim {
  color: #7a3a2a
}

.bs-root .glow-hover-group .approach-pillar:hover {
  box-shadow: 0 0 0 3px #41a69138 1px 6px 28px -1px #41a6911a
}

@media (max-width: 1024px) {
  .bs-root .split-left {
    padding: 32px 32px 64px
  }

  .bs-root .split-right {
    padding: 32px 32px 64px
  }

  .bs-root .split-h1 {
    font-size: 37px
  }

  .bs-root .exp-inner {
    padding: 0 32px;
    gap: 32px;
    flex-direction: column
  }

  .bs-root .approach-inner {
    padding: 0 32px
  }

  .bs-root .approach-top {
    flex-direction: column;
    gap: 32px
  }

  .bs-root .approach-img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .bs-root .approach-pillars {
    flex-direction: column
  }

  .bs-root .journey-inner {
    padding: 0 32px
  }

  .bs-root .journey-two-col {
    flex-direction: column
  }

  .bs-root .journey-phases {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #9EC9BB;
    padding-bottom: 32px
  }

  .bs-root .journey-chart-col {
    padding-left: 0;
    padding-top: 32px;
    flex: 0 0 auto
  }

  .bs-root .fit-inner {
    padding: 0 32px
  }

  .bs-root .fit-top {
    flex-direction: column;
    gap: 32px
  }

  .bs-root .fit-img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .bs-root .fit-cards {
    flex-direction: column
  }
}

@media (max-width: 768px) {
  .bs-root .split-screen {
    flex-direction: column;
    min-height: auto
  }

  .bs-root .split-left {
    flex: 0 0 auto;
    padding: 32px 16px 64px
  }

  .bs-root .split-right {
    flex: 0 0 auto;
    min-height: 260px;
    padding: 32px 16px
  }

  .bs-root .split-left::after {
    display: none
  }

  .bs-root .split-h1 {
    font-size: 27px
  }

  .bs-root .exp-inner {
    padding: 0 16px
  }

  .bs-root .exp-portraits {
    flex-direction: row;
    flex-wrap: wrap
  }

  .bs-root .approach-inner {
    padding: 0 16px
  }

  .bs-root .journey-inner {
    padding: 0 16px
  }

  .bs-root .fit-inner {
    padding: 0 16px
  }

  .bs-root .split-cta-row {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 480px) {

  .bs-root .exp-heading,
  .bs-root .approach-heading,
  .bs-root .journey-heading,
  .bs-root .fit-heading {
    font-size: 27px
  }
}

.success-page-root {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background-color: #F3F8F7
}

.success-page-root .success-card {
  background: #fff;
  border: 1px solid #9EC9BB;
  border-radius: 10px;
  box-shadow: 1px 6px 28px -1px #41a6911a;
  padding: 64px 32px;
  max-width: 560px;
  width: 100%;
  text-align: center
}

.success-page-root .success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F3F8F7;
  border: 2px solid #41A691;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px
}

.success-page-root .success-icon-wrap svg {
  display: block
}

.success-page-root .success-heading {
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -.02em;
  font-style: italic;
  color: #1b3a34;
  margin: 0 0 16px
}

.success-page-root .success-message {
  font-size: 17px;
  line-height: 1.55;
  color: #2e5c52;
  margin: 0 0 32px
}

.success-page-root .success-return-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #41A691;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  box-shadow: 1px 3px 5px -1px #41a6910d;
  transition: background-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease-in-out
}

.success-page-root .success-return-link:hover {
  background: #35897a;
  box-shadow: 1px 6px 28px -1px #41a6911f
}

.success-page-root .success-return-link:focus-visible {
  outline: 2px solid #41A691;
  outline-offset: 3px
}

.success-page-root .success-return-link svg {
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page-root .success-return-link:hover svg {
  transform: translateX(4px)
}

.success-page-root .success-divider {
  width: 48px;
  height: 2px;
  background: #9EC9BB;
  border-radius: 1px;
  margin: 32px auto
}

.success-page-root .success-note {
  font-size: 15px;
  line-height: 1.55;
  color: #4a7a6e;
  margin: 0
}

@media (max-width: 480px) {
  .success-page-root {
    padding: 32px 16px
  }

  .success-page-root .success-card {
    padding: 32px 16px
  }

  .success-page-root .success-heading {
    font-size: 21px
  }
}