Hello,
I saw the screenshot you attached and visited your website. The description is displayed as it should be.
And there is no option in theme settings for such breakpoints as you mentioned 1800px
. The description area is displayed as it should be for all the devices.
If you still want to change the settings then you need to write media queries for the devices of your own.
You can assign width and margin to the description accordingly.
.woocommerce-product-details__short-description {
width: 800px;
margin-left: 20%;
}
You can follow the following link how to add media queries:
https://www.w3schools.com/css/css3_mediaqueries_ex.asp
Best Regards.