@media (max-width: 960px) {
  .display-none-mobile{
        display: none;
    }
}
/* Скрыли ненужный контент в десктопной версии */
@media (min-width: 960px) {
  .display-none-desktop {
        display: none;
    }
}
    

    .form .t-form__inputsbox {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .form .t-input-group {
        flex: 50% 0 0;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .form .tn-form__submit {
        justify-content: center;
        margin-right: 15px;
        flex: 100% 0 0;
    }
