Skip to content

Magento 2 how to show custom block before product.info.details and after media

Magento 2.3.5-p2 how to show custom block before product.info.details and after media ?
enter image description here

<div class="product-info-main"></div>
<div class="product media"></div>
<div class="custom_block"></div> **//we want to show custom block section here**
<div class="product info detailed"></div>

I am trying like that

 <referenceContainer name="main">
            <container name="custom.info" htmlTag="div" htmlClass="custom_block" />
        </referenceContainer>
        <block class="CustimBlockBlockCustom" name="product_page_custom"  template="custom.phtml" />
        <move element="product_page_custom" destination="custom.info" before="catalog.product.related"/>

it is creating a new section after product.info.details(after upsell)

<div class="block upsell" data-limit="0" data-shuffle="0"></div>
<div class="custom_block"></div>

Does anyone know how to do it?