@charset "utf-8";
/*--------------------------------------------------------------------------------------------------
CSS Styles for <Internet-Briefing>.
version:   1.0
--------------------------------------------------------------------------------------------------*/
/* =CSS Reset
-------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.nobreakp{
	white-space:nowrap;
}
/* End CSS Reset
--------------------------------------------------------------------------------------------------*/
/* =Toolkit
--------------------------------------------------------------------------------------------------*/
/* Micro Clearfix Hack by Nicholas Gallagher (http://nicolasgallagher.com/micro-clearfix-hack/) */
/* For modern browsers */
.cf:before, .cf:after { content:""; display:table; }
.cf:after { clear:both; }
/* For IE 6/7 (trigger hasLayout) */
.cf { zoom:1; }
/* general purpose classes */
.nodisplay { display:none; }
.nodisplay_strict { display:none !important; }
.alignleft { float:left; }
.alignright { float:right; }
/* End Toolkit
--------------------------------------------------------------------------------------------------*/
/* =Normalization - mostly derived from normalize.css (https://github.com/necolas/normalize.css/) but without comments and compressed to keep the file small
--------------------------------------------------------------------------------------------------*/
hr { display:block; height:1px; border:0; margin:1em 0; padding:0;
	border-top:1px solid #cccccc; /* change border colour to suit your needs */
}
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
html { overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body, button, input, select, textarea { font-family: sans-serif; }
a:hover, a:active,a:focus  { outline: 0; }
h1 { font-size: 2em; font-weight: 100; }
h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, fieldset, table, ul { margin: 1.5em 0;}
del { text-decoration: line-through; }
abbr[title] { border-bottom: 1px dotted; cursor:help; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
mark { background: #ff0; color: #000; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
small { font-size: 75%; }
sub,sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img { border: 0; -ms-interpolation-mode: bicubic; max-width: 100% !important; height: auto !important;}
svg:not(:root) { overflow: hidden; }
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
legend { border: 0; *margin-left: -7px; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
input, select { vertical-align:middle; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; }
i{font-style: italic;}
p{line-height: 1.4;}
ul{margin: 1em 0 1em 20px;}
/* End Normalization
--------------------------------------------------------------------------------------------------*/
/* =Typography
--------------------------------------------------------------------------------------------------*/
/* Setting up the fonts */
body,html{
	font: 14px/17px 'Montserrat', sans-serif;
	background: #fff;
	color: #2e2e2e;
}
a{color:#4f4f4f}
/* End Typography
--------------------------------------------------------------------------------------------------*/
/* =Header
--------------------------------------------------------------------------------------------------*/
.header-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 32px 20px 32px;
	overflow: hidden;
	transition: padding 0.5s ease-in-out;
}
.logo{
    display: inline;
    float: left;
    margin: 6px 0;
    overflow: hidden;
}
.logo img{
	display: block;
	transition: all 0.5s ease-in-out;
	width: 218px;

}

.logo a{
	display: block;
    height: 100%;
}

.logo h3{
	display: inline;
}

.header-inner .slogan-header{
display: inline-block;
font-size: 14px;
font-size: .875rem;
line-height: 1;
color: black;
padding-top: 10px;
margin-top: 0px;
margin-left: 10%;
text-transform: uppercase;
font-weight: 600;
}

.short-links-wrapper{
	float: right;
}
.short-links ul{
	list-style: none;
	margin: 0;
}
.short-links ul li{
	float: left;
}
.short-links ul li a{
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 0 13px;
	font: bold 16px/29px 'Raleway', sans-serif;
	background: #f80000;
}
/* End Header
--------------------------------------------------------------------------------------------------*/
/* =Nav
--------------------------------------------------------------------------------------------------*/
/*Main-Nav*/
.nav-wrapper{
	background: #e7e7e7;
}
.nav-wrapper-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}
#main-nav ul{
	list-style: none;
	margin: 0;
}
#main-nav ul li{
	float: left;
	padding: 22px 17px 10px;
	border-bottom: 5px solid transparent;
}
#main-nav ul li a{
	text-decoration: none;
	font: 16px/16px 'Raleway', sans-serif;
	color: #4f4f4f;
}
#main-nav ul li.fw-nav-selected{
	border-bottom: 5px solid #f80000;
}
/*Sub-Nav*/
.sub-nav-wrapper{
	background: #f6f6f6;
}
.sub-nav-wrapper-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}
#sub-nav ul{
	list-style: none;
	margin: 0;
}
#sub-nav ul li{
	float: left;
	padding: 16px 17px 10px;
}
#sub-nav ul li a{
	text-decoration: none;
	font: 14px/16px 'Raleway', sans-serif;
	color: #4f4f4f;
}
#sub-nav ul li.fw-nav-selected{
	border-bottom: 3px solid #747474;
}
/*Mobile-Nav*/
#mobile-nav-opener{
	float: right;
	display: none;
}
#mobile-nav-wrapper{
	background: #efefef;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8) inset;
    display: none;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 250px;
    z-index: 10;
}
#mobile-nav ul{
	list-style: none;
	margin: 0;
}
#mobile-nav ul li{
  border-top: 1px solid #a0a09f;
    padding: 0 20px;
}
#mobile-nav ul li a{
	color: #4f4f4f;
    font-size: 15px;
    line-height: 50px;
    text-decoration: none;
	font: 16px/50px 'Raleway', sans-serif;
}
#mobile-nav ul li ul{
    display: none;
    left: 250px;
    position: absolute;
	top: 34px;
    width: 250px;
}
#mobile-nav ul li ul li#back{
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-mobile-nav-back.png) no-repeat 20px center;
	padding: 0 0 0 30px;
}
/*Login Mobile-Nav*/
.login-mobile-nav{
	list-style: none;
	margin: 0;
}
.login-mobile-nav li a{
	color: #fff;
	text-decoration: none;
	display: block;
	background: #f80000 url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-login.png) no-repeat left center;
	height: 34px;
	line-height: 34px;
	padding: 0 45px;
}
/*Mobile Short-Links*/
.mobile-short-links{
	list-style: none;
	margin: 50px 0 0;
}
.mobile-short-links li{
	border-top: 1px solid #a0a09f;
    padding: 0 20px 0 45px;
}
.mobile-short-links li.phone{
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-tel.png) no-repeat 20px center;
}
.mobile-short-links li.map{
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-google.png) no-repeat 20px center;
}
.mobile-short-links li:first-child{
	border: none;
}
.mobile-short-links li a{
	color: #4f4f4f;
    font-size: 15px;
    line-height: 50px;
    text-decoration: none;
	font: 16px/50px 'Raleway', sans-serif;
}
/* End Nav
--------------------------------------------------------------------------------------------------*/
/* =General-Content
--------------------------------------------------------------------------------------------------*/
.www{
	position: absolute;
	width: 100%;
	z-index: 11;
	background: #fff;
}
.main-wrapper{
	margin: 53px 0 120px;
}
.main-wrapper-event{
	margin: 53px 0 20px;
}
.main-wrapper-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}
.main-wrapper h2{
	font: 26px/26px 'Raleway', sans-serif;
	color: #f80000;
	margin: 0 0 20px;
}
.main-wrapper h3{
	font: bold 14px/16px 'Raleway', sans-serif;
	color: #f80000;
	margin: 2.5em 0 1.5em;
}
.main-wrapper h3 a{
	text-decoration: none;
	color: #f80000;
}
.main-wrapper h5{
	font: bold 12px/14px 'Raleway', sans-serif;
	color: #f80000;
	margin: 7.5em 0 1.5em;
}
.main-wrapper h5 a{
	text-decoration: none;
	color: #f80000;
}
.col-wrapper{
	overflow: hidden;
}
.col-wrapper .left-col{
	overflow: hidden;
}
.col-wrapper .right-col{
	width: 283px;
	float: right;
	margin: 0 0 0 54px;
	min-height: 1px;
}
.col-wrapper .right-col.blog{
	width: 	420px;
}
/* End General-Content
--------------------------------------------------------------------------------------------------*/
/* =Event
--------------------------------------------------------------------------------------------------*/
.tabs{
	margin: 0 0 50px;
}
.tabs ul{
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 10px 8px;
	background: #f6f6f6;
	display: inline-block;
}
.tabs ul li{
	float: left;
}
.tabs ul li a{
	display: block;
	padding: 0 20px;
	background: #a0a09f;
	font: bold 12px/30px 'Raleway', sans-serif;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.5s ease-in-out 0s, color 0.5s ease-in-out 0s;
}
.tabs ul li.ui-tabs-active a,
.tabs ul li a.selected{
	background: #f80000;
}
.event-list{
	list-style: none;
	margin: 0 0 48px;
	overflow: hidden;
}
.event-list > li{
	margin: 33px 0 0;
	padding: 2em;
	background: #f4f4f4;
}
.event-list > li:first-child{
	margin: 0;
}
.event-list .event-title{
	background: none;
	padding: 0;
	font-size: 20px;
}
.event-list .img-col{
	float: left;
	width: 175px;
	margin: 0 17px 0 0;
}
.event-list .img-col .img-wrapper{
	height: 175px;
	overflow: hidden;
	margin: 0 0 11px;
}
.event-list .img-col img{
	display: block;
}
.event-list .img-col span a{
	display: block;
	text-align: center;
	/*background: #f80000;*/
	color: #000;
	font: bold 12px/35px 'Raleway', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
}
.event-list .txt-col{
	overflow: hidden;
	/*background: #efefef;*/
	min-height: 180px;
	position: relative;
	padding: 0 26px;
}
.event-list .header{
	min-height: 167px;
}
.event-list h3{
	margin: 0 0 10px;
	color: #f80000;
}
.event-list h3 a{
	color: #f80000;
	font: bold 18px/22px 'Raleway', sans-serif;
	text-decoration: none;
}
.event-list h3 a.green{
	color: #1ed65f;

}
.event-list h4{
	margin: 0 0 35px;
}
.event-list .speaker a{
	display: block;
	color: #515151;
	margin: 0 0 15px;
	font-weight: bold;
	text-decoration: none;
}
.event-list .place{
	display: block;
	margin: 0 0 5px;
}
.event-list .place a{
	color: #515151;
	text-decoration: none;
}
.event-list .footer ul{
	list-style: none;
	margin: 0;
	border-top: 1px solid #858585;
	overflow: hidden;
	display: inline-block;
}
.event-list .footer ul li{
	float: left;
	margin: 0 15px 0 0;
	padding: 6px 0;
}
.event-list .footer ul li a{
	color: #000;
	text-decoration: none;
}
.event-list .footer ul li a.time{
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-time.png) no-repeat;
	padding: 0 0 0 22px;
	font-weight: bold;
}
.event-list .footer ul li a.map{
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-map.png) no-repeat;
	padding: 0 0 0 16px;
}
.event-list .btn{
	display: inline-block;
	background: #f80000;
	color: #fff;
	text-decoration: none;
	font: bold 12px/35px 'Raleway', sans-serif;
	text-transform: uppercase;
	padding: 0 30px;
	position: absolute;
	right: 0;
	bottom: 0;
	height: auto;
}
.event-list .btn.green{
	background: #1ed65f;

}
/* End Event
--------------------------------------------------------------------------------------------------*/
/* =Event-Detail
--------------------------------------------------------------------------------------------------*/
.event-content h2{
	font: bold 26px/1.4 'Raleway', sans-serif;
	color: #f80000;
	margin: 0;
}
.event-content h3{
	font: bold 14px/1.4 'Raleway', sans-serif;
	color: #f80000;
}
.event-content .place{
	font-weight: bold;
	margin: 0;
	color: #515151;
	display: block;
}
.event-content .speaker{
	font-weight: bold;
	margin: 0 0 1.5em;
	color: #515151;
	display: block;
}
.event-content{
	overflow: hidden;
}
.event-content ul{
	margin: 1em 0 1em 20px;
}
.event-content ul li{
	line-height: 1.4;
}
.event-content .btn-mobile{
	background: #f80000 none repeat scroll 0 0;
    color: #fff;
    padding: 0 35px;
	display: none;
	height: 28px;
	text-decoration: none;
	line-height: 28px;
}
.event-form-col{
	width: 280px;
	float: right;
	margin: 0 0 0 54px;
}
.event-form-col form{
	margin: 0;
}
.konferenz-list{
	list-style: none;
	margin: 1em 0;
	padding: 0;
	display: none;
}
.konferenz-list > li{
	margin: 1em 0 0;
	padding: 1em 0 0;
	border-top: 1px solid #898989;
}
.konferenz-list > li:first-child{
	margin: 0;
	border: none;
}
.konferenz-list h3{
	margin: 0;
}
.konferenz-table{
	border-collapse: collapse;
}
.konferenz-table tr{
	border-top: 1px solid #898989;
}
.konferenz-table tr:first-child{
	border: 0;
}
.konferenz-table td{
	line-height: 1.4;
	padding: 10px 0;
}
.konferenz-table tr td:first-child{
	padding: 0 20px 0 0;
}
.invoice-table{

}
.invoice-table td,
.invoice-table th{
	padding: 15px;
	border-top: 1px solid #dee2e6;
}
.invoice-table th{
	background: #f2f2f2;
}
.invoice-table td{

}
/* End Event-Detail
--------------------------------------------------------------------------------------------------*
/* =Righ-Col
--------------------------------------------------------------------------------------------------*/

.right-col .spacer{
	margin: 0 0 40px;
}
.right-col h2{
	font: 26px/26px 'Raleway', sans-serif;
	color: #f80000;
	margin: 0 0 20px;
}
.right-col .red{
	color: #f80000;
}
.right-col .spacer .btn{
	background: #898989;
}
/*Home*/
.right-col .home p{
	font: 18px/1.4 'Raleway', sans-serif;
}
/*Event-Detail-Right-Col*/
.event-detail-right-col h2{
	margin: 0 0 20px;
}
.event-detail-right-col .img-speaker{
	margin: 0 0 10px;
	max-width: 200px !important;
}
.event-detail-right-col .speaker{
	display: block;
	font-weight: bold;
	line-height: 1.4;
}
.event-detail-right-col .company{
	display: block;
	line-height: 1.4;
}
.event-detail-right-col .partner-list{
	margin: 0;
	list-style: none;
}
/*Blog*/
.right-col.blog .tabs{
	margin: 0 0 20px;
}
.right-col.blog .tabs ul{
	margin: 0;
	padding: 0;
	background: none;
	width: 100%;
}
.right-col.blog .tabs ul li{
	width: 50%;
	box-sizing: border-box;
}
.right-col.blog p{
	margin: 0.5em 0 1.5em;
}
.right-col.blog .rss-title a{
	text-decoration: none;
	color: #f80000;
}
/*Gallery*/
.right-col .gallery-navigation{
	list-style: none;
	margin: 0;
}
.right-col .gallery-navigation li{
	border-top: 1px solid #999b9d;
	padding: 5px 0;
}
.right-col .gallery-navigation li:first-child{
	border: none;
	padding-top: 0;
}
.right-col .gallery-navigation li a{
	text-decoration: none;
	color: #f80000;
}
.album{
	list-style: none;
	margin: 0;
}
.album li{
	display: inline-block;
	vertical-align: top;
	padding: 0 12px 15px 0;
}
/* End Right-Col
--------------------------------------------------------------------------------------------------*/
/* =Form
--------------------------------------------------------------------------------------------------*/
.dem-meldung{
	color: #f80000;
	margin-top: 0;
	display: none;
}
.form-wrapper{
	list-style: none;
	margin: 0;
	max-width: 450px;
}
.form-wrapper li{
	margin: 14px 0 0;
}
.form-wrapper li:first-child{
	margin: 0;
}
.form-wrapper li label{
	display: block;
	margin: 0 0 5px;
}
.form-wrapper li span{
	display: block;
    overflow: hidden;
}
.form-wrapper li input,
.form-wrapper li textarea,
.form-wrapper li select{
	box-sizing: border-box;
	width: 100%;
	height: 28px;
	padding: 0 10px;
	background: #f4f4f4;
	border: 1px solid #898989;
}
.form-wrapper li textarea{
	height: 80px;
}
.form-wrapper .checkbox-wrapper{
	overflow: hidden;
}
.form-wrapper .checkbox-wrapper input{
	width: 20px;
	height: 27px;
	float: left;
}
.form-wrapper .form_bg_color_false{
	border: 1px solid #f80000;
}
.form-wrapper .btn, .btn{
	display: inline-block;
	background: #f80000;
	color: #fff;
	width: auto;
	padding: 0 35px;
	border: none;
	width: auto !important;
	text-decoration: none;
	height: 28px;
	line-height: 28px;
}
.form-wrapper .btn.btn-footer{
	height: 25px !important;
}
.fb-login{
	float: right;
}
/* End Form
--------------------------------------------------------------------------------------------------*/
/* =Memberlist
--------------------------------------------------------------------------------------------------*/
.search-member-list{
	margin: 0 0 20px;
}
.abc-list{
	list-style: none;
	margin: 0;
	width: 100%;
}
.abc-list li{
	display: inline-block;
	padding: 3px 3px;
}
.abc-list li a{
	text-decoration: none;
}
.member-list{
	list-style: none;
	margin: 0;
}
.member-list li{
	margin: 10px 0 0;
	padding: 10px 0 0;
	overflow: hidden;
	border-top: 1px solid #898989;
}
.member-list li:first-child{
	margin: O;
	padding: 0;
	border: none;
}
.member-list .lead,
.member-list .lead a{
	color: #f80000;
}
.mem-list{
	list-style: none;
	line-height: 1.6;
}
h3.no-margin{
	margin-bottom: 0;
}
.ui-tabs-panel{
	margin-top: 20px;
}
.experts-list{
	list-style: none;
}
.experts-list li{
	display: inline-block;
	vertica-align: top;
	padding: 0 0 20px;
	width: 30%;
	vertical-align: top;
}
.experts-list li img{
	max-width: 100%;
}

.left-col .member-button a{
	margin: 5px;
	border: 1px solid #f80000;
	display: inline-block;
	padding: 2px 30px;
	transition: 0.2s;
  margin: 0 20px 10px 0;
	border: 2px solid #898989;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	background-color: #898989;
	color: rgb(255, 255, 255);
}

.firmenmitglieder .firmentext{
   padding: 20px 0 10px;
}

.firmenmitglieder .firmenname{
   padding-top: 10px;
}

/* End Memberlist
--------------------------------------------------------------------------------------------------*/
/* =Gmap
--------------------------------------------------------------------------------------------------*/
.gmap-wrapper{
	overflow: hidden;
}
.responsive-multimedia{
    height: 0;
    overflow: hidden;
    padding-bottom: 26.25%;
    padding-top: 30px;
    position: relative;
}
.responsive-multimedia iframe, .responsive-multimedia object, .responsive-multimedia embed{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.responsive-media{
	height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
	margin-bottom: 1em;
}
.responsive-media iframe, .responsive-media object, .responsive-media embed{
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
/* End Gmap
--------------------------------------------------------------------------------------------------*/
/* =Gallery
--------------------------------------------------------------------------------------------------*/
.gallery{
	list-style: none;
	margin: 0;
}
.gallery li{
	display: inline-block;
	padding: 0 10px 10px 0;
	width: 25%;
	box-sizing: border-box;
	vertical-align: top;
}
/* End Gallery
--------------------------------------------------------------------------------------------------*/
/* =Footer
--------------------------------------------------------------------------------------------------*/
.twitter-wrapper{
	background: #f80000;
}
.twitter-wrapper-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	min-height: 33px;
}
.twitter-wrapper a{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	background: url(/demandit/files/M_D0861CC4DCEF62DFADC/dms/Image/ibv2-icon-twitter.png) no-repeat left center;
	padding: 0 0 0 23px;
	line-height: 33px;
}
.footer-wrapper{
	border-top: 9px solid #d2d2d2;
	background: #f4f4f4;
}
.footer-wrapper-inner{
	max-width: 1053px;
	margin: 0 auto;
	padding: 20px 20px 60px;
	overflow: hidden;
}
.footer-wrapper .l-col{
	width: 405px;
	float: left;
}
.footer-wrapper .l-col span{
	display: block;
}
.footer-wrapper .c-col{
	float: left;
}

.footer-wrapper .c-col .social-media{
	list-style: none;
	margin: 0;
}
.footer-wrapper .c-col li{
	background: #f80000;
	display: inline-block;
	height: 29px;
	width: 29px;
	text-align: center;
	line-height: 29px;
	margin: 0 5px 0 -4px;
}
.footer-wrapper .c-col a{
	text-decoration: none;
	color: #fff;
}
.footer-wrapper .r-col{
	float: right;
	width: 270px;
	margin: 0 0 0 85px;
}
.footer-wrapper .r-col strong{
	color: #f80000;
	display: block;
	margin: 0 0 10px;
}
.footer-wrapper .r-col span{
	display: block;
	margin: 0 0 10px;
}
.footer-wrapper .r-col form{
	margin: 0;
}
.footer-wrapper .r-col input{
	border: none;
	height: 35px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	max-width: 270px;
	margin: 0 0 5px;
}
/* End Footer
--------------------------------------------------------------------------------------------------*/
/* End Footer
--------------------------------------------------------------------------------------------------*/
/* =Icomoon
--------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'icomoon';
  src:  url('/demandit/files/M_D0861CC4DCEF62DFADC/dms/Fonts/icomoon.eot?nm14d2');
  src:  url('/demandit/files/M_D0861CC4DCEF62DFADC/dms/Fonts/icomoon.eot?nm14d2#iefix') format('embedded-opentype'),
    url('/demandit/files/M_D0861CC4DCEF62DFADC/dms/Fonts/icomoon.ttf?nm14d2') format('truetype'),
    url('/demandit/files/M_D0861CC4DCEF62DFADC/dms/Fonts/icomoon.woff?nm14d2') format('woff'),
    url('/demandit/files/M_D0861CC4DCEF62DFADC/dms/Fonts/icomoon.svg?nm14d2#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-linkedin:before {
  content: "\e900";
}
.icon-feed:before {
  content: "\e901";
}
.icon-rss:before {
  content: "\e901";
}
.icon-xing:before {
  content: "\e902";
}
.icon-twitter:before {
  content: "\e903";
}
.icon-facebook:before {
  content: "\e904";
}
.icon-facebook-f:before {
  content: "\e904";
}
.social-media-header{
	float: right;
}
.social-media-header ul{
	margin: 0;
}
.social-media-header li{
	background: #e7e7e7;
	display: inline-block;
	height: 29px;
	width: 29px;
	text-align: center;
	line-height: 29px;
	margin: 0 5px 0 -4px;
}
.social-media-header a{
	text-decoration: none;
	color: #4f4f4f;
}
/* End Icomoon
--------------------------------------------------------------------------------------------------*/
/* =Media-Queries
--------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1100px) {
	.footer-wrapper .f-col{
		width: 33.33%;
		margin: 0;
	}

	.header-inner .slogan-header{
	margin-left: 3%;

	}
}
@media only screen and (max-width: 1000px) {
	.col-wrapper{
		display: table;
	}
	.col-wrapper .left-col{
		/*display: table-header-group;*/
	}
	.col-wrapper .right-col{
		display: table-footer-group;
		float: none;
	}
	.col-wrapper .right-col.home,
	.col-wrapper .right-col.event{
		display: none;
	}
}

@media only screen and (max-width: 900px) {
	.header-inner .slogan-header{
		margin-left: 5px;
	}
}

@media only screen and (max-width: 700px) {
	#header{
		border-bottom: 5px solid #efefef;
	}
	.logo{
			margin: 0 0 20px;
			float: none;
			display: block;
	}
	.logo img{
		width: 185px;
	}

	.header-inner .slogan-header{
		margin-left: 0px;
	}

	.short-links-wrapper{
		display: none;
		float: none;
	}
	.social-media-header{
		float: none;
	}
	.social-media-header li{
		margin: 0;
	}
	.short-links ul li a{
		font-size: 14px;
		line-height: 20px;
	}
	#mobile-nav-opener{
		display: block;
	}
	.nav-wrapper{
		display: none;
	}
	.sub-nav-wrapper{
		display: none;
	}
	.main-wrapper{
		margin: 53px 0;
	}
	.left-col{
		display: table;
	}
	.left-col .event-form-col{
		display: table-footer-group;
		width: 100%;
		margin: 0;
	}
	.left-col .event-content{
		display: table-header-group;
	}
	.event-content .btn-mobile{
		display: inline-block;
	}
	.event-list .footer ul{
		display: block;
	}
	.event-list .btn{
		position: relative;
	}
	.event-list .footer{
		padding: 0 0 20px;
	}
	.footer-wrapper .f-col{
		width: 100%;
		float: none;
		margin: 0 0 20px;
	}
	.experts-list li{
		width: 45%;
	}
}
@media only screen and (max-width: 500px) {
	.tabs{
		display: none;
	}
	.event-list .img-col{
		display: none;
	}
	.event-list .txt-col{
		border: none;
		padding: 0 10px;
	}
	.konferenz-table{
		display: none;
	}
	.konferenz-list{
		display: block;
	}
	.experts-list li{
		width: 100%;
	}
}

