.section2_component {
    position: relative;

    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media(max-width: 744px) {
        width: calc(100% - 48px);
        padding: 50px 24px;
    }
}

.section2_title {
    font-size: 64px;
    color: white;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 16px;

    @media(max-width: 984px) {
        font-size: 56px;
    }

    @media(max-width: 744px) {
        font-size: 40px;
        margin-bottom: 12px;
    }
}

.section2_subtitle {
    margin-bottom: 64px;
    color: #A5A5A5;
    font-size: 24px;
    font-weight: 400;
    text-align: center;

    @media(max-width: 984px) {
        font-size: 20px;
    }

    @media(max-width: 744px) {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.section2_contents {
    width: 984px;
    display: flex;
    flex-direction: row;
    gap: 24px;

    @media(max-width: 984px) {
        width: 744px;
        gap: 16px;
    }

    @media(max-width: 744px) {
        width: 100%;
        flex-direction: column;
        gap: 16px;
        /*align-items: center;*/
    }
}

.section2_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(312px - 48px);
    padding: 24px;
    gap: 10px;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    align-items: center;

    > p {
        &:first-child {
            color: #FFF;
            font-size: 28px;
            font-weight: 600;
            line-height: 40px; /* 133.333% */
            text-align: center;
        }

        &:last-child {
            color: #A5A5A5;

            font-size: 16px;
            font-weight: 400;
            line-height: 25px; /* 166.667% */
            word-break: break-word;
            text-align: center;
        }
    }

    @media(max-width: 984px) {
        width: calc(232px - 48px);

        > p {
            &:first-child {
                font-size: 26px;
                line-height: 40px;
            }

            &:last-child {
                font-size: 16px;
                line-height: 25px;
            }
        }
    }

    @media(max-width: 744px) {
        width: calc(100% - 48px);
        padding: 24px;
        gap: 10px;

        > p {
            &:first-child {
                font-size: 20px;
                line-height: 100%;
            }

            &:last-child {
                font-size: 12px;
                line-height: 20px;
            }
        }
    }
}
