.row--box {
    width: 1380px !important;
    margin: 0 auto !important;
    max-width: 100%;
    min-width: 320px;
    padding-left: 16px;
    padding-right: 16px;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pc-show {
    display: block;
}
.mo-show {
    display: none;
}
@media all and (max-width: 1024px) {
    .pc-show {
        display: none;
    }
    .mo-show {
        display: block;
    }
}
/************************/
#container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    min-width: 320px;
}

/* 헤드 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(var(--rgb-black), 50%);
    backdrop-filter: blur(8px);
    width: 100%;

    height: 70px;
    z-index: 999;

    .hd-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: block;
        background: url('../images/logo.svg') no-repeat;
        width: 100px;
        height: 54px;
        background-size: contain;
        font-size: 0;
        filter: var(--filter-white);

        @media only screen and (max-width: 768px) {
            display: block;
            width: 70px;
            height: 40px;
            background-size: contain;
        }
    }

    .topNav {
        float: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;

        & > li {
            border-radius: 100px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            padding: 0 25px;
        }
    }

    @media only screen and (max-width: 768px) {
        height: 54px;

        .hd-inner {
            width: 100%;
        }

        .topNav li {
            height: 32px;
            padding: 0 12px;
            font-size: 14px;
        }
    }
}

.content-body-wrap {
    padding-top: 70px;
    /* height: 100vh; */
}

.gradient-bg {
    background: radial-gradient(105.46% 97.05% at 45.11% 50%, #6100ff 0%, #e5007c 100%), #fff;
}

.sec-join-wrap {
    width: 700px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    &.white-bg {
        background: var(--white);
    }

    @media all and (max-width: 768px) {
        width: 100%;
        padding: 0 16px;
    }
}

.sub-content-box {
    padding: 30px;

    @media all and (max-width: 768px) {
        padding: 0 16px;
    }
}

/**/

.top-util-button-wrap {
    display: flex;
    gap: 4px;
    margin-left: auto;
    & > a {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        border: 1px solid rgb(var(--rgb-white), 20%);
        color: var(--white);
        border-radius: 100px;
    }
    .btn-cs {
        border: 0;
        padding: 0 10px 0 0;
    }
}
@media all and (max-width: 768px) {
    .top-util-button-wrap {
        & > a {
            display: flex;
            align-items: center;
            gap: 6px;
            height: 28px;
            padding: 0 8px;
            font-size: 13px;
        }
        .btn-cs {
            padding: 0 8px 0 0;
        }
    }
}
/**************************************************************/

.content-body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: clamp(38px, 1.375vw + 33.6px, 60px);
    height: calc(100vh - 200px);
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.sec-item {
    position: relative;
    scroll-snap-align: start;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    padding: clamp(50px, 3.125vw + 40px, 100px) 0;
}

/*********************************************************************************************************************/
.sns-symbol-wrap {
    display: flex;
    gap: 4px;
    margin-left: 8px;
    & > a {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        background: rgb(var(--rgb-black), 60%);
        color: var(--white);
        border-radius: 100px;

        &::before {
            display: block;
            width: 24px;
            height: 24px;
        }
    }

    .btn-google {
        &::before {
            content: '';
            background: url('../images/sns-google.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-googleplay {
        &::before {
            content: '';
            background: url('../images/sns-googleplay.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-onestore {
        &::before {
            content: '';
            background: url('../images/sns-onestore.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-apple {
        &::before {
            content: '';
            background: url('../images/sns-apple.svg') no-repeat;
            background-size: contain;
            filter: var(--filter-white);
        }
    }

    .btn-email {
        &::before {
            content: '';
            background: url('../images/ico-email.svg') no-repeat;
            background-size: 100%;
        }
    }
}

@media all and (max-width: 768px) {
    .sns-symbol-wrap {
        position: absolute;
        top: 80px;
        right: 20px;
        flex-direction: column-reverse;
        z-index: 100;
        .btn-login {
            font-size: 14px;
            padding: 0 12px;
            border: 1px solid rgb(var(--rgb-white), 20%);
        }

        & > a {
            gap: 0;
            height: 36px;
            padding: 0 8px;
            font-size: 0;
            border-radius: 4px;

            &::before {
                width: 20px;
                height: 20px;
            }
        }
    }
}

/****/
.store-download {
    display: flex;
    gap: clamp(4px, 0.375vw + 2.8px, 10px);

    & > a {
        font-size: 0;
        width: clamp(100px, 10.625vw + 66px, 270px);
        height: 80px;
    }
}

.store-apple {
    background: url('../images/store-apple.png?05') no-repeat;
    background-size: contain;
}

.store-google {
    background: url('../images/store-google.png?06') no-repeat;
    background-size: contain;
}

.store-onestore {
    background: url('../images/store-onestore.png?002') no-repeat;
    background-size: contain;
}

@media all and (max-width: 768px) {
}

/***/

.row-style {
    flex-direction: row !important;

    @media all and (max-width: 1024px) {
        flex-direction: column !important;
    }
}

.content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(8px, 0.5vw + 6.4px, 16px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;

    & > h1 {
        font-size: clamp(30px, 2.5vw + 22px, 70px);
        font-weight: 800;
        line-height: 1.2;
    }

    & > h2 {
        font-size: clamp(18px, 1.688vw + 12.6px, 45px);
        line-height: 1.3;
        text-align: center;
    }

    .point {
        position: relative;
        color: var(--black);
        font-weight: 800;
        display: inline-block;
        z-index: 1;
        &::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0.1em;
            width: 100%;
            height: 0.6em;
            background: #fff94f;
            z-index: -1;
            transform: rotate(-2deg);
        }

        &.white {
            color: var(--white);
            &::before {
                background: var(--primary-500);
            }
        }
    }
    &.black {
        color: var(--black);
    }
}

@media all and (max-width: 768px) {
    .content-title {
        justify-content: center;
        align-items: center !important;

        & > h1 {
            text-align: center !important;
        }

        & > h2 {
            text-align: center !important;
        }
    }
}

/*** 01 *************************************************/

/**/

.vs-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    position: absolute;
    top: 30%;
    left: 150px;
    transform: translate(-0, -50%);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 130%;

    .h1 {
        font-size: 105px;
        line-height: 1;
        width: fit-content;
        color: var(--white);
        font-weight: 800;
        background: var(--primary-500);
        padding: 4px 10px;
        border-radius: 10px;
    }

    .h2 {
        font-size: 75px;
        line-height: 1.3;
        width: fit-content;
        font-weight: bold;
        color: var(--white);
    }
}

@media all and (max-width: 1024px) {
    .vs-title {
        top: 85%;
        left: 20px;

        .h1 {
            font-size: 65px;
        }

        .h2 {
            font-size: 38px;
        }
    }
}

/***/
.visual-frame {
    height: 100vh;
    padding: 0;
}

.video-background {
    position: relative;
    width: 100%;
    height: calc(100vh - 54px);
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0, 0, 0, 0.5); */
        z-index: 1;
    }

    .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mute-btn {
        position: absolute;
        top: 80px;
        left: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 20px;
        border-radius: 5px;
        z-index: 10;
    }
}
.video-xl {
    display: block;
}

.video-sm {
    display: none;
}

@media all and (max-width: 1024px) {
    .video-xl {
        display: none;
    }
    .video-sm {
        display: block;
    }
    .visual-frame {
        height: 100%;
    }
    .video-background {
        /* height: 700px; */
    }
}
/*** 01 *************************************************/
.section-01 {
    background: var(--white);
    .content-body {
        flex-direction: row !important;
        .sec-01-video {
            width: 950px;
        }
        .content-title {
            align-items: flex-start;

            & > h2 {
                text-align: left;
            }
        }
    }
}

@media only screen and (max-width: 1250px) {
    .section-01 {
        .content-body {
            flex-direction: column !important;
            .sec-01-video {
                width: 90%;
            }
            .content-title {
                align-items: center !important;

                & > h1,
                & > h2 {
                    text-align: center;
                }
            }
        }
    }
}
/*** 02 *************************************************/
.section-02 {
    background: var(--primary-500);
    height: 100% !important;

    .content-img-box {
        width: 45%;
    }

    @media only screen and (max-width: 1024px) {
        .content-img-box {
            width: 100%;
        }
    }
}

.card-flip-animation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    padding-bottom: 50px;

    .card-container {
        display: inline-block;
        perspective: 900px;
        text-align: center;

        .card {
            position: relative;
            width: clamp(150px, 8.125vw + 124px, 280px);
            height: clamp(200px, 11.25vw + 164px, 380px);
            transition: all 0.6s ease;
            transform-style: preserve-3d;

            & > p {
                width: 100%;
                height: 100%;
                border-radius: 8px;
                overflow: hidden;
            }

            .front {
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--primary-500);
            }

            .back {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .front-logo {
                display: flex;
                font-size: 0;
                &::after {
                    content: '';
                    background: url('../images/logo.svg') no-repeat;
                    background-size: 100% auto;
                    width: 100px;
                    height: 60px;
                    filter: var(--filter-white);
                }
            }
        }

        .front,
        .back {
            position: absolute;
            background: #fec606;
            top: 0;
            left: 0;
            width: 200px;
            height: 300px;
            border-radius: 5px;
            color: white;
            box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
            backface-visibility: hidden;
        }

        &:hover .card {
            transform: rotateY(180deg);
        }

        .back {
            transform: rotateY(180deg);
        }
    }
}
@media all and (max-width: 1024px) {
    .card-flip-animation {
        gap: 8px;
    }
}
/****/
.popup-content-slideDown {
    background: radial-gradient(221.02% 139.02% at 3.42% 100%, #000 0%, #757575 100%);

    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);

    border-radius: 16px;
    width: 600px;
    max-width: 90%;

    z-index: 100;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-purple);
        border-radius: 16px;
        padding: 1px;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }

    @media all and (max-width: 768px) {
        width: 100%;
    }
}

.callme-waiting-area {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 0;

    .user-photo-box {
        width: 160px;
        height: 160px;
        border-radius: 100px;
        border: 6px solid rgb(var(--rgb-white), 18%);
        overflow: hidden;

        & > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .call-text {
        padding: 6px 0;
        color: var(--white);
    }

    .user-info {
        color: var(--white);
        font-size: 18px;
        border-radius: 100px;
        padding: 12px 20px;
        background: var(--black);
        margin-bottom: 15px;
    }

    .button-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
}

@media all and (max-width: 768px) {
    .callme-waiting-area {
        padding: 20px 0;

        .user-photo-box {
            width: 100px;
            height: 100px;
        }

        .call-text {
            padding: 2px 0;
        }

        .user-info {
            font-size: 15px;
            padding: 6px 20px;
            margin-bottom: 8px;
        }

        .button-wrap {
            gap: 20px;
        }
    }
}

.btn-videoCall-off-Large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    width: 68px;
    height: 68px;
    border-radius: 100px;
    font-size: 0;

    &::after {
        content: '';
        background: url('../images/ico-call-off.svg') no-repeat center;
        background-size: cover;
        filter: var(--filter-white);
        width: 34px;
        height: 34px;
        display: flex;
    }

    @media all and (max-width: 768px) {
        width: 48px;
        height: 48px;

        &::after {
            width: 24px;
            height: 24px;
        }
    }
}

/**/
.btn-videoCall-on-Large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#54cf61, #1a9930, #0f6d1e);
    width: 68px;
    height: 68px;
    border-radius: 100px;
    font-size: 0;

    &::after {
        content: '';
        background: url('../images/ico-call-on.svg') no-repeat center;
        background-size: cover;
        filter: var(--filter-white);
        width: 34px;
        height: 34px;
        display: flex;
        animation: shake 1.1s linear infinite;
    }

    &::before {
        content: '';
        position: absolute;
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: var(--white);
        border: 1.5px solid var(--white);
        opacity: 0.5;
        animation: ringBell 1.1s linear infinite;
    }

    @media all and (max-width: 768px) {
        width: 48px;
        height: 48px;

        &::after {
            width: 24px;
            height: 24px;
        }
    }
}

@keyframes ringBell {
    to {
        opacity: 0;
        height: 10rem;
        width: 10rem;
        background: transparent;
    }
}

@media all and (max-width: 768px) {
    @keyframes ringBell {
        to {
            opacity: 0;
            height: 6rem;
            width: 6rem;
            background: transparent;
        }
    }
}

/*** 03 *************************************************/
.section-03 {
    background: var(--gray-900);

    .content-img-box {
        width: 20%;
        object-fit: contain;
    }
}

@media all and (max-width: 768px) {
    .section-03 {
        .content-img-box {
            width: 60%;
        }
    }
}

/*** 04 *************************************************/
.section-04 {
    background: var(--primary-500);
    .content-title {
        align-items: center;
    }
    .symbol {
        width: 280px;
        height: 280px;
    }
    .btn-down {
        border-radius: 100px;
        background: var(--white);
        color: var(--black);
        font-weight: 800;
        font-size: 20px;
        height: 60px;
        padding: 0 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        &::after {
            content: '';
            background: url('../images/arrow-right.svg') no-repeat;
            background-size: 100% auto;
            width: 20px;
            height: 20px;
            filter: var(--filter-gray-600);
        }
    }
}

@media all and (max-width: 768px) {
    .section-04 {
        .symbol {
            width: 200px;
            height: 200px;
        }
    }
}

/*************************************************/

#footer {
    background: var(--gray-700);
    padding: clamp(10px, 0.625vw + 8px, 20px) 0;
    width: 100%;

    .footer-inner {
        width: 1200px;
        margin: 0 auto;

        @media all and (max-width: 1200px) {
            width: 100%;
            padding: 0 16px;
        }
    }

    .link-wrap {
        display: flex;
        gap: 16px;
        align-items: center;
        height: clamp(32px, 0.5vw + 30.4px, 40px);
        font-size: 13px;

        & > a {
            color: var(--gray-400);
        }
    }

    .address {
        color: var(--gray-400);
        padding: 2px 0;

        .row {
            font-size: 12px;
            display: flex;
            gap: 20px;

            @media all and (max-width: 768px) {
                &:nth-child(1) {
                    flex-direction: row;
                    gap: 16px;
                }

                &:nth-child(4) {
                    flex-direction: row;
                    gap: 16px;
                }

                gap: 2px;
                flex-direction: column;
            }
        }
    }
}

@media all and (max-width: 1024px) {
    .footer {
        width: 100%;
        padding: 0 16px 20px 16px;
        margin-top: 50px;

        .menu {
            height: 46px;

            & > a {
                font-size: 14px;
            }
        }
    }

    .footer .address {
        font-size: 12px;
        line-height: 18px;
        word-break: keep-all;

        p.row:nth-child(3) {
            flex-direction: column;
            gap: 0px;
        }
    }

    .section-modal-popup .mod-inContent .pop-textbox {
        font-size: 12px;
        line-height: 22px;
    }
}

@media all and (max-width: 767px) {
}

/* 모달 레이어 팝업*/
#dark-md-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modalLayer-popup {
    position: relative;
}

.section-modal-popup {
    display: none;
    width: calc(100% - 100px);
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    height: 70%;
    box-shadow: 0px 15px 25px 0px rgb(0 0 0 / 20%);
    overflow-y: scroll;
}

.mod-inContent {
    position: relative;

    &:after {
        content: '';
        display: table;
        clear: both;
    }

    .btn-close i {
        position: absolute;
        top: 10px;
        right: 15px;
        width: 20px;
        height: 20px;
        background: url('../images/btn-close.svg') no-repeat center center;
        background-size: 100%;
        z-index: 1;
        display: inline-block;
    }

    .btn-close:hover,
    .btn-close:focus {
        cursor: pointer;
    }

    .pop-content-box {
        font-size: 14px;
        line-height: 140%;
    }
}

@media all and (max-width: 767px) {
    .section-modal-popup {
        width: 90%;
        padding: 16px;
    }
}

/***************************************/
.hd-title {
    font-size: 30px;
    color: var(--white);
}

.sns-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;

    & a {
        display: flex;
        align-items: center;
        background: var(--white);
        gap: 14px;
        height: 48px;
        padding: 0 50px 0 60px;
        font-weight: 600;
        font-size: 16px;
    }
}

.join-caption {
    padding-top: 30px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}

/**/
.w-member-wrap {
    width: 700px;
    background: var(--white);
    height: 100%;
    margin: 0 auto;

    @media all and (max-width: 768px) {
        width: 100%;
    }
}

.app-title-area {
    /* position: fixed;
  left: 0;
  right: 0;
  top: 0; */
    margin: 0 auto;
    height: 56px;
    /* background: rgba(0, 0, 0, 0.4); */
    max-width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    padding: 8px 16px 0;

    .title {
        width: 100%;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
    }

    .btn-back {
        display: block;
        background: url('../images/arrow-left.svg') no-repeat center;
        width: 14px;
        height: 14px;
        cursor: pointer;
        filter: var(--filter-gray-700);
    }
}

/**********************/
/*  panel-input-box,판넬 */
.panel-input-box {
    display: flex;
    flex-direction: column;
    gap: 16px;

    & > input {
        display: flex;
        width: 100% !important;
    }

    .row-item {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4px 0;
        width: 100%;

        &:after {
            content: '';
            display: table;
            clear: both;
        }

        &:last-child {
            margin-bottom: 0;
        }

        .subject {
            display: flex;
            gap: 4px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-800);
        }

        .subject::after {
            content: '*';
            color: var(--gray-400);
        }

        .subject.none::after {
            content: '';
        }

        .btn-selectBox {
            border: 1px solid var(--gray-300);
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;

            &::after {
                content: '';
                background: url('../svg/arrow-down.svg') no-repeat;
                background-size: 100% auto;
                width: 20px;
                height: 20px;
                filter: var(--filter-gray-600);
            }
        }

        .important-warning {
            display: block;
            color: var(--red);
            font-size: 13px;
            font-weight: 400;
        }

        /*에러/공지 메세지*/
        .important-error {
            color: var(--red);
            /* display: none; */
            font-size: 13px;
            font-weight: 300;
        }

        .important-notice {
            display: block;
            color: var(--purple-500);
            font-size: 13px;
        }

        .in-row {
            display: flex;
            gap: 6px;

            & > input {
                display: flex;
                width: 100% !important;
            }
        }

        .in-col {
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;

            & > input {
                width: 100%;
            }

            .in-col-in {
                display: flex;
                gap: 6px;

                & > input {
                    display: flex;
                    width: 100% !important;
                }
            }
        }
    }

    .important-note {
        display: block;
        color: var(--gray600);
        font-size: 13px;
    }

    .important-caution {
        display: block;
        color: var(--red);
        font-size: 13px;
    }

    .eyeView {
        position: absolute;
        top: 12px;
        right: 10px;

        .security[type='checkbox'] {
            display: none !important;
        }

        .security[type='checkbox'] + .Link {
            color: #222;
        }
    }
}

.btn-inputReg {
    background: var(--gray-300);
    color: var(--gray-600);
    width: 78px;
    height: 52px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;

    &.active {
        border: 1px solid var(--primary-red);
        color: var(--primary-red);
        background: var(--white);
    }
}

.password-serach {
    text-align: right;
    font-size: 14px;
}

.btn-auth-number {
    font-size: 14px;
    margin-left: auto;
    color: #4b4deb;
}

/**/
.bubble-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0;
    width: 800px;
    .avatar {
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        background: #000;
        animation: pulse 3s ease-in-out infinite;

        & > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        &:nth-child(1) {
            width: 180px;
            height: 180px;
            animation-delay: 0.3s;
        }

        &:nth-child(2) {
            width: 280px;
            height: 280px;
            animation-delay: 0.1s;
        }

        &:nth-child(3) {
            width: 180px;
            height: 180px;
            animation-delay: 0.6s;
        }

        &:nth-child(4) {
            width: 230px;
            height: 230px;
            animation-delay: 0.9s;
        }

        &:nth-child(5) {
            width: 230px;
            height: 230px;
            animation-delay: 0.2s;
        }
    }
}

@media all and (max-width: 768px) {
    .bubble-wrap {
        width: 100%;
        gap: 12px;
        .avatar {
            &:nth-child(1) {
                width: 60px;
                height: 60px;
            }

            &:nth-child(2) {
                width: 100px;
                height: 100px;
            }

            &:nth-child(3) {
                width: 60px;
                height: 60px;
            }

            &:nth-child(4) {
                width: 90px;
                height: 90px;
            }

            &:nth-child(5) {
                width: 95px;
                height: 95px;
            }
        }
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
