Athens 2.0 Theme - Remove keyline from 'media with text' section

Does anyone know how to change the thin keyline around the ‘media with text’ section?
There is an option to change the colour of ‘borders & lines’ in the theme settings but that will change the colour throughout the site which I don’t want. I just want to specifically change the colour in the mentioned section in picture attached.

Share Site Preview Link

Hello @gav_coutts ,

Could you kindly provide the URL of your store? If it is password protected, please also share the password accordingly.

https://xudlm47c3zhsltoz-15373937.shopifypreview.com/pages/about-us

Hello @gav_coutts ,
Here is the code you can try. I hope it useful- Go to the Online Store-> Theme-> Edit code-> Assets> base.css → Add code at the bottom.

.media-with-text.color-background-1 {
	box-shadow: none;
}

Add This css in your Edit Code > Base.css

.media-with-text {
    box-shadow: none !important;
}

That has worked. Thanks you’re a lifesaver.