.hero {
    position: relative;
    display: flex;
    height: 100%;
    margin-bottom: 120px;
}
.hero .view {
    max-width: 280px;
    height: 100%;
    padding-top: 60px;
    margin-left: 140px;
}
.hero .view::before {
    content: '';
    position: absolute;
    left: 100px;
    top: -120px;
    width: 360px;
    height: calc(100% + 80px);
    background: var(--light);
    border-radius: 60px;
    z-index: -1;
}
.hero .view img {
    width: 100%;
    height: 100%;
}
.hero .info {
    margin-left: 120px;
    padding-top: 40px;
}
.hero .info h1 {
    font-size: 36px;
    line-height: 50px;
    color: var(--dark);
    font-weight: 700;
    font-family: var(--font-main);
    max-width: 460px;
    margin-bottom: 20px;
}
.hero .info p {
    color: var(--dark-80);
    margin-bottom: 20px;
    text-align: justify;
    max-width: 600px;
}
.hero .info ul {
    list-style: none;
    margin-left: 20px;
    max-width: 500px;
}
.hero .info ul li {
    color: var(--dark-80);
    position: relative;
    margin-left: 20px;
}
.hero .info ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    left: -14px;
    background: rgba(43, 45, 66, 0.8);
    border-radius: 10px;
    top: 8px;
}
.hero .info ul li b {
    font-weight: 700;
}
@media screen and (max-width: 1279px) {
    .hero .view {
        margin-left: 20px;
        max-width: 240px;
    }
    .hero .view::before {
        left: -20px;
        top: -110px;
        width: 320px;
        border-radius: 40px;
    }
    .hero .info {
        padding-top: 0;
        margin-left: 100px;
    }
}
@media screen and (max-width: 767px) {
    .hero {
        flex-direction: column-reverse;
    }
    .hero .view {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        max-width: unset;
        margin: 0;
        margin-top: 40px;
        padding: 40px 20px 0 20px;
    }
    .hero .view::before {
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 40px);
    }
    .hero .info {
        margin-left: 0;
        margin-top: 80px;
    }
    .hero .info h1 {
        font-size: 32px;
        line-height: normal;
    }
    .hero .info ul {
        margin-left: 0;
    }
}

.development-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.development-stage h1 {
    font-size: 36px;
    line-height: 50px;
    color: var(--dark);
    font-weight: 700;
    font-family: var(--font-main);
    max-width: 460px;
    margin-bottom: 20px;
}
.development-stage p span {
    color: var(--accent);
}