#wrapper {
	float: left;
	width: 100%;
}
#header{
	float: left;
	width: 100%;
	left: 0px;
	top: 0px;
	color:#FFF;
	position: fixed;
	z-index: 9999;
}
#header-inner {
    width: 100%;
    display: table;
    margin: 0px auto;
    position:absolute;
    left: 0;
    right: 0;
	background-color:#fdb814;
	transition: all 0.4s ease;
    opacity: 0.95;
}
#header-bg {
    display: block;
    position: absolute;
    height: 85px;
    width: 100%;
    z-index: -1;
	background-color:#000;
	opacity:1;
}
#header-inner-logo {
    margin: 0;
    top: 0px;
    transition: all 0.4s ease;
    position: absolute;
    height: 200px;
}
#header-inner-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}
#header-inner-logo-icon {
	float: left;
	height: 60px;
	width: 50px;
	font-size: 40px;
	text-align: center;
}
#header-inner-logo-text {
	float: left;
	font-size: 20px;
}
#header-inner-logo-text span {
	font-weight: 600;
}
#header-inner-nav {
	float: right;
	position:relative;
}
#header-inner-nav p {
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    font-weight: 400;
    display: block;
    float: left;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
	margin: 0px;
    padding: 5px 30px;
	font-weight:bold;
	color:#FFF;
	border-top:2px solid rgba(255,255,255,0);
	border-bottom:2px solid rgba(255,255,255,0);
}
#header-inner-nav p:hover {
	color: rgba(255,255,255,1);
	cursor:pointer;
	border-top:2px solid rgba(255,255,255,1);
	border-bottom:2px solid rgba(255,255,255,1);
}
.tab {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.tab img {
	float: left;
}
.tab-headline {
	position: absolute;
	left: 50%;
	top: 50%;
}
.tab-headline p {
	border: 4px solid rgba(255,255,255,1);
	font-size: 100px;
	color: rgba(255,255,255,1);
	padding-left: 30px;
	padding-right: 30px;
	font-weight: 300;
	margin: 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.tab-headline p:hover {
	color: rgba(239,74,74,1);
	border-top-color: rgba(239,74,74,1);
	border-right-color: rgba(239,74,74,1);
	border-bottom-color: rgba(239,74,74,1);
	border-left-color: rgba(239,74,74,1);
}
.tab-button{
	float: left;
	height: 60px;
	line-height: 60px;
	background-color: #282b34;
	margin-right: 30px;
	margin-left: 30px;
}
.tab-button a {
	color: rgba(255,255,255,1);
	text-decoration: none;
	display: block;
	font-size: 16px;
}
.tab-button:hover .tab-button-icon{
	background-color: #0093fd;
}
.tab-button:hover .tab-button-text{
	background-color: #3D414E;
}
.tab-button-icon{
	float: left;
	height: 60px;
	width: 60px;
	text-align: center;
	background-color: #ef4a4a;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.tab-button-icon a {
	font-size: 25px;
}
.tab-button-text{
	float: left;
	height: 60px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.tab-button-text a {
	padding-left: 30px;
	padding-right: 30px;
}

@media only screen and (max-width:1024px){
	#header-inner-logo {
    float: left;
    height: 40px !important;
    margin: 10px 0px;
    top: 0px !important;
    transition: all 0.4s ease;
}
}