.how-it-works {
    position: relative;
    width: 100%;
    min-width: 1600px;
    height: 1024px;
    background: #ffffff;
    overflow: hidden;
}

.how-it-works__title {
    position: absolute;
    top: 104px;
    left: 194px;
    font-family: 'RockStar', 'Impact', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #262626;
    margin: 0;
}

.how-it-works__circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.how-it-works__circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works__number {
    font-family: 'RockStar', 'Impact', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #262626;
    line-height: 1;
}

.how-it-works__label {
    font-family: 'RockStar', 'Impact', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #262626;
    text-align: center;
    line-height: 1.2;
}

.how-it-works__circle--green {
    width: 420px;
    height: 420px;
    background: #CFF745;
    top: 200px;
    left: 368px;
    z-index: 1;
}

.how-it-works__circle--green:hover {
    width: 500px;
    height: 500px;
    top: calc(200px - 40px);
    left: calc(368px - 40px);
    z-index: 100;
    box-shadow: 0 0 100px rgba(207, 247, 69, 0.5);
}

.how-it-works__circle--purple {
    width: 320px;
    height: 320px;
    background: #E2C7FC;
    top: 467px;
    left: 208px;
    z-index: 2;
}

.how-it-works__circle--purple:hover {
    width: 400px;
    height: 400px;
    top: calc(467px - 40px);
    left: calc(208px - 40px);
    z-index: 100;
    box-shadow: 0 0 127px rgba(226, 199, 252, 1);
}

.how-it-works__circle--gray {
    width: 260px;
    height: 260px;
    background: #E9E9E9;
    top: 590px;
    left: 497px;
    z-index: 3;
}

.how-it-works__circle--gray:hover {
    width: 340px;
    height: 340px;
    top: calc(590px - 40px);
    left: calc(497px - 40px);
    z-index: 100;
    box-shadow: 0 0 100px rgba(239, 240, 247, 0.5);
}

.how-it-works__manikin {
    position: absolute;
    top: 119px;
    right: 255px;
    width: 344px;
    height: 800px;
}

.how-it-works__manikin img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: opacity 0.4s ease;
}

.how-it-works__manikin .manikin-lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
}

.manikin-default {
    opacity: 1;
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
}

.manikin-state-2 {
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.41);
}

.manikin-state-1 {
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.2);
}

.manikin-state-3 {
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.15);
}

.manikin-state-1.active,
.manikin-state-2.active,
.manikin-state-3.active {
    opacity: 1;
}

.how-it-works__scroll-icon {
    display: none;
}

@media (max-width: 768px) {
    .how-it-works {
        position: relative;
        width: 100%;
        min-width: auto;
        height: auto;
        min-height: 100vh;
        padding: 26px 19px 0;
        overflow: hidden;
        touch-action: pan-y;
    }

    .how-it-works__title {
        position: static;
        font-size: 32px;
        text-align: center;
        margin-bottom: 15px;
    }

    .how-it-works__circles {
        position: relative;
        width: 100%;
        height: 470px;
    }

    .how-it-works__circle {
        gap: 6px;
        cursor: default;
    }

    .how-it-works__number {
        font-size: 50px;
    }

    .how-it-works__label {
        font-size: 18px;
    }

    .how-it-works__circle--green {
        width: 230px;
        height: 230px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .how-it-works__circle--green:hover {
        width: 230px;
        height: 230px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: none;
    }

    .how-it-works__circle--green .how-it-works__number {
        font-size: 55px;
    }

    .how-it-works__circle--green .how-it-works__label {
        font-size: 20px;
    }

    .how-it-works__circle--purple {
        width: 118px;
        height: 118px;
        top: 50%;
        left: 0;
        transform: translate(-25%, calc(-50% - 70px));
        z-index: 5;
        opacity: 0.6;
    }

    .how-it-works__circle--purple:hover {
        width: 118px;
        height: 118px;
        top: 50%;
        left: 0;
        transform: translate(-25%, calc(-50% - 70px));
        box-shadow: none;
    }

    .how-it-works__circle--purple .how-it-works__number {
        font-size: 32px;
    }

    .how-it-works__circle--purple .how-it-works__label {
        font-size: 12px;
    }

    .how-it-works__circle--gray {
        width: 118px;
        height: 118px;
        top: 50%;
        right: 0;
        left: auto;
        transform: translate(25%, calc(-50% - 70px));
        z-index: 5;
        opacity: 0.6;
    }

    .how-it-works__circle--gray:hover {
        width: 118px;
        height: 118px;
        top: 50%;
        right: 0;
        left: auto;
        transform: translate(25%, calc(-50% - 70px));
        box-shadow: none;
    }

    .how-it-works__circle--gray .how-it-works__number {
        font-size: 32px;
    }

    .how-it-works__circle--gray .how-it-works__label {
        font-size: 12px;
    }

    .how-it-works__manikin {
        position: relative;
        top: auto;
        right: auto;
        width: 237px;
        height: 550px;
        margin: -75px auto 0;
        z-index: 15;
    }

    .how-it-works__manikin img,
    .how-it-works__manikin .manikin-lottie {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .how-it-works__scroll-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        padding-bottom: 20px;
    }

    .how-it-works__scroll-icon img {
        width: 44px;
        height: 44px;
    }

    .how-it-works__circle.slide-active {
        width: 230px;
        height: 230px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        opacity: 1;
    }

    .how-it-works__circle.slide-active .how-it-works__number {
        font-size: 55px;
    }

    .how-it-works__circle.slide-active .how-it-works__label {
        font-size: 20px;
    }

    .how-it-works__circle.slide-prev {
        width: 118px;
        height: 118px;
        top: 50%;
        left: 0;
        transform: translate(-25%, calc(-50% - 70px));
        z-index: 5;
        opacity: 0.6;
    }

    .how-it-works__circle.slide-prev .how-it-works__number {
        font-size: 32px;
    }

    .how-it-works__circle.slide-prev .how-it-works__label {
        font-size: 12px;
    }

    .how-it-works__circle.slide-next {
        width: 118px;
        height: 118px;
        top: 50%;
        right: 0;
        left: auto;
        transform: translate(25%, calc(-50% - 70px));
        z-index: 5;
        opacity: 0.6;
    }

    .how-it-works__circle.slide-next .how-it-works__number {
        font-size: 32px;
    }

    .how-it-works__circle.slide-next .how-it-works__label {
        font-size: 12px;
    }
}
