#intro .flex {
    column-gap: 4rem;
    row-gap: 2rem;
}

#intro .flex > img {
    width: 35%;
    padding-left: 8rem;
}

#intro .text-content {
    width: 65%;
    background-color: var(--c-bg-card);
    box-shadow: var(--shadow);
    padding: 4rem 2rem;
}

#intro .container-sm {
    position: relative;
    z-index: 1;

}

#intro .label {
    position: absolute;
    bottom: 95%;
    left: 0;
    color: #fff;
    width: fit-content;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 2rem;
    line-height: 1.1em;
    font-size: 1.3rem;
    background-color: #787a9b;
    animation: float 3s ease-in-out infinite;
        outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: -8px;
}

#intro .label p {
    transform: translateY(.2em);
}

#intro .lh span {
    color: #fff;
    padding: .5em .5em;
    display: block;
    width: fit-content;
    line-height: 1em;
    margin-bottom: .5em;
    background: linear-gradient(90deg, #be8344, #e4a563, #be8344);
    background-size: 200% 100%;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: sparkle 7s infinite linear;
}

#intro .circle {
    width: 130%;
}

#intro .label span {
    font-size: clamp(1.8rem, 1.5vw, 2rem);
    display: block;
    transform: translateY(.2em);
}

#intro h3 {
    font-size: 4rem;
    margin-bottom: .6em;
}

#point {
    position: relative;
}

#point li {
    background-color: #fff8f1;
    padding: min(3vw, 4rem);
    position: relative;
    gap: 3rem;
    box-shadow: var(--shadow);
}

#point li:nth-child(n + 2) {
    margin-top: 4rem;
}

#point li span {
    font-size: 3rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--c-sub);
    font-weight: 500;
}

#point li img {
    width: 15%;
      outline: 2px solid var(--c-card);
  outline-offset: -8px;
  border-radius: 50%;
}

#point li div {
    flex: 1;
}

#point h3 {
    border-bottom: 2px solid var(--c-sub);
    margin-bottom: 1rem;
}

#point .circle {
    position: absolute;
    right: 80%;
    width: 50rem;
    top: 10%;
}

@media screen and (max-width:992px) {
    #intro .flex > img {
        width: 40%;
        padding-left: 0;
    }

    #intro .text-content {
        width: 100%;
        background-color: transparent;
    }

    #intro h3 {
        text-align: center;
    }

    #point li {
        padding-block: 4rem;
    }

    #point li img {
        width: 50%;
    }

    #pointl li div {
        width: 100%;
    }

}