.goFoward {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 131px;
}
.goFoward > p {
    font-size: 124px;
    color: #FC743F;
    text-transform: uppercase;
    line-height: 174px;
    font-family: 'InterTight-LightItalic';
    text-align: center;
}
.goFoward .typing {
    border-right: 5px solid #FC743F;
    font-family: 'InterTight-BoldItalic';
}
.ddd {
    display: flex;
    justify-content: center;
    width: fit-content;
}

@keyframes typing {
    0% { width: 0ch; }
    50% { width: 7ch; }
    100% { width: 7ch; }
}

@keyframes blink {
    50% { border-color: transparent; }
}
@media (max-width: 769px) {
    .goFoward > p {
        font-size: 50px;
        letter-spacing: 1.1px;
        line-height: 74px;
    }
    .goFoward {
        margin-top: 100px;
    }
}