VPN Trafic problem

Goodmorning

I have a network with a mikrotik router and two WAN

First from StarLink (gateway 1) behind cgnat

Second is from cosmote (gateway 2) (cosmote is the greek national ISP)

And i use cosmote as a failover to StarLink.

I want to configure wireguard road warior and i want to route VPN Trafic to gateway 2 (Cosmote)

to avoid starlink cgnat and Greek ISP cosmote gives me the option off port forwarding so VPN works fine

When i disable Starlink ethernet port wireguard works fine

When i have StarLink ethernet port enable, Wireguard client lose connectivity with server

My configuration is like that

/interface bridge
add name=bridge1
/interface wireless
set [ find default-name=wlan1 ] ssid=MikroTik
set [ find default-name=wlan2 ] ssid=MikroTik
/interface wireguard
add listen-port=13231 mtu=1420 name=wg1
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=192.168.13.2-192.168.13.254
/ip dhcp-server
add address-pool=dhcp_pool0 interface=bridge1 name=dhcp1
/routing table
add disabled=no fib name=to-cosmote
/interface bridge port
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
/interface wireguard peers
add allowed-address=192.168.100.2/24 interface=wg1 name=Test public-key=
"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="
/ip address
add address=192.168.10.3/24 interface=ether1 network=192.168.10.0
add address=192.168.1.2/24 interface=ether2 network=192.168.1.0
add address=192.168.13.1/24 interface=bridge1 network=192.168.13.0
add address=192.168.100.1/24 interface=wg1 network=192.168.100.0
/ip cloud
set ddns-enabled=yes ddns-update-interval=3m
/ip dhcp-server network
add address=192.168.13.0/24 dns-server=1.1.1.1,1.0.0.1 gateway=192.168.13.1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
add action=masquerade chain=srcnat out-interface=ether2
add action=masquerade chain=srcnat out-interface=ether2 src-address=
192.168.100.0/24
/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=192.168.10.254
routing-table=main scope=30 suppress-hw-offload=no target-scope=10
add disabled=no distance=2 dst-address=0.0.0.0/0 gateway=192.168.1.1
routing-table=main scope=30 suppress-hw-offload=no target-scope=10
add check-gateway=ping disabled=no dst-address=0.0.0.0/0 gateway=192.168.1.1
routing-table=to-cosmote suppress-hw-offload=no
/routing rule
add action=lookup disabled=no src-address=192.168.100.0/24 table=to-cosmote
add action=lookup disabled=no src-address=192.168.13.0/24 table=main
/system clock
set time-zone-name=Europe/Athens
/system routerboard settings
set auto-upgrade=yes

I will appreciate any help