.data {
    position: relative;

    width: 40%;
    height: auto;

    margin-top: 200px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.daTitle {
    position: relative;

    margin-top: 100px;

    font-family: "Outfit";
    font-weight: 700;
    font-size: 80px;
    color: var(--primary);
}

.daText {
    position: relative;

    margin-top: 50px;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);

    line-height: 22px;
}

@media (max-width: 768px) {

    .data {
        width: 75%;

        margin-top: 0px;
    }

    .daTitle {
        margin-top: 75px;

        font-size: 30px;
    }

    .daSubtitle {
        font-size: 15px;
    }

    .daText {
        margin-top: 30px;
        line-height: 22px;
    }

}