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

html {
box-sizing: border-box
}

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

body {
margin: 0;
padding: 0;
min-height: 100dvh;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
font-family: 'Raleway', sans-serif;
background: #FFFCFC;
color: #140E10;
font-size: 16px;
line-height: 1.55
}

.hd {
position: relative;
background: linear-gradient(135deg, #FFFCFC 0%, #fef5fa 100%);
padding: 28px 56px;
box-shadow: 0 1px 6px 1px #e42b9312
}

.hd__grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 56px
}

.hd__brand {
display: flex;
align-items: center;
background: #FFFCFC;
padding: 8px 16px;
border-radius: 36px;
box-shadow: 0 5px 14px 1px #e42b931a;
border: 2px solid #E42B93
}

.hd__brand img {
width: 48px;
height: 48px;
display: block;
object-fit: contain
}

.hd__accent {
position: absolute;
top: 0;
right: 8%;
width: 120px;
height: 6px;
background: linear-gradient(90deg, #E42B93 0%, transparent 100%);
border-radius: 0 0 4px 4px
}

.hd__links {
display: flex;
gap: 28px;
justify-content: flex-end;
flex-wrap: wrap;
align-items: center
}

.hd__lnk {
font-size: 16px;
font-weight: 700;
color: #140E10;
text-decoration: none;
padding: 8px 16px;
border-radius: 36px;
transition: background-color .12s ease-out, color .12s ease-out;
white-space: nowrap
}

.hd__lnk:hover {
background: #E42B93;
color: #FFFCFC
}

.hd__lnk:focus {
outline: 2px solid #E42B93;
outline-offset: 2px
}

.hd__lnk:focus:hover {
outline: 2px solid #140E10
}

.hd__lnk--primary {
background: #140E10;
color: #FFFCFC;
border: 2px solid #140E10
}

.hd__lnk--primary:hover {
background: #E42B93;
border-color: #E42B93
}

@media (max-width: 1024px) {
.hd {
padding: 16px 28px
}

.hd__grid {
gap: 28px;
grid-template-columns: auto 1fr
}

.hd__links {
grid-column: 1 / -1;
justify-content: center;
gap: 16px
}

.hd__accent {
width: 80px
}
}

@media (max-width: 768px) {
.hd {
padding: 16px
}

.hd__grid {
gap: 16px
}

.hd__links {
gap: 8px
}

.hd__lnk {
font-size: 14px;
padding: 8px
}

.hd__accent {
display: none
}
}

@media (max-width: 480px) {
.hd__brand {
padding: 4px 8px
}

.hd__brand img {
width: 40px;
height: 40px
}
}

.ft {
background: #140E10;
color: #FFFCFC;
padding: 56px 28px 28px;
margin-top: 56px
}

.ft__grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
margin-bottom: 56px
}

.ft__box {
background: #fffcfc0d;
padding: 28px;
border-radius: 4px;
border-top: 4px solid #E42B93
}

.ft__box--tall {
grid-row: span 2;
display: flex;
flex-direction: column;
justify-content: space-between
}

.ft__box--wide {
grid-column: span 2
}

.ft__ttl {
font-size: 20px;
font-weight: 700;
margin: 0 0 16px;
color: #E42B93
}

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

.ft__nav-lnk {
color: #FFFCFC;
text-decoration: none;
font-size: 14px;
display: inline-block;
padding: 4px 0;
transition: color .1s ease-out;
position: relative
}

.ft__nav-lnk::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #E42B93;
transition: width .15s ease-out
}

.ft__nav-lnk:hover {
color: #E42B93
}

.ft__nav-lnk:hover::after {
width: 100%
}

.ft__nav-lnk:focus {
outline: 2px solid #E42B93;
outline-offset: 4px
}

.ft__contact-item {
display: flex;
align-items: flex-start;
gap: 8px;
margin-bottom: 16px;
font-size: 14px;
line-height: 1.55
}

.ft__contact-icon {
width: 20px;
height: 20px;
flex-shrink: 0;
margin-top: 2px
}

.ft__contact-icon svg {
width: 100%;
height: 100%;
fill: #E42B93
}

.ft__contact-lnk {
color: #FFFCFC;
text-decoration: none;
transition: color .1s ease-out
}

.ft__contact-lnk:hover {
color: #E42B93
}

.ft__contact-lnk:focus {
outline: 2px solid #E42B93;
outline-offset: 2px
}

.ft__txt {
font-size: 14px;
line-height: 1.8;
margin: 0;
color: #fffcfccc
}

.ft__logo-wrap {
text-align: center;
padding: 28px 0;
border-top: 1px solid #e42b934d
}

.ft__logo-img {
width: 48px;
height: 48px;
display: inline-block;
object-fit: contain;
background: #FFFCFC;
padding: 8px;
border-radius: 36px;
box-shadow: 0 5px 14px 1px #e42b931a
}

.ft__copy {
text-align: center;
font-size: 13px;
color: #fffcfc99;
margin: 16px 0 0;
padding: 16px 0 0;
border-top: 1px solid #e42b9333
}

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

.ft__box--wide {
grid-column: span 1
}

.ft__box--tall {
grid-row: span 1
}
}

@media (max-width: 768px) {
.ft {
padding: 28px 16px 16px;
margin-top: 28px
}

.ft__grid {
grid-template-columns: 1fr;
gap: 16px;
margin-bottom: 28px
}

.ft__box {
padding: 16px
}

.ft__box--wide {
grid-column: span 1
}
}

@media (max-width: 480px) {
.ft__ttl {
font-size: 16px
}

.ft__contact-item {
font-size: 13px
}
}

.consent {
position: fixed;
top: 28px;
left: 0;
right: 0;
margin: 0 auto;
max-width: 680px;
background: #FFFCFC;
padding: 16px 28px;
border-radius: 36px;
box-shadow: 0 8px 40px 1px #e42b9324;
z-index: 1200;
display: none;
border: 2px solid #E42B93;
transform: translateY(-200px);
opacity: 0;
transition: transform .38s ease-out, opacity .38s ease-out
}

.consent--vis {
transform: translateY(0);
opacity: 1
}

.consent__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
flex-wrap: wrap
}

.consent__msg {
flex: 1;
min-width: 240px;
font-size: 14px;
line-height: 1.55;
color: #140E10;
margin: 0
}

.consent__acts {
display: flex;
gap: 16px;
align-items: center;
flex-shrink: 0
}

.consent__btn {
background: #E42B93;
color: #FFFCFC;
border: 2px solid #E42B93;
padding: 8px 28px;
border-radius: 36px;
font-size: 14px;
font-weight: 700;
font-family: 'Raleway', sans-serif;
cursor: pointer;
transition: background-color .12s ease-out, border-color .12s ease-out;
white-space: nowrap
}

.consent__btn:hover {
background: #140E10;
border-color: #140E10
}

.consent__btn:focus {
outline: 2px solid #140E10;
outline-offset: 2px
}

.consent__btn:active {
box-shadow: inset 0 2px 8px #140e104d
}

.consent__decline {
background: transparent;
color: #140E10;
border: none;
padding: 8px 16px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
cursor: pointer;
text-decoration: underline;
transition: color .1s ease-out
}

.consent__decline:hover {
color: #E42B93
}

.consent__decline:focus {
outline: 2px solid #E42B93;
outline-offset: 2px
}

@media (max-width: 768px) {
.consent {
top: 16px;
left: 16px;
right: 16px;
max-width: none;
padding: 16px
}

.consent__inner {
gap: 16px
}

.consent__acts {
width: 100%;
justify-content: space-between
}
}

@media (max-width: 480px) {
.consent__msg {
font-size: 13px
}

.consent__btn {
padding: 8px 16px;
font-size: 13px
}

.consent__decline {
font-size: 13px
}
}

.text-legal {
max-width: 1200px;
margin: 0 auto;
padding: 56px 28px;
background: #FFFCFC
}

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

.text-legal h1 {
font-size: 52px;
line-height: 1.2;
color: #140E10;
margin: 0 0 56px;
letter-spacing: -.02em
}

.text-legal h2 {
font-size: 37px;
line-height: 1.2;
color: #140E10;
margin: 56px 0 28px;
letter-spacing: -.01em
}

.text-legal h3 {
font-size: 27px;
line-height: 1.2;
color: #140E10;
margin: 28px 0 16px;
letter-spacing: -.01em
}

.text-legal h4 {
font-size: 20px;
line-height: 1.55;
color: #140E10;
margin: 28px 0 16px
}

.text-legal h5 {
font-size: 16px;
line-height: 1.55;
color: #140E10;
margin: 16px 0 8px;
font-weight: 600
}

.text-legal h6 {
font-size: 14px;
line-height: 1.55;
color: #140E10;
margin: 16px 0 8px;
font-weight: 600
}

@media (max-width: 768px) {
.text-legal h1 {
font-size: 37px;
margin: 0 0 28px
}

.text-legal h2 {
font-size: 27px;
margin: 28px 0 16px
}

.text-legal h3 {
font-size: 20px;
margin: 16px 0 8px
}
}

.text-legal p {
font-size: 16px;
line-height: 1.8;
color: #140E10;
margin: 0 0 16px
}

.text-legal strong,
.text-legal b {
font-weight: 600;
color: #140E10
}

.text-legal a {
color: #E42B93;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color .12s ease-out
}

.text-legal a:hover {
border-bottom-color: #E42B93
}

.text-legal a:active {
opacity: .7
}

.text-legal div {
margin: 0
}

.text-legal h1:first-child,
.text-legal h2:first-child,
.text-legal h3:first-child,
.text-legal h4:first-child,
.text-legal h5:first-child,
.text-legal h6:first-child {
margin-top: 0
}

.text-legal p:last-child {
margin-bottom: 0
}

.text-legal ul,
.text-legal ol {
font-size: 16px;
line-height: 1.8;
color: #140E10;
margin: 0 0 16px;
padding-left: 28px
}

.text-legal ul li,
.text-legal ol li {
margin-bottom: 8px
}

.text-legal ul li:last-child,
.text-legal ol li:last-child {
margin-bottom: 0
}

.text-legal ul {
list-style: none;
padding-left: 0
}

.text-legal ul li {
position: relative;
padding-left: 28px
}

.text-legal ul li::before {
content: '';
position: absolute;
left: 0;
top: .65em;
width: 6px;
height: 6px;
background: #E42B93;
border-radius: 36px
}

.text-legal ol {
counter-reset: policy-counter;
list-style: none;
padding-left: 0
}

.text-legal ol li {
position: relative;
padding-left: 28px;
counter-increment: policy-counter
}

.text-legal ol li::before {
content: counter(policy-counter) '.';
position: absolute;
left: 0;
top: 0;
color: #E42B93;
font-weight: 600
}

@media (max-width: 480px) {

.text-legal ul,
.text-legal ol {
font-size: 14px
}

.text-legal p {
font-size: 14px
}
}

.ent {
max-width: 1200px;
margin: 0 auto;
background: #FFFCFC;
color: #140E10
}

.ent__tblock {
display: flex;
align-items: center;
gap: 28px;
padding: 16px 28px;
position: relative;
overflow: visible
}

.ent__tblock::before {
content: '"';
position: absolute;
left: 8px;
top: 50%;
transform: translateY(-50%);
font-size: 200px;
line-height: 1;
color: #e42b931f;
font-weight: 700;
pointer-events: none;
z-index: 0
}

.ent__tblock-txt {
flex: 1;
z-index: 1;
position: relative
}

.ent__tblock-h {
font-size: 37px;
line-height: 1.2;
margin: 0;
letter-spacing: -.02em
}

.ent__tblock-img {
width: 280px;
height: 160px;
object-fit: cover;
border-radius: 4px;
filter: sepia(0.15) saturate(0.85) hue-rotate(180deg);
z-index: 1
}

.ent__rep {
padding: 56px 28px;
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%);
position: relative
}

.ent__rep::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
right: 0;
height: 40px;
background: #FFFCFC;
border-radius: 50% 50% 0 0 / 100% 100% 0 0
}

.ent__rep-inner {
max-width: 900px;
margin: 0 auto
}

.ent__rep-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 28px;
text-align: center;
letter-spacing: -.01em
}

.ent__rep-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px
}

.ent__rep-card {
background: #fffcfcf2;
padding: 28px;
border-radius: 4px;
box-shadow: 0 5px 14px 1px #140e101a;
transition: transform .12s ease-out
}

.ent__rep-card:hover {
transform: translateY(-4px)
}

.ent__rep-card-ico {
width: 48px;
height: 48px;
margin: 0 0 16px;
fill: #E42B93
}

.ent__rep-card-t {
font-size: 16px;
line-height: 1.55;
margin: 0 0 8px;
font-weight: 600
}

.ent__rep-card-desc {
font-size: 14px;
line-height: 1.55;
margin: 0
}

.ent__exp {
padding: 56px 28px;
background: #FFFCFC
}

.ent__exp-inner {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 56px;
align-items: start
}

.ent__exp-img {
width: 100%;
height: 420px;
object-fit: cover;
border-radius: 36px;
box-shadow: 0 8px 40px 1px #e42b9324
}

.ent__exp-cont {
padding: 28px 0
}

.ent__exp-over {
font-size: 13px;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: .08em;
color: #E42B93;
margin: 0 0 8px;
border-top: 2px solid #E42B93;
padding-top: 8px;
display: inline-block
}

.ent__exp-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 16px;
letter-spacing: -.01em
}

.ent__exp-p {
font-size: 16px;
line-height: 1.8;
margin: 0 0 16px
}

.ent__exp-quote {
border-left: 4px solid #E42B93;
padding: 16px 0 16px 28px;
margin: 28px 0;
font-size: 16px;
line-height: 1.55;
font-style: italic;
color: #140e10d9
}

.ent__exp-auth {
font-size: 14px;
line-height: 1.55;
margin: 8px 0 0;
font-style: normal;
font-weight: 600;
color: #140E10
}

.ent__doubt {
padding: 56px 28px;
background-image: url(./brand_assets/the_section_contact.jpg);
background-size: cover;
background-position: center;
position: relative
}

.ent__doubt::before {
content: '';
position: absolute;
inset: 0;
background: #140e10d1;
z-index: 0
}

.ent__doubt-inner {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
color: #FFFCFC;
text-align: center
}

.ent__doubt-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 28px;
letter-spacing: -.01em
}

.ent__doubt-p {
font-size: 16px;
line-height: 1.8;
margin: 0 0 16px
}

.ent__doubt-list {
list-style: none;
padding: 0;
margin: 28px 0 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px
}

.ent__doubt-list li {
font-size: 14px;
line-height: 1.55;
padding: 16px;
background: #fffcfc14;
border-radius: 4px;
border: 1px solid #fffcfc33;
text-align: left;
position: relative;
padding-left: 40px
}

.ent__doubt-list li::before {
content: '';
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 6px solid #E42B93;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent
}

.ent__diff {
padding: 56px 28px;
background: #FFFCFC
}

.ent__diff-inner {
max-width: 1000px;
margin: 0 auto
}

.ent__diff-over {
font-size: 13px;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: .08em;
color: #E42B93;
margin: 0 0 8px;
border-top: 2px solid #E42B93;
padding-top: 8px;
display: inline-block
}

.ent__diff-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 28px;
letter-spacing: -.01em
}

.ent__diff-comp {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
margin: 28px 0
}

.ent__diff-col {
padding: 28px;
border-radius: 4px;
position: relative
}

.ent__diff-col--left {
background: #e42b930d;
border: 2px dashed #e42b934d
}

.ent__diff-col--right {
background: #e42b93f2;
color: #FFFCFC;
box-shadow: 8px 8px 0 0 #e42b9333
}

.ent__diff-col-t {
font-size: 16px;
line-height: 1.2;
margin: 0 0 16px;
font-weight: 600
}

.ent__diff-col-p {
font-size: 14px;
line-height: 1.55;
margin: 0 0 8px
}

.ent__diff-col-list {
list-style: none;
padding: 0;
margin: 16px 0 0
}

.ent__diff-col-list li {
font-size: 14px;
line-height: 1.55;
margin: 0 0 8px;
padding-left: 20px;
position: relative
}

.ent__diff-col-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 0;
height: 0;
border-left: 6px solid currentColor;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent
}

.ent__supp {
padding: 56px 28px;
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%)
}

.ent__supp-inner {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 56px;
align-items: center
}

.ent__supp-cont {
padding: 28px 0
}

.ent__supp-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 28px;
letter-spacing: -.01em
}

.ent__supp-p {
font-size: 16px;
line-height: 1.8;
margin: 0 0 16px;
text-indent: 28px
}

.ent__supp-p:first-of-type {
text-indent: 0
}

.ent__supp-feat {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin: 28px 0 0
}

.ent__supp-feat-item {
font-size: 14px;
line-height: 1.55;
padding: 16px;
background: #fffcfce6;
border-radius: 4px;
font-weight: 600;
text-align: center;
transition: background .1s linear
}

.ent__supp-feat-item:hover {
background: #fffcfcff
}

.ent__supp-img {
width: 100%;
height: 360px;
object-fit: cover;
border-radius: 4px;
box-shadow: 0 5px 14px 1px #140e101a
}

.ent__team {
padding: 56px 28px;
background: #FFFCFC
}

.ent__team-inner {
max-width: 1000px;
margin: 0 auto
}

.ent__team-over {
font-size: 13px;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: .08em;
color: #E42B93;
margin: 0 0 8px;
border-top: 2px solid #E42B93;
padding-top: 8px;
display: inline-block
}

.ent__team-h {
font-size: 27px;
line-height: 1.2;
margin: 0 0 28px;
letter-spacing: -.01em
}

.ent__team-intro {
font-size: 16px;
line-height: 1.8;
margin: 0 0 28px
}

.ent__team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
margin: 28px 0 0
}

.ent__team-card {
background: #FFFCFC;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 1px 6px 1px #140e1012;
transition: box-shadow .12s ease-out
}

.ent__team-card:hover {
box-shadow: 0 8px 40px 1px #140e1024
}

.ent__team-card-img {
width: 100%;
height: 220px;
object-fit: cover
}

.ent__team-card-cont {
padding: 16px
}

.ent__team-card-name {
font-size: 16px;
line-height: 1.2;
margin: 0 0 4px;
font-weight: 600
}

.ent__team-card-role {
font-size: 14px;
line-height: 1.55;
margin: 0 0 8px;
color: #E42B93
}

.ent__team-card-desc {
font-size: 13px;
line-height: 1.55;
margin: 0;
color: #140e10bf
}

.ent__rot {
position: fixed;
bottom: 28px;
right: 28px;
width: 80px;
height: 80px;
pointer-events: none;
z-index: 10;
animation: ent-spin 20s linear infinite
}

.ent__rot-circle {
fill: none;
stroke: #E42B93;
stroke-width: 2
}

@keyframes ent-spin {
from {
transform: rotate(0deg)
}

to {
transform: rotate(360deg)
}
}

.ent__mask-trigger {
position: relative;
overflow: hidden
}

.ent__mask-reveal {
position: absolute;
inset: 0;
background: #e42b93f2;
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
opacity: 0;
transition: opacity .15s ease-out;
display: flex;
align-items: center;
justify-content: center;
color: #FFFCFC;
font-size: 14px;
line-height: 1.55;
padding: 16px;
text-align: center
}

.ent__mask-trigger:hover .ent__mask-reveal {
opacity: 1
}

@media (max-width: 1024px) {
.ent__tblock {
flex-direction: column;
gap: 16px
}

.ent__tblock-img {
width: 100%;
height: 200px
}

.ent__rep-grid {
grid-template-columns: 1fr
}

.ent__exp-inner {
grid-template-columns: 1fr;
gap: 28px
}

.ent__exp-img {
height: 300px
}

.ent__doubt-list {
grid-template-columns: 1fr
}

.ent__diff-comp {
grid-template-columns: 1fr
}

.ent__supp-inner {
grid-template-columns: 1fr;
gap: 28px
}

.ent__team-grid {
grid-template-columns: 1fr
}
}

@media (max-width: 768px) {
.ent__tblock-h {
font-size: 27px
}

.ent__rep {
padding: 28px 16px
}

.ent__rep-h {
font-size: 20px
}

.ent__exp {
padding: 28px 16px
}

.ent__exp-h {
font-size: 20px
}

.ent__doubt {
padding: 28px 16px
}

.ent__doubt-h {
font-size: 20px
}

.ent__diff {
padding: 28px 16px
}

.ent__diff-h {
font-size: 20px
}

.ent__supp {
padding: 28px 16px
}

.ent__supp-h {
font-size: 20px
}

.ent__supp-feat {
grid-template-columns: 1fr
}

.ent__team {
padding: 28px 16px
}

.ent__team-h {
font-size: 20px
}
}

@media (max-width: 480px) {
.ent__tblock {
padding: 16px
}

.ent__tblock-h {
font-size: 20px
}

.ent__rep-card {
padding: 16px
}

.ent__exp-img {
height: 240px;
border-radius: 4px
}

.ent__doubt-list li {
padding: 8px 8px 8px 28px
}

.ent__diff-col {
padding: 16px
}

.ent__supp-img {
height: 280px
}

.ent__team-card-img {
height: 180px
}

.ent__rot {
width: 60px;
height: 60px;
bottom: 16px;
right: 16px
}
}

.abt-pg {
max-width: 1200px;
margin: 0 auto;
background: #FFFCFC;
color: #140E10
}

.abt-pg .ttl-hero {
position: relative;
width: 100%;
height: 520px;
overflow: hidden;
border-radius: 36px;
margin: 56px 0
}

.abt-pg .ttl-hero__img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: .28;
mix-blend-mode: multiply;
filter: sepia(0.4) hue-rotate(310deg) saturate(1.6)
}

.abt-pg .ttl-hero__grad {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%);
opacity: .85
}

.abt-pg .ttl-hero__quote {
position: absolute;
top: 28px;
right: 56px;
font-size: 240px;
line-height: 1;
color: #FFFCFC;
opacity: .14;
font-weight: 700;
pointer-events: none
}

.abt-pg .ttl-hero__txt {
position: relative;
padding: 56px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
max-width: 720px
}

.abt-pg .ttl-hero__hd {
font-size: 52px;
line-height: 1.2;
font-weight: 700;
color: #140E10;
margin: 0 0 28px;
letter-spacing: -.02em
}

.abt-pg .ttl-hero__desc {
font-size: 20px;
line-height: 1.55;
color: #140E10;
margin: 0;
opacity: .88
}

.abt-pg .split-zone {
display: grid;
grid-template-columns: 60fr 40fr;
gap: 56px;
padding: 56px 28px;
position: relative
}

.abt-pg .split-zone::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 1px;
height: 100%;
background: linear-gradient(180deg, transparent 0%, #E42B93 20%, #E42B93 80%, transparent 100%);
opacity: .18
}

.abt-pg .split-zone::after {
content: '';
position: absolute;
bottom: 0;
left: 28px;
right: 28px;
height: 1px;
background: linear-gradient(90deg, #E42B93 0%, #E42B93 68%, transparent 100%);
opacity: .24
}

.abt-pg .split-zone__lft {
display: flex;
flex-direction: column;
gap: 28px
}

.abt-pg .split-zone__rgt {
display: flex;
flex-direction: column;
gap: 28px
}

.abt-pg .ovr-hd {
position: relative;
padding-top: 16px
}

.abt-pg .ovr-hd::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 84px;
height: 4px;
background: #E42B93;
border-radius: 4px
}

.abt-pg .ovr-hd__txt {
font-size: 37px;
line-height: 1.2;
font-weight: 700;
color: #140E10;
margin: 0;
letter-spacing: -.01em
}

.abt-pg .para-hang {
font-size: 16px;
line-height: 1.8;
color: #140E10;
margin: 0;
padding-left: 28px;
text-indent: -28px
}

.abt-pg .para-hang+.para-hang {
margin-top: 16px
}

.abt-pg .lst-arrow {
list-style: none;
padding: 0;
margin: 28px 0 0;
display: flex;
flex-direction: column;
gap: 16px
}

.abt-pg .lst-arrow__itm {
position: relative;
padding-left: 28px;
font-size: 16px;
line-height: 1.55;
color: #140E10
}

.abt-pg .lst-arrow__itm::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 0;
height: 0;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 8px solid #E42B93
}

.abt-pg .img-card {
position: relative;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 5px 14px 1px #140e101a;
transition: transform .12s ease-out, box-shadow .12s ease-out
}

.abt-pg .img-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 40px 1px #140e1024
}

.abt-pg .img-card__pic {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
transition: filter .15s ease-out
}

.abt-pg .img-card:hover .img-card__pic {
filter: sepia(0.3) hue-rotate(310deg) saturate(1.4)
}

.abt-pg .img-card__cap {
padding: 16px;
background: #FFFCFC;
font-size: 14px;
line-height: 1.55;
color: #140E10;
opacity: .78
}

.abt-pg .metric-zone {
padding: 56px 28px;
background: radial-gradient(ellipse at center, #FFFCFC 0%, #e42b930f 100%);
position: relative
}

.abt-pg .metric-zone::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: linear-gradient(45deg, transparent 48%, #e42b930a 48%, #e42b930a 52%, transparent 52%), linear-gradient(-45deg, transparent 48%, #e42b930a 48%, #e42b930a 52%, transparent 52%);
background-size: 24px 24px;
background-position: 0 0, 12px 12px;
pointer-events: none;
opacity: .6
}

.abt-pg .metric-zone__inner {
position: relative;
max-width: 960px;
margin: 0 auto
}

.abt-pg .metric-zone__hd {
position: relative;
padding-top: 16px;
margin-bottom: 56px;
text-align: center
}

.abt-pg .metric-zone__hd::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 4px;
background: #E42B93;
border-radius: 4px
}

.abt-pg .metric-zone__hd-txt {
font-size: 37px;
line-height: 1.2;
font-weight: 700;
color: #140E10;
margin: 0;
letter-spacing: -.01em
}

.abt-pg .metric-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px
}

.abt-pg .metric-card {
background: #FFFCFC;
border-radius: 36px;
padding: 28px;
box-shadow: 0 1px 6px 1px #e42b9312;
transition: transform .1s linear, box-shadow .1s linear;
position: relative;
overflow: hidden
}

.abt-pg .metric-card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: linear-gradient(143deg, #e42b930d 0%, transparent 60%);
border-radius: 50%;
pointer-events: none;
transition: transform .15s ease-out
}

.abt-pg .metric-card:hover {
transform: scale(1.04);
box-shadow: 0 8px 40px 1px #e42b9324
}

.abt-pg .metric-card:hover::before {
transform: translate(-20%, -20%)
}

.abt-pg .metric-card__num {
font-size: 52px;
line-height: 1.2;
font-weight: 700;
color: #E42B93;
margin: 0 0 8px;
position: relative
}

.abt-pg .metric-card__lbl {
font-size: 16px;
line-height: 1.55;
color: #140E10;
margin: 0;
opacity: .82;
position: relative
}

.abt-pg .story-flow {
padding: 56px 28px;
display: flex;
flex-direction: column;
gap: 56px
}

.abt-pg .story-blk {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 56px;
align-items: center
}

.abt-pg .story-blk:nth-child(even) {
direction: rtl
}

.abt-pg .story-blk:nth-child(even)>* {
direction: ltr
}

.abt-pg .story-blk__img-wrap {
position: relative;
border-radius: 36px;
overflow: hidden;
box-shadow: 0 5px 14px 1px #140e101a
}

.abt-pg .story-blk__img {
width: 100%;
height: 420px;
object-fit: cover;
display: block;
transition: filter .12s ease-out
}

.abt-pg .story-blk__img-wrap:hover .story-blk__img {
filter: sepia(0.35) hue-rotate(310deg) saturate(1.5)
}

.abt-pg .story-blk__txt {
display: flex;
flex-direction: column;
gap: 28px
}

.abt-pg .story-blk__hd {
position: relative;
padding-top: 16px
}

.abt-pg .story-blk__hd::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 72px;
height: 4px;
background: #E42B93;
border-radius: 4px
}

.abt-pg .story-blk__hd-txt {
font-size: 27px;
line-height: 1.2;
font-weight: 700;
color: #140E10;
margin: 0;
letter-spacing: -.01em
}

.abt-pg .link-inline {
color: #E42B93;
text-decoration: underline;
transition: opacity .08s linear
}

.abt-pg .link-inline:hover {
opacity: .72
}

@media (max-width: 1024px) {
.abt-pg .ttl-hero {
height: 440px;
margin: 28px 0
}

.abt-pg .ttl-hero__txt {
padding: 28px
}

.abt-pg .ttl-hero__hd {
font-size: 37px
}

.abt-pg .ttl-hero__desc {
font-size: 16px
}

.abt-pg .ttl-hero__quote {
font-size: 180px;
right: 28px
}

.abt-pg .split-zone {
grid-template-columns: 1fr;
gap: 28px;
padding: 28px 16px
}

.abt-pg .split-zone::before {
display: none
}

.abt-pg .metric-grid {
grid-template-columns: 1fr;
gap: 16px
}

.abt-pg .metric-zone {
padding: 28px 16px
}

.abt-pg .story-blk {
grid-template-columns: 1fr;
gap: 28px
}

.abt-pg .story-blk:nth-child(even) {
direction: ltr
}

.abt-pg .story-flow {
padding: 28px 16px;
gap: 28px
}
}

@media (max-width: 768px) {
.abt-pg .ttl-hero {
height: 360px;
border-radius: 4px
}

.abt-pg .ttl-hero__hd {
font-size: 27px
}

.abt-pg .ttl-hero__desc {
font-size: 14px
}

.abt-pg .ttl-hero__quote {
font-size: 120px;
top: 16px;
right: 16px
}

.abt-pg .ovr-hd__txt,
.abt-pg .metric-zone__hd-txt {
font-size: 27px
}

.abt-pg .story-blk__hd-txt {
font-size: 20px
}

.abt-pg .metric-card__num {
font-size: 37px
}

.abt-pg .story-blk__img {
height: 320px
}

.abt-pg .img-card__pic {
height: 220px
}
}

@media (max-width: 480px) {
.abt-pg .ttl-hero {
height: 280px
}

.abt-pg .ttl-hero__txt {
padding: 16px
}

.abt-pg .ttl-hero__hd {
font-size: 20px;
margin: 0 0 16px
}

.abt-pg .ttl-hero__desc {
font-size: 13px
}

.abt-pg .ttl-hero__quote {
font-size: 80px
}

.abt-pg .para-hang {
padding-left: 16px;
text-indent: -16px
}

.abt-pg .lst-arrow__itm {
padding-left: 16px
}

.abt-pg .metric-card {
padding: 16px;
border-radius: 4px
}

.abt-pg .story-blk__img {
height: 240px
}

.abt-pg .img-card__pic {
height: 180px
}
}

.reach {
background: #FFFCFC;
color: #140E10;
overflow-x: clip
}

.reach__schema {
display: none
}

.reach__title-zone {
position: relative;
padding: 112px 16px 84px;
max-width: 1200px;
margin: 0 auto;
text-align: center
}

.reach__title-quote {
position: absolute;
top: 56px;
left: 50%;
transform: translateX(-50%);
font-size: 240px;
line-height: 1;
color: #e42b930d;
font-weight: 700;
pointer-events: none;
user-select: none
}

.reach__title-main {
font-size: 52px;
line-height: 1.2;
margin: 0 0 8px;
font-weight: 700;
position: relative;
z-index: 1;
animation: reach-slide-left .7s ease-out
}

.reach__title-sub {
font-size: 27px;
line-height: 1.55;
margin: 0 0 16px;
font-weight: 400;
position: relative;
z-index: 1;
animation: reach-slide-left .8s ease-out
}

.reach__title-tertiary {
font-size: 20px;
line-height: 1.55;
margin: 0 0 56px;
font-weight: 400;
color: #140e10b3;
position: relative;
z-index: 1;
animation: reach-slide-left .9s ease-out
}

.reach__title-img-wrap {
position: relative;
max-width: 900px;
margin: 0 auto;
border-radius: 36px;
overflow: hidden;
animation: reach-slide-left 1s ease-out
}

.reach__title-img-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60%;
background: linear-gradient(0deg, #e42b9399 0%, transparent 100%);
pointer-events: none;
z-index: 1
}

.reach__title-placeholder {
width: 100%;
height: 420px;
background: linear-gradient(143deg, #e42b9314 0%, #fffcfc4d 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
color: #140e104d
}

@keyframes reach-slide-left {
from {
opacity: 0;
transform: translateX(-60px)
}

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

.reach__form-sec {
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%);
padding: 84px 16px;
position: relative
}

.reach__form-sec::before {
content: '';
position: absolute;
top: 0;
right: 8%;
width: 1px;
height: 140px;
background: #140e1014;
transform: rotate(28deg);
pointer-events: none
}

.reach__form-sec::after {
content: '';
position: absolute;
top: 0;
right: 12%;
width: 1px;
height: 100px;
background: #140e100f;
transform: rotate(28deg);
pointer-events: none
}

.reach__form-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 340px 1fr;
gap: 84px;
align-items: start
}

.reach__form-info {
animation: reach-slide-left .7s ease-out
}

.reach__form-info-mark {
display: inline-block;
width: 6px;
height: 6px;
background: #E42B93;
border-radius: 0;
margin-right: 16px;
vertical-align: middle;
transform: rotate(45deg)
}

.reach__form-info-hd {
font-size: 37px;
line-height: 1.2;
margin: 0 0 28px;
font-weight: 700
}

.reach__form-info-txt {
font-size: 16px;
line-height: 1.8;
margin: 0 0 28px
}

.reach__form-info-detail {
font-size: 14px;
line-height: 1.8;
margin: 0;
color: #140e10cc
}

.reach__form-wrap {
background: #fffcfcf2;
padding: 56px;
border-radius: 36px;
box-shadow: 0 8px 40px 1px #e42b9324;
animation: reach-slide-left .85s ease-out
}

.reach__form-hd {
font-size: 27px;
line-height: 1.2;
margin: 0 0 8px;
font-weight: 700
}

.reach__form-subhd {
font-size: 14px;
line-height: 1.55;
margin: 0 0 28px;
color: #140e10b3
}

.reach__form {
display: flex;
flex-direction: column;
gap: 28px
}

.reach__form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px
}

.reach__fld {
position: relative;
display: flex;
flex-direction: column
}

.reach__fld--full {
grid-column: 1 / -1
}

.reach__lbl {
font-size: 13px;
line-height: 1.2;
margin: 0 0 8px;
font-weight: 600;
color: #140E10;
transition: color .12s ease-out
}

.reach__inp {
padding: 16px;
border: 2px solid #140e1026;
border-radius: 4px;
font-size: 16px;
line-height: 1.55;
background: #FFFCFC;
color: #140E10;
transition: border-color .1s ease-out, box-shadow .1s ease-out;
outline: none
}

.reach__inp:focus {
border-color: #E42B93;
box-shadow: 0 1px 6px 1px #e42b9312
}

.reach__inp::placeholder {
color: #140e1066
}

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

.reach__slot-opt {
position: relative
}

.reach__slot-radio {
position: absolute;
opacity: 0;
pointer-events: none
}

.reach__slot-btn {
display: block;
width: 100%;
padding: 16px 8px;
border: 2px solid #140e1026;
border-radius: 4px;
background: #FFFCFC;
font-size: 14px;
line-height: 1.2;
text-align: center;
cursor: pointer;
transition: border-color .1s ease-out, background .1s ease-out, box-shadow .1s ease-out;
user-select: none
}

.reach__slot-radio:checked+.reach__slot-btn {
border-color: #E42B93;
background: #e42b930f;
box-shadow: inset 0 1px 6px 1px #e42b9312
}

.reach__slot-btn:hover {
border-color: #E42B93
}

.reach__slot-time {
display: block;
font-size: 13px;
color: #140e1099;
margin-top: 4px
}

.reach__privacy {
display: flex;
align-items: start;
gap: 12px;
margin: 8px 0 0
}

.reach__privacy-check {
flex-shrink: 0;
width: 20px;
height: 20px;
border: 2px solid #140e1026;
border-radius: 4px;
background: #FFFCFC;
cursor: pointer;
transition: border-color .1s ease-out, background .1s ease-out, box-shadow .1s ease-out;
appearance: none;
margin-top: 2px
}

.reach__privacy-check:checked {
border-color: #E42B93;
background: #E42B93;
box-shadow: inset 0 1px 6px 1px #140e1012
}

.reach__privacy-check:checked::after {
content: '';
display: block;
width: 5px;
height: 9px;
border: solid #FFFCFC;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
margin: 2px 0 0 5px
}

.reach__privacy-txt {
font-size: 13px;
line-height: 1.55;
color: #140e10cc
}

.reach__privacy-link {
color: #E42B93;
text-decoration: underline;
transition: color .1s ease-out
}

.reach__privacy-link:hover {
color: #140E10
}

.reach__submit {
padding: 16px 56px;
border: 2px solid #140E10;
border-radius: 4px;
background: #140E10;
color: #FFFCFC;
font-size: 16px;
line-height: 1.2;
font-weight: 600;
cursor: pointer;
transition: border-color .12s ease-out, background .12s ease-out, box-shadow .12s ease-out;
align-self: start
}

.reach__submit:hover {
border-color: #E42B93;
background: #E42B93
}

.reach__submit:active {
box-shadow: inset 0 1px 6px 1px #140e1012
}

.reach__details-sec {
background: #140e1008;
padding: 84px 16px;
position: relative;
overflow: hidden
}

.reach__details-sec::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 80px 80px 0 0;
border-color: #FFFCFC transparent transparent
}

.reach__details-sec::after {
content: '';
position: absolute;
top: 0;
left: 80px;
width: 0;
height: 0;
border-style: solid;
border-width: 60px 60px 0 0;
border-color: #fffcfc99 transparent transparent
}

.reach__details-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 480px;
gap: 84px;
align-items: start
}

.reach__details-content {
animation: reach-slide-left .75s ease-out
}

.reach__details-overline {
display: inline-block;
width: 48px;
height: 3px;
background: #E42B93;
margin: 0 0 16px
}

.reach__details-hd {
font-size: 37px;
line-height: 1.2;
margin: 0 0 28px;
font-weight: 700
}

.reach__details-txt {
font-size: 16px;
line-height: 1.8;
margin: 0 0 28px
}

.reach__details-txt:first-line {
margin-left: -28px
}

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

.reach__details-item {
font-size: 16px;
line-height: 1.55;
position: relative;
padding-left: 28px
}

.reach__details-item::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 0;
height: 0;
border-style: solid;
border-width: 4px 0 4px 8px;
border-color: transparent transparent transparent #E42B93
}

.reach__details-sidebar {
background: #FFFCFC;
padding: 56px 28px;
border-radius: 36px;
box-shadow: 0 5px 14px 1px #e42b931a;
animation: reach-slide-left .9s ease-out
}

.reach__contact-item {
margin: 0 0 28px;
padding: 0 0 28px;
border-bottom: 1px solid #140e1014
}

.reach__contact-item:last-child {
margin: 0;
padding: 0;
border: none
}

.reach__contact-label {
font-size: 13px;
line-height: 1.2;
margin: 0 0 8px;
font-weight: 600;
color: #140e1099;
text-transform: uppercase;
letter-spacing: .5px
}

.reach__contact-value {
font-size: 16px;
line-height: 1.8;
margin: 0;
color: #140E10
}

.reach__contact-link {
color: #E42B93;
text-decoration: none;
transition: color .1s ease-out
}

.reach__contact-link:hover {
color: #140E10;
text-decoration: underline
}

.reach__hours-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 8px 16px;
margin-top: 8px
}

.reach__hours-day {
font-size: 14px;
line-height: 1.8;
color: #140e10b3
}

.reach__hours-time {
font-size: 14px;
line-height: 1.8;
color: #140E10;
font-weight: 600
}

.reach__details-sec:hover .reach__details-content {
opacity: .4;
transition: opacity .15s linear
}

.reach__details-sec:hover .reach__details-sidebar {
opacity: .4;
transition: opacity .15s linear
}

.reach__details-content:hover {
opacity: 1 !important
}

.reach__details-sidebar:hover {
opacity: 1 !important
}

@media (max-width: 1024px) {
.reach__title-zone {
padding: 84px 16px 56px
}

.reach__title-quote {
font-size: 180px;
top: 42px
}

.reach__title-main {
font-size: 37px
}

.reach__title-sub {
font-size: 20px
}

.reach__title-tertiary {
font-size: 16px;
margin-bottom: 28px
}

.reach__title-placeholder {
height: 320px
}

.reach__form-sec {
padding: 56px 16px
}

.reach__form-container {
grid-template-columns: 1fr;
gap: 56px
}

.reach__form-wrap {
padding: 28px
}

.reach__form-info-hd {
font-size: 27px
}

.reach__details-sec {
padding: 56px 16px
}

.reach__details-container {
grid-template-columns: 1fr;
gap: 56px
}

.reach__details-hd {
font-size: 27px
}
}

@media (max-width: 768px) {
.reach__title-zone {
padding: 56px 16px 28px
}

.reach__title-quote {
font-size: 120px;
top: 28px
}

.reach__title-main {
font-size: 27px
}

.reach__title-sub {
font-size: 16px
}

.reach__title-tertiary {
font-size: 14px
}

.reach__title-placeholder {
height: 240px
}

.reach__form-sec {
padding: 28px 16px
}

.reach__form-container {
gap: 28px
}

.reach__form-wrap {
padding: 16px
}

.reach__form-row {
grid-template-columns: 1fr;
gap: 16px
}

.reach__slot-grid {
grid-template-columns: 1fr;
gap: 8px
}

.reach__form-info-hd {
font-size: 20px
}

.reach__details-sec {
padding: 28px 16px
}

.reach__details-container {
gap: 28px
}

.reach__details-hd {
font-size: 20px
}

.reach__details-sidebar {
padding: 28px 16px
}
}

@media (max-width: 480px) {
.reach__title-zone {
padding: 28px 16px 16px
}

.reach__title-quote {
font-size: 80px;
top: 16px
}

.reach__title-main {
font-size: 20px
}

.reach__title-sub {
font-size: 14px
}

.reach__title-tertiary {
font-size: 13px;
margin-bottom: 16px
}

.reach__title-placeholder {
height: 180px
}

.reach__form-sec {
padding: 16px
}

.reach__form-wrap {
padding: 16px
}

.reach__submit {
width: 100%;
padding: 16px
}

.reach__details-sec {
padding: 16px
}
}

.success-pg {
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 56px 16px
}

.success-pg__wrap {
max-width: 680px;
width: 100%;
background: #FFFCFC;
border-radius: 36px;
padding: 56px;
box-shadow: 0 8px 40px 1px #140e1024;
text-align: center
}

.success-pg__icon-box {
width: 120px;
height: 120px;
margin: 0 auto 28px;
background: linear-gradient(143deg, #E42B93 0%, #FFFCFC 100%);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden
}

.success-pg__icon-box::before {
content: '';
position: absolute;
width: 48px;
height: 4px;
background: #FFFCFC;
transform: rotate(45deg);
top: 58px;
left: 36px
}

.success-pg__icon-box::after {
content: '';
position: absolute;
width: 72px;
height: 4px;
background: #FFFCFC;
transform: rotate(-45deg);
top: 58px;
left: 48px
}

.success-pg__ttl {
font-size: 37px;
line-height: 1.2;
color: #140E10;
margin: 0 0 16px;
letter-spacing: -.02em
}

.success-pg__msg {
font-size: 16px;
line-height: 1.55;
color: #140E10;
margin: 0 0 28px
}

.success-pg__detail {
background: #FFFCFC;
border: 2px solid #E42B93;
border-radius: 4px;
padding: 28px;
margin: 0 0 28px;
text-align: left
}

.success-pg__detail-ttl {
font-size: 14px;
line-height: 1.2;
color: #E42B93;
margin: 0 0 8px;
text-transform: uppercase;
letter-spacing: .05em;
position: relative;
padding-top: 8px
}

.success-pg__detail-ttl::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 56px;
height: 2px;
background: #E42B93
}

.success-pg__detail-txt {
font-size: 14px;
line-height: 1.55;
color: #140E10;
margin: 0
}

.success-pg__detail-txt strong {
color: #E42B93;
font-weight: 600
}

.success-pg__info {
font-size: 13px;
line-height: 1.55;
color: #140E10;
margin: 0 0 28px;
padding: 16px;
background: #e42b930f;
border-radius: 4px
}

.success-pg__actions {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap
}

.success-pg__btn {
font-size: 14px;
line-height: 1.2;
padding: 16px 28px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
transition: border-color .12s ease-out;
cursor: pointer
}

.success-pg__btn--primary {
background: #E42B93;
color: #FFFCFC;
border: 2px solid #E42B93
}

.success-pg__btn--primary:hover {
border-color: #140E10
}

.success-pg__btn--secondary {
background: transparent;
color: #140E10;
border: 2px solid #140E10
}

.success-pg__btn--secondary:hover {
border-color: #E42B93
}

.success-pg__meta {
margin-top: 28px;
padding-top: 28px;
border-top: 1px solid #140e101a
}

.success-pg__meta-item {
font-size: 13px;
line-height: 1.55;
color: #140E10;
margin: 0 0 8px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px
}

.success-pg__meta-item:last-child {
margin-bottom: 0
}

.success-pg__meta-icon {
width: 16px;
height: 16px;
display: inline-block;
position: relative
}

.success-pg__meta-icon--email::before {
content: '';
position: absolute;
width: 16px;
height: 12px;
border: 2px solid #E42B93;
border-radius: 2px;
top: 2px;
left: 0
}

.success-pg__meta-icon--email::after {
content: '';
position: absolute;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #E42B93;
top: 2px;
left: 2px
}

.success-pg__meta-icon--time::before {
content: '';
position: absolute;
width: 14px;
height: 14px;
border: 2px solid #E42B93;
border-radius: 50%;
top: 1px;
left: 1px
}

.success-pg__meta-icon--time::after {
content: '';
position: absolute;
width: 2px;
height: 6px;
background: #E42B93;
top: 4px;
left: 7px
}

@media (max-width: 768px) {
.success-pg {
padding: 28px 16px
}

.success-pg__wrap {
padding: 28px
}

.success-pg__icon-box {
width: 96px;
height: 96px
}

.success-pg__icon-box::before {
width: 36px;
top: 46px;
left: 30px
}

.success-pg__icon-box::after {
width: 56px;
top: 46px;
left: 38px
}

.success-pg__ttl {
font-size: 27px
}

.success-pg__actions {
flex-direction: column
}

.success-pg__btn {
width: 100%
}
}

@media (max-width: 480px) {
.success-pg__wrap {
padding: 28px 16px
}

.success-pg__detail {
padding: 16px
}

.success-pg__meta-item {
flex-direction: column;
gap: 4px
}
}