.sec-identity {
    position: relative;
    overflow-x: clip;
    padding-top: 7rem;
}

.sec-identity__bg-svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 93%;
    left: 0;
    pointer-events: none;
}

.sec-identity-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 125rem;
    margin: 0 auto;
    flex-direction: column;
    white-space: nowrap;
    margin-bottom: min(16rem, 16vw);
    padding: 0 2rem;
}

.sec-identity__img-wrap {
    position: absolute;
    max-width: 20rem;
    max-height: 40rem;
}

.sec-identity__img-wrap--1 {
    bottom: -16%;
    max-width: 18%;
    left: 19.5%;
    transform: rotate(341deg);
    z-index: 2;
}

.sec-identity__img-wrap--2 {
    bottom: 23%;
    left: 27%;
    max-width: 25%;
    transform: rotate(6deg);
}

/* 
.sec-identity__img-wrap--2::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    width: 100%;
    height: 100%;
    background: rgb(203 219 238);
    z-index: -1;
} */

.sec-identity__img-wrap--3 {
    right: 2rem;
    max-width: 19%;
    transform: rotate(-9deg);
    bottom: 22%;
}

.sec-identity__img-wrap--4 {
    bottom: 0%;
    left: 11%;
    max-width: 13%;
    z-index: 2;
}

.sec-identity__logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    line-height: 1;
    margin-bottom: min(7rem, 9vw);
    margin-left: 26%;
    font-weight: 800;
}

.sec-identity__logo .text {
    margin-bottom: -0.5rem;
    font-size: min(6.5rem, 6vw);
}

.sec-identity__logo .box {
    font-size: min(4rem, 4vw);
    background: var(--c-primary);
    color: #fff;
    padding: min(1.8rem, 2vw);
    border: .7rem solid #ffff;
    transform: rotate(-3deg);
    clip-path: inset(0 100% 0 0);
}

.sec-identity__logo .box .inbox {
    opacity: 0;
}

.sec-identity__img {
    width: 100%;
    /* transition: transform 0.3s ease; */
}

.sec-identity__container {
    display: grid;
    gap: 4rem;
    padding: 0 var(--space-x) 0;
    max-width: var(--width-c);
    margin: 0 auto;
}



.sec-identity__content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
}

.sec-identity__title {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.sec-identity__desc {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #697F8D;
}



.sec-identity__features {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.2rem;
}

.sec-identity__feature {
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    gap: 2rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(3rem);
    background: linear-gradient(to bottom, #E7F2F8, #dae4eb00);
}


.sec-identity__feature-icon {
    max-width: 4rem;
    max-height: 4rem;
}

.sec-identity__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec-identity__feature-text {
    flex: 1;
}

.sec-identity__feature-title {
    font-size: min(15px, 4vw);
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.sec-identity__feature-desc {
    font-size: min(14px, 3.5vw);
    line-height: 1.6;
    color: var(--gray);
}

.splash-identity {
    position: absolute;
    z-index: 40;
    transform: scale(-1) rotate(17deg);
    bottom: -15rem;
    width: 45rem;
    right: -26rem;
    pointer-events: none;

}

@media (width >=576px) {
    .sec-identity__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sec-identity__feature:nth-child(2) {
        margin-top: -3rem;
    }
}

@media (width >=1024px) {
    .sec-identity {
        padding-top: 12rem;
    }

    .sec-identity__content {
        align-items: start;
    }

    .sec-identity__title {
        text-align: left;
    }

    .splash-identity {
        bottom: -30rem;
        right: -45rem;
        width: min(102rem, 80%);
        transform: unset;
    }

    .sec-identity__img-wrap--3 {
        right: 1.5%;
    }

    .sec-identity__img-wrap--4 {
        bottom: -22%;
        left: 7%;
        max-width: 14%;
    }

    .sec-identity__container {
        grid-template-columns: 39% 1fr;
        gap: 6rem;
        padding: 0 var(--space-x) 0;
    }

    .sec-identity__logo-text {
        font-size: 6.4rem;
    }

    .sec-identity__grid {
        gap: 3rem;
    }

    .sec-identity__title {
        font-size: 3.2rem;
    }

    .sec-identity__desc {
        font-size: 1.6rem;
    }

    .sec-identity__feature {
        padding: 3rem;
    }
}