/*
Theme Name:     Organique Child
Theme URI:      http://www.proteusthemes.com
Description:    Child theme for the Organique
Author:         Primoz Cigler
Template:       organique
Version:        1.0
*/

/* Edit by sourav b */
/* Loading new font */
@font-face {
	font-family: 'GraphicStylinNF';
	src: url('fonts/graphic-stylin/2EDADC_0_0.eot');
	src: url('fonts/graphic-stylin/2EDADC_0_0.eot?#iefix') format('embedded-opentype'),
		 url('fonts/graphic-stylin/2EDADC_0_0.woff2') format('woff2'),
		 url('fonts/graphic-stylin/2EDADC_0_0.woff') format('woff'),
		 url('fonts/graphic-stylin/2EDADC_0_0.ttf') format('truetype');
}
@font-face {
	font-family: 'Stratum1WebThin';
	src: url('fonts/stratum1/Stratum1WebThin.eot');
	src: url('fonts/stratum1/Stratum1WebThin.eot?#iefix') format('embedded-opentype'),
		 url('fonts/stratum1/Stratum1WebThin.woff') format('woff');
}
@font-face {
	font-family: 'Stratum1WebRegular';
	src: url('fonts/stratum1/Stratum1WebRegular.eot');
	src: url('fonts/stratum1/Stratum1WebRegular.eot?#iefix') format('embedded-opentype'),
		 url('fonts/stratum1/Stratum1WebRegular.woff') format('woff');
}
@font-face {
	font-family: 'Stratum1WebMedium';
	src: url('fonts/stratum1/Stratum1WebMedium.eot');
	src: url('fonts/stratum1/Stratum1WebMedium.eot?#iefix') format('embedded-opentype'),
		 url('fonts/stratum1/Stratum1WebMedium.woff') format('woff');
}
@font-face {
	font-family: 'Stratum1WebLight';
	src: url('fonts/stratum1/Stratum1WebLight.eot');
	src: url('fonts/stratum1/Stratum1WebLight.eot?#iefix') format('embedded-opentype'),
		 url('fonts/stratum1/Stratum1WebLight.woff') format('woff');
}
@font-face {
	font-family: 'Stratum1WebBold';
	src: url('fonts/stratum1/Stratum1WebBold.eot');
	src: url('fonts/stratum1/Stratum1WebBold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/stratum1/Stratum1WebBold.woff') format('woff');
}
body p {
    font-family: 'Stratum1WebRegular';
    font-size: 18px;
}
body h1 {
	font-family: 'GraphicStylinNF';
	font-size: 32px;
}
/* Menu fix */
@media (max-width: 991px) {
	ul.navbar-nav ul.dropdown-menu {
		display: none;
	}
	ul.dropdown-menu ul.dropdown-menu {
		display: block;
	}
	ul.navbar-nav li.menu-item a span.glyphicon {
		display: none;
	}
}
/* End edit */


.top__slogan {color:#fff;}

.footer-widgets  .container .footer-widget,
body .footer-widgets a{color:#fff;}

.footer-widgets .footer-wdgets__heading--line:after {
	background-color:#fff;
}
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
 
function add_login_logout_link($items, $args) {
 
        if ( $args->theme_location == 'primary-menu' ) {       
 
        ob_start();
 
        wp_loginout('index.php');
 
        $loginoutlink = ob_get_contents();
 
        ob_end_clean();
 
        $items .= '<li>'. $loginoutlink .'</li>';
    }
 
    return $items;
 
}