Hi
To open the button link of section 3 in a new window
Go to Appearance -> Editor -> inc/custom-functions.php
at line no. 1081 you will find the below code
<a href="'.$url.'" style="'.( ($buttoncolor!='') ? 'color:'.$buttoncolor.' !important;' : '' ).'">'.$button.'</a></div>
Now simply add target=”_blank” in anchor tag like below
<a target="_blank" href="'.$url.'" style="'.( ($buttoncolor!='') ? 'color:'.$buttoncolor.' !important;' : '' ).'">'.$button.'</a></div>
Regards
Grace Themes