<?php if (!isset($_SESSION)) {  
    session_start();  
}
include 'language/languagefile.php';
$main_select="home";
?><!DOCTYPE html><html lang="<?php echo $c_lang; ?>">
<head>
    <title><?php echo $pricing_title;?> - Free Converter</title>
    <meta name="description" content="<?php echo $oc_desc;?>">
    <?php  include 'onlineconvert/head.php'; ?>   
</head>
<body class="<?php echo $set_theme;?>">
                    <?php  include 'onlineconvert/onlineconvert-header.php'; ?>    
                    <main class="cd-main-content">
                    <div class="onlineconvert-content">
                        <main id="main-content">
                        <div class="width100 responsive-headings"><h1><?php echo $pr_title;?></h1></div>
                        <overview>
                        <?php
                        if (getLanguage()=="zh-CN" and $lang=="cn"){
                            include 'onlineconvert/main-cn-pricing.php';
                        }else{
                            include 'onlineconvert/main-pricing.php';
                        } ?>   
                        </overview>

                        </main>
                        
                        <?php  include 'onlineconvert/footer.php'; ?>
                    </div>
                    <div class="cd-overlay"></div>
                    </main>
<script>
    $(window).scroll(function() {
        var scrolled = $(window).scrollTop();
        if (scrolled > 20) {
            $('.main-header').addClass('box');
        } else {
            $('.main-header').removeClass('box');
        }
    });
</script>
</body>

</html>