article,
aside,
audio,
canvas,
caption,
details,
div,
figure,
footer,
header,
hgroup,
iframe,
img,
mark,
menu,
nav,
object,
section,
span,
summary,
table,
tbody,
td,
tfoot,
thead,
tr,
video {
    border: 0;
    margin: 0;
    padding: 0;
}

a,
abbr,
address,
b,
blockquote,
cite,
code,
dd,
del,
dfn,
dl,
dt,
em,
fieldset,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
i,
ins,
label,
legend,
li,
ol,
p,
pre,
q,
samp,
small,
strong,
sub,
sup,
ul {
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

article,
aside,
audio,
canvas,
figcaption,
figure,
figure img,
footer,
header,
hgroup,
nav,
section,
video {
    display: block;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

table caption,
table td,
table th {
    text-align: left;
    vertical-align: middle;
}

a img {
    border: 0;
}

:focus {
    outline: 0;
}

:root {
    --vh: 100vh;
    --transition: 0.3s;
}

body {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.intro {
    background: #151414;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

body.faces {
    background: #fff;
    font-family: Pretendard, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

body a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition);
}

body .view-mobile {
    display: none;
}

@media only screen and (max-width: 809px) {
    body .view-mobile {
        display: block;
    }
}

@media only screen and (max-width: 809px) {
    body .view-desktop {
        display: none;
    }
}

body .extra-bold {
    font-weight: 800;
}

.enterview {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 2.4s, transform 2.4s, filter 2.4s;
}

.enterview.loaded {
    opacity: 1;
    transform: translateY(0);
}

.svg-wrap {
    display: none;
}

.index-wrap {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media only screen and (max-width: 809px) {
    .index-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.index-wrap .person-wrap {
    max-width: 100%;
    overflow: hidden;
}

.index-wrap .person-wrap .title {
    overflow: hidden;
    margin: 0 auto;
    max-width: calc(100% - 60px);
    background-size: contain;
    text-align: center;
    color: #fff;
    font-family: Sandoll RomanStencil;
    font-size: 35px;
    line-height: 1;
}

@media only screen and (max-width: 809px) {
    .index-wrap .person-wrap .title {
        font-size: 4.5vw;
        max-width: calc(100% - 20px);
    }
}

.index-wrap .person-wrap .title .name {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    margin-left: 10px;
    vertical-align: middle;
    color: #000;
    border-radius: 4px;
    background: #fff;
    height: 50px;
    min-width: 125px;
    justify-content: center;
}

.index-wrap .person-wrap .title svg {
    max-width: 100%;
    height: auto;
}

.index-wrap .person-wrap .description {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -2px;
    width: 100%;
    max-width: 585px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.index-wrap .person-wrap .description p.point {
    color: #75fa55;
}

@media only screen and (max-width: 809px) {
    .index-wrap .person-wrap .description {
        padding: 0 20px;
        font-size: 15px;
        line-height: 1.5;
        margin-top: 30px;
        margin-bottom: 30px;
        word-break: keep-all;
    }
}

.index-wrap .person-wrap #person {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

@media only screen and (max-width: 809px) {
    .index-wrap .person-wrap #person {
        margin-bottom: 30px;
    }
}

.index-wrap .person-wrap #person canvas {
    margin-left: 420px;
}

@media only screen and (max-width: 809px) {
    .index-wrap .person-wrap #person canvas {
        margin-left: 110px;
        max-width: 100%;
        height: auto !important;
        pointer-events: none;
    }
}

.index-wrap .person-wrap .person-popup {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    padding: 12px 24px;
    border-radius: 7px;
    background: #75fa55;
    font-size: 14px;
    font-weight: 900;
    line-height: 26px;
    letter-spacing: -1px;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

.index-wrap .person-wrap .person-popup.show {
    opacity: 1;
}

.index-wrap .person-wrap .person-popup .message {
    display: none;
    margin-left: -25px;
    border-top: 0.5px solid #000;
    margin-right: -25px;
    margin-top: 10px;
    padding: 15px 25px;
    padding-bottom: 10px;
    width: 240px;
}

.index-wrap .person-wrap .person-popup .message p {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -1px;
}

.index-wrap .person-wrap .person-popup .message .btn {
    margin-top: 15px;
    display: block;
    border-radius: 30px;
    color: #fff;
    padding: 10px;
    background: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: -1px;
}

.index-wrap .person-wrap .person-popup.have-not-message .message h3,
.index-wrap .person-wrap .person-popup.have-not-message .message p {
    display: none;
}

body.info-show .index-wrap .person-wrap canvas {
    pointer-events: none;
}

body.info-show .index-wrap .person-wrap .person-popup {
    pointer-events: all;
}

body.info-show .index-wrap .person-wrap .person-popup .message {
    display: block;
}

.index-wrap .stats-wrap {
    margin-bottom: 66px;
}

@media only screen and (max-width: 809px) {
    .index-wrap .stats-wrap {
        margin-bottom: 30px;
    }
}

.index-wrap .stats-wrap .stats {
    width: 100%;
    max-width: 585px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

@media only screen and (max-width: 809px) {
    .index-wrap .stats-wrap .stats {
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.index-wrap .stats-wrap .stats .stat-item {
    box-sizing: border-box;
    width: 25%;
    padding: 10px 20px;
    padding-bottom: 14px;
    background: #fffd55;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-wrap .stats-wrap .stats .stat-item:first-child {
    margin-left: 0;
    width: 50%;
    background: #75fa55;
}

@media only screen and (max-width: 809px) {
    .index-wrap .stats-wrap .stats .stat-item:first-child {
        width: 100%;
    }
}

.index-wrap .stats-wrap .stats .stat-item:nth-child(2) {
    background: #ff5ca9;
}

.index-wrap .stats-wrap .stats .stat-item:nth-child(3) {
    padding-left: 20px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 809px) {

    .index-wrap .stats-wrap .stats .stat-item:nth-child(2),
    .index-wrap .stats-wrap .stats .stat-item:nth-child(3) {
        width: calc(50% - 8px);
    }
}

.index-wrap .stats-wrap .stats .stat-item .title {
    font-size: 13px;
    line-height: 26px;
    font-weight: 900;
}

.index-wrap .stats-wrap .stats .stat-item .value {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 8px;
    font-weight: 900;
    gap: 4px;
}

.index-wrap .stats-wrap .stats .stat-item .value .v {
    font-size: 40px;
    line-height: 1;
    font-family: Impact;
}

.index-wrap .stats-wrap .stats .stat-item .value .p {
    font-size: 13px;
    line-height: 1;
    letter-spacing: -1px;
}

.index-wrap .stats-wrap .stats .stat-item .list {
    display: grid;
    grid-template-columns: 34px 1fr;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -1px;
    gap: 15px 5px;
}

.index-wrap .stats-wrap .stats .stat-item .list .t {
    font-weight: 900;
}

.index-wrap .stats-wrap .stats .stat-item .list .v {
    white-space: nowrap;
    font-weight: 500;
}

.index-wrap .button-wrap {
    text-align: center;
}

.index-wrap .button-wrap a {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    padding: 16px 0;
    border-radius: 30px;
    background: #fff;
    color: #000;
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -1px;
}

.index-wrap .person-wrap .title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2.4s, transform 2.4s, filter 2.4s;
}

.index-wrap .person-wrap .title.show {
    opacity: 1;
    transform: translateY(0);
}

body.faces.show-mobile-menu {
    overflow: hidden;
}

.faces-wrap {
    font-family: DungGeunMo, Pretendard, sans-serif;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.faces-wrap img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.faces-wrap a.dot-style-button {
    display: block;
    text-indent: -10000px;
    overflow: hidden;
    transition: background-image var(--transition);
}

@media only screen and (max-width: 809px) {
    .faces-wrap a.dot-style-button.nav {
        display: none;
    }
}

.faces-wrap a.dot-style-button.nav-info {
    width: 150.38px;
    height: 48.67px;
    background: url(../../assets/img/faces/btn-info.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap a.dot-style-button.nav-info {
        background: url(../../assets/img/faces/btn-info@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap a.dot-style-button.nav-info {
        background: url(../../assets/img/faces/btn-info@2x.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) {
    .faces-wrap a.dot-style-button.nav-info:hover {
        background: url(../../assets/img/faces/btn-info-hover.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap a.dot-style-button.nav-info:hover {
        background: url(../../assets/img/faces/btn-info-hover@2x.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 2),
only screen and (hover: hover) and (min-resolution: 192dpi) {
    .faces-wrap a.dot-style-button.nav-info:hover {
        background: url(../../assets/img/faces/btn-info-hover@2x.png);
        background-size: contain;
    }
}

.faces-wrap a.dot-style-button.nav-join {
    width: 150.38px;
    height: 48.67px;
    background: url(../../assets/img/faces/btn-join.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap a.dot-style-button.nav-join {
        background: url(../../assets/img/faces/btn-join@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap a.dot-style-button.nav-join {
        background: url(../../assets/img/faces/btn-join@2x.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) {
    .faces-wrap a.dot-style-button.nav-join:hover {
        background: url(../../assets/img/faces/btn-join-hover.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap a.dot-style-button.nav-join:hover {
        background: url(../../assets/img/faces/btn-join-hover@2x.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 2),
only screen and (hover: hover) and (min-resolution: 192dpi) {
    .faces-wrap a.dot-style-button.nav-join:hover {
        background: url(../../assets/img/faces/btn-join-hover@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block {
    pointer-events: none;
    position: relative;
    padding: 100px;
}

@media only screen and (max-width: 400px) {
    .faces-wrap .game-block {
        padding: 64px;
    }
}

.faces-wrap .game-block .arrow {
    position: absolute;
    width: 64px;
    height: 64px;
    opacity: 1;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 400px) {
    .faces-wrap .game-block .arrow {
        width: 16vw;
        height: 16vw;
        max-width: 48px;
        max-height: 48px;
    }
}

.faces-wrap .game-block .arrow.arrow-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(../../assets/img/faces/dot-arrow-top.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .arrow.arrow-top {
        background: url(../../assets/img/faces/dot-arrow-top@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .arrow.arrow-top {
        background: url(../../assets/img/faces/dot-arrow-top@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .arrow.arrow-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(../../assets/img/faces/dot-arrow-bottom.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .arrow.arrow-bottom {
        background: url(../../assets/img/faces/dot-arrow-bottom@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .arrow.arrow-bottom {
        background: url(../../assets/img/faces/dot-arrow-bottom@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .arrow.arrow-left {
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../../assets/img/faces/dot-arrow-left.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .arrow.arrow-left {
        background: url(../../assets/img/faces/dot-arrow-left@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .arrow.arrow-left {
        background: url(../../assets/img/faces/dot-arrow-left@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .arrow.arrow-right {
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../../assets/img/faces/dot-arrow-right.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .arrow.arrow-right {
        background: url(../../assets/img/faces/dot-arrow-right@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .arrow.arrow-right {
        background: url(../../assets/img/faces/dot-arrow-right@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .game-block-finish-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 100px;
    transform: translate(-50%, -20px);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    background: url(../../assets/img/faces/bubble/bubble-sm.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .game-block-finish-wrap {
        background: url(../../assets/img/faces/bubble/bubble-sm@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .game-block-finish-wrap {
        background: url(../../assets/img/faces/bubble/bubble-sm@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content {
    position: relative;
    margin: 24px 17px;
    height: 30px;
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .message {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #0f3040;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    transition: opacity 0.3s;
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: opacity 0.3s;
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-done,
.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-edit {
    display: inline-block;
    width: 100%;
    height: 30px;
    text-indent: -10000px;
    overflow: hidden;
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-edit {
    background: url(../../assets/img/faces/btn-edit.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-edit {
        background: url(../../assets/img/faces/btn-edit@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-edit {
        background: url(../../assets/img/faces/btn-edit@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-done {
    background: url(../../assets/img/faces/btn-done.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-done {
        background: url(../../assets/img/faces/btn-done@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .game-block .game-block-finish-wrap .game-block-finish-content .button-wrap .button-done {
        background: url(../../assets/img/faces/btn-done@2x.png);
        background-size: contain;
    }
}

.faces-wrap .game-block .block {
    display: block;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width: 400px) {
    .faces-wrap .game-block .block {
        position: relative;
        width: 50vw;
        height: 50vw;
    }
}

.faces-wrap .game-block .block img {
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faces-wrap .global-game-block-container {
    opacity: 0;
    transform: rotateY(-90deg);
    transition: transform 0.6s 0.3s, opacity 0.6s;
}

body.game-mode .faces-wrap .global-game-block-container {
    pointer-events: auto;
    transform: rotateY(0);
    opacity: 1;
}

.faces-wrap .global-game-block-container.attached .game-block .arrow {
    opacity: 0;
}

.faces-wrap .global-game-block-container.attached .game-block .block {
    animation: shadowPulse 1s infinite alternate;
}

@keyframes shadowPulse {
    0% {
        filter: drop-shadow(0 0 0 transparent);
    }

    100% {
        filter: drop-shadow(0 0 40px #f2ff00);
    }
}

.faces-wrap .global-game-block-container.attached.attached-drop .game-block-finish-wrap {
    opacity: 1;
    pointer-events: auto;
}

.faces-wrap .global-game-block-container.attached-done .game-block .block {
    animation: shadowPulse 1s alternate 2;
}

.faces-wrap .global-game-block-container.is-finish {
    pointer-events: none !important;
}

.faces-wrap .global-game-block-container.is-finish * {
    pointer-events: none !important;
}

.faces-wrap .global-game-block-container.is-finish .game-block-finish-content .message {
    opacity: 1;
}

.faces-wrap .global-game-block-container.is-finish .game-block-finish-content .button-wrap {
    opacity: 0;
}

.faces-wrap .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.faces-wrap .background .cloud {
    position: absolute;
    width: 390px;
    height: 88px;
    background: url(../../assets/img/faces/dot-cloud.png);
    background-size: contain;
    background-repeat: no-repeat !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .background .cloud {
        background: url(../../assets/img/faces/dot-cloud@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .background .cloud {
        background: url(../../assets/img/faces/dot-cloud@2x.png);
        background-size: contain;
    }
}

@media only screen and (max-width: 809px) {
    .faces-wrap .background .cloud {
        height: 67px;
    }
}

.faces-wrap .background .cloud.index-1 {
    top: 186px;
    right: 114px;
}

.faces-wrap .background .cloud.index-2 {
    top: 376px;
    left: -20px;
}

.faces-wrap .background .cloud.index-3 {
    top: 566px;
    right: -514px;
}

.faces-wrap .background .cloud.index-4 {
    top: 756px;
    left: 114px;
}

.faces-wrap .background .cloud.index-5 {
    top: 946px;
    right: -514px;
}

.faces-wrap .background .cloud.index-6 {
    top: 1136px;
    left: 114px;
}

.faces-wrap .bubble {
    position: relative;
    padding: 24px 36px;
    padding-right: 31px;
    padding-bottom: 76px;
}

.faces-wrap .bubble .bg {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faces-wrap .bubble .bg .direction-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 34px;
    background: url(../../assets/img/faces/bubble/bubble-lt.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-1 {
        background: url(../../assets/img/faces/bubble/bubble-lt@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-1 {
        background: url(../../assets/img/faces/bubble/bubble-lt@2x.png);
        background-size: contain;
    }
}

.faces-wrap .bubble .bg .direction-2 {
    position: absolute;
    top: 0;
    left: 32px;
    right: 36px;
    height: 34px;
    background: url(../../assets/img/faces/bubble/bubble-t.png);
    background-size: auto 100%;
    background-repeat: repeat-x !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-2 {
        background: url(../../assets/img/faces/bubble/bubble-t@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-2 {
        background: url(../../assets/img/faces/bubble/bubble-t@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .bubble .bg .direction-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 34px;
    background: url(../../assets/img/faces/bubble/bubble-rt.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-3 {
        background: url(../../assets/img/faces/bubble/bubble-rt@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-3 {
        background: url(../../assets/img/faces/bubble/bubble-rt@2x.png);
        background-size: contain;
    }
}

.faces-wrap .bubble .bg .direction-4 {
    position: absolute;
    top: 34px;
    left: 0;
    width: 36px;
    bottom: 76px;
    background: url(../../assets/img/faces/bubble/bubble-l.png);
    background-size: 100% auto;
    background-repeat: repeat-y !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-4 {
        background: url(../../assets/img/faces/bubble/bubble-l@2x.png);
        background-size: 100% auto;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-4 {
        background: url(../../assets/img/faces/bubble/bubble-l@2x.png);
        background-size: 100% auto;
    }
}

.faces-wrap .bubble .bg .direction-5 {
    position: absolute;
    top: 34px;
    right: 0;
    width: 31px;
    bottom: 76px;
    background: url(../../assets/img/faces/bubble/bubble-r.png);
    background-size: 100% auto;
    background-repeat: repeat-y !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-5 {
        background: url(../../assets/img/faces/bubble/bubble-r@2x.png);
        background-size: 100% auto;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-5 {
        background: url(../../assets/img/faces/bubble/bubble-r@2x.png);
        background-size: 100% auto;
    }
}

.faces-wrap .bubble .bg .direction-6 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 76px;
    background: url(../../assets/img/faces/bubble/bubble-lb.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-6 {
        background: url(../../assets/img/faces/bubble/bubble-lb@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-6 {
        background: url(../../assets/img/faces/bubble/bubble-lb@2x.png);
        background-size: contain;
    }
}

.faces-wrap .bubble .bg .direction-7 {
    position: absolute;
    bottom: 0;
    left: 83px;
    right: 80px;
    height: 76px;
    background: url(../../assets/img/faces/bubble/bubble-b.png);
    background-size: auto 100%;
    background-repeat: repeat-x !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-7 {
        background: url(../../assets/img/faces/bubble/bubble-b@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-7 {
        background: url(../../assets/img/faces/bubble/bubble-b@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .bubble .bg .direction-8 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 76px;
    background: url(../../assets/img/faces/bubble/bubble-rb.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bg .direction-8 {
        background: url(../../assets/img/faces/bubble/bubble-rb@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bg .direction-8 {
        background: url(../../assets/img/faces/bubble/bubble-rb@2x.png);
        background-size: contain;
    }
}

.faces-wrap .bubble .bubble-content {
    position: relative;
    background: #fff;
    color: #0f3040;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.75px;
    text-align: left;
    padding-bottom: 4px;
}

.faces-wrap .bubble .bubble-content .button-wrap {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: -12px;
}

.faces-wrap .bubble .bubble-content .button-wrap .button-ok {
    display: block;
    width: 90px;
    height: 29px;
    text-indent: -10000px;
    overflow: hidden;
    background: url(../../assets/img/faces/btn-ok.png);
    background-size: contain;
    background-repeat: no-repeat !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .bubble .bubble-content .button-wrap .button-ok {
        background: url(../../assets/img/faces/btn-ok@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .bubble .bubble-content .button-wrap .button-ok {
        background: url(../../assets/img/faces/btn-ok@2x.png);
        background-size: contain;
    }
}

.faces-wrap header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    pointer-events: none;
}

@media only screen and (max-width: 809px) {
    .faces-wrap header {
        display: none;
    }
}

.faces-wrap header .header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 42px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap header .header-content {
        padding-top: 31px;
        padding-bottom: 32px;
    }
}

.faces-wrap header .header-content a {
    pointer-events: auto;
}

.faces-wrap header .header-content .mobile-header {
    display: none;
}

@media only screen and (max-width: 809px) {
    .faces-wrap header .header-content .mobile-header {
        display: block;
    }

    .faces-wrap header .header-content .mobile-header .view-menu {
        display: block;
        width: 34px;
        height: 31px;
        text-indent: -10000px;
        overflow: hidden;
        background: url(../../assets/img/faces/icon-menu.svg) no-repeat center/contain;
    }

    body.show-mobile-menu .faces-wrap header .header-content .mobile-header .view-menu {
        background-image: url(../../assets/img/faces/icon-menu-close.svg);
    }
}

.faces-wrap .mobile-menu-wrap {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    background: #0a4bff;
    z-index: 99;
}

body.show-mobile-menu .faces-wrap .mobile-menu-wrap {
    pointer-events: auto;
    opacity: 1;
}

.faces-wrap .mobile-menu-wrap .header {
    padding-top: 31px;
    padding-bottom: 32px;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.faces-wrap .mobile-menu-wrap .content {
    padding-top: 77px;
}

.faces-wrap .mobile-menu-wrap .content ul {
    display: flex;
    flex-direction: column;
    gap: 42px;
    list-style: none;
}

.faces-wrap .mobile-menu-wrap .content ul li a {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 24px;
}

.faces-wrap .face-content-1 {
    position: relative;
    min-height: var(--vh);
    overflow: hidden;
    background: #0027e9;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .background .cloud.index-2 {
        top: 186px;
        left: 150%;
    }
}

.faces-wrap .face-content-1 .background-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 47px;
    background: url(../../assets/img/faces/dot-bg-1.png);
    background-size: auto 100%;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .background-bottom {
        background: url(../../assets/img/faces/dot-bg-1@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .background-bottom {
        background: url(../../assets/img/faces/dot-bg-1@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .face-content-1 .front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 80px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front {
        position: relative;
        height: auto;
        flex-direction: column;
        gap: 0;
    }
}

.faces-wrap .face-content-1 .front .left,
.faces-wrap .face-content-1 .front .right {
    position: relative;
    width: 50%;
}

@media only screen and (max-width: 809px) {

    .faces-wrap .face-content-1 .front .left,
    .faces-wrap .face-content-1 .front .right {
        width: 100%;
    }
}

.faces-wrap .face-content-1 .front .left {
    align-self: flex-end;
    padding-bottom: 46px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .left {
        padding-bottom: 0;
    }
}

.faces-wrap .face-content-1 .front .title-wrap {
    margin-top: 126px;
    text-align: right;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .title-wrap {
        margin-top: 108px;
    }
}

.faces-wrap .face-content-1 .front .title-wrap h1 {
    color: #fff;
    font-size: 70px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 22px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .title-wrap h1 {
        font-size: 40px;
        text-align: center;
        margin-bottom: 156px;
    }
}

.faces-wrap .face-content-1 .front .title-wrap p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .title-wrap p {
        text-align: center;
    }
}

.faces-wrap .face-content-1 .front .title-wrap p+p {
    margin-top: 24px;
}

.faces-wrap .face-content-1 .front .land {
    height: 129px;
    background: url(../../assets/img/faces/dot-land.png);
    background-size: auto 100%;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .land {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .land {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .face-content-1 .front .stage-1 {
    position: relative;
    margin-top: 28px;
    padding-bottom: 90px;
    overflow: hidden;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-1 {
        display: none;
    }
}

.faces-wrap .face-content-1 .front .stage-1 .object-wrap {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.faces-wrap .face-content-1 .front .stage-1 .object-wrap .ambulance {
    width: 231px;
    height: 122px;
    background: url(../../assets/img/faces/dot-ambulance.png);
    background-size: contain;
    animation: ambulance-idle 0.3s ease-in-out infinite;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .stage-1 .object-wrap .ambulance {
        background: url(../../assets/img/faces/dot-ambulance@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .stage-1 .object-wrap .ambulance {
        background: url(../../assets/img/faces/dot-ambulance@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-1 .front .stage-1 .land-wrap {
    display: flex;
    position: relative;
    z-index: 1;
}

.faces-wrap .face-content-1 .front .stage-1 .land-wrap .land {
    height: 129px;
    background: url(../../assets/img/faces/dot-land.png);
    background-size: auto 100%;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .stage-1 .land-wrap .land {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .stage-1 .land-wrap .land {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .face-content-1 .front .stage-1 .land-wrap .land.index-1 {
    flex: 1;
}

.faces-wrap .face-content-1 .front .stage-1 .land-wrap .land.index-2 {
    width: 222px;
    margin-top: 52px;
}

.faces-wrap .face-content-1 .front .stage-1 .land-wrap .land.index-3 {
    width: 370px;
}

.faces-wrap .face-content-1 .front .stage-1 .ladder {
    position: absolute;
    bottom: -40px;
    right: 44px;
    z-index: 0;
    width: 126px;
    height: 236px;
    background: url(../../assets/img/faces/dot-ladder.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .stage-1 .ladder {
        background: url(../../assets/img/faces/dot-ladder@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .stage-1 .ladder {
        background: url(../../assets/img/faces/dot-ladder@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-1 .front .stage-2 {
    height: 100%;
    padding-bottom: 48px;
    box-sizing: border-box;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 {
        margin-top: 90px;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .mobile-buttons {
    display: none;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 .mobile-buttons {
        display: flex;
        gap: 34px;
        justify-content: center;
        margin-bottom: 102px;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .land {
    width: 174px;
    position: absolute;
    top: 345px;
    right: 0;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 .land {
        display: none;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    left: 0;
    right: 174px;
    bottom: 186px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 .text-wrap {
        position: relative;
        bottom: 0;
        right: 0;
        gap: 58px;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon {
    width: 73px;
    height: 73px;
    background: url(../../assets/img/faces/dot-cross-item.png) center;
    background-size: contain;
    background-repeat: no-repeat !important;
    animation: heartbeat 1s infinite ease-in-out alternate;
    animation-delay: 0s;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon {
        background: url(../../assets/img/faces/dot-cross-item@2x.png) center;
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon {
        background: url(../../assets/img/faces/dot-cross-item@2x.png) center;
        background-size: contain;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon:nth-child(1) {
    animation-delay: 0s;
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon:nth-child(2) {
    animation-delay: 0.2s;
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap .icons .icon:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.faces-wrap .face-content-1 .front .stage-2 .text-wrap p {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 .text-wrap p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        word-break: keep-all;
    }
}

.faces-wrap .face-content-1 .front .stage-2 .mobile-amblance {
    display: none;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-1 .front .stage-2 .mobile-amblance {
        position: relative;
        display: block;
        padding-bottom: 248px;
    }

    .faces-wrap .face-content-1 .front .stage-2 .mobile-amblance .ambulance {
        position: absolute;
        bottom: 0;
        right: -54px;
        width: 332px;
        height: 175px;
        background: url(../../assets/img/faces/dot-ambulance-big.png);
        background-size: contain;
        animation: ambulance-idle 0.3s ease-in-out infinite;
    }
}

@media only screen and (max-width: 809px) and (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-1 .front .stage-2 .mobile-amblance .ambulance {
        background: url(../../assets/img/faces/dot-ambulance-big@2x.png);
        background-size: contain;
    }
}

@media only screen and (max-width: 809px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (max-width: 809px) and (min-resolution: 192dpi) {
    .faces-wrap .face-content-1 .front .stage-2 .mobile-amblance .ambulance {
        background: url(../../assets/img/faces/dot-ambulance-big@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-2 {
    position: relative;
    min-height: var(--vh);
    background: #30d130;
    padding-top: 58px;
    padding-bottom: 110px;
    overflow: hidden;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 {
        padding-bottom: 472px;
    }
}

.faces-wrap .face-content-2:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 166px;
    width: 560px;
    height: 456px;
    transform: rotate(13.87deg);
    background: url(../../assets/img/faces/dot-controller.png);
    background-size: contain;
    background-repeat: no-repeat !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-2:after {
        background: url(../../assets/img/faces/dot-controller@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-2:after {
        background: url(../../assets/img/faces/dot-controller@2x.png);
        background-size: contain;
    }
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2:after {
        width: 430px;
        height: 350px;
    }
}

.faces-wrap .face-content-2 .front {
    display: flex;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 .front {
        flex-direction: column;
        height: auto;
        gap: 50px;
    }
}

.faces-wrap .face-content-2 .front .left,
.faces-wrap .face-content-2 .front .right {
    width: 50%;
}

@media only screen and (max-width: 809px) {

    .faces-wrap .face-content-2 .front .left,
    .faces-wrap .face-content-2 .front .right {
        width: 100%;
        box-sizing: border-box;
        padding: 0 18px;
    }
}

.faces-wrap .face-content-2 .front .left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.faces-wrap .face-content-2 .front .left .content {
    max-width: 500px;
    padding-right: 146px;
    box-sizing: content-box;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 .front .left .content {
        max-width: 100%;
        padding-right: 0;
    }
}

.faces-wrap .face-content-2 .front .left .content h2 {
    color: #012790;
    font-size: 60px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 .front .left .content h2 {
        font-size: 48px;
    }
}

.faces-wrap .face-content-2 .front .left .content p {
    font-family: Pretendard, sans-serif;
    color: #012790;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.54px;
}

.faces-wrap .face-content-2 .front .left .content p.point {
    font-weight: 700;
    font-size: 20px;
}

.faces-wrap .face-content-2 .front .left .content p+p {
    margin-top: 30px;
}

.faces-wrap .face-content-2 .front .right .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
}

.faces-wrap .face-content-2 .front .right .content h3 {
    width: 159px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: url(../../assets/img/faces/btn-white.png);
    background-size: contain;
    color: #012790;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    padding-top: 3px;
    margin-bottom: 16px;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-2 .front .right .content h3 {
        background: url(../../assets/img/faces/btn-white@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-2 .front .right .content h3 {
        background: url(../../assets/img/faces/btn-white@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-2 .front .right .content .steps {
    display: flex;
    gap: 32px;
    margin-top: 14px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 .front .right .content .steps {
        flex-wrap: wrap;
        gap: 32px 20px;
    }
}

.faces-wrap .face-content-2 .front .right .content .steps .step {
    width: 139px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-2 .front .right .content .steps .step {
        width: calc(50% - 10px);
    }
}

.faces-wrap .face-content-2 .front .right .content .steps .step .icon {
    width: 139px;
    height: 139px;
}

.faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-1 {
    background: url(../../assets/img/faces/dot-circle-1.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-1 {
        background: url(../../assets/img/faces/dot-circle-1@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-1 {
        background: url(../../assets/img/faces/dot-circle-1@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-2 {
    background: url(../../assets/img/faces/dot-circle-2.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-2 {
        background: url(../../assets/img/faces/dot-circle-2@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-2 {
        background: url(../../assets/img/faces/dot-circle-2@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-3 {
    background: url(../../assets/img/faces/dot-circle-3.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-3 {
        background: url(../../assets/img/faces/dot-circle-3@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-2 .front .right .content .steps .step .icon.index-3 {
        background: url(../../assets/img/faces/dot-circle-3@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-2 .front .right .content .steps .step .text {
    color: #012790;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}

.faces-wrap .face-content-2 .front .right .content .date {
    font-family: Pretendard, sans-serif;
    color: #012790;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.72px;
}

.faces-wrap .face-content-2 .front .right .content p {
    font-family: Pretendard, sans-serif;
    color: #012790;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.54px;
}

.faces-wrap .face-content-2 .front .right .content p+p {
    margin-top: 30px;
}

.faces-wrap .face-content-2 .front .right .content .info-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 20px 0;
}

.faces-wrap .face-content-2 .front .right .content .info-wrap dl {
    display: flex;
    gap: 10px;
    font-family: Pretendard, sans-serif;
    color: #012790;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.54px;
}

.faces-wrap .face-content-2 .front .right .content .info-wrap dl dt {
    width: 100px;
    flex: none;
    font-weight: 700;
}

.faces-wrap .face-content-2 .front .right .content .info-wrap dl dd {
    flex: 1;
}

.faces-wrap .face-content-3 {
    position: relative;
    overflow: hidden;
    background: #0027e9;
    padding-top: 100px;
    padding-bottom: 56px;
    min-height: var(--vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faces-wrap .face-content-3 .front .content h3 {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.4px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content h3 {
        font-size: 36px;
        line-height: 42px;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    transition: transform 0.6s;
}

.faces-wrap .face-content-3 .front .content .form-wrap #layer {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 100;
}

.faces-wrap .face-content-3 .front .content .form-wrap #layer .layer-header {
    padding: 10px 10px;
    display: flex;
    justify-content: flex-end;
}

.faces-wrap .face-content-3 .front .content .form-wrap #layer .layer-header button {
    border: 0;
    font-family: DungGeunMo, Pretendard, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    white-space: nowrap;
    border-radius: 5px;
    border: 2px solid #0a4bff;
    background: #0a4bff;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.faces-wrap .face-content-3 .front .content .form-wrap #layer #layer-postcode {
    width: 100%;
    height: 100%;
}

body.game-mode .faces-wrap .face-content-3 .front .content .form-wrap {
    pointer-events: none;
    transform: rotateY(90deg);
}

.faces-wrap .face-content-3 .front .content .form-wrap .box {
    width: 937px;
    max-width: 100%;
    min-height: 100px;
    border-radius: 20px;
    background: #fff;
    padding: 32px 27px;
    display: flex;
    gap: 74px;
    color: #0a4bff;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box {
        width: auto;
        box-sizing: border-box;
        margin: 0 20px;
        gap: 50px;
        padding: 25px 20px;
        padding-bottom: 50px;
        flex-direction: column;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-left,
.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right {
    width: 50%;
}

@media only screen and (max-width: 809px) {

    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-left,
    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-right {
        width: 100%;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-left .form-element+.form-element {
    margin-top: 48px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-left .form-element+.form-element {
        margin-top: 20px;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right {
    position: relative;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right:before {
    content: "";
    position: absolute;
    top: 0;
    left: -37px;
    border-left: 0.5px solid #cbcdca;
    height: 100%;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-right:before {
        display: none;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap {
    margin-top: 84px;
    display: none;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap {
        margin-top: 50px;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap.show {
    display: block;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address {
    margin-top: 20px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address label {
    font-size: 15px;
    line-height: normal;
    letter-spacing: -0.75px;
    margin-bottom: 4px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element>div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element .form-group.postcode-group {
    display: none;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element .form-group.search-group {
    display: flex;
    gap: 13px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element .form-group.search-group input {
    flex: 1;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element .form-group.search-group button {
    cursor: pointer;
    font-family: DungGeunMo, Pretendard, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    white-space: nowrap;
    border-radius: 5px;
    border: 2px solid #0a4bff;
    background: #0a4bff;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    transition: background-color var(--transition);
}

@media only screen and (hover: hover) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address>.form-element .form-group.search-group button:hover {
        background: #083bc9;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address .form-user {
    display: flex;
    gap: 15px;
    margin-top: 19px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .box-right .form-gift-wrap .form-address .form-user .form-element {
    flex: 1;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .form-element>label {
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -1.1px;
    margin-bottom: 18px;
    word-break: keep-all;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .form-wrap .box .form-element>label {
        margin-bottom: 12px;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .form-element input {
    font-family: DungGeunMo, Pretendard, sans-serif;
    color: #0a4bff;
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 14px 12px;
    background: rgba(10, 75, 255, 0.15);
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.7px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .form-element input::placeholder {
    color: rgba(1, 39, 144, 0.5);
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .form-element .textarea-wrap {
    font-size: 0;
    line-height: 0;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .form-element textarea {
    font-family: DungGeunMo, Pretendard, sans-serif;
    color: #0a4bff;
    width: 100%;
    border: 0;
    resize: none;
    border-radius: 5px;
    padding: 10px 16px;
    background: rgba(10, 75, 255, 0.15);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1.1px;
    height: 214px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group label {
    cursor: pointer;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group label input {
    display: none;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group label span {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group label span:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #0a4bff;
    background: #fff;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .checkbox-group label input:checked+span:before {
    background: #0a4bff;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group {
    display: flex;
    gap: 40px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label {
    cursor: pointer;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label input {
    display: none;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label span {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label span:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #0a4bff;
    background: #fff;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label input:checked+span {
    position: relative;
}

.faces-wrap .face-content-3 .front .content .form-wrap .box .radio-group label input:checked+span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #0a4bff;
}

.faces-wrap .face-content-3 .front .content .form-wrap .button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button {
    font-family: DungGeunMo, Pretendard, sans-serif;
    color: #012790;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    width: 256px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    transition: background-image var(--transition);
    background: url(../../assets/img/faces/btn-submit-no-text.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button {
        background: url(../../assets/img/faces/btn-submit-no-text@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button {
        background: url(../../assets/img/faces/btn-submit-no-text@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button.disabled {
    animation: blink 1s infinite alternate;
    pointer-events: none;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@media only screen and (hover: hover) {
    .faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button:hover {
        background: url(../../assets/img/faces/btn-submit-no-text-hover.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button:hover {
        background: url(../../assets/img/faces/btn-submit-no-text-hover@2x.png);
        background-size: contain;
    }
}

@media only screen and (hover: hover) and (-webkit-min-device-pixel-ratio: 2),
only screen and (hover: hover) and (min-resolution: 192dpi) {
    .faces-wrap .face-content-3 .front .content .form-wrap .button-wrap .button:hover {
        background: url(../../assets/img/faces/btn-submit-no-text-hover@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-3 .front .content .game-block-wrap {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

body.game-mode .faces-wrap .face-content-3 .front .content .game-block-wrap {
    opacity: 1;
    pointer-events: auto;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-3 .front .content .game-block-wrap {
        top: 180px;
    }
}

.faces-wrap .face-content-3 .front .content .game-info {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translate(-50%, 30px);
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #0f3040;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.75px;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 1001;
}

body.show-game-info .faces-wrap .face-content-3 .front .content .game-info {
    pointer-events: all;
    opacity: 1;
    transform: translate(-50%, 0);
}

.faces-wrap .face-content-3 .front .content .game-info.hide {
    pointer-events: none;
    opacity: 0 !important;
}

.faces-wrap .face-content-3 .front .content .game-info .bubble {
    width: 314px;
    box-sizing: border-box;
    background-repeat: no-repeat !important;
}

.faces-wrap .face-content-4 {
    min-height: 1500px;
    background: url(../../assets/img/faces/dot-bg-2.png);
    background-size: contain;
    background-color: #1a9dff !important;
    background-position: left 22px !important;
    background-repeat: repeat-x !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 {
        background: url(../../assets/img/faces/dot-bg-2@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 {
        background: url(../../assets/img/faces/dot-bg-2@2x.png);
        background-size: contain;
    }
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 {
        overflow: visible;
        background-image: none;
        min-height: auto;
    }
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .background {
        display: none;
    }
}

.faces-wrap .face-content-4 .background .cloud.index-1 {
    top: 10%;
}

.faces-wrap .face-content-4 .background .cloud.index-2 {
    top: 25%;
}

.faces-wrap .face-content-4 .background .cloud.index-3 {
    top: 30%;
}

.faces-wrap .face-content-4 .background .cloud.index-4 {
    top: 45%;
    left: 80%;
}

.faces-wrap .face-content-4 .background .cloud.index-5 {
    top: 50%;
}

.faces-wrap .face-content-4 .background .cloud.index-6 {
    top: 65%;
    left: 35%;
}

.faces-wrap .face-content-4 .front {
    position: relative;
    height: 100%;
    width: 100%;
    padding-top: 300px;
    min-height: 1500px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front {
        padding-top: 52px;
        min-height: 0;
    }
}

.faces-wrap .face-content-4 .front .content {
    width: 100%;
    margin-bottom: 128px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}

.faces-wrap .face-content-4 .front .content .blocks {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 240px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .content .blocks {
        margin: 0;
        grid-auto-rows: auto !important;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block {
    position: relative;
    width: 200px;
    height: 200px;
    background: #c06f59;
    cursor: pointer;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .content .blocks .block {
        width: 50vw;
        height: 50vw;
        -webkit-tap-highlight-color: transparent;
    }

    .faces-wrap .face-content-4 .front .content .blocks .block:active,
    .faces-wrap .face-content-4 .front .content .blocks .block:focus {
        outline: 0;
        -webkit-tap-highlight-color: transparent;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block {
    position: absolute;
    left: 0;
    bottom: 116px;
    width: 274px;
    height: auto;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block.message-block-left {
        left: auto;
        right: 0;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block.active {
    opacity: 1;
    pointer-events: auto;
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block:before {
    content: "";
    display: block;
    width: 100%;
    height: 88px;
    background: url(../../assets/img/faces/dot-box-t.png);
    background-size: 100%;
    background-repeat: no-repeat !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block:before {
        background: url(../../assets/img/faces/dot-box-t@2x.png);
        background-size: 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block:before {
        background: url(../../assets/img/faces/dot-box-t@2x.png);
        background-size: 100%;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block:after {
    content: "";
    display: block;
    width: 100%;
    height: 95px;
    background: url(../../assets/img/faces/dot-box-b.png);
    background-size: 100%;
    background-repeat: no-repeat !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block:after {
        background: url(../../assets/img/faces/dot-box-b@2x.png);
        background-size: 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block:after {
        background: url(../../assets/img/faces/dot-box-b@2x.png);
        background-size: 100%;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    top: 42px;
    right: 42px;
    background: url(../../assets/img/faces/dot-close.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block .close {
        background: url(../../assets/img/faces/dot-close@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block .close {
        background: url(../../assets/img/faces/dot-close@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block .message-block p {
    position: relative;
    color: #0f3040;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.9px;
    background: url(../../assets/img/faces/dot-box-c.png);
    background-size: 100%;
    background-repeat: repeat-y !important;
    padding: 0 33px;
    padding-bottom: 30px;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block p {
        background: url(../../assets/img/faces/dot-box-c@2x.png);
        background-size: 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .blocks .block .message-block p {
        background: url(../../assets/img/faces/dot-box-c@2x.png);
        background-size: 100%;
    }
}

.faces-wrap .face-content-4 .front .content .blocks .block.empty-block {
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.faces-wrap .face-content-4 .front .content .blocks .block.empty-block:after {
    content: "";
    display: block;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .content .blocks .block.empty-block:after {
        width: 50vw;
        height: 50vw;
    }
}

body.block-grabbing .faces-wrap .face-content-4 .front .content .blocks .block.empty-block {
    opacity: 0.3;
}

.faces-wrap .face-content-4 .front .content .steps {
    position: relative;
    height: 102px;
    margin-left: 69px;
    margin-right: 69px;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .content .steps {
        display: none;
    }
}

.faces-wrap .face-content-4 .front .content .steps .step-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 66px;
    height: 102px;
    background: url(../../assets/img/faces/dot-step-left.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .steps .step-left {
        background: url(../../assets/img/faces/dot-step-left@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .steps .step-left {
        background: url(../../assets/img/faces/dot-step-left@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .content .steps .step-center {
    position: absolute;
    left: 66px;
    right: 66px;
    top: 0;
    height: 102px;
    background: url(../../assets/img/faces/dot-step-center.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .steps .step-center {
        background: url(../../assets/img/faces/dot-step-center@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .steps .step-center {
        background: url(../../assets/img/faces/dot-step-center@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .content .steps .step-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 66px;
    height: 102px;
    background: url(../../assets/img/faces/dot-step-right.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .content .steps .step-right {
        background: url(../../assets/img/faces/dot-step-right@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .content .steps .step-right {
        background: url(../../assets/img/faces/dot-step-right@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.faces-wrap .face-content-4 .front .bottom .objects {
    position: relative;
}

@media only screen and (max-width: 809px) {
    .faces-wrap .face-content-4 .front .bottom .objects {
        display: none;
    }
}

.faces-wrap .face-content-4 .front .bottom .tree-wrap {
    position: absolute;
    bottom: 0;
    left: 50px;
    display: flex;
    gap: 16px;
}

.faces-wrap .face-content-4 .front .bottom .tree-wrap .tree {
    width: 85px;
    height: 221px;
    background: url(../../assets/img/faces/dot-tree.png);
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .bottom .tree-wrap .tree {
        background: url(../../assets/img/faces/dot-tree@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .bottom .tree-wrap .tree {
        background: url(../../assets/img/faces/dot-tree@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .bottom .ambulance {
    position: absolute;
    bottom: 0;
    left: calc(100vw + 332px);
    width: 332px;
    height: 175px;
    background: url(../../assets/img/faces/dot-ambulance-big.png);
    background-size: contain;
    animation: ambulance-idle 0.3s ease-in-out infinite;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .bottom .ambulance {
        background: url(../../assets/img/faces/dot-ambulance-big@2x.png);
        background-size: contain;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .bottom .ambulance {
        background: url(../../assets/img/faces/dot-ambulance-big@2x.png);
        background-size: contain;
    }
}

.faces-wrap .face-content-4 .front .bottom .land-bottom {
    position: relative;
    width: 100%;
    height: 128px;
    background: url(../../assets/img/faces/dot-land.png);
    background-size: auto 100%;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx) {
    .faces-wrap .face-content-4 .front .bottom .land-bottom {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .faces-wrap .face-content-4 .front .bottom .land-bottom {
        background: url(../../assets/img/faces/dot-land@2x.png);
        background-size: auto 100%;
    }
}

.faces-wrap .face-content-4.enter-animation .bottom .ambulance {
    animation: ambulance-move 2.5s ease-in-out forwards, ambulance-idle 0.3s ease-in-out infinite 2s;
}

@keyframes ambulance-move {
    0% {
        left: calc(100vw);
    }

    100% {
        left: 50vw;
    }
}

@keyframes ambulance-idle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1px);
    }
}

/*# sourceMappingURL=app.css.map */