body {
	background: #FFFFFF;
	font-family: "Public Sans", sans-serif;
	overflow-x: hidden;
}

#header{
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	z-index: 1001;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

#header .header-center{
	display: table;
	margin:0 auto;
	width: 90%;
	padding: 12px 0;
}

#header .logo{
	display: inline-block;
	width: 197px;
	height: 50px;
	float: left;
}

#header .logo img{
	display: block;
}

#header .menu-content{
	display: inline-table;
	float: right;
}

#header .menu-content ul{
	list-style: none;
	display: inline-table;
}

#header .menu-content ul li{
	display: inline-table;
	float: left;
	margin: 6px 10px;
}

#header .menu-content ul li a{
	font-weight: normal;
	font-size: 16px;
	color: #53565A;
	display: table;
	padding: 12px 16px;
	text-decoration: none !important;
}

.btn-white{
	display: table;
	font-size: 16px;
	text-align: center;
	padding: 10px 28px;
	background-color: #fff;
	color: #000000;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease-out;
}

.btn-white:hover{
	color: #fff;
	background-color: #000;
}

.btn-orange{
	display: table;
	font-size: 16px;
	text-align: center;
	padding: 10px 28px;
	background-color: #FF5700;
	color: #fff;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease-out;
}

.btn-orange:hover{
	color: #FF5700;
	background-color: #fff;
	border: 1px solid #FF5700;
}

#footer{
	display: block;
	width: 100%;
	background: #53565A;
}

#footer .footer-center{
	display: table;
	width: 90%;
	margin: 0px auto;
	text-align: center;
	padding: 50px 0;
}

#footer .footer-center .left-content,
#footer .footer-center .social-content{
	display: table;
	float: left;
	width: 50%;
}

#footer .footer-center .logo{
	width: 200px;
	display: table;
}

#footer .footer-center .logo img{
	display: block;
}

#footer .footer-center p.copyright{
	display: table;
	text-align: left;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 38px;
}

#footer .footer-center .social-content p{
	font-size: 16px;
	color: #fff;
	text-align: right;
	margin-top: 12px;
}

#footer .footer-center .social-content ul{
	list-style: none;
	display: table;
	margin-left: auto;
	margin-top: 16px;
}

#footer .footer-center .social-content ul li{
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 0 12px;
}

#footer .footer-center .social-content ul li a{
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
	padding: 14px 0;
}

#footer .footer-center .social-content ul li i{
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	background-position: center center !important;
	background-size: contain !important;
}

#footer .footer-center .social-content ul li i.icon-twitter{
	background: url(../../images/icon-twitter.svg) center center no-repeat;
}

#footer .footer-center .social-content ul li i.icon-linkedin{
	background: url(../../images/icon-linkedin.svg) center center no-repeat;
}

#footer .footer-center .social-content ul li i.icon-facebook{
	background: url(../../images/icon-facebook.svg) center center no-repeat;
}

.msg-box{
	display:block;
	width:100%;
	padding:15px;
	background:#fff;
	border-radius:0px;
	border:0;
	margin-bottom:25px;
	box-shadow:0 1px 3px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.18);
}

.msg-box p{
	margin:0 !important;
	text-align:center;
	width: 100% !important;
}

.msg-box.success{
	background-color:#2bbbad;
	color:#d6f5f3;
}

.msg-box.success p{
	color: #d6f5f3 !important;
}

.msg-box.error{
	background-color:#f56e74;
	color:#fff;
}

.msg-box.error p{
	color: #fff !important;
}

.text-uppercase{
	text-transform: uppercase !important;
}

.loading{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: table;
	position: absolute;
	background: rgba(255, 255, 255, .6);
	z-index: 1;
}

.loading .center{
	display: table-cell;
	vertical-align: middle;
}

.loading .center i{
	width: 40px;
	height: 40px;
	display: block;
	margin: 0 auto;
	background: url(../../images/icon-loading.png) center center no-repeat;
	background-size: contain !important;
	-webkit-animation: rotating .8s linear infinite;
	-moz-animation: rotating .8s linear infinite;
	-ms-animation: rotating .8s linear infinite;
	-o-animation: rotating .8s linear infinite;
	animation: rotating .8s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
