/* * {
    border: 1px solid red;
} */

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about {
    display: flex;
    flex-direction: column;
    width: 650px;
    gap: 50px;
    padding-top: 100px;
}

.point-desc {
    word-break: keep-all;
}

.logo {
    padding-left: 120px;
    width: fit-content;
}

.logo img {

    width: 100px;
}

.point {
    display: flex;
    flex-direction: row;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}



.number {
    padding-right: 100px;
    padding-left: 20px;
}

.footer {
    background-color: rgba(0, 255, 255, 0);
    display: flex;
    flex-direction: column;
    align-items: end;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(5, 5, 5, 0.402);
    text-align: end;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-right: 10px;
}


@media (max-width: 768px) {
    .number {
        padding-left: 0px;
        padding-right: 30px;
    }

    .about {
        gap: 20px;
        padding-top: 50px;
        width: 100%;
        word-break: keep-all;
    }

    .logo img {
        width: 70px;
    }

    .logo {
        padding-left: 30px;
    }

    .point {
        font-size: 12px;
    }



}