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

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Noto Sans', sans-serif
}

.top-bar {
  background: #0BA0A3;
  padding: 6px 24px
}

.top-bar-shell {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

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

.top-bar-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.top-bar-link:hover {
  color: #F2F1F0
}

.top-bar-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0ba0a373;
  border-radius: 3px
}

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

.top-bar-badge {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #F2F1F0;
  background: #ffffff26;
  padding: 6px 12px;
  border-radius: 3px
}

.primary-header {
  background: #fff;
  border-bottom: 2px solid #F2F1F0;
  box-shadow: 2px 4px 18px 0 #f25c491c
}

.primary-header-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px
}

.brand-mount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
  padding-bottom: 24px
}

.brand-logo-hold {
  background: #1a1a1a;
  background: #2b2b2b;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 2px 3px 2px 0 #f25c490f 2px 4px 18px 0 #f25c491c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px
}

.brand-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block
}

.brand-name-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e1e;
  text-decoration: none
}

.brand-tagline-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .02em;
  color: #0BA0A3
}

.main-nav-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding-bottom: 0
}

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

.main-nav-item {
  display: flex
}

.main-nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e1e;
  text-decoration: none;
  padding: 12px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px 3px 0 0;
  min-height: 44px
}

.main-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: #F25C49;
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.main-nav-link:hover {
  color: #F25C49
}

.main-nav-link:hover::after {
  transform: scaleX(1)
}

.main-nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #f25c494d
}

.main-nav-link[data-active="true"] {
  color: #F25C49
}

.main-nav-link[data-active="true"]::after {
  transform: scaleX(1)
}

.quiz-nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F25C49;
  border-radius: 10px 10px 0 0;
  min-height: 44px;
  box-shadow: 2px 3px 2px 0 #f25c490f;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.quiz-nav-link:hover {
  background: #d94c3a;
  box-shadow: 2px 4px 18px 0 #f25c491c
}

.quiz-nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #f25c4966
}

.quiz-nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.site-footer {
  background: #1e2a2a;
  padding: 48px 24px 24px
}

.footer-shell {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px
}

.footer-brand-hold {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-logo-hold {
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 2px 3px 2px 0 #0ba0a30f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px
}

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

.footer-company-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff
}

.footer-description-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #a8bfbf
}

.footer-accent-bar {
  width: 48px;
  height: 3px;
  background: #0BA0A3;
  border-radius: 3px
}

.footer-column-heading {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-transform: uppercase;
  margin: 0 0 12px
}

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

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

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

.footer-contact-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #c8d8d8;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.footer-contact-link:hover {
  color: #0BA0A3
}

.footer-contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0ba0a359;
  border-radius: 3px
}

.footer-contact-address {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #c8d8d8;
  font-style: normal
}

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

.footer-page-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #c8d8d8;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px
}

.footer-page-link:hover {
  color: #0BA0A3
}

.footer-page-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0ba0a359;
  border-radius: 3px
}

.footer-bottom-strip {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #0ba0a333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-copyright-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #6a8888
}

.footer-terms-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #6a8888;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.footer-terms-link:hover {
  color: #0BA0A3
}

.footer-terms-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0ba0a359;
  border-radius: 3px
}

.cookie-bar-mount {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: 0 24px 24px;
  pointer-events: none
}

.cookie-bar-card {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 8px 52px 0 #f25c491a;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  pointer-events: all;
  transform: translateY(120%);
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cookie-bar-card[data-visible="true"] {
  transform: translateY(0)
}

.cookie-bar-text-hold {
  flex: 1;
  min-width: 240px
}

.cookie-bar-description {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #1e2a2a;
  margin: 0 0 6px
}

.cookie-bar-headline {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e2a2a;
  margin: 0
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  flex-wrap: wrap
}

.cookie-accept-button {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff;
  background: #F25C49;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  min-height: 44px;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cookie-accept-button:hover {
  background: #d94c3a
}

.cookie-accept-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px #f25c4959
}

.cookie-decline-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #6a8888;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  padding: 12px 0;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cookie-decline-link:hover {
  color: #1e2a2a
}

.cookie-decline-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0ba0a359;
  border-radius: 3px
}

.cookie-policy-link {
  color: #0BA0A3;
  text-decoration: underline;
  text-underline-offset: 2px
}

.cookie-policy-link:hover {
  color: #078a8d
}

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

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

  .primary-header-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 0
  }

  .brand-mount {
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px
  }

  .main-nav-shell {
    width: 100%;
    align-items: flex-start
  }

  .main-nav-list {
    justify-content: flex-start
  }
}

@media (max-width: 768px) {
  .top-bar-contact-hold {
    gap: 12px
  }

  .top-bar-badge {
    display: none
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-brand-hold {
    grid-column: auto
  }

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

  .main-nav-link {
    padding: 12px 6px
  }

  .quiz-nav-link {
    padding: 12px
  }
}

@media (max-width: 320px) {
  .top-bar-contact-hold {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

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

  .main-nav-list {
    gap: 0
  }

  .cookie-bar-card {
    flex-direction: column
  }
}

.legal-as-article {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #2d2d2d
}

.legal-as-article p {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .015em;
  margin-top: 0;
  margin-bottom: 24px;
  color: #2d2d2d
}

.legal-as-article ul,
.legal-as-article ol {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .015em;
  padding-left: 24px;
  margin-top: 0;
  margin-bottom: 24px;
  color: #2d2d2d
}

.legal-as-article li {
  margin-bottom: 12px;
  padding-left: 6px
}

.legal-as-article li:last-child {
  margin-bottom: 0
}

.legal-as-article a {
  color: #0BA0A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.legal-as-article a:hover {
  color: #F25C49;
  text-decoration-color: #F25C49
}

.legal-as-article a:visited {
  color: #087f82
}

.legal-as-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .015em;
  box-shadow: 2px 4px 18px 0 #0ba0a31c;
  border-radius: 10px;
  overflow: hidden
}

.legal-as-article thead {
  background-color: #0BA0A3
}

.legal-as-article thead th {
  color: #fff;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.15;
  padding: 12px 24px;
  text-align: left;
  font-weight: 700
}

.legal-as-article tbody {
  background-color: #fff
}

.legal-as-article tbody tr {
  border-bottom: 1px solid #F2F1F0;
  transition: background-color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.legal-as-article tbody tr:last-child {
  border-bottom: none
}

.legal-as-article tbody tr:hover {
  background-color: #F2F1F0
}

.legal-as-article td {
  padding: 12px 24px;
  color: #2d2d2d;
  vertical-align: top;
  font-size: 20px;
  line-height: 1.7
}

.legal-as-article hr {
  border: none;
  border-top: 2px solid #F2F1F0;
  margin-top: 48px;
  margin-bottom: 48px
}

.legal-as-article div {
  margin-bottom: 24px
}

@media (max-width: 768px) {
  .legal-as-article {
    padding: 24px 12px
  }

  .legal-as-article p,
  .legal-as-article ul,
  .legal-as-article ol,
  .legal-as-article td {
    font-size: 14px
  }

  .legal-as-article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .legal-as-article thead th {
    font-size: 14px;
    padding: 12px
  }

  .legal-as-article td {
    padding: 12px
  }

  .legal-as-article hr {
    margin-top: 24px;
    margin-bottom: 24px
  }
}

@media (max-width: 320px) {
  .legal-as-article {
    padding: 12px 6px
  }

  .legal-as-article p,
  .legal-as-article ul,
  .legal-as-article ol,
  .legal-as-article td,
  .legal-as-article thead th {
    font-size: 14px
  }
}

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

.contact-us-page .du-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.contact-us-page .reach-block {
  padding: 48px 0;
  position: relative;
  background: #F2F1F0
}

.contact-us-page .reach-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #fff 30%, #e8e6e4 100%);
  pointer-events: none
}

.contact-us-page .reach-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.contact-us-page .reach-left {
  flex: 1 1 0;
  min-width: 0
}

.contact-us-page .reach-right {
  flex: 0 0 320px;
  min-width: 0
}

.contact-us-page .page-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15
}

.contact-us-page .reach-heading {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 24px;
  text-shadow: 2px 3px 2px #f25c490f
}

.contact-us-page .reach-heading .underline-word {
  position: relative;
  display: inline-block
}

.contact-us-page .reach-heading .underline-word::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 0;
  background: #F25C49;
  border-radius: 3px;
  animation: draw-underline .28s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

@keyframes draw-underline {
  to {
    width: 100%
  }
}

.contact-us-page .reach-intro {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c3e3e;
  margin: 0 0 24px
}

.contact-us-page .reach-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-us-page .reach-points li {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.contact-us-page .reach-points li:nth-child(odd) {
  background: #0ba0a314;
  color: #0a3535
}

.contact-us-page .reach-points li:nth-child(even) {
  background: #f25c4912;
  color: #3a1a15
}

.contact-us-page .point-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px
}

.contact-us-page .reach-points li:nth-child(odd) .point-icon {
  background: #0BA0A3
}

.contact-us-page .reach-points li:nth-child(even) .point-icon {
  background: #F25C49
}

.contact-us-page .point-icon svg {
  display: block
}

.contact-us-page .info-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 4px 18px 0 #0ba0a31c;
  position: relative;
  overflow: hidden
}

.contact-us-page .info-card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f25c490f;
  pointer-events: none
}

.contact-us-page .info-card-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 24px;
  text-shadow: 2px 3px 2px #f25c490f
}

.contact-us-page .info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #0ba0a340
}

.contact-us-page .info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.contact-us-page .info-icon-bg {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(197deg, #0BA0A3, #F2F1F0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 2px 0 #0ba0a30f
}

.contact-us-page .info-text {
  flex: 1 1 0;
  min-width: 0
}

.contact-us-page .info-label {
  font-size: 14px;
  font-weight: 700;
  color: #0BA0A3;
  letter-spacing: .02em;
  line-height: 1.15;
  display: block;
  margin-bottom: 6px
}

.contact-us-page .info-value {
  font-size: 14px;
  line-height: 1.7;
  color: #1a2e2e;
  letter-spacing: .01em;
  word-break: break-word
}

.contact-us-page .info-value a {
  color: #1a2e2e;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block
}

.contact-us-page .info-value a:hover {
  color: #F25C49;
  transform: rotate(-2deg)
}

.contact-us-page .corner-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none
}

.contact-us-page .corner-bracket.top-left {
  top: 6px;
  left: 6px;
  border-top: 2px solid #0BA0A3;
  border-left: 2px solid #0BA0A3;
  border-radius: 3px 0 0 0
}

.contact-us-page .corner-bracket.bottom-right {
  bottom: 6px;
  right: 6px;
  border-bottom: 2px solid #F25C49;
  border-right: 2px solid #F25C49;
  border-radius: 0 0 3px 0
}

.contact-us-page .form-block {
  padding: 48px 0;
  background: #fff;
  position: relative
}

.contact-us-page .form-block-divider {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #0BA0A3 0, #0BA0A3 10px, transparent 10px, transparent 20px);
  margin-bottom: 48px;
  border-radius: 3px
}

.contact-us-page .form-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.contact-us-page .form-aside {
  flex: 0 0 260px;
  min-width: 0
}

.contact-us-page .form-main {
  flex: 1 1 0;
  min-width: 0
}

.contact-us-page .form-aside-label {
  font-size: 14px;
  font-weight: 700;
  color: #F25C49;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
  display: block
}

.contact-us-page .form-aside-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 24px;
  text-shadow: 2px 3px 2px #f25c490f
}

.contact-us-page .aside-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #f25c4933
}

.contact-us-page .aside-item:last-child {
  border-bottom: none
}

.contact-us-page .aside-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: 0 0 10px
}

.contact-us-page .aside-dot.teal {
  background: #0BA0A3
}

.contact-us-page .aside-dot.red {
  background: #F25C49
}

.contact-us-page .aside-item-text {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e3e;
  letter-spacing: .01em
}

.contact-us-page .response-bar-block {
  margin-top: 24px;
  background: #F2F1F0;
  border-radius: 10px;
  padding: 12px
}

.contact-us-page .response-bar-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2e;
  letter-spacing: .01em;
  margin-bottom: 6px;
  display: block;
  line-height: 1.15
}

.contact-us-page .response-bar-track {
  background: #0ba0a326;
  border-radius: 28px;
  height: 8px;
  width: 100%;
  overflow: hidden
}

.contact-us-page .response-bar-fill {
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(197deg, #0BA0A3, #F25C49);
  width: 72%;
  animation: bar-grow .32s cubic-bezier(0.34, 1.56, 0.64, 1) .6s both
}

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

  to {
    width: 72%
  }
}

.contact-us-page .response-bar-note {
  font-size: 14px;
  color: #0BA0A3;
  line-height: 1.7;
  letter-spacing: .01em;
  margin-top: 6px;
  display: block
}

.contact-us-page .contact-form {
  background: #F2F1F0;
  border-radius: 18px;
  padding: 24px;
  position: relative;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.contact-us-page .contact-form .corner-bracket.top-left {
  top: 6px;
  left: 6px
}

.contact-us-page .contact-form .corner-bracket.bottom-right {
  bottom: 6px;
  right: 6px
}

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

.contact-us-page .form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2e;
  letter-spacing: .02em;
  margin-bottom: 6px;
  line-height: 1.15
}

.contact-us-page .form-label .required-mark {
  color: #F25C49;
  margin-left: 3px
}

.contact-us-page .form-input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #1a2e2e;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 4px #0ba0a30f inset 0 -1px 3px #f25c490a
}

.contact-us-page .form-input::placeholder {
  color: #8aa5a5
}

.contact-us-page .form-input:focus {
  border-color: #0BA0A3;
  box-shadow: inset 0 2px 4px #0ba0a30f inset 0 -1px 3px #f25c490a 2px 4px 18px 0 #0ba0a31c
}

.contact-us-page .channel-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-us-page .channel-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 3px 2px 0 #0ba0a30f
}

.contact-us-page .channel-option:hover {
  background: #0ba0a312;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.contact-us-page .channel-radio {
  width: 18px;
  height: 18px;
  accent-color: #0BA0A3;
  cursor: pointer;
  flex: 0 0 18px
}

.contact-us-page .channel-label-text {
  font-size: 14px;
  line-height: 1.7;
  color: #1a2e2e;
  letter-spacing: .01em;
  cursor: pointer
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px;
  background: #0ba0a30f;
  border-radius: 10px
}

.contact-us-page .privacy-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #0BA0A3;
  cursor: pointer;
  flex: 0 0 18px;
  margin-top: 3px
}

.contact-us-page .privacy-text {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e3e;
  letter-spacing: .01em
}

.contact-us-page .privacy-text a {
  color: #0BA0A3;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-us-page .privacy-text a:hover {
  color: #F25C49
}

.contact-us-page .submit-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(197deg, #F25C49, #c93d2c);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transition: box-shadow .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.contact-us-page .submit-button:hover {
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-2px)
}

.contact-us-page .submit-button:focus {
  outline: 3px solid #0BA0A3;
  outline-offset: 3px
}

.contact-us-page .submit-button:active {
  transform: translateY(0)
}

.contact-us-page .button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-us-page .button-text {
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-us-page .submit-button:hover .button-icon {
  transform: translateX(0);
  opacity: 1
}

.contact-us-page .submit-button:hover .button-text {
  transform: translateX(6px)
}

.contact-us-page .faq-block {
  padding: 48px 0;
  background: linear-gradient(197deg, #0ba0a314 0%, #F2F1F0 100%);
  position: relative
}

.contact-us-page .faq-block-divider {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #F25C49 0, #F25C49 8px, transparent 8px, transparent 18px);
  margin-bottom: 48px;
  border-radius: 3px
}

.contact-us-page .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.contact-us-page .faq-heading-block {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 12px
}

.contact-us-page .faq-main-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0;
  text-shadow: 2px 3px 2px #0ba0a314
}

.contact-us-page .faq-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e3e;
  letter-spacing: .01em;
  margin-bottom: 6px
}

.contact-us-page .faq-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 3px 2px 0 #0ba0a30f;
  position: relative;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.contact-us-page .faq-card:hover {
  box-shadow: 2px 4px 18px 0 #0ba0a31c;
  transform: translateY(-3px)
}

.contact-us-page .faq-question {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2e;
  letter-spacing: .01em;
  line-height: 1.15;
  margin: 0 0 12px
}

.contact-us-page .faq-answer {
  font-size: 14px;
  line-height: 1.7;
  color: #2c3e3e;
  letter-spacing: .01em;
  margin: 0
}

.contact-us-page .faq-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 40px;
  border-radius: 3px 0 0 3px
}

.contact-us-page .faq-card-accent.teal {
  background: #0BA0A3
}

.contact-us-page .faq-card-accent.red {
  background: #F25C49
}

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

  .contact-us-page .reach-right {
    flex: 0 0 auto;
    width: 100%
  }

  .contact-us-page .form-layout {
    flex-direction: column;
    gap: 24px
  }

  .contact-us-page .form-aside {
    flex: 0 0 auto;
    width: 100%
  }

  .contact-us-page .faq-grid {
    grid-template-columns: 1fr
  }

  .contact-us-page .faq-heading-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

@media (max-width: 768px) {
  .contact-us-page .reach-heading {
    font-size: 36px
  }

  .contact-us-page .reach-block {
    padding: 48px 0
  }

  .contact-us-page .form-block {
    padding: 48px 0
  }

  .contact-us-page .faq-block {
    padding: 48px 0
  }

  .contact-us-page .du-wrapper {
    padding: 0 12px
  }
}

@media (max-width: 320px) {
  .contact-us-page .reach-heading {
    font-size: 26px
  }

  .contact-us-page .submit-button {
    font-size: 14px;
    padding: 12px
  }
}

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

.services-page *,
.services-page ::before,
.services-page ::after {
  box-sizing: border-box
}

.services-page .page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.services-page .animated-underline {
  position: relative;
  display: inline-block
}

.services-page .animated-underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F25C49;
  animation: draw-line .28s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

@keyframes draw-line {
  to {
    width: 100%
  }
}

@keyframes bounce-drop {
  0% {
    opacity: 0;
    transform: translateY(-32px)
  }

  60% {
    opacity: 1;
    transform: translateY(6px)
  }

  80% {
    transform: translateY(-3px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.services-page .bounce-element {
  animation: bounce-drop .3s cubic-bezier(0.34, 1.56, 0.64, 1) .15s both
}

.services-page .wavy-line {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block
}

.services-page .divider-gradient {
  height: 2px;
  background: linear-gradient(90deg, #F25C49 0%, transparent 70%);
  border: none;
  margin: 0
}

.services-page .divider-gradient-teal {
  height: 2px;
  background: linear-gradient(90deg, #0BA0A3 0%, transparent 65%);
  border: none;
  margin: 0
}

.services-page .title-strip {
  background: #fff;
  padding: 48px 0;
  position: relative
}

.services-page .title-strip-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.services-page .title-strip-image-col {
  flex: 0 0 120px;
  position: relative;
  overflow: hidden;
  border-radius: 3px
}

.services-page .title-strip-image-col img {
  width: 120px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) contrast(1.1);
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .title-strip-image-col:hover img {
  filter: saturate(0) contrast(1.1)
}

.services-page .title-strip-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(197deg, #f25c492e 0%, #ffffff0a 100%);
  pointer-events: none
}

.services-page .title-strip-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative
}

.services-page .title-strip-text::before {
  content: '';
  position: absolute;
  top: -48px;
  right: -24px;
  width: 320px;
  height: 320px;
  border: 2px solid #0ba0a31a;
  border-radius: 50%;
  pointer-events: none
}

.services-page .title-strip-text::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: 60px;
  width: 180px;
  height: 180px;
  border: 1.5px solid #f25c4914;
  border-radius: 50%;
  pointer-events: none
}

.services-page .strip-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #0BA0A3;
  text-transform: uppercase
}

.services-page .strip-heading {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a1200;
  text-shadow: 1px 2px 0 #f25c4912;
  margin: 0
}

.services-page .strip-desc {
  font-size: 20px;
  line-height: 1.7;
  color: #2e2e2e;
  letter-spacing: .01em;
  max-width: 680px;
  margin: 0
}

.services-page .strip-desc strong {
  color: #F25C49;
  font-weight: 700
}

.services-page .strip-meta {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap
}

.services-page .strip-metric {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.services-page .strip-metric-value {
  font-size: 36px;
  font-weight: 800;
  color: #F25C49;
  line-height: 1.15;
  letter-spacing: .01em
}

.services-page .strip-metric-arrow {
  display: inline-block;
  margin-left: 6px;
  color: #0BA0A3;
  font-size: 26px;
  font-weight: 900;
  vertical-align: middle;
  transform: rotate(-45deg);
  transition: transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.services-page .strip-metric:hover .strip-metric-arrow {
  transform: rotate(-60deg) scale(1.2)
}

.services-page .strip-metric-label {
  font-size: 14px;
  color: #555;
  letter-spacing: .02em
}

.services-page .cards-stepped {
  background: #fef7f6;
  padding: 48px 0 0;
  position: relative
}

.services-page .cards-stepped-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 48px
}

.services-page .cards-stepped-head {
  margin-bottom: 48px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.services-page .cards-stepped-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a1200;
  text-shadow: 1px 1px 0 #f25c4917;
  margin: 0
}

.services-page .cards-stepped-sub {
  font-size: 20px;
  line-height: 1.7;
  color: #2e2e2e;
  letter-spacing: .01em;
  max-width: 420px;
  margin: 0;
  text-align: right
}

.services-page .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.services-page .service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  overflow: hidden;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative
}

.services-page .service-card:hover {
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-4px)
}

.services-page .service-card.card-tall {
  margin-top: 48px
}

.services-page .service-card.card-mid {
  margin-top: 24px
}

.services-page .service-card.card-short {
  margin-top: 0
}

.services-page .card-accent-bar {
  height: 5px;
  background: linear-gradient(197deg, #F25C49 0%, #fff 100%)
}

.services-page .card-accent-bar.teal {
  background: linear-gradient(197deg, #0BA0A3 0%, #fff 100%)
}

.services-page .card-accent-bar.mixed {
  background: linear-gradient(197deg, #F25C49 0%, #0BA0A3 100%)
}

.services-page .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.services-page .card-icon-shape {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fef7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 0 #fffc inset 0 -2px 4px #f25c491a
}

.services-page .card-icon-shape.teal-bg {
  background: #f0fafa;
  box-shadow: inset 0 2px 0 #fffc inset 0 -2px 4px #0ba0a31a
}

.services-page .card-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a1200;
  margin: 0
}

.services-page .card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  letter-spacing: .01em;
  margin: 0
}

.services-page .card-text strong {
  color: #0BA0A3;
  font-weight: 700
}

.services-page .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.services-page .card-list li {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  padding: 6px 12px;
  border-radius: 10px
}

.services-page .card-list li:nth-child(odd) {
  background: #fef7f6;
  color: #2e2e2e
}

.services-page .card-list li:nth-child(even) {
  background: #f0fafa;
  color: #2e2e2e
}

.services-page .card-cta-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #F25C49;
  text-decoration: none;
  letter-spacing: .02em;
  border-radius: 3px;
  padding: 6px 0;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.services-page .card-cta-link:hover {
  color: #0BA0A3
}

.services-page .card-cta-link:hover .link-icon {
  transform: translateX(4px)
}

.services-page .link-icon {
  display: inline-block;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .card-cta-link:focus {
  outline: 2px solid #F25C49;
  outline-offset: 3px
}

.services-page .reviews-faq {
  background: #fff;
  padding: 48px 0
}

.services-page .reviews-faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.services-page .reviews-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.services-page .reviews-col-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a1200;
  text-shadow: 1px 1px 0 #0ba0a317;
  margin: 0
}

.services-page .review-card {
  background: #F2F1F0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 3px 2px 0 #0ba0a30f;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .review-card:hover {
  background: #fef7f6
}

.services-page .review-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.services-page .review-portrait {
  width: 52px;
  height: 65px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  display: block;
  filter: saturate(0.85);
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0
}

.services-page .review-card:hover .review-portrait {
  filter: saturate(0)
}

.services-page .review-person-info {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.services-page .review-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1200;
  letter-spacing: .01em
}

.services-page .review-role {
  font-size: 14px;
  color: #0BA0A3;
  letter-spacing: .02em
}

.services-page .review-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  letter-spacing: .01em;
  margin: 0
}

.services-page .review-text em {
  font-style: normal;
  color: #F25C49;
  font-weight: 600
}

.services-page .no-portrait-badge {
  width: 52px;
  height: 52px;
  border-radius: 28px;
  background: linear-gradient(197deg, #F25C49 0%, #0BA0A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.services-page .no-portrait-initial {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em
}

.services-page .faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.services-page .faq-col-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a1200;
  text-shadow: 1px 1px 0 #f25c4917;
  margin: 0 0 12px
}

.services-page .faq-item {
  border-radius: 10px;
  background: #f0fafa;
  box-shadow: 2px 3px 2px 0 #0ba0a30f;
  overflow: hidden
}

.services-page .faq-item.faq-open {
  background: #fff;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.services-page .faq-toggle {
  display: none
}

.services-page .faq-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #1a1200;
  letter-spacing: .01em;
  line-height: 1.7;
  user-select: none;
  transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .faq-label:hover {
  background: #0ba0a30f
}

.services-page .faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.services-page .faq-answer-text {
  padding: 0 24px 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  letter-spacing: .01em;
  margin: 0
}

.services-page .wavy-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

@media (max-width: 1024px) {
  .services-page .strip-heading {
    font-size: 36px
  }

  .services-page .cards-grid {
    grid-template-columns: 1fr 1fr
  }

  .services-page .service-card.card-tall,
  .services-page .service-card.card-mid {
    margin-top: 0
  }

  .services-page .reviews-faq-inner {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .services-page .title-strip-image-col {
    display: none
  }

  .services-page .strip-heading {
    font-size: 36px
  }

  .services-page .cards-grid {
    grid-template-columns: 1fr
  }

  .services-page .service-card.card-tall,
  .services-page .service-card.card-mid {
    margin-top: 0
  }

  .services-page .cards-stepped-head {
    flex-direction: column;
    align-items: flex-start
  }

  .services-page .cards-stepped-sub {
    text-align: left
  }

  .services-page .strip-meta {
    gap: 24px
  }

  .services-page .reviews-faq-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 320px) {
  .services-page .page-container {
    padding: 0 12px
  }

  .services-page .strip-heading {
    font-size: 26px
  }

  .services-page .cards-stepped-heading {
    font-size: 26px
  }
}

.front {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip
}

.front .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp .28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.front .reveal-up.delay-1 {
  animation-delay: .08s
}

.front .reveal-up.delay-2 {
  animation-delay: .16s
}

.front .reveal-up.delay-3 {
  animation-delay: .24s
}

.front .reveal-up.delay-4 {
  animation-delay: .32s
}

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

.front .underline-word {
  position: relative;
  display: inline-block
}

.front .underline-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F25C49;
  animation: drawLine .32s cubic-bezier(0.68, -0.55, 0.27, 1.55) .5s forwards
}

@keyframes drawLine {
  to {
    width: 100%
  }
}

.front .diamond-sep {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #F25C49;
  transform: rotate(45deg);
  margin: 0 12px;
  vertical-align: middle
}

.front .diamond-sep-teal {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #0BA0A3;
  transform: rotate(45deg);
  margin: 0 12px;
  vertical-align: middle
}

.front .title-block {
  padding: 48px 48px 96px;
  position: relative
}

.front .title-block-frame {
  border: 1.5px solid #f25c492e;
  border-radius: 18px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  background: linear-gradient(197deg, #f25c490f 0%, #fff 60%);
  position: relative
}

.front .title-block-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 60px;
  height: 60px;
  border-top: 2px solid #0ba0a34d;
  border-left: 2px solid #0ba0a34d;
  border-radius: 10px 0 0 0;
  pointer-events: none
}

.front .title-block-frame::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid #f25c494d;
  border-right: 2px solid #f25c494d;
  border-radius: 0 0 18px 0;
  pointer-events: none
}

.front .title-text-zone {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.front .title-eyebrow {
  font-size: 14px;
  letter-spacing: .02em;
  color: #0BA0A3;
  font-weight: 700;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 12px
}

.front .title-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #0BA0A3;
  border-radius: 3px
}

.front .title-heading {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1b1b2e;
  text-shadow: 2px 3px 2px #f25c490f;
  margin: 0
}

.front .title-heading span {
  color: #F25C49
}

.front .title-subtext {
  font-size: 20px;
  line-height: 1.7;
  color: #3a3a4a;
  letter-spacing: .01em;
  margin: 0
}

.front .title-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F25C49;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-self: flex-start
}

.front .title-link:hover {
  background: #d94030;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.front .title-link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform: translateX(-4px);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .title-link:hover .title-link-icon {
  transform: translateX(0)
}

.front .title-mosaic {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  border-radius: 18px;
  overflow: hidden
}

.front .mosaic-img-wrap {
  overflow: hidden;
  border-radius: 10px
}

.front .mosaic-img-wrap.tall {
  grid-row: span 2
}

.front .mosaic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) contrast(1.1);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .mosaic-img-wrap:hover img {
  transform: scale(1.05);
  filter: saturate(0.2) contrast(1.1)
}

.front .mosaic-img-wrap.tall img {
  height: 280px
}

.front .mosaic-img-wrap.short img {
  height: 130px
}

.front .available-block {
  padding: 48px;
  background: #F2F1F0;
  position: relative
}

.front .available-block-inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.front .available-sidebar {
  flex: 0 0 300px;
  background: #1b1b2e;
  border-radius: 18px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.front .available-sidebar-heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0;
  text-shadow: 2px 3px 2px #0ba0a326
}

.front .available-sidebar-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffb8;
  letter-spacing: .01em;
  margin: 0
}

.front .available-sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #ffffff1f;
  padding-top: 24px
}

.front .stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #0BA0A3;
  line-height: 1.15;
  letter-spacing: .01em
}

.front .stat-label {
  font-size: 14px;
  color: #fff9;
  line-height: 1.7;
  letter-spacing: .01em
}

.front .available-cards {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.front .available-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 2px 3px 2px 0 #f25c490f;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .available-card:hover {
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transform: translateY(-3px)
}

.front .available-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(197deg, #F25C49 0%, #fff 140%);
  display: flex;
  align-items: center;
  justify-content: center
}

.front .available-card-icon.teal {
  background: linear-gradient(197deg, #0BA0A3 0%, #fff 140%)
}

.front .available-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.front .available-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0
}

.front .available-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  letter-spacing: .01em;
  margin: 0
}

.front .available-card-link {
  font-size: 14px;
  font-weight: 700;
  color: #F25C49;
  text-decoration: none;
  letter-spacing: .01em;
  display: inline-block;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .available-card-link:hover {
  transform: rotate(-2deg)
}

.front .brushstroke-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.front .value-block {
  padding: 96px 48px 48px;
  background: #fff
}

.front .value-block-top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px
}

.front .value-heading-col {
  flex: 1 1 40%
}

.front .value-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 24px;
  text-shadow: 2px 3px 2px #f25c490f
}

.front .value-lead {
  font-size: 14px;
  font-weight: 700;
  color: #F25C49;
  letter-spacing: .02em;
  line-height: 1.15;
  margin: 0 0 12px
}

.front .value-text-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.front .value-paragraph {
  font-size: 20px;
  line-height: 1.7;
  color: #3a3a4a;
  letter-spacing: .01em;
  margin: 0
}

.front .value-paragraph strong {
  color: #1b1b2e
}

.front .value-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.front .value-item {
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.front .value-item.odd {
  background: linear-gradient(197deg, #f25c4914 0%, #fff 100%);
  border: 1px solid #f25c491f
}

.front .value-item.even {
  background: linear-gradient(197deg, #0ba0a314 0%, #fff 100%);
  border: 1px solid #0ba0a31f
}

.front .value-item-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15
}

.front .value-item.odd .value-item-label {
  color: #F25C49
}

.front .value-item.even .value-item-label {
  color: #0BA0A3
}

.front .value-item-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  letter-spacing: .01em;
  margin: 0
}

.front .reputation-block {
  padding: 48px;
  background: linear-gradient(197deg, #0ba0a314 0%, #F2F1F0 100%);
  position: relative
}

.front .reputation-block-inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch
}

.front .reputation-quote-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.front .reputation-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0;
  text-shadow: 2px 3px 2px #0ba0a314
}

.front .quote-block {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 4px 18px 0 #0ba0a31c;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative
}

.front .quote-accent-bar {
  width: 40px;
  height: 4px;
  background: #0BA0A3;
  border-radius: 3px
}

.front .quote-text {
  font-size: 20px;
  line-height: 1.7;
  color: #1b1b2e;
  letter-spacing: .01em;
  font-style: italic;
  margin: 0
}

.front .quote-text .key-phrase {
  font-style: normal;
  font-weight: 800;
  color: #0BA0A3;
  position: relative;
  display: inline-block
}

.front .quote-text .key-phrase::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0BA0A3;
  animation: drawLine .32s cubic-bezier(0.68, -0.55, 0.27, 1.55) .8s forwards
}

.front .quote-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.front .quote-author-portrait {
  width: 56px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0
}

.front .quote-author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.front .quote-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #1b1b2e;
  letter-spacing: .01em;
  line-height: 1.15
}

.front .quote-author-role {
  font-size: 14px;
  color: #6a6a7a;
  letter-spacing: .01em;
  line-height: 1.7
}

.front .reputation-refs-col {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.front .reputation-ref-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 2px 3px 2px 0 #0ba0a30f
}

.front .reputation-ref-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #F25C49;
  flex-shrink: 0;
  margin-top: 6px;
  transform: rotate(45deg)
}

.front .reputation-ref-dot.teal {
  background: #0BA0A3
}

.front .reputation-ref-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  letter-spacing: .01em;
  margin: 0
}

.front .reputation-ref-text strong {
  color: #1b1b2e;
  font-weight: 700
}

.front .after-block {
  padding: 96px 48px 48px;
  background: #1b1b2e;
  position: relative
}

.front .after-block-bg-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0 0 0 28px
}

.front .after-heading {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 48px;
  text-shadow: 2px 3px 2px #0ba0a32e
}

.front .after-heading span {
  color: #0BA0A3
}

.front .after-cards-row {
  display: flex;
  flex-direction: row;
  gap: 24px
}

.front .after-card {
  flex: 1 1 0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .after-card:hover {
  background: #0ba0a31f;
  border-color: #0ba0a34d
}

.front .after-card-num {
  font-size: 50px;
  font-weight: 900;
  color: #0ba0a340;
  line-height: 1.15;
  letter-spacing: .01em
}

.front .after-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0
}

.front .after-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffa6;
  letter-spacing: .01em;
  margin: 0
}

.front .after-image-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 48px
}

.front .after-img-wrap {
  flex: 1 1 0;
  border-radius: 18px;
  overflow: hidden
}

.front .after-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(0.6);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .after-img-wrap:hover img {
  transform: scale(1.05);
  filter: saturate(0.1)
}

.front .experience-block {
  padding: 48px;
  background: #fff;
  position: relative
}

.front .experience-block-top {
  margin-bottom: 48px
}

.front .experience-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 12px;
  text-shadow: 2px 3px 2px #f25c490f
}

.front .experience-subhead {
  font-size: 20px;
  line-height: 1.7;
  color: #4a4a5a;
  letter-spacing: .01em;
  margin: 0
}

.front .experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 0
}

.front .experience-phase {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 1px solid #F2F1F0
}

.front .experience-phase:last-child {
  border-bottom: none
}

.front .phase-marker {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}

.front .phase-dot {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  transform: rotate(45deg);
  flex-shrink: 0
}

.front .phase-dot.red {
  background: #F25C49
}

.front .phase-dot.teal {
  background: #0BA0A3
}

.front .phase-dot.mid {
  background: #1b1b2e
}

.front .phase-line {
  width: 2px;
  flex: 1;
  background: #F2F1F0;
  margin-top: 6px
}

.front .phase-body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px
}

.front .phase-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15
}

.front .phase-label.red {
  color: #F25C49
}

.front .phase-label.teal {
  color: #0BA0A3
}

.front .phase-label.dark {
  color: #1b1b2e
}

.front .phase-title {
  font-size: 20px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0
}

.front .phase-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  letter-spacing: .01em;
  margin: 0
}

.front .experience-img-aside {
  position: absolute;
  right: 48px;
  top: 48px;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.front .experience-img-aside img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .experience-img-aside:hover img {
  transform: scale(1.05);
  filter: saturate(0.15)
}

.front .experience-left {
  padding-right: 372px
}

.front .graduation-block {
  padding: 48px 48px 96px;
  background: linear-gradient(197deg, #f25c4912 0%, #F2F1F0 100%)
}

.front .graduation-top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px
}

.front .graduation-heading-col {
  flex: 1 1 50%
}

.front .graduation-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 12px;
  text-shadow: 2px 3px 2px #f25c490f
}

.front .graduation-lead {
  font-size: 14px;
  font-weight: 700;
  color: #0BA0A3;
  letter-spacing: .02em;
  line-height: 1.15;
  margin: 0 0 12px
}

.front .graduation-text-col {
  flex: 1 1 45%
}

.front .graduation-paragraph {
  font-size: 20px;
  line-height: 1.7;
  color: #3a3a4a;
  letter-spacing: .01em;
  margin: 0 0 24px
}

.front .graduation-paragraph:last-child {
  margin-bottom: 0
}

.front .graduation-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.front .outcome-item {
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  box-shadow: 2px 3px 2px 0 #f25c490f;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.front .outcome-item:hover {
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transform: translateY(-4px)
}

.front .outcome-item.highlighted {
  background: #F25C49
}

.front .outcome-item-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  color: #0BA0A3
}

.front .outcome-item.highlighted .outcome-item-label {
  color: #fffc
}

.front .outcome-item-text {
  font-size: 20px;
  font-weight: 700;
  color: #1b1b2e;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0
}

.front .outcome-item.highlighted .outcome-item-text {
  color: #fff
}

.front .outcome-item-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  letter-spacing: .01em;
  margin: 0
}

.front .outcome-item.highlighted .outcome-item-desc {
  color: #fffc
}

.front .dot-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 18px
}

@media (max-width: 1024px) {
  .front .title-block {
    padding: 24px 24px 48px
  }

  .front .title-block-frame {
    padding: 24px;
    gap: 24px
  }

  .front .title-heading {
    font-size: 36px
  }

  .front .available-block {
    padding: 24px
  }

  .front .available-block-inner {
    flex-direction: column;
    gap: 24px
  }

  .front .available-sidebar {
    flex: 0 0 auto
  }

  .front .value-block {
    padding: 48px 24px 24px
  }

  .front .value-block-top {
    flex-direction: column;
    gap: 24px
  }

  .front .value-items {
    grid-template-columns: 1fr 1fr
  }

  .front .reputation-block {
    padding: 24px
  }

  .front .reputation-block-inner {
    flex-direction: column;
    gap: 24px
  }

  .front .after-block {
    padding: 48px 24px 24px
  }

  .front .after-cards-row {
    flex-direction: column;
    gap: 24px
  }

  .front .after-image-row {
    flex-direction: column
  }

  .front .experience-block {
    padding: 24px
  }

  .front .experience-img-aside {
    position: static;
    width: 100%;
    margin-top: 24px
  }

  .front .experience-left {
    padding-right: 0
  }

  .front .graduation-block {
    padding: 24px 24px 48px
  }

  .front .graduation-top {
    flex-direction: column;
    gap: 24px
  }

  .front .graduation-outcomes {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .front .title-block-frame {
    flex-direction: column
  }

  .front .title-heading {
    font-size: 26px
  }

  .front .mosaic-img-wrap.tall img {
    height: 180px
  }

  .front .value-items {
    grid-template-columns: 1fr
  }

  .front .after-cards-row {
    flex-direction: column
  }

  .front .graduation-outcomes {
    grid-template-columns: 1fr
  }
}

@media (max-width: 320px) {
  .front .title-heading {
    font-size: 20px
  }

  .front .title-block {
    padding: 12px 12px 24px
  }

  .front .title-block-frame {
    padding: 12px;
    gap: 12px
  }
}

.learning-program {
  background-color: #fff;
  overflow-x: clip;
  position: relative
}

.learning-program .program-top {
  background: linear-gradient(197deg, #F25C49 0%, #fff 100%);
  padding: 72px 24px 48px;
  position: relative;
  overflow: hidden
}

.learning-program .program-top::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #f25c4912;
  pointer-events: none
}

.learning-program .program-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F25C49 0%, #0BA0A3 60%, transparent 100%)
}

.learning-program .program-top-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #F25C49;
  border-radius: 0 0 3px 3px
}

.learning-program .program-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.learning-program .program-top-text {
  flex: 1 1 0
}

.learning-program .program-pill {
  display: inline-block;
  background: #F25C49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  padding: 6px 18px;
  border-radius: 28px;
  margin-bottom: 24px
}

.learning-program .program-heading-large {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e2e;
  text-shadow: 2px 3px 2px #f25c490f;
  margin: 0 0 12px
}

.learning-program .program-heading-sub {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #F25C49;
  text-shadow: 2px 3px 2px #f25c490f;
  margin: 0 0 24px
}

.learning-program .program-lead {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c2c3a;
  margin: 0 0 24px;
  max-width: 560px
}

.learning-program .program-accent-word {
  position: relative;
  display: inline-block
}

.learning-program .program-accent-word::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0BA0A3;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-underline .28s cubic-bezier(0.34, 1.56, 0.64, 1) .5s forwards
}

@keyframes draw-underline {
  to {
    transform: scaleX(1)
  }
}

.learning-program .program-top-image-col {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end
}

.learning-program .program-top-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.learning-program .program-top-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.learning-program .program-top-image-wrap:hover .program-top-image {
  filter: grayscale(0%)
}

.learning-program .program-metrics-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.learning-program .program-metric-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.learning-program .program-metric-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #F25C49
}

.learning-program .program-metric-label {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #556
}

.learning-program .program-dots-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0
}

.learning-program .program-dots-divider span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0BA0A3;
  opacity: .5
}

.learning-program .program-dots-divider span:nth-child(2) {
  background: #F25C49;
  opacity: .7
}

.learning-program .program-detail {
  background: #F2F1F0;
  padding: 48px 24px;
  position: relative;
  overflow: hidden
}

.learning-program .program-detail-bg-circle-a {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #0ba0a30d;
  pointer-events: none
}

.learning-program .program-detail-bg-circle-b {
  position: absolute;
  top: -40px;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #f25c490a;
  pointer-events: none
}

.learning-program .program-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.learning-program .program-detail-main {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.learning-program .program-detail-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e2e;
  text-shadow: 1px 2px 0 #0ba0a314;
  margin: 0 0 12px
}

.learning-program .program-label-bold {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #F25C49;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px
}

.learning-program .program-body-text {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c2c3a;
  margin: 0 0 24px
}

.learning-program .program-body-text-small {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c2c3a;
  margin: 0
}

.learning-program .program-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.learning-program .program-steps-list li {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c2c3a;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.learning-program .program-steps-list li:nth-child(odd) {
  background: #f25c4912
}

.learning-program .program-steps-list li:nth-child(even) {
  background: #0ba0a312
}

.learning-program .program-step-num {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: #F25C49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  margin-top: 4px
}

.learning-program .program-steps-list li:nth-child(even) .program-step-num {
  background: #0BA0A3
}

.learning-program .program-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.learning-program .program-card:hover {
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-4px)
}

.learning-program .program-card-accent-a {
  border-top: 4px solid #F25C49;
  border-radius: 18px
}

.learning-program .program-card-accent-b {
  border-top: 4px solid #0BA0A3;
  border-radius: 18px
}

.learning-program .program-card-accent-c {
  border-top: 4px solid #2c2c3a;
  border-radius: 18px
}

.learning-program .program-card-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e2e;
  text-shadow: 1px 1px 0 #f25c490f;
  margin: 0
}

.learning-program .program-card-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #556;
  margin: 0
}

.learning-program .program-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.learning-program .program-testimonials-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.learning-program .program-testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 2px 3px 2px 0 #f25c490f;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.learning-program .program-portrait-wrap {
  flex: 0 0 56px;
  width: 56px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden
}

.learning-program .program-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.learning-program .program-testimonial-body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.learning-program .program-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #1e1e2e;
  line-height: 1.15
}

.learning-program .program-testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #556;
  margin: 0
}

.learning-program .program-rating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px
}

.learning-program .program-stars {
  display: flex;
  flex-direction: row;
  gap: 2px
}

.learning-program .program-star {
  width: 12px;
  height: 12px;
  fill: #F25C49
}

.learning-program .program-rating-text {
  font-size: 14px;
  font-weight: 700;
  color: #F25C49;
  letter-spacing: .01em;
  line-height: 1.15
}

.learning-program .program-cta-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: #F25C49;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  align-self: flex-start
}

.learning-program .program-cta-btn:hover {
  background: #d94535;
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-2px)
}

.learning-program .program-cta-btn:focus {
  outline: 3px solid #0BA0A3;
  outline-offset: 3px
}

.learning-program .program-cta-btn:active {
  transform: translateY(0)
}

.learning-program .program-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.learning-program .program-cta-btn:hover .program-btn-icon {
  transform: translateX(0);
  opacity: 1
}

.learning-program .program-cta-btn:hover .program-btn-text {
  transform: translateX(4px)
}

.learning-program .program-btn-text {
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.learning-program .program-bg-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(135deg, #0ba0a308 0px, #0ba0a308 1px, transparent 1px, transparent 40px);
  animation: diagonal-drift 18s linear infinite;
  background-size: 80px 80px
}

@keyframes diagonal-drift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 80px 80px
  }
}

.learning-program .program-detail-blur-bg {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 48px 24px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.learning-program .program-blur-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px) grayscale(40%);
  transform: scale(1.08);
  z-index: 0
}

.learning-program .program-blur-bg-overlay {
  position: absolute;
  inset: 0;
  background: #f2f1f0e0;
  z-index: 1
}

.learning-program .program-blur-bg-content {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.learning-program .program-blur-bg-portraits {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto
}

.learning-program .program-blur-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1e1e2e;
  text-shadow: 1px 2px 0 #f25c4914;
  margin: 0 0 6px
}

.learning-program .program-blur-text {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2c2c3a;
  margin: 0
}

.learning-program .program-content-link {
  color: #F25C49;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block
}

.learning-program .program-content-link:hover {
  transform: rotate(-2deg)
}

.learning-program .program-content-link:focus {
  outline: 2px solid #0BA0A3;
  outline-offset: 2px;
  border-radius: 3px
}

@media (max-width: 1024px) {
  .learning-program .program-top-inner {
    flex-direction: column;
    gap: 24px
  }

  .learning-program .program-top-image-col {
    flex: 0 0 auto;
    width: 100%;
    align-items: flex-start
  }

  .learning-program .program-heading-large {
    font-size: 50px
  }

  .learning-program .program-detail-inner {
    grid-template-columns: 1fr 1fr
  }

  .learning-program .program-detail-main {
    grid-column: 1 / -1
  }

  .learning-program .program-detail-blur-bg {
    flex-direction: column;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .learning-program .program-heading-large {
    font-size: 36px
  }

  .learning-program .program-heading-sub {
    font-size: 26px
  }

  .learning-program .program-detail-inner {
    grid-template-columns: 1fr
  }

  .learning-program .program-top {
    padding: 48px 24px 24px
  }

  .learning-program .program-detail {
    padding: 24px
  }

  .learning-program .program-detail-blur-bg {
    padding: 24px
  }
}

@media (max-width: 320px) {
  .learning-program .program-heading-large {
    font-size: 26px
  }

  .learning-program .program-metrics-grid {
    grid-template-columns: 1fr
  }
}

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

.quiz-page .reveal-clip {
  clip-path: inset(0 0 100% 0);
  animation: clip-reveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes clip-reveal {
  to {
    clip-path: inset(0 0 0% 0)
  }
}

.quiz-page .reveal-delay-1 {
  animation-delay: .08s
}

.quiz-page .reveal-delay-2 {
  animation-delay: .16s
}

.quiz-page .reveal-delay-3 {
  animation-delay: .24s
}

.quiz-page .page-divider {
  width: 100%;
  height: 2px;
  background: radial-gradient(ellipse at center, #F25C49 0%, transparent 70%);
  border: none;
  margin: 0
}

.quiz-page .page-divider-teal {
  width: 100%;
  height: 2px;
  background: radial-gradient(ellipse at center, #0BA0A3 0%, transparent 70%);
  border: none;
  margin: 0
}

.quiz-page .title-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative
}

.quiz-page .title-block__image-zone {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 0
}

.quiz-page .title-block__image-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(197deg, #f25c4973 0%, #fff0 60%);
  z-index: 1
}

.quiz-page .title-block__image-zone::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(197deg, #F25C49 0%, #0BA0A3 100%);
  z-index: 2
}

.quiz-page .title-block__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.quiz-page .title-block__photo:hover {
  filter: saturate(0.1)
}

.quiz-page .title-block__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #F25C49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 3;
  box-shadow: 2px 4px 18px 0 #f25c491c
}

.quiz-page .title-block__text-zone {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F2F1F0;
  position: relative
}

.quiz-page .title-block__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15
}

.quiz-page .title-block__heading {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 24px;
  text-shadow: 2px 3px 2px #0ba0a30f
}

.quiz-page .title-block__heading .underline-word {
  position: relative;
  display: inline-block
}

.quiz-page .title-block__heading .underline-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 0;
  background: #F25C49;
  border-radius: 3px;
  animation: draw-underline .35s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

@keyframes draw-underline {
  to {
    width: 100%
  }
}

.quiz-page .title-block__description {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d3d3d;
  margin: 0
}

.quiz-page .title-block__accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(197deg, #F25C49 0%, #0BA0A3 100%);
  border-radius: 3px;
  margin-bottom: 24px
}

.quiz-page .circles-decoration {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  overflow: hidden
}

.quiz-page .circles-decoration__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #f25c491f
}

.quiz-page .circles-decoration__ring:nth-child(1) {
  width: 40px;
  height: 40px;
  bottom: 24px;
  right: 24px
}

.quiz-page .circles-decoration__ring:nth-child(2) {
  width: 70px;
  height: 70px;
  bottom: 9px;
  right: 9px
}

.quiz-page .circles-decoration__ring:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: -6px;
  right: -6px
}

.quiz-page .quiz-grid-block {
  background: #fff;
  padding: 48px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px
}

.quiz-page .quiz-grid-block__header {
  margin-bottom: 48px
}

.quiz-page .quiz-grid-block__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #F25C49;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15
}

.quiz-page .quiz-grid-block__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 12px;
  text-shadow: 2px 3px 2px #f25c490f
}

.quiz-page .quiz-grid-block__sub {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d3d3d;
  max-width: 560px;
  margin: 0
}

.quiz-page .quiz-grid-block__accent {
  width: 48px;
  height: 2px;
  background: #F25C49;
  border-radius: 3px;
  margin-bottom: 12px
}

.quiz-page .quiz-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.quiz-page .quiz-card {
  background: #F2F1F0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 3px 2px 0 #f25c490f;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.quiz-page .quiz-card:hover {
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-4px)
}

.quiz-page .quiz-card__difficulty {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15
}

.quiz-page .quiz-card__difficulty--easy {
  color: #0BA0A3
}

.quiz-page .quiz-card__difficulty--medium {
  color: #F25C49
}

.quiz-page .quiz-card__difficulty--hard {
  color: #1a2e2e
}

.quiz-page .quiz-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0;
  text-shadow: 2px 3px 2px #0ba0a30f
}

.quiz-page .quiz-card__desc {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d3d3d;
  margin: 0;
  flex: 1
}

.quiz-page .quiz-card__meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center
}

.quiz-page .quiz-card__questions {
  font-size: 14px;
  font-weight: 700;
  color: #2d3d3d;
  letter-spacing: .01em
}

.quiz-page .quiz-card__time {
  font-size: 14px;
  color: #2d3d3d;
  letter-spacing: .01em
}

.quiz-page .quiz-card__bar-track {
  height: 6px;
  background: #dbd9d7;
  border-radius: 3px;
  overflow: hidden
}

.quiz-page .quiz-card__bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(197deg, #F25C49 0%, #0BA0A3 100%);
  transition: width .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.quiz-page .quiz-card__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: #F25C49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transition: background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
  overflow: hidden
}

.quiz-page .quiz-card__btn:hover {
  background: #c94030;
  transform: scale(1.04)
}

.quiz-page .quiz-card__btn:focus-visible {
  outline: 3px solid #0BA0A3 !important;
  outline-offset: 3px !important
}

.quiz-page .quiz-card__btn-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.quiz-page .quiz-card--odd {
  background: #F2F1F0
}

.quiz-page .quiz-card--even {
  background: #e8f7f7
}

.quiz-page .quiz-card__border-hover {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.quiz-page .quiz-card:hover .quiz-card__border-hover {
  border-color: #F25C49
}

.quiz-page .stats-block {
  background: linear-gradient(197deg, #1a0e0c 0%, #0c2424 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden
}

.quiz-page .stats-block__halftone {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0 0 0 28px
}

.quiz-page .stats-block__halftone-inner {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #f25c492e 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at top right, #000000b3 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at top right, #000000b3 0%, transparent 65%)
}

.quiz-page .stats-block__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1
}

.quiz-page .stats-block__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 2px 3px 2px #0ba0a31c
}

.quiz-page .stats-block__sub {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #ffffffbf;
  margin: 0 0 48px;
  max-width: 500px
}

.quiz-page .stats-block__accent {
  width: 48px;
  height: 2px;
  background: #0BA0A3;
  border-radius: 3px;
  margin-bottom: 12px
}

.quiz-page .stats-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.quiz-page .stat-circle-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center
}

.quiz-page .stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.quiz-page .stat-circle__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ffffff1f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 2px 6px #0ba0a32e inset 0 -2px 6px #f25c491f
}

.quiz-page .stat-circle__ring--primary {
  border-color: #F25C49;
  box-shadow: 2px 4px 18px 0 #f25c491c inset 0 2px 4px #ffffff14 inset 0 -2px 4px #f25c492e
}

.quiz-page .stat-circle__ring--secondary {
  border-color: #0BA0A3;
  box-shadow: 2px 4px 18px 0 #0ba0a31c inset 0 2px 4px #ffffff14 inset 0 -2px 4px #0ba0a32e
}

.quiz-page .stat-circle__value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.15
}

.quiz-page .stat-circle__label {
  font-size: 14px;
  color: #ffffffa6;
  letter-spacing: .01em;
  text-align: center;
  line-height: 1.7;
  max-width: 80px
}

.quiz-page .stats-block__table-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.quiz-page .stats-table {
  width: 100%;
  border-collapse: collapse
}

.quiz-page .stats-table th {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-align: left;
  padding: 6px 12px;
  border-bottom: 1px solid #ffffff1a
}

.quiz-page .stats-table td {
  font-size: 14px;
  color: #fffc;
  padding: 12px;
  letter-spacing: .01em;
  line-height: 1.7;
  border-bottom: 1px solid #ffffff0f
}

.quiz-page .stats-table tr:nth-child(odd) td {
  color: #ffffffe6
}

.quiz-page .stats-table tr:nth-child(even) td {
  color: #0ba0a3d9
}

.quiz-page .stats-block__narrative {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.quiz-page .stats-narrative__heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #fff;
  margin: 0;
  text-shadow: 2px 3px 2px #f25c4914
}

.quiz-page .stats-narrative__paragraph {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #ffffffbf;
  margin: 0
}

.quiz-page .stats-narrative__label {
  font-weight: 700;
  color: #F25C49
}

.quiz-page .stats-narrative__accent-line {
  width: 48px;
  height: 2px;
  background: #F25C49;
  border-radius: 3px
}

.quiz-page .tips-block {
  background: #F2F1F0;
  padding: 48px 0;
  position: relative
}

.quiz-page .tips-block__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px
}

.quiz-page .tips-block__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

.quiz-page .tips-block__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15
}

.quiz-page .tips-block__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 12px;
  text-shadow: 2px 3px 2px #0ba0a30f
}

.quiz-page .tips-block__accent {
  width: 48px;
  height: 2px;
  background: #0BA0A3;
  border-radius: 3px;
  margin-bottom: 12px
}

.quiz-page .tips-block__desc {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d3d3d;
  margin: 0
}

.quiz-page .tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0
}

.quiz-page .tips-list__item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 10px;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.quiz-page .tips-list__item:hover {
  transform: translateX(6px);
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.quiz-page .tips-list__item:nth-child(odd) {
  background: #fff
}

.quiz-page .tips-list__item:nth-child(even) {
  background: #e8f7f7
}

.quiz-page .tips-list__number {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  flex-shrink: 0;
  width: 36px;
  text-align: right
}

.quiz-page .tips-list__item:nth-child(odd) .tips-list__number {
  color: #F25C49
}

.quiz-page .tips-list__item:nth-child(even) .tips-list__number {
  color: #0BA0A3
}

.quiz-page .tips-list__body {
  flex: 1
}

.quiz-page .tips-list__item-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a2e2e;
  margin: 0 0 6px
}

.quiz-page .tips-list__item-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d3d3d;
  margin: 0
}

.quiz-page .tips-list__item-text .lead-label {
  font-weight: 700;
  color: #1a2e2e
}

.quiz-page .tips-block__circles {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100px;
  height: 100px;
  pointer-events: none;
  overflow: hidden
}

.quiz-page .tips-block__circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #0ba0a31a
}

.quiz-page .tips-block__circle-ring:nth-child(1) {
  width: 30px;
  height: 30px;
  top: 20px;
  left: 20px
}

.quiz-page .tips-block__circle-ring:nth-child(2) {
  width: 55px;
  height: 55px;
  top: 8px;
  left: 8px
}

.quiz-page .tips-block__circle-ring:nth-child(3) {
  width: 80px;
  height: 80px;
  top: -4px;
  left: -4px
}

@media (max-width: 1024px) {
  .quiz-page .quiz-cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .quiz-page .title-block__heading {
    font-size: 36px
  }

  .quiz-page .stats-block__table-area {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .quiz-page .tips-block__top {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .quiz-page .title-block {
    grid-template-columns: 1fr
  }

  .quiz-page .title-block__image-zone {
    height: 240px;
    border-radius: 0
  }

  .quiz-page .title-block__text-zone {
    padding: 24px
  }

  .quiz-page .title-block__heading {
    font-size: 36px
  }

  .quiz-page .quiz-grid-block {
    padding-left: 24px;
    padding-right: 24px
  }

  .quiz-page .quiz-cards-grid {
    grid-template-columns: 1fr
  }

  .quiz-page .stats-block__inner {
    padding: 0 24px
  }

  .quiz-page .stat-circle-group {
    gap: 12px
  }

  .quiz-page .tips-block__inner {
    padding: 0 24px
  }
}

@media (max-width: 320px) {
  .quiz-page .title-block__heading {
    font-size: 26px
  }

  .quiz-page .stat-circle__ring {
    width: 60px;
    height: 60px
  }

  .quiz-page .stat-circle__value {
    font-size: 20px
  }
}

.quiz-page .content-link {
  color: #0BA0A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block
}

.quiz-page .content-link:hover {
  transform: rotate(-2deg);
  color: #F25C49
}

.quiz-page .content-link:focus-visible {
  outline: 3px solid #F25C49 !important;
  outline-offset: 2px !important;
  border-radius: 3px
}

.about-us-page {
  overflow-x: hidden
}

.about-us-page .scroll-zoom-wrapper {
  overflow: hidden;
  border-radius: 10px
}

.about-us-page .scroll-zoom-img {
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-us-page .scroll-zoom-wrapper:hover .scroll-zoom-img {
  transform: scale(1.06)
}

.about-us-page .scroll-zoom-img.desaturate-hover {
  filter: saturate(1);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .scroll-zoom-wrapper:hover .scroll-zoom-img.desaturate-hover {
  filter: saturate(0);
  transform: scale(1.06)
}

.about-us-page .page-max {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.about-us-page .radial-divider {
  width: 100%;
  height: 2px;
  background: radial-gradient(ellipse at 50% 50%, #0BA0A3 0%, transparent 70%);
  border: none;
  margin: 0
}

.about-us-page .animated-underline-word {
  position: relative;
  display: inline-block
}

.about-us-page .animated-underline-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F25C49;
  animation: underline-draw .32s cubic-bezier(0.34, 1.56, 0.64, 1) .6s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.about-us-page .shake-element {
  display: inline-block;
  animation: attention-shake .22s cubic-bezier(0.68, -0.55, 0.27, 1.55) 2.2s 2
}

@keyframes attention-shake {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-6px)
  }

  50% {
    transform: translateX(6px)
  }

  75% {
    transform: translateX(-4px)
  }

  100% {
    transform: translateX(0)
  }
}

.about-us-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F25C49;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 2px 4px 18px 0 #f25c491c;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.about-us-page .btn-primary:hover {
  background: #d94836;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.about-us-page .btn-primary .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform: translateX(-8px);
  opacity: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .btn-primary .btn-label {
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .btn-primary:hover .btn-icon {
  transform: translateX(0);
  opacity: 1
}

.about-us-page .btn-primary:hover .btn-label {
  transform: translateX(6px)
}

.about-us-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #0BA0A3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 12px;
  border-radius: 3px;
  border: 2px solid #0BA0A3;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.about-us-page .btn-secondary .btn-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .btn-secondary .btn-label {
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .btn-secondary:hover {
  background: #0BA0A3;
  color: #fff
}

.about-us-page .btn-secondary:hover .btn-icon {
  transform: translateX(0);
  opacity: 1
}

.about-us-page .btn-secondary:hover .btn-label {
  transform: translateX(4px)
}

.about-us-page .content-link {
  color: #0BA0A3;
  text-decoration: underline;
  transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block
}

.about-us-page .content-link:hover {
  transform: rotate(-2deg)
}

.about-us-page .numeric-counter {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #F25C49;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.15;
  z-index: 2
}

.about-us-page .lead-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #F25C49;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block
}

.about-us-page .body-text {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2a2a2e
}

.about-us-page .body-text-small {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3a3a42
}

.about-us-page .list-alternating {
  list-style: none;
  padding: 0;
  margin: 0
}

.about-us-page .list-alternating li {
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.about-us-page .list-alternating li:nth-child(odd) {
  background: #f25c4912;
  color: #2a2a2e
}

.about-us-page .list-alternating li:nth-child(even) {
  background: #0ba0a312;
  color: #2a2a2e
}

.about-us-page .list-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #F25C49;
  flex-shrink: 0;
  margin-top: 6px
}

.about-us-page .list-alternating li:nth-child(even) .list-dot {
  background: #0BA0A3
}

.about-us-page .heading-shadow {
  text-shadow: 1px 2px 0 #f25c491a 0 1px 0 #0ba0a30f
}

.about-us-page .heading-shadow-dark {
  text-shadow: 1px 2px 0 #0ba0a32e 0 1px 0 #f25c491a
}

.about-us-page .section-title-block {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #18181c
}

.about-us-page .section-subtitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #18181c
}

.about-us-page .caption-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #5a5a64
}

.about-us-page .color-primary {
  color: #F25C49
}

.about-us-page .color-secondary {
  color: #0BA0A3
}

.about-us-page .color-tertiary {
  color: #F2F1F0
}

.about-us-page .bg-tertiary {
  background: #F2F1F0
}

.about-us-page .bg-white {
  background: #fff
}

.about-us-page .bg-dark-primary {
  background: #8c1a0e
}

.about-us-page .bg-gradient-hero {
  background: linear-gradient(197deg, #F25C49 0%, #fff 80%)
}

.about-us-page .bg-gradient-secondary {
  background: linear-gradient(197deg, #0BA0A3 0%, #fff 75%)
}

.about-us-page .overlay-reveal-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden
}

.about-us-page .overlay-reveal-panel {
  position: absolute;
  inset: 0;
  background: #f2f1f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  cursor: pointer;
  padding: 24px
}

.about-us-page .overlay-reveal-wrapper:hover .overlay-reveal-panel,
.about-us-page .overlay-reveal-wrapper:focus-within .overlay-reveal-panel {
  opacity: 0;
  pointer-events: none
}

.about-us-page .overlay-reveal-panel-text {
  font-size: 20px;
  font-weight: 700;
  color: #18181c;
  letter-spacing: .01em;
  line-height: 1.15;
  text-align: center
}

.about-us-page .overlay-hint-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px
}

.about-us-page .polygon-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0
}

.about-us-page .blurred-spot {
  position: absolute;
  border-radius: 28px;
  filter: blur(48px);
  opacity: .18;
  pointer-events: none;
  z-index: 0
}

.about-us-page .blurred-spot-a {
  width: 240px;
  height: 180px;
  background: #F25C49;
  top: -48px;
  right: 12%
}

.about-us-page .blurred-spot-b {
  width: 180px;
  height: 140px;
  background: #0BA0A3;
  bottom: 24px;
  left: 6%
}

.about-us-page .title-block-outer {
  position: relative;
  padding-top: 48px;
  padding-bottom: 96px;
  overflow: hidden
}

.about-us-page .title-block-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1
}

.about-us-page .title-image-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us-page .title-portrait-frame {
  width: 100%;
  aspect-ratio: 7/9;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 2px 4px 18px 0 #f25c491c
}

.about-us-page .title-portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 55%, #0ba0a373 100%);
  pointer-events: none;
  z-index: 1
}

.about-us-page .title-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(1);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.about-us-page .title-portrait-frame:hover .title-portrait-img {
  filter: saturate(0)
}

.about-us-page .title-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px
}

.about-us-page .title-h1 {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #18181c;
  margin: 0
}

.about-us-page .title-h1 .line-break {
  display: block
}

.about-us-page .title-tagline {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #3a3a42;
  max-width: 640px
}

.about-us-page .title-meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.about-us-page .title-meta-badge {
  background: #0ba0a317;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0BA0A3;
  letter-spacing: .02em;
  line-height: 1.15
}

.about-us-page .title-meta-badge.accent {
  background: #f25c4917;
  color: #F25C49
}

.about-us-page .title-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px
}

.about-us-page .title-img-small {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: saturate(1);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .title-img-small:hover {
  filter: saturate(0);
  transform: scale(1.03)
}

.about-us-page .about-detail-section {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px
}

.about-us-page .mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px
}

.about-us-page .mosaic-cell-wide {
  grid-column: span 2
}

.about-us-page .mosaic-cell-tall {
  grid-row: span 2
}

.about-us-page .card-base {
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden
}

.about-us-page .card-light {
  background: #F2F1F0;
  box-shadow: 2px 3px 2px 0 #f25c490f
}

.about-us-page .card-white {
  background: #fff;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.about-us-page .card-dark {
  background: #8c1a0e;
  box-shadow: 2px 8px 52px 0 #f25c491a
}

.about-us-page .card-secondary {
  background: #0BA0A3;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.about-us-page .card-dark .section-subtitle,
.about-us-page .card-dark .body-text,
.about-us-page .card-dark .body-text-small,
.about-us-page .card-dark .lead-label {
  color: #F2F1F0
}

.about-us-page .card-dark .lead-label {
  color: #f2f1f0b3
}

.about-us-page .card-secondary .section-subtitle,
.about-us-page .card-secondary .body-text,
.about-us-page .card-secondary .body-text-small,
.about-us-page .card-secondary .lead-label {
  color: #fff
}

.about-us-page .card-secondary .lead-label {
  color: #ffffffbf
}

.about-us-page .donut-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.about-us-page .donut-svg {
  width: 110px;
  height: 110px;
  flex-shrink: 0
}

.about-us-page .donut-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 120px
}

.about-us-page .donut-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #2a2a2e
}

.about-us-page .donut-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0
}

.about-us-page .team-person-row {
  display: flex;
  align-items: center;
  gap: 12px
}

.about-us-page .team-person-name {
  font-size: 20px;
  font-weight: 700;
  color: #18181c;
  letter-spacing: .01em;
  line-height: 1.15
}

.about-us-page .team-person-role {
  font-size: 14px;
  color: #5a5a64;
  letter-spacing: .02em;
  line-height: 1.15
}

.about-us-page .team-portrait-thumb {
  width: 80px;
  height: 103px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
  filter: saturate(1);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.about-us-page .team-portrait-thumb:hover {
  filter: saturate(0)
}

.about-us-page .metric-row {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.about-us-page .metric-number {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #F25C49
}

.about-us-page .metric-number.secondary {
  color: #0BA0A3
}

.about-us-page .metric-label {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #5a5a64
}

.about-us-page .card-dark .metric-number {
  color: #F2F1F0
}

.about-us-page .card-dark .metric-label {
  color: #f2f1f0a6
}

.about-us-page .card-secondary .metric-number {
  color: #fff
}

.about-us-page .card-secondary .metric-label {
  color: #fffc
}

.about-us-page .mosaic-image-cell {
  border-radius: 18px;
  overflow: hidden;
  position: relative
}

.about-us-page .mosaic-full-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-us-page .mosaic-image-cell:hover .mosaic-full-img {
  filter: saturate(0);
  transform: scale(1.04)
}

.about-us-page .polygon-deco-svg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .06
}

.about-us-page .section-relative {
  position: relative
}

.about-us-page .inset-shadow-card {
  box-shadow: inset 0 2px 4px 0 #f2f1f099 inset 0 -2px 6px 0 #f25c491a
}

@media (max-width: 1024px) {
  .about-us-page .title-block-grid {
    grid-template-columns: 160px 1fr;
    gap: 24px
  }

  .about-us-page .title-h1 {
    font-size: 50px
  }

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

  .about-us-page .mosaic-cell-wide {
    grid-column: span 2
  }

  .about-us-page .mosaic-cell-tall {
    grid-row: span 1
  }
}

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

  .about-us-page .title-image-col {
    display: none
  }

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

  .about-us-page .title-tagline {
    font-size: 20px
  }

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

  .about-us-page .mosaic-cell-wide {
    grid-column: span 1
  }

  .about-us-page .mosaic-cell-tall {
    grid-row: span 1
  }

  .about-us-page .title-image-grid {
    grid-template-columns: 1fr
  }

  .about-us-page .donut-wrapper {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 320px) {
  .about-us-page .title-h1 {
    font-size: 26px
  }

  .about-us-page .metric-number {
    font-size: 36px
  }

  .about-us-page .page-max {
    padding-left: 12px;
    padding-right: 12px
  }
}

.success-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: #F2F1F0
}

.success-page .success-card {
  background: #fff;
  border-radius: 18px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  box-shadow: 2px 8px 52px 0 #f25c491a;
  text-align: center
}

.success-page .success-card .success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 28px;
  background: linear-gradient(197deg, #F25C49, #fff);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 2px 4px 18px 0 #0ba0a31c
}

.success-page .success-card .success-icon-wrapper svg {
  display: block
}

.success-page .success-card .success-heading {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #1a3a3a;
  margin: 0 0 12px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #0ba0a314
}

.success-page .success-card .success-subtext {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2d4a4a;
  margin: 0 0 48px
}

.success-page .success-card .success-divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(197deg, #F25C49, #0BA0A3);
  margin: 0 auto 48px
}

.success-page .success-card .success-link-primary {
  display: inline-block;
  background: #F25C49;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  padding: 12px 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 3px 2px 0 #f25c490f
}

.success-page .success-card .success-link-primary:hover {
  background: #d94535;
  box-shadow: 2px 8px 52px 0 #f25c491a;
  transform: translateY(-2px)
}

.success-page .success-card .success-link-primary:focus {
  outline: 3px solid #0BA0A3;
  outline-offset: 3px
}

.success-page .success-card .success-link-secondary {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #0BA0A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: block
}

.success-page .success-card .success-link-secondary:hover {
  color: #F25C49;
  transform: rotate(-1.5deg)
}

.success-page .success-card .success-link-secondary:focus {
  outline: 2px solid #F25C49;
  outline-offset: 2px;
  border-radius: 3px
}

@media (max-width: 768px) {
  .success-page {
    padding: 48px 12px
  }

  .success-page .success-card {
    padding: 24px
  }

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

  .success-page .success-card .success-subtext {
    font-size: 14px
  }

  .success-page .success-card .success-link-primary {
    font-size: 14px;
    padding: 12px 24px
  }
}