/**
* Theme Name: Emmet
* Theme URI: http://www.getmotopress.com/themes/emmet
* Author: MotoPress
* Author URI: http://www.getmotopress.com/
* Description: Clean and responsive WordPress theme with a professional design created for corporate and portfolio websites. Emmet comes packaged with page builder and fully integrated with WordPress Customizer. Theme works perfect with major WordPress plugins like WooCommerce, bbPress, BuddyPress and many others. After installing the theme navigate to Appearance > Theme Wizard.
* Version: 1.4.3
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Tags: one-column,two-columns,right-sidebar,buddypress,custom-colors,custom-menu,featured-images,full-width-template,post-formats,theme-options,translation-ready
* Text Domain: emmet
* Domain Path: /languages/
*/

.big-section-bg{background:rgba(0,0,0,0.1) !important}

.big-section .section-title{
    text-transform: none;
    text-shadow: 0 0 10px rgba(0,0,0,0.15) !important}

.default-section .section-title {
	text-transform:none
}

.sf-menu {text-transform: none}

.features-title {text-transform: none}

.header-image.with-header-image .page-title {
    margin: 80px 0;
    color: #fff;
    text-transform: none}

.testimonial-athor-name {text-transform: none}

.section-buttons .button {
    text-transform: none}

body {
    color: #555;
    font-family: "Open Sans",sans-serif;
    font-size: 100%;
    line-height: 1.5;
    font-weight: 400;
    font-size: 15px;
}
.emmet .motopress-image-slider-obj.flexslider {
   border: 0px}

.header-logo img {
    max-width: 650px;}


// Enable shortcodes in widgets
add_filter('widget_text', 'do_shortcode');

// Enable PHP in widgets
add_filter('widget_text','execute_php',100);
function execute_php($html){
     if(strpos($html,"<"."?php")!==false){
          ob_start();
          eval("?".">".$html);
          $html=ob_get_contents();
          ob_end_clean();
     }
     return $html;
}



/* Menu Padding Horizontal */
.main-navigation ul li a {
padding: 10px 0px 10px 5px;
margin-left: -9px;
margin-right: -8px;

}

span.menu-break {
display: block;
line-height: 0;
bottom: 10px;
position: relative;
}

.widget table thead th, .widget table thead td, .widget table tbody td, .widget table tfoot td {
    text-align: center;
    padding: 3px 10px;background-color: #fff;border: 1px solid #fff;}