.tips {
    padding-top: 115px;
}
.tips-title {
    font-size: clamp(1.5625rem, 1.0919rem + 2.3529vw, 2.8125rem);
    line-height: 100%;
    font-weight: 400;
    color: #000000;
    margin-bottom: 45px;
}

@media (max-width: 770px) {
    .tips {
        padding-top: 75px;
    }
    .tips-title {
        margin-bottom: 25px;
    }

}

.hints-wrap {
    display: flex;
    flex-direction: column;
    gap: 90px;

    margin-top: 120px;
    padding-bottom: 75px;
}
.hint-item {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    /* justify-content: space-between; */
    width: 100%;
}
.hint-item:hover .hint-item__text {
    color: #17D7FF;
}
.hint-item:active .hint-item__text {
    color: #17D7FF;
}
.hint-item__number {
    font-size: clamp(1rem, 0.8118rem + 0.9412vw, 1.5rem);
    line-height: 110%;
    font-weight: 400;
    color: #17D7FF;
}
.hint-item__point {
    width: 10px;
    margin-top: 8px;
}
.hint-item__text {
    font-size: clamp(1rem, 0.8118rem + 0.9412vw, 1.5rem);
    line-height: 110%;
    font-weight: 400;
    color: #000000;
    justify-self: flex-start;
    max-width: 650px;
    margin-left: 10px;
}

@media (max-width: 770px) {
    .hint-item {
        gap: 10px;
    }
    .hints-wrap { 
        gap: 50px;

        margin-top: 55px;
        padding-bottom: 55px;
    }
    .hint-item__point {
        width: 5px;
    }
}