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

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Karla', sans-serif
}

:focus-visible {
  outline: 2px solid #461E38;
  outline-offset: 3px;
  transition: outline-offset .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

::selection {
  background: #17FFEE;
  color: #461E38
}

.site_header {
  width: 100%;
  background: linear-gradient(135deg, #461E38 0%, #5c2749 60%, #3a1830 100%);
  box-shadow: 0 6px 18px 0 #461e3814;
  position: relative;
  z-index: 100
}

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

.brand_identity_group {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo_card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 3px 6px 0 #461e3814 0 0 0 2px #17ffee4d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0
}

.logo_card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block
}

.brand_name_text {
  font-family: 'Karla', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #FDFCFC;
  letter-spacing: .01em;
  text-decoration: none
}

.brand_tagline_text {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #fdfcfca6;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px
}

.header_address_block {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fdfcfcbf;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: right
}

.header_address_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: .8
}

.site_header_nav_bar {
  border-top: 1px solid #17ffee26;
  background: #230a1c73;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.site_header_nav_inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0
}

.nav_item_link {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #fdfcfce0;
  text-decoration: none;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  min-height: 52px
}

.nav_item_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #17FFEE;
  border-radius: 6px;
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.nav_item_link:hover,
.nav_item_link:focus-visible {
  color: #17FFEE;
  background: #17ffee12;
  outline: none
}

.nav_item_link:hover::after,
.nav_item_link:focus-visible::after {
  transform: scaleX(1)
}

.nav_dropdown_parent {
  position: relative
}

.nav_dropdown_parent:hover .nav_dropdown_panel,
.nav_dropdown_parent:focus-within .nav_dropdown_panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px)
}

.nav_dropdown_trigger_arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.nav_dropdown_parent:hover .nav_dropdown_trigger_arrow,
.nav_dropdown_parent:focus-within .nav_dropdown_trigger_arrow {
  transform: rotate(180deg)
}

.nav_dropdown_panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #3a1830;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 48px 0 #461e3824;
  border: 1px solid #17ffee1f;
  border-top: 2px solid #17FFEE;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200
}

.nav_dropdown_link {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #fdfcfcd1;
  text-decoration: none;
  display: block;
  padding: 12px 24px;
  transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap
}

.nav_dropdown_link:hover,
.nav_dropdown_link:focus-visible {
  color: #17FFEE;
  background: #17ffee14;
  outline: none
}

.site_footer {
  background: #2a0f22;
  width: 100%
}

.footer_upper_band {
  border-top: 3px solid #17FFEE
}

.footer_body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: flex-start
}

.footer_brand_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  flex: 0 0 auto
}

.footer_logo_card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 3px 6px 0 #461e3814 0 0 0 2px #17ffee40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px
}

.footer_logo_card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block
}

.footer_brand_name {
  font-family: 'Karla', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #FDFCFC;
  margin-top: 8px
}

.footer_brand_desc {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #fdfcfc99;
  max-width: 320px
}

.footer_contact_col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer_col_label {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #17FFEE;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.footer_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fdfcfcb3;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.footer_contact_item:hover {
  color: #17FFEE
}

.footer_contact_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .7
}

.footer_legal_col {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer_legal_link {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #fdfcfc99;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block
}

.footer_legal_link:hover,
.footer_legal_link:focus-visible {
  color: #17FFEE
}

.footer_bottom_bar {
  border-top: 1px solid #fdfcfc14;
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.footer_copyright_text {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #fdfcfc66;
  letter-spacing: .04em
}

.footer_est_badge {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #17ffee80;
  letter-spacing: .06em;
  border: 1px solid #17ffee33;
  border-radius: 48px;
  padding: 4px 16px
}

@media (max-width: 768px) {
  .site_header_top_bar {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px
  }

  .header_address_block {
    font-size: 13px;
    text-align: left
  }

  .site_header_nav_inner {
    padding: 0 16px
  }

  .nav_item_link {
    padding: 14px 16px;
    font-size: 13px
  }

  .footer_body {
    padding: 32px 16px;
    gap: 32px
  }

  .footer_bottom_bar {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 480px) {
  .brand_name_text {
    font-size: 21px
  }

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

  .header_address_block {
    width: 100%
  }
}

@media (min-width: 1440px) {

  .site_header_top_bar,
  .site_header_nav_inner,
  .footer_body,
  .footer_bottom_bar {
    padding-left: 64px;
    padding-right: 64px
  }
}

.terms-text {
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 32px
}

.terms-text ul,
.terms-text ol {
  padding-left: 32px;
  margin-bottom: 32px
}

.terms-text ul {
  list-style-type: disc
}

.terms-text ol {
  list-style-type: decimal
}

.terms-text ul ul,
.terms-text ol ol,
.terms-text ul ol,
.terms-text ol ul {
  margin-bottom: 8px;
  margin-top: 8px
}

.terms-text li {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  margin-bottom: 8px
}

.terms-text strong,
.terms-text b {
  font-weight: 700;
  color: #461E38
}

.terms-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #461e3814
}

.terms-text thead {
  background-color: #461E38
}

.terms-text thead th {
  color: #FDFCFC;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px;
  text-align: left
}

.terms-text tbody tr {
  background-color: #FDFCFC;
  transition: background-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.terms-text tbody tr:nth-child(even) {
  background-color: #461e380a
}

.terms-text tbody tr:hover {
  background-color: #17ffee1f
}

.terms-text td {
  padding: 16px;
  color: #461E38;
  font-size: 15px;
  line-height: 1.75;
  border-bottom: 1px solid #461e3814
}

.terms-text tbody tr:last-child td {
  border-bottom: none
}

.terms-text hr {
  border: none;
  height: 1px;
  background-color: #461e3826;
  margin: 64px 0
}

.terms-text div {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  margin-bottom: 16px
}

@media (max-width: 768px) {
  .terms-text {
    padding: 32px 16px
  }

  .terms-text table {
    display: block;
    overflow-x: auto
  }

  .terms-text ul,
  .terms-text ol {
    padding-left: 16px
  }
}

@media (max-width: 480px) {
  .terms-text {
    padding: 32px 8px
  }

  .terms-text thead th,
  .terms-text td {
    padding: 8px;
    font-size: 13px
  }

  .terms-text li,
  .terms-text div {
    font-size: 13px
  }
}

.svc_det {
  max-width: 100%;
  overflow-x: hidden
}

.svc_det .pg_strip {
  width: 100%;
  position: relative;
  background: #461E38;
  padding: 32px 0;
  overflow: hidden
}

.svc_det .pg_strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(23deg, #461E38 60%, #17ffee21 100%);
  pointer-events: none
}

.svc_det .pg_strip_edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #17FFEE 40%, transparent 100%)
}

.svc_det .pg_strip_inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1
}

.svc_det .pg_img_wrap {
  flex: 0 0 220px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative
}

.svc_det .pg_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block
}

.svc_det .pg_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #461e3873;
  border-radius: 12px
}

.svc_det .pg_text_col {
  flex: 1 1 0;
  min-width: 0
}

.svc_det .pg_tag_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.svc_det .pg_cat_tag {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #17FFEE;
  background: #17ffee1a;
  padding: 4px 12px;
  border-radius: 48px;
  display: inline-block
}

.svc_det .pg_user_tag {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fdfcfca6;
  background: #fdfcfc14;
  padding: 4px 12px;
  border-radius: 48px;
  display: inline-block
}

.svc_det .pg_heading {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #FDFCFC;
  margin: 0 0 8px
}

.svc_det .pg_heading mark {
  background: none;
  color: #17FFEE;
  padding: 0
}

.svc_det .pg_price_row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px
}

.svc_det .pg_price_val {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #17FFEE
}

.svc_det .pg_price_desc {
  font-size: 13px;
  line-height: 1.5;
  color: #fdfcfc99
}

.svc_det .pg_strip_deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.svc_det .pg_strip_deco svg {
  width: 100%;
  height: 100%;
  opacity: .07
}

.svc_det .body_row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.svc_det .body_left {
  flex: 2 1 0;
  min-width: 0
}

.svc_det .body_right {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 360px
}

.svc_det .desc_area {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 6px 18px 0 #461e3814;
  margin-bottom: 32px
}

.svc_det .desc_area h2 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #461E38;
  margin: 0 0 16px
}

.svc_det .desc_area h3 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #461E38;
  margin: 16px 0 8px
}

.svc_det .desc_area p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  margin: 0 0 16px
}

.svc_det .desc_area small {
  font-size: 13px;
  line-height: 1.5;
  color: #6a4560;
  display: block;
  margin-bottom: 8px
}

.svc_det .desc_area abbr {
  text-decoration: underline dotted;
  cursor: help
}

.svc_det .desc_area ol {
  padding-left: 16px;
  margin: 0 0 16px
}

.svc_det .desc_area ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e381a;
  list-style: decimal;
  margin-bottom: 8px
}

.svc_det .desc_area ol li:last-child {
  border-bottom: none
}

.svc_det .desc_area ul {
  padding-left: 16px;
  margin: 0 0 16px
}

.svc_det .desc_area ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e381a;
  list-style: disc;
  margin-bottom: 8px
}

.svc_det .desc_area ul li:last-child {
  border-bottom: none
}

.svc_det .desc_area dl {
  margin: 0 0 16px
}

.svc_det .desc_area dt {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #461E38;
  margin-top: 12px
}

.svc_det .desc_area dd {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  margin-left: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e3814
}

.svc_det .desc_area blockquote {
  border-left: none;
  background: #461e380d;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0
}

.svc_det .desc_area blockquote p {
  margin: 0;
  font-style: italic;
  color: #461E38
}

.svc_det .desc_area cite {
  font-size: 13px;
  color: #6a4560;
  display: block;
  margin-top: 8px
}

.svc_det .desc_area mark {
  background: #17ffee40;
  color: #2a1220;
  border-radius: 6px;
  padding: 0 4px
}

.svc_det .prog_area {
  background: #461e380a;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 6px 0 #461e3814;
  margin-bottom: 32px
}

.svc_det .prog_area h2 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #461E38;
  margin: 0 0 16px
}

.svc_det .prog_area p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  margin: 0 0 12px
}

.svc_det .prog_area ul {
  padding-left: 16px;
  margin: 0 0 16px
}

.svc_det .prog_area ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e381a;
  list-style: disc;
  margin-bottom: 8px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.svc_det .prog_area ul li:hover {
  color: #461E38
}

.svc_det .prog_area ul li:last-child {
  border-bottom: none
}

.svc_det .prog_area ol {
  padding-left: 16px;
  margin: 0 0 16px
}

.svc_det .prog_area ol li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e381a;
  list-style: decimal;
  margin-bottom: 8px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.svc_det .prog_area ol li:hover {
  color: #461E38
}

.svc_det .prog_area ol li:last-child {
  border-bottom: none
}

.svc_det .prog_area dl {
  margin: 0 0 16px
}

.svc_det .prog_area dt {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #461E38;
  margin-top: 12px
}

.svc_det .prog_area dd {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1220;
  margin-left: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e3814
}

.svc_det .prog_area mark {
  background: #17ffee40;
  color: #2a1220;
  border-radius: 6px;
  padding: 0 4px
}

.svc_det .prog_area figure {
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden
}

.svc_det .prog_area figure img {
  max-width: 100%;
  object-fit: contain;
  display: block
}

.svc_det .prog_area figcaption {
  font-size: 13px;
  line-height: 1.5;
  color: #6a4560;
  padding: 8px 0 0
}

.svc_det .side_card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 12px 48px 0 #461e3824;
  position: relative;
  margin-bottom: 32px
}

.svc_det .side_card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  border-radius: 12px;
  border: 2px solid #461e3826;
  z-index: 0;
  pointer-events: none
}

.svc_det .side_card>* {
  position: relative;
  z-index: 1
}

.svc_det .side_card_label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #461E38;
  margin-bottom: 8px;
  display: block
}

.svc_det .side_price_big {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  display: block;
  margin-bottom: 8px
}

.svc_det .side_pricedes {
  font-size: 13px;
  line-height: 1.5;
  color: #6a4560;
  margin-bottom: 16px;
  display: block
}

.svc_det .btn_book {
  display: block;
  width: 100%;
  background: #461E38;
  color: #17FFEE;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), color .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 6px 18px 0 #461e3814
}

.svc_det .btn_book:hover {
  background: #17FFEE;
  color: #461E38;
  box-shadow: 0 12px 48px 0 #461e3824
}

.svc_det .btn_book:focus {
  outline: 3px solid #17FFEE;
  outline-offset: 2px
}

.svc_det .btn_book:active {
  transform: scale(0.97)
}

.svc_det .btn_ripple_ring {
  position: absolute;
  border-radius: 48px;
  background: #17ffee59;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: svc_ripple .35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes svc_ripple {
  to {
    width: 320px;
    height: 320px;
    opacity: 0
  }
}

.svc_det .side_meta_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.svc_det .side_meta_tag {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FDFCFC;
  background: #461E38;
  padding: 4px 12px;
  border-radius: 48px
}

.svc_det .side_meta_user {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
  color: #461E38;
  background: #461e381a;
  padding: 4px 12px;
  border-radius: 48px
}

.svc_det .rating_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.svc_det .rating_stars {
  display: flex;
  flex-direction: row;
  gap: 4px
}

.svc_det .star_svg {
  width: 16px;
  height: 16px
}

.svc_det .rating_num {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #461E38
}

.svc_det .rating_count {
  font-size: 13px;
  line-height: 1.2;
  color: #6a4560
}

.svc_det .contact_link_row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px
}

.svc_det .contact_link {
  font-size: 13px;
  line-height: 1.5;
  color: #461E38;
  text-decoration: underline;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.svc_det .contact_link:hover {
  color: #17FFEE
}

.svc_det .divider_word {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 32px 0
}

.svc_det .divider_word_line {
  flex: 1 1 0;
  height: 1px;
  background: #461e3826
}

.svc_det .divider_word_text {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #461e3873;
  font-weight: 600;
  white-space: nowrap
}

.svc_det .bg_anim_wrap {
  animation: svc_bg_warm 9s ease-in-out infinite alternate
}

@keyframes svc_bg_warm {
  0% {
    background-color: #461E38
  }

  100% {
    background-color: #5a2447
  }
}

@media (max-width: 1024px) {
  .svc_det .pg_strip_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 16px
  }

  .svc_det .pg_img_wrap {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 160px
  }

  .svc_det .body_row {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px
  }

  .svc_det .body_right {
    max-width: 100%;
    width: 100%
  }

  .svc_det .pg_heading {
    font-size: 28px
  }
}

@media (max-width: 768px) {
  .svc_det .pg_heading {
    font-size: 21px
  }

  .svc_det .side_price_big {
    font-size: 28px
  }

  .svc_det .desc_area,
  .svc_det .prog_area,
  .svc_det .side_card {
    padding: 16px
  }
}

@media (max-width: 480px) {
  .svc_det .pg_strip {
    padding: 16px 0
  }

  .svc_det .body_row {
    padding: 16px 8px
  }
}

.prtns {
  max-width: 100%;
  overflow-x: hidden
}

.prtns .pg_inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px
}

.prtns .blk_one {
  padding: 96px 0 64px;
  position: relative;
  background: #FDFCFC;
  overflow: hidden
}

.prtns .blk_one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(23deg, #461e3812 0%, transparent 55%), linear-gradient(203deg, #17ffee0f 0%, transparent 50%);
  animation: grad_a 8s ease-in-out infinite alternate, grad_b 13s ease-in-out infinite alternate-reverse;
  pointer-events: none
}

@keyframes grad_a {
  0% {
    opacity: 1;
    transform: translateX(0) translateY(0)
  }

  100% {
    opacity: .7;
    transform: translateX(24px) translateY(-16px)
  }
}

@keyframes grad_b {
  0% {
    opacity: .6;
    transform: translateX(0) translateY(0)
  }

  100% {
    opacity: 1;
    transform: translateX(-20px) translateY(20px)
  }
}

.prtns .blk_one_circles {
  position: absolute;
  bottom: -48px;
  right: -48px;
  width: 280px;
  height: 280px;
  pointer-events: none
}

.prtns .blk_one_circles span {
  position: absolute;
  border-radius: 48px;
  border: 1px solid #461e3814;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.prtns .blk_one_circles span:nth-child(1) {
  width: 80px;
  height: 80px
}

.prtns .blk_one_circles span:nth-child(2) {
  width: 140px;
  height: 140px
}

.prtns .blk_one_circles span:nth-child(3) {
  width: 200px;
  height: 200px
}

.prtns .blk_one_circles span:nth-child(4) {
  width: 260px;
  height: 260px
}

.prtns .blk_one_layout {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.prtns .blk_one_text {
  flex: 1 1 0;
  min-width: 0
}

.prtns .blk_one_label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3812;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 32px
}

.prtns .blk_one_h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 32px
}

.prtns .blk_one_h1 em {
  font-style: normal;
  color: #17FFEE;
  background: #461E38;
  border-radius: 6px;
  padding: 0 12px
}

.prtns .blk_one_desc {
  font-size: 21px;
  line-height: 1.5;
  color: #2a1020;
  margin-bottom: 32px;
  max-width: 480px
}

.prtns .blk_one_sub {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  max-width: 440px
}

.prtns .blk_one_img_col {
  flex: 0 0 380px;
  position: relative
}

.prtns .blk_one_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 48px 0 #461e3824
}

.prtns .blk_one_img_wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%
}

.prtns .blk_one_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, #461e3847 0%, transparent 50%), radial-gradient(ellipse at 100% 100%, #461e3838 0%, transparent 50%);
  pointer-events: none;
  border-radius: 12px
}

.prtns .blk_one_divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #461e3826 30%, #17ffee66 50%, #461e3826 70%, transparent);
  margin: 0;
  position: relative
}

.prtns .blk_one_divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #461E38;
  box-shadow: 0 0 0 4px #17ffee59
}

.prtns .blk_two {
  padding: 64px 0;
  background: #461e380a;
  position: relative
}

.prtns .blk_two_circles {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 200px;
  height: 200px;
  pointer-events: none
}

.prtns .blk_two_circles span {
  position: absolute;
  border-radius: 48px;
  border: 1px solid #17ffee1f;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.prtns .blk_two_circles span:nth-child(1) {
  width: 60px;
  height: 60px
}

.prtns .blk_two_circles span:nth-child(2) {
  width: 110px;
  height: 110px
}

.prtns .blk_two_circles span:nth-child(3) {
  width: 160px;
  height: 160px
}

.prtns .blk_two_top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px
}

.prtns .blk_two_intro {
  flex: 0 0 340px
}

.prtns .blk_two_h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #461E38;
  margin-bottom: 16px
}

.prtns .blk_two_h2 span {
  display: block;
  font-size: 21px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: .01em;
  color: #461E38;
  opacity: .6;
  margin-bottom: 8px
}

.prtns .blk_two_body {
  flex: 1 1 0;
  min-width: 0
}

.prtns .blk_two_para {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin-bottom: 16px
}

.prtns .blk_two_partners_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.prtns .prt_card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 6px 18px 0 #461e3814;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default
}

.prtns .prt_card:hover {
  box-shadow: 0 12px 48px 0 #461e3824;
  transform: translateY(-4px)
}

.prtns .prt_card:hover .prt_card_bg {
  background-position: 100% 100%
}

.prtns .prt_card_bg {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(23deg, #461e380a 0%, transparent 60%);
  background-size: 200% 200%;
  background-position: 0 0;
  transition: background-position 1.8s ease-in-out;
  pointer-events: none
}

.prtns .prt_card {
  position: relative
}

.prtns .prt_card_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #461e3814;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.prtns .prt_card_icon svg {
  width: 24px;
  height: 24px
}

.prtns .prt_card_name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #461E38;
  line-height: 1.2
}

.prtns .prt_card_role {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #461E38;
  opacity: .55;
  line-height: 1.2
}

.prtns .prt_card_desc {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  border-top: 1px solid #461e381a;
  padding-top: 16px
}

.prtns .blk_two_divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #461e381f 40%, #17ffee59 50%, #461e381f 60%, transparent);
  margin: 64px 0 0;
  position: relative
}

.prtns .blk_two_divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #17ffeecc;
  box-shadow: 0 0 0 3px #461e3833
}

.prtns .blk_three {
  padding: 64px 0 96px;
  position: relative;
  background: #FDFCFC
}

.prtns .blk_three_inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch
}

.prtns .blk_three_left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.prtns .blk_three_h3 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #461E38
}

.prtns .blk_three_frosted {
  background: #fdfcfca6;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid #461e381a;
  padding: 32px;
  box-shadow: 0 6px 18px 0 #461e3814
}

.prtns .blk_three_frosted_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #461E38;
  margin-bottom: 16px
}

.prtns .blk_three_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column
}

.prtns .blk_three_list li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  padding: 8px 0;
  border-bottom: 1px solid #461e3817;
  display: flex;
  align-items: center;
  gap: 16px
}

.prtns .blk_three_list li:last-child {
  border-bottom: none
}

.prtns .list_dot {
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #461E38;
  flex-shrink: 0
}

.prtns .blk_three_right {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.prtns .blk_three_profiles {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.prtns .prof_card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: #461e380a;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 6px 0 #461e3814;
  transition: box-shadow .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prtns .prof_card:hover {
  box-shadow: 0 6px 18px 0 #461e3814;
  transform: translateY(-2px)
}

.prtns .prof_img_wrap {
  flex: 0 0 72px;
  width: 72px;
  height: 108px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 #461e3814
}

.prtns .prof_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.prtns .prof_info {
  flex: 1 1 0;
  min-width: 0
}

.prtns .prof_name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #461E38;
  line-height: 1.2;
  margin-bottom: 8px
}

.prtns .prof_role {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #461E38;
  opacity: .55;
  margin-bottom: 8px;
  line-height: 1.2
}

.prtns .prof_quote {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  font-style: italic
}

.prtns .blk_three_img_strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.prtns .strip_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #461e3814
}

.prtns .strip_img_wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%
}

.prtns .blk_three_cta_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.prtns .btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #461E38;
  color: #17FFEE;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px 0 #461e3814;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtns .btn_primary:hover {
  box-shadow: 0 12px 48px 0 #461e3824;
  transform: translateY(-2px)
}

.prtns .btn_primary:focus-visible {
  outline: 3px solid #17FFEE !important;
  outline-offset: 3px !important
}

.prtns .btn_primary:active {
  transform: scale(0.97)
}

.prtns .btn_secondary_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 2px solid #461e3833;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden
}

.prtns .btn_secondary_icon:hover {
  border-color: #461E38;
  background: #461e380f
}

.prtns .btn_secondary_icon:focus-visible {
  outline: 3px solid #17FFEE !important;
  outline-offset: 3px !important
}

.prtns .btn_secondary_icon svg {
  width: 20px;
  height: 20px
}

@media (max-width: 1024px) {
  .prtns .blk_one_layout {
    flex-direction: column;
    gap: 32px
  }

  .prtns .blk_one_img_col {
    flex: none;
    width: 100%
  }

  .prtns .blk_one_img_wrap img {
    height: 320px
  }

  .prtns .blk_two_top {
    flex-direction: column;
    gap: 32px
  }

  .prtns .blk_two_intro {
    flex: none;
    width: 100%
  }

  .prtns .blk_two_partners_grid {
    grid-template-columns: 1fr 1fr
  }

  .prtns .blk_three_inner {
    flex-direction: column;
    gap: 32px
  }

  .prtns .blk_three_right {
    flex: none;
    width: 100%
  }
}

@media (max-width: 768px) {
  .prtns .blk_one_h1 {
    font-size: 38px
  }

  .prtns .blk_two_partners_grid {
    grid-template-columns: 1fr
  }

  .prtns .blk_three_img_strip {
    grid-template-columns: 1fr
  }

  .prtns .blk_one {
    padding: 64px 0 32px
  }

  .prtns .pg_inner {
    padding: 0 16px
  }

  .prtns .blk_three_h3 {
    font-size: 28px
  }
}

@media (max-width: 480px) {
  .prtns .blk_one_h1 {
    font-size: 28px
  }

  .prtns .blk_two_h2 {
    font-size: 28px
  }

  .prtns .prof_card {
    flex-direction: column
  }

  .prtns .prof_img_wrap {
    width: 100%;
    height: 140px;
    flex: none
  }
}

.philant {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip
}

.philant .title_blk {
  position: relative;
  padding: 96px 64px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  background: #FDFCFC
}

.philant .title_blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(23deg, #461e380f 0%, transparent 60%);
  pointer-events: none
}

.philant .title_txt_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1
}

.philant .title_problem_label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3812;
  padding: 8px 16px;
  border-radius: 6px;
  width: fit-content
}

.philant .title_h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  color: #461E38;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0
}

.philant .title_h1 span {
  color: #17FFEE;
  -webkit-text-stroke: 1px #461E38
}

.philant .title_subline {
  font-size: 21px;
  line-height: 1.5;
  color: #461E38;
  opacity: .8;
  margin: 0;
  max-width: 480px
}

.philant .title_cta_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.philant .btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #461E38;
  color: #FDFCFC;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px 0 #461e3814;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.philant .btn_primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 48px 0 #461e3824
}

.philant .btn_primary:active {
  transform: scale(0.97)
}

.philant .btn_icon_only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #461e3833;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none
}

.philant .btn_icon_only:hover {
  border-color: #461E38;
  background: #461e380f
}

.philant .btn_icon_only svg {
  width: 20px;
  height: 20px
}

.philant .title_img_col {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px 0 #461e3824;
  transform: scale(0.95);
  animation: settle_in .32s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

@keyframes settle_in {
  to {
    transform: scale(1)
  }
}

.philant .title_img_col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.philant .title_img_col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(23deg, #461e3873 0%, transparent 55%, #461e3840 100%);
  pointer-events: none
}

.philant .wave_divider {
  display: block;
  width: 100%;
  height: 48px;
  background: #FDFCFC
}

.philant .wave_divider svg {
  width: 100%;
  height: 100%;
  display: block
}

.philant .double_border_accent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.philant .double_border_accent .db_line_long {
  height: 2px;
  flex: 3;
  background: #461E38
}

.philant .double_border_accent .db_gap {
  height: 6px;
  flex: 3;
  background: #17ffee80;
  margin-top: 4px
}

.philant .double_border_accent .db_line_short {
  height: 2px;
  flex: 1;
  background: #461E38
}

.philant .about_section {
  background: linear-gradient(23deg, #17ffee14 0%, #FDFCFC 70%);
  padding: 64px 64px 96px
}

.philant .about_grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start
}

.philant .about_sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.philant .sidebar_label_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #461e3826
}

.philant .sidebar_label_item:last-child {
  border-bottom: none
}

.philant .sidebar_icon_wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #461e3812;
  display: flex;
  align-items: center;
  justify-content: center
}

.philant .sidebar_icon_wrap svg {
  width: 20px;
  height: 20px
}

.philant .sidebar_item_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #461E38;
  opacity: .6
}

.philant .sidebar_item_val {
  font-size: 15px;
  font-weight: 600;
  color: #461E38;
  line-height: 1.5
}

.philant .about_body {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.philant .about_h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #461E38;
  margin: 0
}

.philant .about_lead {
  font-size: 21px;
  line-height: 1.5;
  color: #461E38;
  margin: 0;
  max-width: 560px
}

.philant .about_para {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  margin: 0;
  opacity: .85
}

.philant .about_para.narrow {
  max-width: 480px
}

.philant .growth_chart_wrap {
  margin-top: 16px;
  background: #461e380a;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 3px 6px 0 #461e3814
}

.philant .chart_heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #461E38;
  margin: 0 0 32px
}

.philant .chart_steps {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.philant .chart_step_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.philant .chart_step_label {
  font-size: 13px;
  font-weight: 600;
  color: #461E38;
  width: 80px;
  flex-shrink: 0;
  letter-spacing: .04em
}

.philant .chart_bar_track {
  flex: 1;
  height: 28px;
  background: #461e380f;
  border-radius: 6px;
  overflow: hidden;
  position: relative
}

.philant .chart_bar_fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(23deg, #461E38 0%, #461e3899 100%);
  transition: width .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  padding-left: 8px
}

.philant .chart_bar_fill.accent {
  background: linear-gradient(23deg, #17FFEE 0%, #17ffee80 100%) !important
}

.philant .chart_bar_val {
  font-size: 13px;
  font-weight: 700;
  color: #FDFCFC;
  white-space: nowrap
}

.philant .chart_bar_fill.accent .chart_bar_val {
  color: #461E38
}

.philant .chart_step_note {
  font-size: 13px;
  color: #461E38;
  opacity: .6;
  width: 100px;
  flex-shrink: 0;
  text-align: right
}

.philant .service_highlight_strip {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px
}

.philant .svc_pill {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #461E38;
  background: #17ffee2e;
  border: 1px solid #17ffee80;
  border-radius: 48px;
  padding: 8px 16px;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.philant .svc_pill:hover {
  background: #17ffee61;
  transform: scale(1.05)
}

.philant .concentric_hover_wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  cursor: default
}

.philant .concentric_hover_wrap .c_ring {
  position: absolute;
  border-radius: 48px;
  border: 2px solid #461e381f;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.philant .concentric_hover_wrap .c_ring_1 {
  width: 120px;
  height: 120px;
  opacity: .3
}

.philant .concentric_hover_wrap .c_ring_2 {
  width: 80px;
  height: 80px;
  opacity: .5
}

.philant .concentric_hover_wrap .c_ring_3 {
  width: 48px;
  height: 48px;
  background: #461e380f;
  opacity: .8
}

.philant .concentric_hover_wrap:hover .c_ring_1 {
  transform: scale(1.12);
  opacity: .5
}

.philant .concentric_hover_wrap:hover .c_ring_2 {
  transform: scale(1.1);
  opacity: .7
}

.philant .concentric_hover_wrap:hover .c_ring_3 {
  transform: scale(1.08);
  opacity: 1
}

.philant .concentric_hover_wrap .c_inner_icon {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center
}

.philant .concentric_hover_wrap .c_inner_icon svg {
  width: 28px;
  height: 28px
}

@media (max-width: 1024px) {
  .philant .title_blk {
    grid-template-columns: 1fr;
    padding: 64px 32px 32px;
    gap: 32px
  }

  .philant .title_h1 {
    font-size: 38px
  }

  .philant .about_grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 32px
  }

  .philant .about_section {
    padding: 64px 32px
  }

  .philant .about_sidebar {
    flex-direction: row;
    flex-wrap: wrap
  }

  .philant .sidebar_label_item {
    flex: 1 1 180px;
    border-bottom: none;
    border-right: 1px solid #461e3826;
    padding-right: 16px
  }
}

@media (max-width: 768px) {
  .philant .title_blk {
    padding: 32px 16px
  }

  .philant .title_h1 {
    font-size: 28px
  }

  .philant .about_h2 {
    font-size: 28px
  }

  .philant .about_section {
    padding: 32px 16px
  }

  .philant .growth_chart_wrap {
    padding: 16px
  }

  .philant .about_sidebar {
    flex-direction: column
  }

  .philant .sidebar_label_item {
    border-right: none;
    border-bottom: 1px solid #461e3826;
    padding-right: 0
  }
}

@media (max-width: 480px) {
  .philant .title_h1 {
    font-size: 21px
  }

  .philant .chart_step_note {
    display: none
  }
}

.ctus_pg {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative
}

.ctus_pg .grad_bg {
  background: linear-gradient(23deg, #461E38 0%, #5a2748 40%, #f0eaed 100%);
  background-size: 300% 300%;
  animation: bg_shift 12s linear infinite alternate
}

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

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

.ctus_pg .split_row {
  display: flex;
  flex-direction: row;
  min-height: 520px
}

.ctus_pg .split_left {
  width: 30%;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative
}

.ctus_pg .split_left::after {
  content: '';
  position: absolute;
  top: 32px;
  right: 0;
  width: 1px;
  height: calc(100% - 64px);
  background: #fdfcfc2e
}

.ctus_pg .left_tag {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #17FFEE;
  margin-bottom: 16px;
  font-weight: 700
}

.ctus_pg .left_heading {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #FDFCFC;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 32px
}

.ctus_pg .left_desc {
  font-size: 15px;
  line-height: 1.75;
  color: #fdfcfcc7;
  margin-bottom: 32px
}

.ctus_pg .contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus_pg .contact_list li {
  border-bottom: 1px solid #fdfcfc26;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus_pg .contact_list li:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.ctus_pg .c_label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #17FFEE;
  font-weight: 700
}

.ctus_pg .c_val {
  font-size: 15px;
  color: #FDFCFC;
  line-height: 1.5;
  text-decoration: none;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ctus_pg .c_val:hover {
  color: #17FFEE
}

.ctus_pg .corner_geo {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  pointer-events: none
}

.ctus_pg .split_right {
  width: 70%;
  padding: 64px;
  background: #FDFCFC;
  position: relative;
  overflow: hidden
}

.ctus_pg .split_right::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1.5px solid #461e381a;
  border-radius: 48px;
  pointer-events: none
}

.ctus_pg .split_right::after {
  content: '';
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  border: 1.5px solid #17ffee33;
  border-radius: 12px;
  pointer-events: none
}

.ctus_pg .form_tag {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  font-weight: 700;
  margin-bottom: 8px
}

.ctus_pg .form_heading {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 32px
}

.ctus_pg .contact_form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus_pg .field_row {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.ctus_pg .field_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.ctus_pg .field_label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #461E38
}

.ctus_pg .field_input {
  border: 1.5px solid #461e3833;
  border-radius: 6px;
  padding: 16px;
  font-size: 15px;
  color: #461E38;
  background: #fff;
  outline: none;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box
}

.ctus_pg .field_input::placeholder {
  color: #461e3861;
  font-size: 13px
}

.ctus_pg .field_input:focus {
  border-color: #461E38;
  box-shadow: 0 6px 18px 0 #461e3814
}

.ctus_pg .field_textarea {
  resize: vertical;
  min-height: 96px
}

.ctus_pg .subject_toggle_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus_pg .subject_label_row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.ctus_pg .subject_radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ctus_pg .subject_chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 48px;
  border: 1.5px solid #461e3838;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #461E38;
  cursor: pointer;
  transition: background .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  background: transparent;
  user-select: none
}

.ctus_pg .subject_radio:checked+.subject_chip {
  background: #461E38;
  color: #17FFEE;
  border-color: #461E38
}

.ctus_pg .subject_radio:focus+.subject_chip {
  outline: 2px solid #17FFEE;
  outline-offset: 2px
}

.ctus_pg .cond_field_wrap {
  display: none
}

.ctus_pg #subj_book:checked~.cond_book {
  display: flex
}

.ctus_pg #subj_collab:checked~.cond_collab {
  display: flex
}

.ctus_pg .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #461e380a;
  border-radius: 6px
}

.ctus_pg .privacy_check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #461E38;
  margin-top: 2px;
  cursor: pointer
}

.ctus_pg .privacy_text {
  font-size: 13px;
  line-height: 1.75;
  color: #461E38
}

.ctus_pg .privacy_text a {
  color: #461E38;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px
}

.ctus_pg .submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #461E38;
  color: #17FFEE;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #461e3814;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-self: flex-start
}

.ctus_pg .submit_btn:hover {
  background: #5c2748;
  transform: translateY(-2px);
  box-shadow: 0 12px 48px 0 #461e3824
}

.ctus_pg .submit_btn:active {
  transform: scale(0.97)
}

.ctus_pg .submit_btn:focus-visible {
  outline: 2px solid #17FFEE;
  outline-offset: 3px
}

.ctus_pg .ripple_layer {
  position: absolute;
  border-radius: 48px;
  background: #17ffee38;
  transform: scale(0);
  animation: btn_ripple .35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: none;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px
}

@keyframes btn_ripple {
  to {
    transform: scale(4);
    opacity: 0
  }
}

.ctus_pg .wave_div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.ctus_pg .wave_div svg {
  display: block;
  width: 100%
}

.ctus_pg .info_strip {
  background: #FDFCFC;
  padding: 64px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.ctus_pg .img_col {
  width: 38%;
  flex-shrink: 0;
  position: relative
}

.ctus_pg .img_frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px 0 #461e3824;
  position: relative
}

.ctus_pg .img_frame img {
  width: 100%;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: sepia(0.18) saturate(1.2) brightness(0.92)
}

.ctus_pg .img_badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #461E38;
  color: #17FFEE;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px
}

.ctus_pg .detail_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ctus_pg .detail_heading {
  font-size: 21px;
  font-weight: 800;
  color: #461E38;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  margin-bottom: 8px
}

.ctus_pg .detail_body {
  font-size: 15px;
  line-height: 1.75;
  color: #3a1830
}

.ctus_pg .hours_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px
}

.ctus_pg .hours_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #461e381f;
  padding-bottom: 8px;
  font-size: 13px
}

.ctus_pg .hours_day {
  color: #461E38;
  font-weight: 700;
  letter-spacing: .06em
}

.ctus_pg .hours_time {
  color: #3a1830
}

.ctus_pg .pulse_dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #17FFEE;
  display: inline-block;
  animation: dot_pulse 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  margin-right: 8px;
  vertical-align: middle
}

@keyframes dot_pulse {

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

  50% {
    transform: scale(1.5);
    opacity: .6
  }
}

.ctus_pg .open_tag {
  font-size: 13px;
  font-weight: 700;
  color: #461E38;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.ctus_pg .addr_block {
  background: #461e380d;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus_pg .addr_line {
  font-size: 15px;
  color: #461E38;
  line-height: 1.5
}

.ctus_pg .addr_sub {
  font-size: 13px;
  color: #461e3899;
  letter-spacing: .06em
}

@media (max-width: 1024px) {
  .ctus_pg .split_row {
    flex-direction: column
  }

  .ctus_pg .split_left {
    width: 100%;
    padding: 64px 32px 32px
  }

  .ctus_pg .split_left::after {
    display: none
  }

  .ctus_pg .split_right {
    width: 100%;
    padding: 32px
  }

  .ctus_pg .info_strip {
    flex-direction: column;
    padding: 32px
  }

  .ctus_pg .img_col {
    width: 100%
  }
}

@media (max-width: 768px) {
  .ctus_pg .field_row {
    flex-direction: column
  }

  .ctus_pg .left_heading {
    font-size: 28px
  }

  .ctus_pg .form_heading {
    font-size: 21px
  }

  .ctus_pg .info_strip {
    padding: 32px 16px
  }

  .ctus_pg .hours_grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .ctus_pg .split_left {
    padding: 32px 16px
  }

  .ctus_pg .split_right {
    padding: 32px 16px
  }

  .ctus_pg .submit_btn {
    width: 100%
  }
}

.dbt_root {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip
}

.dbt_root .dbt_title_grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 96px 64px;
  align-items: center;
  background: #FDFCFC;
  position: relative
}

.dbt_root .dbt_title_left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1
}

.dbt_root .dbt_label_tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3812;
  padding: 8px 16px;
  border-radius: 6px;
  width: fit-content
}

.dbt_root .dbt_h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  letter-spacing: -.01em;
  margin: 0
}

.dbt_root .dbt_h1 span {
  color: #461E38;
  background: #17ffee38;
  padding: 0 6px;
  border-radius: 6px
}

.dbt_root .dbt_title_sub {
  font-size: 21px;
  line-height: 1.5;
  color: #3a1a30;
  margin: 0;
  max-width: 520px
}

.dbt_root .dbt_title_actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.dbt_root .dbt_btn_primary {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FDFCFC;
  background: #461E38;
  border: none;
  border-radius: 48px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px 0 #461e3814;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.dbt_root .dbt_btn_primary:hover {
  background: #2e1224;
  transform: translateY(-2px);
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_btn_primary:active {
  transform: translateY(0)
}

.dbt_root .dbt_btn_ghost {
  font-size: 15px;
  font-weight: 600;
  color: #461E38;
  background: transparent;
  border: 2px solid #461e384d;
  border-radius: 48px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), background .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.dbt_root .dbt_btn_ghost:hover {
  border-color: #461E38;
  background: #461e380f
}

.dbt_root .dbt_title_img_col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center
}

.dbt_root .dbt_title_img_wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_title_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt_root .dbt_title_img_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, #461e3852 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, #461e3838 0%, transparent 50%);
  pointer-events: none
}

.dbt_root .dbt_dots_path {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0
}

.dbt_root .dbt_title_dec_circles {
  position: absolute;
  top: 32px;
  right: -16px;
  pointer-events: none;
  z-index: 0
}

.dbt_root .dbt_wave_divider {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.dbt_root .dbt_wave_divider svg {
  display: block;
  width: 100%
}

.dbt_root .dbt_outcomes_sec {
  background: #461E38;
  padding: 96px 64px;
  position: relative;
  overflow: hidden
}

.dbt_root .dbt_outcomes_sec::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 320px;
  height: 320px;
  border-radius: 48px;
  background: #17ffee0f;
  transform: rotate(23deg);
  pointer-events: none
}

.dbt_root .dbt_outcomes_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.dbt_root .dbt_outcomes_left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt_root .dbt_sec_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #17FFEE
}

.dbt_root .dbt_h2_light {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #FDFCFC;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0
}

.dbt_root .dbt_outcomes_body {
  font-size: 15px;
  line-height: 1.75;
  color: #fdfcfcd1;
  margin: 0
}

.dbt_root .dbt_outcomes_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_outcomes_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt_root .dbt_outcomes_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none
}

.dbt_root .dbt_outcomes_list li {
  font-size: 15px;
  line-height: 1.75;
  color: #fdfcfce0;
  padding: 16px 0;
  border-bottom: 1px solid #17ffee2e;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.dbt_root .dbt_outcomes_list li:first-child {
  border-top: 1px solid #17ffee2e
}

.dbt_root .dbt_li_num {
  font-size: 13px;
  font-weight: 800;
  color: #17FFEE;
  letter-spacing: .1em;
  min-width: 28px;
  padding-top: 2px
}

.dbt_root .dbt_wave2 {
  background: #461E38
}

.dbt_root .dbt_relations_sec {
  background: linear-gradient(23deg, #461e380d 0%, #17ffee12 100%);
  padding: 64px
}

.dbt_root .dbt_relations_grid {
  display: grid;
  grid-template-columns: 340px 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto
}

.dbt_root .dbt_relations_portrait {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt_root .dbt_portrait_frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0
}

.dbt_root .dbt_portrait_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.dbt_root .dbt_portrait_caption {
  font-size: 13px;
  letter-spacing: .1em;
  color: #461E38;
  text-transform: uppercase;
  font-weight: 700
}

.dbt_root .dbt_relations_mid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px
}

.dbt_root .dbt_h3_dark {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0
}

.dbt_root .dbt_body_text {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin: 0
}

.dbt_root .dbt_relations_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px
}

.dbt_root .dbt_stat_card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 6px 18px 0 #461e3814;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.dbt_root .dbt_stat_num {
  font-size: 38px;
  font-weight: 800;
  color: #461E38;
  line-height: 1.2;
  letter-spacing: -.01em
}

.dbt_root .dbt_stat_label {
  font-size: 13px;
  line-height: 1.5;
  color: #461E38;
  opacity: .7;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.dbt_root .dbt_wave3_wrap {
  background: #FDFCFC
}

.dbt_root .dbt_diff_sec {
  background: #FDFCFC;
  padding: 96px 64px
}

.dbt_root .dbt_diff_inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.dbt_root .dbt_diff_img_col {
  position: relative
}

.dbt_root .dbt_diff_img_wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_diff_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt_root .dbt_diff_float_card {
  position: absolute;
  bottom: 32px;
  right: -32px;
  background: #17FFEE;
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 6px 18px 0 #461e3814;
  max-width: 220px
}

.dbt_root .dbt_diff_float_text {
  font-size: 13px;
  font-weight: 700;
  color: #461E38;
  letter-spacing: .06em;
  line-height: 1.5;
  margin: 0
}

.dbt_root .dbt_diff_text_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px
}

.dbt_root .dbt_diff_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid #461e381f
}

.dbt_root .dbt_diff_item:last-of-type {
  border-bottom: none;
  padding-bottom: 0
}

.dbt_root .dbt_diff_item_num {
  font-size: 50px;
  font-weight: 800;
  color: #461e3814;
  line-height: 1;
  letter-spacing: -.03em
}

.dbt_root .dbt_diff_item_h {
  font-size: 21px;
  font-weight: 800;
  color: #461E38;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2
}

.dbt_root .dbt_diff_item_p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin: 0
}

.dbt_root .dbt_adapt_sec {
  padding: 64px;
  position: relative;
  background: #461E38;
  overflow: hidden
}

.dbt_root .dbt_adapt_circles_dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0
}

.dbt_root .dbt_adapt_circle_a {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 48px;
  background: #17ffee0a;
  top: -96px;
  left: -64px;
  transform: rotate(23deg)
}

.dbt_root .dbt_adapt_circle_b {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 48px;
  background: #17ffee0f;
  bottom: -64px;
  right: 64px;
  transform: rotate(10deg)
}

.dbt_root .dbt_adapt_inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px
}

.dbt_root .dbt_adapt_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.dbt_root .dbt_adapt_heading_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt_root .dbt_adapt_body_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt_root .dbt_body_light {
  font-size: 15px;
  line-height: 1.75;
  color: #fdfcfcd1;
  margin: 0
}

.dbt_root .dbt_adapt_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.dbt_root .dbt_step_card {
  background: #fdfcfc0f;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #17ffee1f;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.dbt_root .dbt_step_card:hover {
  background: #17ffee14;
  border-color: #17ffee4d
}

.dbt_root .dbt_step_n {
  font-size: 38px;
  font-weight: 800;
  color: #17ffee40;
  line-height: 1;
  letter-spacing: -.03em
}

.dbt_root .dbt_step_h {
  font-size: 15px;
  font-weight: 700;
  color: #FDFCFC;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2
}

.dbt_root .dbt_step_p {
  font-size: 13px;
  line-height: 1.75;
  color: #fdfcfcb8;
  margin: 0
}

.dbt_root .dbt_adapt_img_strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.dbt_root .dbt_strip_img_wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.dbt_root .dbt_strip_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.dbt_root .dbt_strip_img_wrap:hover img {
  transform: scale(1.04)
}

.dbt_root .dbt_readiness_sec {
  background: linear-gradient(23deg, #17ffee0f 0%, #461e380a 100%);
  padding: 96px 64px
}

.dbt_root .dbt_readiness_inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: start
}

.dbt_root .dbt_readiness_text_col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt_root .dbt_h2_dark {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #461E38;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0
}

.dbt_root .dbt_readiness_checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.dbt_root .dbt_readiness_checks li {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  padding: 16px 0;
  border-bottom: 1px solid #461e381f;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.dbt_root .dbt_readiness_checks li:first-child {
  border-top: 1px solid #461e381f
}

.dbt_root .dbt_check_dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #17FFEE;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 3px 6px 0 #17ffee14
}

.dbt_root .dbt_readiness_aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt_root .dbt_readiness_img_wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_readiness_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt_root .dbt_honest_note {
  background: #461e380f;
  border-radius: 12px;
  padding: 32px
}

.dbt_root .dbt_honest_note_p {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  font-style: italic;
  margin: 0
}

.dbt_root .dbt_situations_sec {
  background: #FDFCFC;
  padding: 96px 64px
}

.dbt_root .dbt_situations_inner {
  max-width: 1500px;
  margin: 0 auto
}

.dbt_root .dbt_situations_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end
}

.dbt_root .dbt_situations_intro {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt_root .dbt_situations_sub {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin: 0
}

.dbt_root .dbt_situations_portrait_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}

.dbt_root .dbt_portrait_frame_b {
  width: 240px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_portrait_frame_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.dbt_root .dbt_situations_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.dbt_root .dbt_sit_card {
  background: linear-gradient(23deg, #461e380a 0%, #17ffee0f 100%);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 3px 6px 0 #461e3814;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.dbt_root .dbt_sit_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px 0 #461e3824
}

.dbt_root .dbt_sit_icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #461e3814;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.dbt_root .dbt_sit_icon svg {
  width: 20px;
  height: 20px
}

.dbt_root .dbt_sit_h {
  font-size: 15px;
  font-weight: 700;
  color: #461E38;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2
}

.dbt_root .dbt_sit_p {
  font-size: 13px;
  line-height: 1.75;
  color: #2a1020;
  margin: 0
}

.dbt_root .dbt_sit_link {
  font-size: 13px;
  font-weight: 700;
  color: #461E38;
  text-decoration: underline;
  letter-spacing: .06em
}

.dbt_root .dbt_sit_link:hover {
  color: #2e1224
}

.dbt_root .dbt_clip_reveal {
  clip-path: inset(0 50% 0 50%);
  animation: dbt_clip_open .32s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

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

@media (max-width: 1024px) {
  .dbt_root .dbt_title_grid {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px
  }

  .dbt_root .dbt_title_img_col {
    max-width: 320px;
    margin: 0 auto
  }

  .dbt_root .dbt_outcomes_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt_root .dbt_relations_grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .dbt_root .dbt_relations_portrait {
    display: none
  }

  .dbt_root .dbt_diff_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt_root .dbt_diff_float_card {
    position: static;
    max-width: 100%;
    margin-top: 16px
  }

  .dbt_root .dbt_adapt_steps {
    grid-template-columns: 1fr 1fr
  }

  .dbt_root .dbt_adapt_img_strip {
    grid-template-columns: 1fr 1fr
  }

  .dbt_root .dbt_adapt_top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt_root .dbt_readiness_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt_root .dbt_situations_top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt_root .dbt_situations_grid {
    grid-template-columns: 1fr 1fr
  }

  .dbt_root .dbt_outcomes_sec,
  .dbt_root .dbt_diff_sec,
  .dbt_root .dbt_readiness_sec,
  .dbt_root .dbt_situations_sec {
    padding: 64px 32px
  }

  .dbt_root .dbt_relations_sec,
  .dbt_root .dbt_adapt_sec {
    padding: 64px 32px
  }
}

@media (max-width: 768px) {
  .dbt_root .dbt_h1 {
    font-size: 38px
  }

  .dbt_root .dbt_h2_light,
  .dbt_root .dbt_h2_dark {
    font-size: 28px
  }

  .dbt_root .dbt_adapt_steps {
    grid-template-columns: 1fr
  }

  .dbt_root .dbt_adapt_img_strip {
    grid-template-columns: 1fr
  }

  .dbt_root .dbt_situations_grid {
    grid-template-columns: 1fr
  }

  .dbt_root .dbt_relations_grid {
    grid-template-columns: 1fr
  }

  .dbt_root .dbt_diff_float_card {
    display: none
  }

  .dbt_root .dbt_title_grid,
  .dbt_root .dbt_outcomes_sec,
  .dbt_root .dbt_diff_sec,
  .dbt_root .dbt_readiness_sec,
  .dbt_root .dbt_situations_sec,
  .dbt_root .dbt_relations_sec,
  .dbt_root .dbt_adapt_sec {
    padding: 64px 16px
  }
}

@media (max-width: 480px) {
  .dbt_root .dbt_h1 {
    font-size: 28px
  }

  .dbt_root .dbt_stat_num {
    font-size: 28px
  }

  .dbt_root .dbt_title_actions {
    flex-direction: column;
    align-items: flex-start
  }
}

.srvs_pg {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip
}

.srvs_pg * {
  box-sizing: border-box
}

@keyframes slide_from_left {
  from {
    opacity: 0;
    transform: translateX(-48px)
  }

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

.srvs_pg .fade_left {
  animation: slide_from_left .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.srvs_pg .fade_left:nth-child(2) {
  animation-delay: .06s
}

.srvs_pg .fade_left:nth-child(3) {
  animation-delay: .12s
}

.srvs_pg .fade_left:nth-child(4) {
  animation-delay: .18s
}

.srvs_pg .fade_left:nth-child(5) {
  animation-delay: .24s
}

.srvs_pg .top_band {
  position: relative;
  padding: 64px 64px 96px;
  background: linear-gradient(23deg, #461e381f 0%, #17ffee0f 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

.srvs_pg .top_band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: #461e381a;
  border-radius: 48px;
  filter: blur(64px);
  pointer-events: none
}

.srvs_pg .top_band::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 64px;
  width: 200px;
  height: 200px;
  background: #17ffee21;
  border-radius: 48px;
  filter: blur(48px);
  pointer-events: none
}

.srvs_pg .pg_eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3814;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block
}

.srvs_pg .pg_h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a1020;
  margin: 0;
  max-width: 700px
}

.srvs_pg .pg_h1 .accent_word {
  color: #461E38
}

.srvs_pg .pg_sub {
  font-size: 21px;
  line-height: 1.5;
  color: #3a2030;
  max-width: 560px;
  margin: 0
}

.srvs_pg .pg_action_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #FDFCFC;
  background: #461E38;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px 0 #461e3814;
  position: relative;
  overflow: hidden
}

.srvs_pg .pg_action_link:hover {
  background: #5c2848;
  transform: translateY(-2px)
}

.srvs_pg .pg_action_link:focus {
  outline: 3px solid #17FFEE;
  outline-offset: 3px
}

.srvs_pg .cards_band {
  padding: 64px;
  background: #FDFCFC
}

.srvs_pg .cards_band_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #461E38;
  margin-bottom: 32px;
  display: block
}

.srvs_pg .cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.srvs_pg .svc_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px 0 #461e3814;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative
}

.srvs_pg .svc_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px 0 #461e3824
}

.srvs_pg .svc_card:focus-within {
  outline: 3px solid #17FFEE;
  outline-offset: 2px
}

.srvs_pg .svc_card_img_wrap {
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 280px;
  overflow: hidden;
  flex-shrink: 0
}

.srvs_pg .svc_card_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%);
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.srvs_pg .svc_card:hover .svc_card_img_wrap img {
  filter: grayscale(0%)
}

.srvs_pg .svc_card_body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.srvs_pg .svc_tag_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.srvs_pg .svc_tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3814;
  padding: 4px 8px;
  border-radius: 6px
}

.srvs_pg .svc_user_badge {
  font-size: 13px;
  color: #5a3a50;
  background: #17ffee2e;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600
}

.srvs_pg .svc_card_h {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.srvs_pg .svc_card_desc {
  font-size: 15px;
  line-height: 1.5;
  color: #3a2030;
  margin: 0;
  flex: 1
}

.srvs_pg .svc_price_row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid #461e381a;
  padding-top: 8px;
  margin-top: 8px
}

.srvs_pg .svc_price_val {
  font-size: 28px;
  font-weight: 800;
  color: #461E38;
  line-height: 1.2
}

.srvs_pg .svc_price_note {
  font-size: 13px;
  color: #5a3a50;
  line-height: 1.5
}

.srvs_pg .svc_card_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #FDFCFC;
  background: #461E38;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 6px 0 #461e3814;
  margin-top: 8px
}

.srvs_pg .svc_card_link:hover {
  background: #5c2848;
  transform: translateY(-2px)
}

.srvs_pg .svc_card_link:focus {
  outline: 3px solid #17FFEE;
  outline-offset: 2px
}

.srvs_pg .svc_card.wide_card {
  grid-column: span 2;
  flex-direction: row
}

.srvs_pg .svc_card.wide_card .svc_card_img_wrap {
  width: 240px;
  min-width: 240px;
  max-height: none;
  aspect-ratio: unset
}

.srvs_pg .svc_card.wide_card .svc_card_body {
  padding: 32px
}

.srvs_pg .wave_div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.srvs_pg .wave_div svg {
  display: block;
  width: 100%
}

.srvs_pg .mentors_band {
  padding: 64px;
  background: linear-gradient(23deg, #461e380f 0%, #17ffee0d 100%);
  display: flex;
  flex-direction: column;
  gap: 32px
}

.srvs_pg .mentors_head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.srvs_pg .mentors_h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.srvs_pg .mentors_h2 .accent_word {
  color: #461E38
}

.srvs_pg .mentors_sub {
  font-size: 15px;
  line-height: 1.75;
  color: #3a2030;
  max-width: 400px;
  margin: 0
}

.srvs_pg .mentors_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.srvs_pg .mentor_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px 0 #461e3814;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.srvs_pg .mentor_card:hover {
  box-shadow: 0 12px 48px 0 #461e3824
}

.srvs_pg .mentor_portrait {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden
}

.srvs_pg .mentor_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.srvs_pg .mentor_info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvs_pg .mentor_name {
  font-size: 21px;
  font-weight: 800;
  color: #2a1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.srvs_pg .mentor_role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #461E38
}

.srvs_pg .mentor_bio {
  font-size: 15px;
  line-height: 1.5;
  color: #3a2030;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #461e381a
}

.srvs_pg .mentor_no_photo {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(23deg, #461e381a 0%, #17ffee1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.srvs_pg .mentor_no_photo_icon {
  width: 64px;
  height: 64px;
  border-radius: 48px;
  background: #461e381f;
  display: flex;
  align-items: center;
  justify-content: center
}

.srvs_pg .mentor_no_photo_icon svg {
  width: 32px;
  height: 32px
}

.srvs_pg .why_band {
  padding: 96px 64px 64px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.srvs_pg .why_top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap
}

.srvs_pg .why_left {
  flex: 1;
  min-width: 280px
}

.srvs_pg .why_h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a1020;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.srvs_pg .why_h2 .accent_word {
  color: #461E38
}

.srvs_pg .why_lead {
  font-size: 15px;
  line-height: 1.75;
  color: #3a2030;
  margin: 0
}

.srvs_pg .why_right {
  flex: 1.4;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.srvs_pg .why_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #461e381a
}

.srvs_pg .why_item:last-child {
  border-bottom: none
}

.srvs_pg .why_icon_wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: #461e3814;
  display: flex;
  align-items: center;
  justify-content: center
}

.srvs_pg .why_icon_wrap svg {
  width: 20px;
  height: 20px
}

.srvs_pg .why_item_text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.srvs_pg .why_item_h {
  font-size: 15px;
  font-weight: 700;
  color: #2a1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.srvs_pg .why_item_p {
  font-size: 13px;
  line-height: 1.75;
  color: #3a2030;
  margin: 0
}

.srvs_pg .geo_strip {
  padding: 32px 64px;
  background: #461e380a;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 12px;
  margin: 0 64px 64px;
  box-shadow: 0 3px 6px 0 #461e3814
}

.srvs_pg .geo_icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #461E38;
  display: flex;
  align-items: center;
  justify-content: center
}

.srvs_pg .geo_icon svg {
  width: 24px;
  height: 24px
}

.srvs_pg .geo_text {
  flex: 1;
  min-width: 200px
}

.srvs_pg .geo_h {
  font-size: 21px;
  font-weight: 800;
  color: #2a1020;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.srvs_pg .geo_p {
  font-size: 15px;
  line-height: 1.5;
  color: #3a2030;
  margin: 0
}

.srvs_pg .geo_contact_col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srvs_pg .geo_contact_link {
  font-size: 15px;
  font-weight: 600;
  color: #461E38;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.srvs_pg .geo_contact_link:hover {
  color: #5c2848;
  text-decoration: underline
}

.srvs_pg .geo_contact_link:focus {
  outline: 3px solid #17FFEE;
  outline-offset: 2px;
  border-radius: 6px
}

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

  .srvs_pg .svc_card.wide_card {
    grid-column: span 2
  }

  .srvs_pg .mentors_grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .srvs_pg .top_band,
  .srvs_pg .cards_band,
  .srvs_pg .mentors_band,
  .srvs_pg .why_band {
    padding-left: 32px;
    padding-right: 32px
  }

  .srvs_pg .geo_strip {
    margin: 0 32px 64px;
    padding: 32px
  }
}

@media (max-width: 768px) {
  .srvs_pg .pg_h1 {
    font-size: 38px
  }

  .srvs_pg .cards_grid {
    grid-template-columns: 1fr
  }

  .srvs_pg .svc_card.wide_card {
    grid-column: span 1;
    flex-direction: column
  }

  .srvs_pg .svc_card.wide_card .svc_card_img_wrap {
    width: 100%;
    min-width: unset;
    max-height: 280px;
    aspect-ratio: 2/3
  }

  .srvs_pg .mentors_grid {
    grid-template-columns: 1fr
  }

  .srvs_pg .mentors_head {
    flex-direction: column;
    align-items: flex-start
  }

  .srvs_pg .top_band,
  .srvs_pg .cards_band,
  .srvs_pg .mentors_band,
  .srvs_pg .why_band {
    padding-left: 16px;
    padding-right: 16px
  }

  .srvs_pg .geo_strip {
    margin: 0 16px 64px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start
  }

  .srvs_pg .why_top {
    flex-direction: column;
    gap: 32px
  }
}

@media (max-width: 480px) {
  .srvs_pg .pg_h1 {
    font-size: 28px
  }

  .srvs_pg .mentors_h2,
  .srvs_pg .why_h2 {
    font-size: 28px
  }

  .srvs_pg .top_band {
    padding: 32px 16px 64px
  }
}

.abt-us {
  overflow-x: clip;
  position: relative
}

.abt-us .pg-band {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

.abt-us .s1-wrap {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #FDFCFC;
  position: relative
}

.abt-us .s1-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px
}

.abt-us .s1-left {
  flex: 1 1 0;
  min-width: 0
}

.abt-us .s1-right {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px
}

.abt-us .s1-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  background: #461e3812;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.abt-us .s1-h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #461E38;
  margin-bottom: 8px;
  letter-spacing: -.01em
}

.abt-us .s1-h1-sub {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  color: #461E38;
  opacity: .65;
  margin-bottom: 32px
}

.abt-us .s1-portrait-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px 0 #461e3824;
  aspect-ratio: 7/9;
  position: relative
}

.abt-us .s1-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  max-width: 100%;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: saturate(1.1) contrast(1.04)
}

.abt-us .s1-portrait-wrap:hover img {
  transform: scale(1.04)
}

.abt-us .s1-accent-pill {
  background: linear-gradient(23deg, #461E38 0%, #461e3800 100%);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-us .s1-accent-pill-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #17FFEE
}

.abt-us .s1-accent-pill-val {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #FDFCFC
}

.abt-us .s1-accent-pill-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #fdfcfcc7
}

.abt-us .s1-body-text {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin-bottom: 16px
}

.abt-us .s1-body-text:last-child {
  margin-bottom: 0
}

.abt-us .s1-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.abt-us .s1-img-cell {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 #461e3814;
  aspect-ratio: 4/3
}

.abt-us .s1-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .s1-img-cell:hover img {
  transform: scale(1.05)
}

.abt-us .s1-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px
}

.abt-us .s1-div-line {
  flex: 1 1 0;
  height: 1px;
  background: #461e382e
}

.abt-us .s1-div-diamond {
  width: 10px;
  height: 10px;
  background: #461E38;
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0
}

.abt-us .s1-corner-tri-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 56px 56px 0 0;
  border-color: #461e3814 transparent transparent;
  pointer-events: none
}

.abt-us .s1-corner-tri-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 56px 56px;
  border-color: transparent transparent #17ffee1f;
  pointer-events: none
}

.abt-us .s1-wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px
}

.abt-us .s1-wave-divider svg {
  display: block;
  width: 100%
}

.abt-us .s2-wrap {
  padding-top: 64px;
  padding-bottom: 96px;
  background: linear-gradient(23deg, #461e380f 0%, #17ffee0f 100%);
  position: relative
}

.abt-us .s2-corner-tri-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 64px 64px 0;
  border-color: transparent #461e3817 transparent transparent;
  pointer-events: none
}

.abt-us .s2-corner-tri-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 0 0 64px;
  border-color: transparent transparent transparent #17ffee1a;
  pointer-events: none
}

.abt-us .s2-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 64px
}

.abt-us .s2-heading-col {
  flex: 0 0 420px
}

.abt-us .s2-text-col {
  flex: 1 1 0;
  min-width: 0
}

.abt-us .s2-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #461E38;
  margin-bottom: 16px
}

.abt-us .s2-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #461E38;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0
}

.abt-us .s2-body {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin-bottom: 16px
}

.abt-us .s2-body:last-child {
  margin-bottom: 0
}

.abt-us .s2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px
}

.abt-us .s2-card {
  background: #FDFCFC;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 6px 18px 0 #461e3814;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .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
}

.abt-us .s2-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 48px 0 #461e3824
}

.abt-us .s2-card-icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #461E38;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px 0 #461e3814;
  flex-shrink: 0
}

.abt-us .s2-card-icon-bg svg {
  width: 24px;
  height: 24px;
  fill: #17FFEE
}

.abt-us .s2-card-h {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #461E38;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 0
}

.abt-us .s2-card-p {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020;
  margin-bottom: 0
}

.abt-us .s2-card-accent-line {
  height: 3px;
  width: 40px;
  background: #17FFEE;
  border-radius: 6px;
  margin-top: 8px
}

.abt-us .s2-img-bg-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: row;
  align-items: stretch
}

.abt-us .s2-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.abt-us .s2-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .s2-img-bg-wrap:hover .s2-img-bg img {
  transform: scale(1.04)
}

.abt-us .s2-img-overlay {
  position: absolute;
  inset: 0;
  background: #fdfcfcd1;
  z-index: 1
}

.abt-us .s2-img-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  padding: 64px;
  width: 100%
}

.abt-us .s2-team-portrait {
  flex: 0 0 180px
}

.abt-us .s2-team-portrait-img {
  width: 180px;
  height: 180px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 12px 48px 0 #461e3824;
  display: block
}

.abt-us .s2-team-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  max-width: 100%
}

.abt-us .s2-team-text {
  flex: 1 1 0;
  min-width: 0
}

.abt-us .s2-team-name {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #461E38;
  margin-bottom: 8px
}

.abt-us .s2-team-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #461E38;
  opacity: .65;
  margin-bottom: 16px
}

.abt-us .s2-team-quote {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a1020;
  font-style: italic;
  margin-bottom: 16px
}

.abt-us .s2-team-body {
  font-size: 15px;
  line-height: 1.75;
  color: #2a1020
}

.abt-us .s2-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px
}

.abt-us .s2-div-line {
  flex: 1 1 0;
  height: 1px;
  background: #461e3826
}

.abt-us .s2-div-diamond {
  width: 10px;
  height: 10px;
  background: #17FFEE;
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0
}

.abt-us .s2-partners-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap
}

.abt-us .s2-partners-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #461E38;
  opacity: .65;
  flex-shrink: 0
}

.abt-us .s2-partners-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #461E38;
  color: #17FFEE !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 48px;
  padding: 8px 32px;
  text-decoration: none;
  box-shadow: 0 6px 18px 0 #461e3814;
  transition: transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
  overflow: hidden
}

.abt-us .s2-partners-link:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 48px 0 #461e3824
}

.abt-us .s2-partners-link:focus {
  outline: 3px solid #17FFEE;
  outline-offset: 3px
}

.abt-us .s2-partners-link svg {
  width: 18px;
  height: 18px;
  fill: #17FFEE;
  flex-shrink: 0
}

.abt-us .s1-load-anim {
  animation: abt_settle .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes abt_settle {
  from {
    transform: scale(0.95);
    opacity: .6
  }

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

@media (max-width: 1024px) {
  .abt-us .s1-inner {
    flex-direction: column;
    gap: 32px
  }

  .abt-us .s1-right {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
  }

  .abt-us .s1-portrait-wrap {
    max-width: 280px
  }

  .abt-us .s1-accent-pill {
    flex: 1 1 200px
  }

  .abt-us .s2-top-row {
    flex-direction: column;
    gap: 32px
  }

  .abt-us .s2-heading-col {
    flex: 0 0 auto
  }

  .abt-us .s2-grid {
    grid-template-columns: 1fr 1fr
  }

  .abt-us .s2-img-content {
    flex-direction: column;
    gap: 32px;
    padding: 32px
  }

  .abt-us .s2-team-portrait {
    flex: 0 0 auto
  }
}

@media (max-width: 768px) {
  .abt-us .s1-img-row {
    grid-template-columns: 1fr
  }

  .abt-us .s2-grid {
    grid-template-columns: 1fr
  }

  .abt-us .s1-h1 {
    font-size: 38px
  }

  .abt-us .s2-h2 {
    font-size: 28px
  }
}

@media (max-width: 480px) {
  .abt-us .pg-band {
    padding-left: 16px;
    padding-right: 16px
  }

  .abt-us .s1-wrap,
  .abt-us .s2-wrap {
    padding-top: 32px;
    padding-bottom: 32px
  }

  .abt-us .s1-h1 {
    font-size: 28px
  }

  .abt-us .s2-img-content {
    padding: 16px
  }
}

.success_page_main {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background-color: #FDFCFC
}

.success_page_main .success_card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px 0 #461e3824;
  padding: 64px;
  text-align: center
}

.success_page_main .success_icon_wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border-radius: 48px;
  background: linear-gradient(23deg, #461e3814 0%, #17ffee2e 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.success_page_main .success_icon_svg {
  width: 36px;
  height: 36px
}

.success_page_main .success_heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: .04em;
  font-weight: 700;
  text-transform: uppercase;
  color: #461E38;
  margin-bottom: 16px
}

.success_page_main .success_body_text {
  font-size: 15px;
  line-height: 1.75;
  color: #461E38;
  margin-bottom: 32px
}

.success_page_main .success_divider {
  width: 48px;
  height: 2px;
  background: #17FFEE;
  border-radius: 6px;
  margin: 0 auto 32px
}

.success_page_main .success_back_link {
  display: inline-block;
  padding: 16px 32px;
  background: #461E38;
  color: #17FFEE;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 18px 0 #461e3814;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success_page_main .success_back_link:hover {
  background: #17FFEE;
  color: #461E38;
  box-shadow: 0 12px 48px 0 #461e3824
}

.success_page_main .success_back_link:focus {
  outline: 2px solid #461E38;
  outline-offset: 4px
}

@media (max-width: 480px) {
  .success_page_main .success_card {
    padding: 32px 16px
  }

  .success_page_main .success_heading {
    font-size: 21px
  }
}