Use Softether VPN Server to connect to home LAN from remote location

Hello everyone,
recently I got Mikrotik and I want to use it for connecting to my home LAN through Softether VPN server, that is available from internet.

This is my topology (simplified for only needed info)
network-topology.png
I have set up L2TP client connection on Mikrotik to VPN Server through interface vpn-trixycz, Mikrotik is NOT at the edge of home LAN and ISP, but there is NAT to Modem.
Ping from Mikrotik to both networks works, I can ping to Remote devices and even to Server, but when I want to ping from Remote device to Server and reverse, the ping wont go through Mikrotik.

As I said, I am kinda new to Mikrotik, even though I read some documentations, tutorials and even forum discussions here, but I am not new to networking itself, I am familiar to cisco networking (which is not different in theory, but in practice there are few diferences).

Here are some prints of the configuration on Mikrotik:

Firewall

/ip firewall filter print

 0   ;;; default configuration
     chain=input action=accept protocol=icmp 
 1   ;;; default configuration
     chain=input action=accept connection-state=established 
 2   ;;; default configuration
     chain=input action=accept connection-state=related 
 3   ;;; default configuration
     chain=input action=drop in-interface=ether1-gateway 
 4   ;;; default configuration
     chain=forward action=accept connection-state=established 

 5   ;;; Incoming traffic from VPN to LAN
     chain=forward action=accept src-address=192.168.30.0/24 in-interface=vpn-trixycz 
 6   chain=input action=accept src-address=192.168.30.0/24 dst-address=192.168.88.0/24 in-interface=vpn-trixycz 

 7   ;;; Outgoing traffic from LAN  to VPN
     chain=forward action=accept src-address=192.168.88.0/24 dst-address=192.168.30.0/24 
 8   chain=input action=accept src-address=192.168.88.0/24 dst-address=192.168.30.0/24 
 
 9   ;;; default configuration
     chain=forward action=accept connection-state=related 
10   ;;; default configuration
     chain=forward action=drop connection-state=invalid

Routing table

/ip route print

 #      DST-ADDRESS        PREF-SRC        GATEWAY            DISTANCE
 0 ADS  0.0.0.0/0                          10.0.0.138                1
 1 ADC  10.0.0.0/24        10.0.0.22       ether1-gateway            0
 2 ADC  192.168.30.0/24    192.168.30.254  vpn-trixycz               0
 3 ADC  192.168.88.0/24    192.168.88.1    bridge-local              0

If there is anything else I can send please tell