Issue in If else condition [closed]

Try to replace the following:

<?php $sectyp = array(
                'meta_query' => array(
                array(
                    'key'     => 'section_type', // selecting the section type "Normal" or "Parallax"
                    'value'   => 'Parallax'
               ), 
       ),
 ); ?>

with

<?php $sectyp = get_post_meta(get_the_ID(), 'section_type', true); ?>

and replace

<?php if($sectyp) { ?> 

with

<?php if($sectyp == "Parallax") { ?>