@import "https://fonts.googleapis.com/css2?family=Literata:wght@400;700&display=swap";

html {
  font-size: 100%
}

body {
  margin: 0
}

.pg-head {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, #fff 0%, #f0f7f6 60%, #e8f4e2 100%);
  border-bottom: 2px solid #CADCB7;
  box-shadow: 0 4px 25px 0 #d3319417;
  font-family: 'Literata', Georgia, serif
}

.pg-head__top-strip {
  background: linear-gradient(90deg, #D33194 0%, #b02278 100%);
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px
}

.pg-head__announce {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: .04em;
  font-family: 'Literata', Georgia, serif;
  display: flex;
  align-items: center;
  gap: 8px
}

.pg-head__announce i {
  font-size: 15px
}

.pg-head__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px
}

.brand-pod {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  flex-shrink: 0
}

.brand-pod__img-cell {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: #1e2a22;
  box-shadow: 0 4px 25px 0 #d3319417 0 0 0 2px #CADCB7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0
}

.brand-pod__img-cell img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block
}

.brand-pod__name {
  font-family: 'Literata', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e2a22;
  letter-spacing: .01em
}

.brand-pod__tagline {
  font-size: 15px;
  color: #4a6340;
  line-height: 1.45;
  font-family: 'Literata', Georgia, serif
}

.pg-head__menu-deck {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.menu-item {
  position: relative
}

.menu-item__lnk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #1e2a22;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  letter-spacing: .02em;
  white-space: nowrap
}

.menu-item__lnk:hover,
.menu-item__lnk:focus {
  background: #CADCB7;
  color: #1e2a22;
  outline: none
}

.menu-item__lnk:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.menu-item__lnk--active {
  background: #CDE2E0;
  color: #1e2a22
}

.menu-item__lnk i {
  font-size: 15px;
  color: #D33194;
  transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.menu-item__lnk:hover i,
.menu-item__lnk:focus i {
  color: #b02278
}

.menu-item--has-sub .menu-item__lnk::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #D33194;
  border-bottom: 2px solid #D33194;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-top: -2px;
  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.menu-item--has-sub:hover .menu-item__lnk::after,
.menu-item--has-sub:focus-within .menu-item__lnk::after {
  transform: rotate(-135deg);
  margin-top: 2px
}

.sub-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 52px 0 #d3319421;
  border: 1px solid #CADCB7;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 200
}

.menu-item--has-sub:hover .sub-drop,
.menu-item--has-sub:focus-within .sub-drop {
  opacity: 1;
  pointer-events: auto
}

.sub-drop__lnk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #1e2a22;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  white-space: nowrap
}

.sub-drop__lnk:hover,
.sub-drop__lnk:focus {
  background: #CDE2E0;
  outline: none
}

.sub-drop__lnk:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.sub-drop__lnk i {
  color: #D33194;
  font-size: 15px
}

.pg-head__contact-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid #CADCB7;
  border-radius: 28px;
  text-decoration: none;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #1e2a22;
  font-weight: 700;
  box-shadow: 0 1px 3px 0 #cadcb70d;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  white-space: nowrap
}

.contact-chip:hover,
.contact-chip:focus {
  box-shadow: 0 4px 25px 0 #d3319417;
  border-color: #D33194;
  outline: none
}

.contact-chip:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.contact-chip i {
  color: #D33194;
  font-size: 15px
}

.pg-foot {
  background: linear-gradient(180deg, #f0f7f6 0%, #e4f0e0 100%);
  border-top: 2px solid #CADCB7;
  font-family: 'Literata', Georgia, serif;
  box-shadow: 0 -4px 25px 0 #cadcb717
}

.pg-foot__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px
}

.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.foot-brand__img-cell {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: #1e2a22;
  box-shadow: 0 4px 25px 0 #d3319417 0 0 0 2px #CADCB7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.foot-brand__img-cell img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block
}

.foot-brand__name {
  font-size: 21px;
  font-weight: 700;
  color: #1e2a22;
  line-height: 1.2;
  font-family: 'Literata', Georgia, serif;
  text-align: center
}

.foot-brand__desc {
  font-size: 15px;
  color: #4a6340;
  line-height: 1.65;
  text-align: center;
  max-width: 480px
}

.foot-nav-deck {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px
}

.foot-nav__lnk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #1e2a22;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px
}

.foot-nav__lnk:hover,
.foot-nav__lnk:focus {
  background: #CADCB7;
  border-color: #CADCB7;
  outline: none
}

.foot-nav__lnk:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.foot-nav__lnk i {
  color: #D33194;
  font-size: 15px
}

.foot-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #1e2a22;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #CADCB7;
  box-shadow: 0 1px 3px 0 #cadcb70d;
  transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px
}

.foot-contact-item:hover,
.foot-contact-item:focus {
  box-shadow: 0 4px 25px 0 #d3319417;
  outline: none
}

.foot-contact-item:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.foot-contact-item i {
  color: #D33194;
  font-size: 15px
}

.foot-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: #CADCB7;
  border: none;
  margin: 0
}

.foot-copy {
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #4a6340;
  line-height: 1.65;
  text-align: center;
  padding-bottom: 36px
}

.cookie-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 4000;
  width: 320px;
  background: #fff;
  border: 1.5px solid #CADCB7;
  border-radius: 16px;
  box-shadow: 0 10px 52px 0 #d3319421;
  padding: 24px;
  font-family: 'Literata', Georgia, serif
}

.cookie-toast__headline {
  font-size: 15px;
  font-weight: 700;
  color: #1e2a22;
  line-height: 1.45;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.cookie-toast__headline i {
  color: #D33194
}

.cookie-toast__desc {
  font-size: 15px;
  color: #4a6340;
  line-height: 1.65;
  margin: 0 0 12px
}

.cookie-toast__expand-btn {
  background: transparent;
  border: 1px dashed #CADCB7;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  color: #1e2a22;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 44px;
  transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cookie-toast__expand-btn:hover,
.cookie-toast__expand-btn:focus {
  border-color: #D33194;
  background: #f9f3f7;
  outline: none
}

.cookie-toast__expand-btn:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.cookie-toast__panel {
  margin-bottom: 12px;
  padding: 12px;
  background: #f0f7f6;
  border-radius: 8px;
  border: 1px solid #CDE2E0
}

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

.cookie-toast__toggle-label {
  font-size: 15px;
  color: #1e2a22;
  line-height: 1.45;
  font-family: 'Literata', Georgia, serif
}

.cookie-toggle-input {
  width: 36px;
  height: 20px;
  cursor: pointer;
  accent-color: #D33194
}

.cookie-toast__actions {
  display: flex;
  gap: 8px
}

.cookie-btn {
  flex: 1;
  padding: 12px 8px;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cookie-btn--accept {
  background: transparent;
  border: 2px solid #D33194;
  color: #D33194
}

.cookie-btn--accept:hover,
.cookie-btn--accept:focus {
  background: #D33194;
  color: #fff;
  outline: none
}

.cookie-btn--accept:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

.cookie-btn--decline {
  background: transparent;
  border: 2px solid #CADCB7;
  color: #4a6340
}

.cookie-btn--decline:hover,
.cookie-btn--decline:focus {
  background: #CADCB7;
  color: #1e2a22;
  outline: none
}

.cookie-btn--decline:focus-visible {
  outline: 2px dashed #D33194;
  outline-offset: 2px
}

@media (max-width: 1024px) {
  .pg-head__body {
    padding: 24px;
    gap: 24px;
    flex-wrap: wrap
  }

  .pg-head__contact-cell {
    display: none
  }

  .pg-head__menu-deck {
    justify-content: flex-start
  }
}

@media (max-width: 640px) {
  .pg-head__body {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
    gap: 12px
  }

  .brand-pod {
    margin-left: 0
  }

  .pg-head__menu-deck {
    width: 100%
  }

  .menu-item__lnk {
    padding: 12px
  }

  .pg-head__top-strip {
    padding: 8px 16px;
    flex-direction: column;
    gap: 4px;
    text-align: center
  }

  .pg-foot__body {
    padding: 36px 16px 24px
  }

  .foot-contact-row {
    flex-direction: column;
    align-items: center
  }

  .cookie-toast {
    width: calc(100vw - 48px);
    left: 24px;
    right: 24px
  }
}

@media (max-width: 360px) {
  .pg-head__body {
    padding: 16px 12px
  }

  .brand-pod__name {
    font-size: 15px
  }

  .menu-item__lnk {
    font-size: 15px;
    padding: 12px 8px
  }

  .cookie-toast {
    width: calc(100vw - 24px);
    left: 12px
  }
}

.policy-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 36px
}

.policy-info p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  color: #2d2d2d
}

.policy-info strong,
.policy-info b {
  font-weight: 700;
  color: #1a1a2e
}

.policy-info a {
  color: #D33194;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .55s ease;
  text-decoration-color: #d3319466
}

.policy-info a:hover {
  color: #a8216f;
  text-decoration-color: #a8216fb3
}

.policy-info a:focus-visible {
  outline: 2px solid #D33194;
  outline-offset: 3px;
  border-radius: 3px
}

.policy-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.45;
  box-shadow: 0 4px 25px 0 #d3319417;
  border-radius: 8px;
  overflow: hidden
}

.policy-info thead {
  background: linear-gradient(135deg, #D33194 0%, #a8216f 100%)
}

.policy-info thead th {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 24px;
  text-align: left
}

.policy-info tbody tr {
  border-bottom: 1px solid #cadcb780;
  transition: background-color .6s ease
}

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

.policy-info tbody tr:nth-child(even) {
  background-color: #cde2e033
}

.policy-info tbody tr:hover {
  background-color: #cadcb74d
}

.policy-info td {
  padding: 12px 24px;
  color: #2d2d2d;
  line-height: 1.45;
  vertical-align: top
}

.policy-info th {
  padding: 12px 24px
}

.policy-info hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d331944d 30%, #cadcb799 70%, transparent 100%);
  margin: 36px 0
}

.policy-info div {
  margin-bottom: 24px
}

@media (max-width: 1024px) {
  .policy-info {
    padding: 72px 24px
  }
}

@media (max-width: 640px) {
  .policy-info {
    padding: 36px 12px
  }

  .policy-info table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px
  }

  .policy-info thead th,
  .policy-info td {
    padding: 8px 12px
  }
}

@media (max-width: 360px) {
  .policy-info {
    padding: 24px 8px
  }

  .policy-info p {
    font-size: 15px
  }
}

.infgrph {
  max-width: 100%;
  overflow-x: clip
}

.infgrph .pg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.infgrph .title-blk {
  background: #fff;
  padding: 72px 0 36px;
  position: relative
}

.infgrph .title-blk .pg-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 36px
}

.infgrph .title-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0
}

.infgrph .title-right {
  flex: 0 0 55%;
  position: relative
}

.infgrph .atm-spot {
  position: absolute;
  border-radius: 28px;
  pointer-events: none
}

.infgrph .atm-spot-a {
  width: 280px;
  height: 280px;
  background: #D33194;
  opacity: .07;
  filter: blur(60px);
  top: -40px;
  right: 20px
}

.infgrph .atm-spot-b {
  width: 200px;
  height: 200px;
  background: #CADCB7;
  opacity: .18;
  filter: blur(40px);
  bottom: 0;
  left: 30px
}

.infgrph .title-dash {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #D33194;
  border-radius: 3px;
  margin-bottom: 24px
}

.infgrph .title-label {
  font-size: 15px;
  letter-spacing: .12em;
  color: #D33194;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.45
}

.infgrph .title-h1 {
  font-size: 51px;
  line-height: 1.2;
  color: #1b1b2e;
  font-style: italic;
  margin-bottom: 24px
}

.infgrph .title-sub {
  font-size: 21px;
  line-height: 1.65;
  color: #3a3a4a;
  max-width: 380px
}

.infgrph .img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #CADCB7;
  box-shadow: 0 10px 52px 0 #d3319421
}

.infgrph .img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infgrph .img-frame:hover img {
  filter: brightness(1.05)
}

.infgrph .scanline-ov {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, #d331940a 3px, #d331940a 4px);
  pointer-events: none;
  border-radius: 16px
}

.infgrph .dbl-border {
  display: inline-block;
  border: 2px solid #D33194;
  padding: 3px;
  border-radius: 8px;
  margin-top: 24px
}

.infgrph .dbl-border-in {
  border: 2px solid #CADCB7;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 15px;
  color: #D33194;
  letter-spacing: .06em;
  line-height: 1.45
}

.infgrph .data-blk {
  background: linear-gradient(31deg, #CDE2E0 0%, #fff 100%);
  padding: 72px 0;
  position: relative;
  animation: bg-warm 12s ease-in-out infinite
}

@keyframes bg-warm {
  0% {
    background: linear-gradient(31deg, #CDE2E0 0%, #fff 100%)
  }

  50% {
    background: linear-gradient(31deg, #CADCB7 0%, #fff 100%)
  }

  100% {
    background: linear-gradient(31deg, #CDE2E0 0%, #fff 100%)
  }
}

.infgrph .tri-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none
}

.infgrph .tri-div svg {
  display: block
}

.infgrph .data-blk .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.infgrph .sec-label {
  font-size: 15px;
  letter-spacing: .12em;
  color: #D33194;
  text-transform: uppercase;
  line-height: 1.45;
  margin-bottom: 8px
}

.infgrph .sec-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #1b1b2e;
  font-style: italic;
  margin-bottom: 8px
}

.infgrph .sec-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a4a;
  max-width: 560px
}

.infgrph .three-col {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 24px;
  align-items: start
}

.infgrph .col-card {
  background: #ffffffb3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #cadcb780;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 25px 0 #d3319417;
  transition: box-shadow .55s ease, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infgrph .col-card:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-4px)
}

.infgrph .col-card-h {
  font-size: 21px;
  line-height: 1.2;
  color: #1b1b2e;
  font-style: italic;
  margin-bottom: 12px
}

.infgrph .col-card-p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a4a
}

.infgrph .stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px
}

.infgrph .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.infgrph .stat-num {
  font-size: 51px;
  line-height: 1.2;
  color: #D33194;
  font-style: italic
}

.infgrph .stat-lbl {
  font-size: 15px;
  line-height: 1.45;
  color: #3a3a4a;
  letter-spacing: .06em
}

.infgrph .col-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.infgrph .col-card-list li {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a4a;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.infgrph .li-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #D33194;
  flex-shrink: 0;
  margin-top: 6px
}

.infgrph .timeline-wrap {
  margin-top: 12px
}

.infgrph .tl-h {
  font-size: 21px;
  line-height: 1.2;
  color: #1b1b2e;
  font-style: italic;
  margin-bottom: 24px
}

.infgrph .tl-track {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start
}

.infgrph .tl-line {
  position: absolute;
  top: 12px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(31deg, #D33194, #CADCB7);
  border-radius: 3px
}

.infgrph .tl-point {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1
}

.infgrph .tl-dot {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #fff;
  border: 3px solid #D33194;
  box-shadow: 0 1px 3px 0 #d331940d;
  flex-shrink: 0;
  transition: background .5s ease, transform .5s ease
}

.infgrph .tl-point:hover .tl-dot {
  background: #D33194;
  transform: scale(1.2)
}

.infgrph .tl-label {
  font-size: 15px;
  line-height: 1.45;
  color: #1b1b2e;
  font-style: italic;
  text-align: center
}

.infgrph .tl-detail {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a4a;
  text-align: center
}

.infgrph .hover-ul-wrap {
  margin-top: 8px
}

.infgrph .hover-ul-wrap:hover .hu-item .hu-line {
  width: 100%
}

.infgrph .hu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.infgrph .hu-item {
  font-size: 15px;
  line-height: 1.65;
  color: #1b1b2e;
  position: relative;
  padding-bottom: 4px;
  display: inline-block
}

.infgrph .hu-line {
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(31deg, #D33194, transparent);
  border-radius: 3px;
  transition: width .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.infgrph .hu-item:nth-child(2) .hu-line {
  transition-delay: .1s
}

.infgrph .hu-item:nth-child(3) .hu-line {
  transition-delay: .2s
}

.infgrph .hu-item:nth-child(4) .hu-line {
  transition-delay: .3s
}

.infgrph .hu-item:nth-child(5) .hu-line {
  transition-delay: .4s
}

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

  .infgrph .title-h1 {
    font-size: 51px
  }
}

@media (max-width: 640px) {
  .infgrph .title-blk .pg-wrap {
    flex-direction: column
  }

  .infgrph .title-right {
    flex: 0 0 auto
  }

  .infgrph .title-h1 {
    font-size: 27px
  }

  .infgrph .three-col {
    grid-template-columns: 1fr
  }

  .infgrph .tl-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .infgrph .tl-line {
    top: 12px;
    left: 12px;
    right: auto;
    bottom: 12px;
    width: 3px;
    height: auto
  }

  .infgrph .tl-point {
    flex-direction: row;
    align-items: flex-start;
    text-align: left
  }

  .infgrph .tl-label,
  .infgrph .tl-detail {
    text-align: left
  }

  .infgrph .stat-row {
    gap: 12px
  }
}

@media (max-width: 360px) {
  .infgrph .pg-wrap {
    padding: 0 12px
  }

  .infgrph .title-blk {
    padding: 36px 0 24px
  }
}

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

.abt-pg .grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#d331940a 1px, transparent 1px), linear-gradient(90deg, #d331940a 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0
}

.abt-pg .sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0
}

.abt-pg .sec-divider span {
  display: block;
  width: 48px;
  height: 1px;
  background: #D33194;
  opacity: .35
}

.abt-pg .sec-divider svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0
}

.abt-pg .pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(31deg, #d331941a, #cadcb733);
  border: 1px solid #d331942e;
  border-radius: 28px;
  padding: 4px 12px;
  font-size: 15px;
  letter-spacing: .06em;
  color: #D33194;
  font-weight: 600
}

.abt-pg .corner-frame {
  position: relative
}

.abt-pg .corner-frame::before,
.abt-pg .corner-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none
}

.abt-pg .corner-frame::before {
  top: 0;
  left: 0;
  border-top: 2px solid #d331944d;
  border-left: 2px solid #d331944d
}

.abt-pg .corner-frame::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #cadcb780;
  border-right: 2px solid #cadcb780
}

.abt-pg .ttl-blk {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f4f9f8 100%);
  padding: 72px 0 36px;
  overflow: hidden
}

.abt-pg .ttl-blk .inner-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 36px
}

.abt-pg .ttl-blk .txt-side {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1
}

.abt-pg .ttl-blk .h-sub {
  font-size: 21px;
  line-height: 1.45;
  color: #3a3a3a;
  font-style: italic;
  margin: 0
}

.abt-pg .ttl-blk .h-main {
  font-size: 68px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
  font-weight: 800
}

.abt-pg .ttl-blk .h-main em {
  font-style: italic;
  color: #D33194
}

.abt-pg .ttl-blk .h-accent {
  font-size: 27px;
  line-height: 1.45;
  color: #2c2c2c;
  margin: 0;
  font-style: italic
}

.abt-pg .ttl-blk .lead-para {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  max-width: 520px;
  margin: 0
}

.abt-pg .ttl-blk .img-strip {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1
}

.abt-pg .ttl-blk .img-strip .img-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #d3319426;
  box-shadow: 0 10px 52px 0 #d3319421;
  position: relative
}

.abt-pg .ttl-blk .img-strip .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #d331942e, transparent 60%);
  pointer-events: none
}

.abt-pg .ttl-blk .img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05) sepia(0.12)
}

.abt-pg .ttl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(31deg, #D33194, #b02278);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .35s ease;
  box-shadow: 0 4px 25px 0 #d3319417;
  align-self: flex-start
}

.abt-pg .ttl-btn:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-2px)
}

.abt-pg .ttl-btn:active {
  transform: translateY(0)
}

.abt-pg .abt-sec {
  background: linear-gradient(180deg, #f4f9f8 0%, #CDE2E0 60%, #fff 100%);
  padding: 72px 0 36px
}

.abt-pg .abt-sec .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.abt-pg .abt-sec .top-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 36px
}

.abt-pg .abt-sec .top-row .left-col {
  flex: 1 1 0
}

.abt-pg .abt-sec .top-row .right-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .abt-sec .sec-h2 {
  font-size: 51px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 24px;
  font-style: italic
}

.abt-pg .abt-sec .sec-h2 strong {
  color: #D33194;
  font-style: normal
}

.abt-pg .abt-sec .body-txt {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 12px
}

.abt-pg .abt-sec .body-txt a {
  color: #D33194;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .5s ease
}

.abt-pg .abt-sec .body-txt a:hover {
  color: #b02278
}

.abt-pg .abt-sec .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.abt-pg .abt-sec .stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 25px 0 #cadcb717;
  border: 1px solid #cadcb780;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .abt-sec .stat-card:hover {
  box-shadow: 0 10px 52px 0 #d3319421
}

.abt-pg .abt-sec .stat-num {
  font-size: 51px;
  line-height: 1.2;
  font-weight: 800;
  color: #D33194;
  display: block
}

.abt-pg .abt-sec .stat-lbl {
  font-size: 15px;
  line-height: 1.45;
  color: #555;
  display: block;
  margin-top: 4px
}

.abt-pg .abt-sec .img-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px
}

.abt-pg .abt-sec .img-cell {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #cadcb766;
  box-shadow: 0 1px 3px 0 #cadcb70d
}

.abt-pg .abt-sec .img-cell img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .abt-sec .img-cell:hover img {
  transform: scale(1.04)
}

.abt-pg .team-sec {
  background: linear-gradient(180deg, #fff 0%, #CADCB7 80%, #f4f9f8 100%);
  padding: 72px 0
}

.abt-pg .team-sec .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.abt-pg .team-sec .sec-h2 {
  font-size: 27px;
  line-height: 1.45;
  color: #1b1b1b;
  margin: 0 0 36px;
  font-style: italic;
  text-align: center
}

.abt-pg .team-sec .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px
}

.abt-pg .team-sec .t-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 25px 0 #cadcb717;
  border: 1px solid #cadcb759;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s ease
}

.abt-pg .team-sec .t-card:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-3px)
}

.abt-pg .team-sec .t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 28px;
  background: linear-gradient(31deg, #D33194, #CADCB7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: soft-pulse 3s ease-in-out infinite
}

@keyframes soft-pulse {

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

  50% {
    transform: scale(1.02)
  }
}

.abt-pg .team-sec .t-avatar i {
  font-size: 21px;
  color: #fff
}

.abt-pg .team-sec .t-name {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0
}

.abt-pg .team-sec .t-role {
  font-size: 15px;
  line-height: 1.45;
  color: #D33194;
  font-style: italic;
  margin: 0
}

.abt-pg .team-sec .t-bio {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0
}

.abt-pg .team-sec .subscribe-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 25px 0 #cadcb717;
  border: 1px solid #cadcb766;
  max-width: 640px;
  margin: 0 auto
}

.abt-pg .team-sec .sub-h {
  font-size: 21px;
  line-height: 1.45;
  color: #1b1b1b;
  margin: 0 0 8px;
  font-style: italic
}

.abt-pg .team-sec .sub-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 24px
}

.abt-pg .team-sec .sub-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt-pg .team-sec .field-wrap {
  position: relative;
  display: flex;
  align-items: center
}

.abt-pg .team-sec .field-wrap i {
  position: absolute;
  left: 12px;
  color: #D33194;
  font-size: 15px;
  pointer-events: none
}

.abt-pg .team-sec .sub-input {
  width: 100%;
  padding: 12px 12px 12px 36px;
  border: 1px solid #cadcb799;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: #222;
  background: #f9fdf9;
  outline: none;
  transition: border-color .55s ease, box-shadow .55s ease;
  box-sizing: border-box
}

.abt-pg .team-sec .sub-input:focus {
  border-color: #D33194;
  box-shadow: 0 0 0 3px #d3319417
}

.abt-pg .team-sec .sub-input::placeholder {
  color: #aaa
}

.abt-pg .team-sec .check-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.abt-pg .team-sec .check-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #D33194;
  flex-shrink: 0
}

.abt-pg .team-sec .check-lbl {
  font-size: 15px;
  line-height: 1.65;
  color: #555
}

.abt-pg .team-sec .sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(31deg, #D33194, #b02278);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .4s ease;
  box-shadow: 0 4px 25px 0 #d3319417
}

.abt-pg .team-sec .sub-btn:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-2px)
}

.abt-pg .team-sec .sub-btn:active {
  transform: translateY(0)
}

@media (max-width: 1024px) {
  .abt-pg .ttl-blk .h-main {
    font-size: 51px
  }

  .abt-pg .ttl-blk .img-strip {
    width: 200px
  }

  .abt-pg .abt-sec .img-row {
    grid-template-columns: 1fr 1fr
  }

  .abt-pg .abt-sec .img-row .img-cell:last-child {
    display: none
  }

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

@media (max-width: 640px) {
  .abt-pg .ttl-blk {
    padding: 36px 0 24px
  }

  .abt-pg .ttl-blk .inner-row {
    flex-direction: column
  }

  .abt-pg .ttl-blk .img-strip {
    width: 100%
  }

  .abt-pg .ttl-blk .img-strip .img-wrap {
    min-height: 220px
  }

  .abt-pg .ttl-blk .h-main {
    font-size: 27px
  }

  .abt-pg .ttl-blk .h-accent {
    font-size: 21px
  }

  .abt-pg .abt-sec .top-row {
    flex-direction: column
  }

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

  .abt-pg .abt-sec .img-row {
    grid-template-columns: 1fr
  }

  .abt-pg .abt-sec .img-row .img-cell:not(:first-child) {
    display: none
  }

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

  .abt-pg .team-sec .subscribe-wrap {
    padding: 24px
  }

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

@media (max-width: 360px) {
  .abt-pg .ttl-blk .h-main {
    font-size: 21px
  }

  .abt-pg .abt-sec .stat-num {
    font-size: 27px
  }
}

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

.prm-root .prm-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.prm-root .accent-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(31deg, #D33194, transparent);
  border-radius: 3px;
  margin-bottom: 12px
}

.prm-root .zigzag-div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.prm-root .zigzag-div svg {
  display: block;
  width: 100%
}

.prm-root .ttl-blk {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 36px;
  position: relative
}

.prm-root .ttl-blk .ttl-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: center
}

.prm-root .ttl-blk .ttl-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #CADCB7;
  box-shadow: 0 4px 25px 0 #d3319417
}

.prm-root .ttl-blk .ttl-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

.prm-root .ttl-blk .ttl-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 40%, #ffffff73 100%);
  pointer-events: none
}

.prm-root .ttl-blk .ttl-img-wrap.right-img::after {
  background: radial-gradient(ellipse at 70% 50%, transparent 40%, #ffffff73 100%)
}

.prm-root .ttl-blk .ttl-text {
  text-align: center;
  padding: 24px 12px;
  position: relative
}

.prm-root .ttl-blk .ttl-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.prm-root .ttl-blk .shape-a {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 2px solid #cadcb759;
  top: -12px;
  left: -24px;
  transform: rotate(18deg)
}

.prm-root .ttl-blk .shape-b {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 2px solid #cde2e066;
  bottom: 0;
  right: -12px;
  transform: rotate(-12deg)
}

.prm-root .ttl-blk .ttl-label {
  font-size: 15px;
  letter-spacing: .12em;
  color: #D33194;
  margin-bottom: 12px;
  display: block
}

.prm-root .ttl-blk .ttl-h1 {
  font-size: 51px;
  line-height: 1.2;
  color: #1a0a14;
  margin-bottom: 24px;
  font-style: italic
}

.prm-root .ttl-blk .ttl-sub {
  font-size: 21px;
  line-height: 1.45;
  color: #3a2030;
  margin-bottom: 24px
}

.prm-root .ttl-blk .ttl-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D33194;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 25px 0 #d3319417;
  transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease;
  position: relative;
  overflow: hidden
}

.prm-root .ttl-blk .ttl-cta:hover {
  background: #b8267e;
  box-shadow: 0 10px 52px 0 #d3319421
}

.prm-root .ttl-blk .ttl-cta:focus {
  outline: 3px solid #D33194;
  outline-offset: 3px
}

.prm-root .ttl-blk .ttl-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #ffffff80;
  transition: width .7s ease
}

.prm-root .ttl-blk .ttl-cta:active::after {
  width: 100%
}

@keyframes prm-appear {
  from {
    opacity: 0;
    transform: rotate(-2deg) translateY(16px)
  }

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

.prm-root .ttl-blk .ttl-inner {
  animation: prm-appear .75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.prm-root .appr-blk {
  background: linear-gradient(180deg, #f7f2f5 50%, #CADCB7 100%);
  padding-top: 72px;
  padding-bottom: 0
}

.prm-root .appr-blk .appr-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start
}

.prm-root .appr-blk .appr-sidebar {
  padding-top: 8px
}

.prm-root .appr-blk .appr-sidebar .appr-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #1a0a14;
  font-style: italic;
  margin-bottom: 12px
}

.prm-root .appr-blk .appr-sidebar .appr-note {
  font-size: 15px;
  line-height: 1.65;
  color: #4a2840
}

.prm-root .appr-blk .appr-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.prm-root .appr-blk .appr-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #CADCB7;
  box-shadow: 0 1px 3px 0 #d331940d;
  transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s ease
}

.prm-root .appr-blk .appr-card:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-4px)
}

.prm-root .appr-blk .appr-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(31deg, #D33194, #d331941a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px
}

.prm-root .appr-blk .appr-card .card-h {
  font-size: 15px;
  line-height: 1.45;
  color: #1a0a14;
  font-style: italic;
  margin-bottom: 8px
}

.prm-root .appr-blk .appr-card .card-p {
  font-size: 15px;
  line-height: 1.65;
  color: #4a2840
}

.prm-root .appr-blk .appr-img-strip {
  margin-top: 36px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid #CADCB7;
  border-bottom: none;
  box-shadow: 0 4px 25px 0 #d3319417
}

.prm-root .appr-blk .appr-img-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

.prm-root .comm-blk {
  background: #CDE2E0;
  padding-top: 72px;
  padding-bottom: 72px
}

.prm-root .comm-blk .comm-head {
  text-align: center;
  margin-bottom: 36px
}

.prm-root .comm-blk .comm-head .accent-bar {
  margin-left: auto;
  margin-right: auto
}

.prm-root .comm-blk .comm-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #0d2e2c;
  font-style: italic;
  margin-bottom: 8px
}

.prm-root .comm-blk .comm-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #1a3836;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.prm-root .comm-blk .comm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.prm-root .comm-blk .comm-img-col {
  grid-column: span 1
}

.prm-root .comm-blk .comm-img-col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #0d2e2c26;
  box-shadow: 0 4px 25px 0 #cadcb717;
  display: block
}

.prm-root .comm-blk .comm-quotes {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.prm-root .comm-blk .comm-q {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px 0 #cadcb70d;
  transition: box-shadow .7s ease
}

.prm-root .comm-blk .comm-q:hover {
  box-shadow: 0 10px 52px 0 #cadcb721
}

.prm-root .comm-blk .comm-q .q-text {
  font-size: 15px;
  line-height: 1.65;
  color: #1a3836;
  margin-bottom: 12px
}

.prm-root .comm-blk .comm-q .q-name {
  font-size: 15px;
  color: #D33194;
  letter-spacing: .06em
}

.prm-root .hesit-blk {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 72px
}

.prm-root .hesit-blk .hesit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.prm-root .hesit-blk .hesit-img {
  position: relative
}

.prm-root .hesit-blk .hesit-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #CADCB7;
  box-shadow: 0 4px 25px 0 #d3319417;
  display: block
}

.prm-root .hesit-blk .hesit-img .hesit-badge {
  position: absolute;
  bottom: 24px;
  right: -12px;
  background: #D33194;
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  box-shadow: 0 4px 25px 0 #d3319417
}

.prm-root .hesit-blk .hesit-text .hesit-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #1a0a14;
  font-style: italic;
  margin-bottom: 12px
}

.prm-root .hesit-blk .hesit-text .hesit-p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a2030;
  margin-bottom: 12px
}

.prm-root .hesit-blk .hesit-text .hesit-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.prm-root .hesit-blk .hesit-text .hesit-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #3a2030
}

.prm-root .hesit-blk .hesit-text .hesit-items li .hi-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #D33194;
  flex-shrink: 0;
  margin-top: 8px
}

.prm-root .invest-blk {
  background: linear-gradient(31deg, #D33194, #d3319414);
  padding-top: 72px;
  padding-bottom: 72px
}

.prm-root .invest-blk .invest-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.prm-root .invest-blk .invest-text .invest-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #fff;
  font-style: italic;
  margin-bottom: 12px
}

.prm-root .invest-blk .invest-text .invest-p {
  font-size: 15px;
  line-height: 1.65;
  color: #ffffffe6;
  margin-bottom: 12px
}

.prm-root .invest-blk .invest-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.prm-root .invest-blk .tier-row {
  background: #ffffff1f;
  border: 1px solid #ffffff40;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .55s ease, border-color .6s ease
}

.prm-root .invest-blk .tier-row:hover {
  background: #ffffff38;
  border-color: #ffffff80
}

.prm-root .invest-blk .tier-row .tier-name {
  font-size: 15px;
  color: #fff
}

.prm-root .invest-blk .tier-row .tier-price {
  font-size: 21px;
  color: #fff;
  line-height: 1.2
}

.prm-root .invest-blk .invest-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff4d;
  box-shadow: 0 10px 52px 0 #d3319421
}

.prm-root .invest-blk .invest-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block
}

.prm-root .curr-blk {
  background: #f5f0f4;
  padding-top: 72px;
  padding-bottom: 72px
}

.prm-root .curr-blk .curr-head {
  margin-bottom: 36px
}

.prm-root .curr-blk .curr-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #1a0a14;
  font-style: italic;
  margin-bottom: 8px
}

.prm-root .curr-blk .curr-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a2030;
  max-width: 480px
}

.prm-root .curr-blk .curr-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.prm-root .curr-blk .curr-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.prm-root .curr-blk .metric-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #CADCB7;
  box-shadow: 0 1px 3px 0 #d331940d;
  text-align: center;
  transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.prm-root .curr-blk .metric-box:hover {
  box-shadow: 0 10px 52px 0 #d3319421
}

.prm-root .curr-blk .metric-box .met-num {
  font-size: 51px;
  line-height: 1.2;
  color: #D33194;
  display: block
}

.prm-root .curr-blk .metric-box .met-label {
  font-size: 15px;
  line-height: 1.45;
  color: #3a2030
}

.prm-root .curr-blk .curr-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.prm-root .curr-blk .curr-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #CADCB7;
  box-shadow: 0 4px 25px 0 #d3319417
}

.prm-root .curr-blk .curr-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block
}

.prm-root .curr-blk .curr-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.prm-root .curr-blk .curr-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #3a2030
}

.prm-root .curr-blk .curr-points li i {
  color: #D33194;
  font-size: 15px;
  flex-shrink: 0
}

.prm-root .curve-conn {
  display: flex;
  justify-content: center;
  padding: 8px 0
}

.prm-root .curve-conn svg {
  display: block
}

@media (max-width: 1024px) {
  .prm-root .ttl-blk .ttl-inner {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 12px
  }

  .prm-root .appr-blk .appr-grid {
    grid-template-columns: 1fr
  }

  .prm-root .appr-blk .appr-sidebar .appr-h2 {
    font-size: 21px
  }

  .prm-root .hesit-blk .hesit-layout {
    grid-template-columns: 1fr
  }

  .prm-root .invest-blk .invest-inner {
    grid-template-columns: 1fr
  }

  .prm-root .curr-blk .curr-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .prm-root .ttl-blk .ttl-inner {
    grid-template-columns: 1fr
  }

  .prm-root .ttl-blk .ttl-img-wrap:first-child {
    display: none
  }

  .prm-root .ttl-blk .ttl-img-wrap.right-img {
    display: none
  }

  .prm-root .ttl-blk .ttl-h1 {
    font-size: 27px
  }

  .prm-root .ttl-blk .ttl-sub {
    font-size: 15px
  }

  .prm-root .appr-blk .appr-main {
    grid-template-columns: 1fr
  }

  .prm-root .comm-blk .comm-layout {
    grid-template-columns: 1fr
  }

  .prm-root .comm-blk .comm-img-col {
    grid-column: span 1
  }

  .prm-root .comm-blk .comm-quotes {
    grid-column: span 1
  }

  .prm-root .hesit-blk .hesit-img .hesit-badge {
    right: 0;
    bottom: 12px
  }

  .prm-root .curr-blk .curr-metrics {
    grid-template-columns: 1fr 1fr
  }

  .prm-root .curr-blk .metric-box .met-num {
    font-size: 27px
  }
}

@media (max-width: 360px) {
  .prm-root .ttl-blk {
    padding-top: 36px
  }

  .prm-root .curr-blk .curr-metrics {
    grid-template-columns: 1fr
  }
}

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

.ctus-pg .fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.ctus-pg .fade-in:nth-child(1) {
  animation-delay: .1s
}

.ctus-pg .fade-in:nth-child(2) {
  animation-delay: .25s
}

.ctus-pg .fade-in:nth-child(3) {
  animation-delay: .4s
}

.ctus-pg .fade-in:nth-child(4) {
  animation-delay: .55s
}

.ctus-pg .fade-in:nth-child(5) {
  animation-delay: .7s
}

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

.ctus-pg .accent-word {
  color: #D33194
}

.ctus-pg .grad-line {
  display: inline-block;
  position: relative
}

.ctus-pg .grad-line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(31deg, #D33194, transparent);
  border-radius: 3px
}

.ctus-pg .pg-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus-pg .zigzag-div {
  width: 100%;
  line-height: 0
}

.ctus-pg .zigzag-div svg {
  width: 100%;
  display: block
}

.ctus-pg .reach-band {
  padding: 72px 0 36px;
  background: #fff;
  border-right: 3px solid #d3319421;
  position: relative
}

.ctus-pg .reach-split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start
}

.ctus-pg .reach-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus-pg .reach-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus-pg .reach-eyebrow {
  font-size: 15px;
  letter-spacing: .12em;
  color: #D33194;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.45
}

.ctus-pg .reach-h1 {
  font-size: 51px;
  line-height: 1.2;
  margin: 0;
  color: #1b1b1b;
  font-style: italic
}

.ctus-pg .reach-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0
}

.ctus-pg .reach-img-wrap {
  position: relative;
  display: inline-block
}

.ctus-pg .reach-img {
  width: 100%;
  max-width: 440px;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 16px 0 16px 0;
  border: 2px solid #cadcb799;
  box-shadow: 0 4px 25px 0 #d3319417;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%)
}

.ctus-pg .deco-shape {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-radius: 0 16px 0 16px;
  background: linear-gradient(31deg, #CADCB7, #CDE2E0);
  opacity: .55;
  pointer-events: none
}

.ctus-pg .deco-dot {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(31deg, #D33194, transparent);
  opacity: .35;
  pointer-events: none
}

.ctus-pg .info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ctus-pg .info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #f5f9f5;
  box-shadow: 0 1px 3px 0 #cadcb70d;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .6s ease
}

.ctus-pg .info-cards:hover .info-card:not(:hover) {
  filter: blur(0.6px);
  opacity: .8
}

.ctus-pg .info-card:hover {
  box-shadow: 0 10px 52px 0 #d3319421;
  background: #fff
}

.ctus-pg .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(31deg, #D33194, #CADCB7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 21px
}

.ctus-pg .info-label {
  font-size: 15px;
  color: #888;
  margin: 0 0 4px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ctus-pg .info-val {
  font-size: 15px;
  color: #1b1b1b;
  margin: 0;
  line-height: 1.45;
  font-weight: 600
}

.ctus-pg .info-val a {
  color: #1b1b1b;
  text-decoration: underline;
  text-decoration-color: #D33194;
  text-decoration-thickness: 2px;
  transition: color .5s ease
}

.ctus-pg .info-val a:hover {
  color: #D33194
}

.ctus-pg .trust-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 8px
}

.ctus-pg .trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ctus-pg .trust-num {
  font-size: 27px;
  font-weight: 700;
  color: #D33194;
  line-height: 1.2
}

.ctus-pg .trust-lbl {
  font-size: 15px;
  color: #555;
  line-height: 1.45
}

.ctus-pg .form-band {
  padding: 36px 0 72px;
  background: linear-gradient(31deg, #cadcb72e, #cde2e038);
  position: relative
}

.ctus-pg .form-split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start
}

.ctus-pg .form-aside {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px
}

.ctus-pg .form-aside-h {
  font-size: 27px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
  font-style: italic
}

.ctus-pg .steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.ctus-pg .steps-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, #D33194, #CADCB7);
  border-radius: 3px
}

.ctus-pg .step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  position: relative
}

.ctus-pg .step-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #D33194;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #D33194;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.ctus-pg .step-text {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0;
  padding-top: 8px
}

.ctus-pg .form-wrap {
  flex: 1 1 60%
}

.ctus-pg .contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 25px 0 #d3319417;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus-pg .f-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus-pg .f-label {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  line-height: 1.45
}

.ctus-pg .f-input {
  padding: 12px 16px 12px 44px;
  border: 2px solid #e0ead0;
  border-radius: 8px;
  font-size: 15px;
  color: #1b1b1b;
  background: #fafdf7;
  outline: none;
  transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease;
  width: 100%;
  box-sizing: border-box
}

.ctus-pg .f-input:focus {
  border-color: #D33194;
  box-shadow: 0 0 0 3px #d331941a;
  background: #fff
}

.ctus-pg .f-input::placeholder {
  color: #aaa
}

.ctus-pg .f-field-wrap {
  position: relative
}

.ctus-pg .f-field-wrap .f-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #D33194;
  font-size: 15px;
  pointer-events: none
}

.ctus-pg .checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.ctus-pg .chk-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.ctus-pg .chk-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #D33194;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0
}

.ctus-pg .chk-label {
  font-size: 15px;
  color: #333;
  line-height: 1.45;
  cursor: pointer
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ctus-pg .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #D33194;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px
}

.ctus-pg .privacy-txt {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0
}

.ctus-pg .privacy-txt a {
  color: #D33194;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px
}

.ctus-pg .btn-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #D33194;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .06em;
  box-shadow: 0 4px 25px 0 #d3319417;
  transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start
}

.ctus-pg .btn-submit::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #ffffff2e;
  transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus-pg .btn-submit:active::after {
  width: 100%
}

.ctus-pg .btn-submit:hover {
  background: #b8277f;
  box-shadow: 0 10px 52px 0 #d3319421;
  transform: translateY(-2px)
}

.ctus-pg .btn-submit:focus-visible {
  outline: 3px solid #CADCB7;
  outline-offset: 3px
}

.ctus-pg .wa-band {
  padding: 72px 0;
  background: #fff;
  position: relative
}

.ctus-pg .wa-inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center
}

.ctus-pg .wa-text-col {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ctus-pg .wa-h2 {
  font-size: 27px;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
  font-style: italic
}

.ctus-pg .wa-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0
}

.ctus-pg .wa-action-col {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px
}

.ctus-pg .wa-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: #1b1b1b;
  border: 2px solid #CADCB7;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 #cadcb70d;
  transition: border-color .55s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease
}

.ctus-pg .wa-btn:hover {
  border-color: #D33194;
  color: #D33194;
  box-shadow: 0 4px 25px 0 #d3319417
}

.ctus-pg .wa-btn:focus-visible {
  outline: 3px solid #D33194;
  outline-offset: 3px
}

.ctus-pg .wa-btn .bi {
  font-size: 21px;
  color: #25D366
}

.ctus-pg .wa-email-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #D33194;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  font-weight: 600;
  transition: color .5s ease
}

.ctus-pg .wa-email-link:hover {
  color: #b8277f
}

.ctus-pg .wa-divider-accent {
  width: 72px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(31deg, #D33194, #CADCB7)
}

.ctus-pg .wa-founded {
  font-size: 15px;
  color: #888;
  line-height: 1.45;
  margin: 0
}

@media (max-width: 1024px) {

  .ctus-pg .reach-split,
  .ctus-pg .form-split,
  .ctus-pg .wa-inner {
    flex-direction: column;
    gap: 36px
  }

  .ctus-pg .reach-left,
  .ctus-pg .form-aside,
  .ctus-pg .wa-text-col {
    flex: 1 1 100%
  }

  .ctus-pg .reach-right,
  .ctus-pg .form-wrap,
  .ctus-pg .wa-action-col {
    flex: 1 1 100%;
    align-items: flex-start
  }

  .ctus-pg .reach-img {
    max-width: 100%;
    height: 260px
  }

  .ctus-pg .reach-h1 {
    font-size: 51px
  }
}

@media (max-width: 640px) {
  .ctus-pg .reach-h1 {
    font-size: 27px
  }

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

  .ctus-pg .trust-row {
    flex-direction: column;
    gap: 12px
  }

  .ctus-pg .contact-form {
    padding: 24px
  }

  .ctus-pg .reach-band,
  .ctus-pg .wa-band {
    padding: 36px 0
  }

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

@media (max-width: 360px) {
  .ctus-pg .pg-inner {
    padding: 0 12px
  }

  .ctus-pg .reach-h1 {
    font-size: 21px
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: linear-gradient(31deg, #CADCB7 0%, #fff 60%, #CDE2E0 100%)
}

.success-pg .success-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px 0 #d3319417;
  padding: 72px 36px;
  max-width: 560px;
  width: 100%;
  text-align: center
}

.success-pg .success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(31deg, #D33194, #CDE2E0);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px
}

.success-pg .success-icon-wrap svg {
  display: block
}

.success-pg .success-heading {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b1b2e;
  margin: 0 0 12px;
  font-style: italic
}

.success-pg .success-msg {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a4a;
  margin: 0 0 36px
}

.success-pg .success-divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(31deg, #D33194, transparent);
  margin: 0 auto 36px
}

.success-pg .success-detail {
  font-size: 15px;
  line-height: 1.45;
  color: #556;
  margin: 0 0 36px
}

.success-pg .success-detail strong {
  color: #D33194
}

.success-pg .btn-home {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #D33194;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .04em;
  padding: 12px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 3px 0 #d331940d 0 4px 25px 0 #d3319417;
  transition: background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .7s ease
}

.success-pg .btn-home:hover {
  background: #b8277e;
  box-shadow: 0 4px 25px 0 #d3319421 0 10px 52px 0 #d3319417
}

.success-pg .btn-home:focus {
  outline: 2px solid #D33194;
  outline-offset: 3px
}

.success-pg .btn-home:active {
  background: #961f66
}

@media (max-width: 640px) {
  .success-pg {
    padding: 36px 12px
  }

  .success-pg .success-card {
    padding: 36px 24px
  }
}