body{
	font-family: 'PT Serif', serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-top: 70px;
}
.container-fluid{ max-width: 1200px; position: relative;}


/*---------------- Common -------------*/


img { max-width: 100%; height: auto; }
.gm-style img { max-width: none; }

.overflow-hidden { overflow: hidden; }

a { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}

h1,h2,h3,h4,h5,h6{
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	line-height: 1.25;
}


.site-header{
	background: #973BE8;
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
a.site-branding{
	font-size: 26px;
	display: block;
	float: left;
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: left;
	height: 23px;
	width: 35px;
	margin-top: 7px;
	-webkit-transition: color 0.3s ease, width 0.1s ease 0.5s;
	-moz-transition: color 0.3s ease, width 0.1s ease 0.5s;
	-ms-transition: color 0.3s ease, width 0.1s ease 0.5s;
	-o-transition: color 0.3s ease, width 0.1s ease 0.5s;
	transition: color 0.3s ease, width 0.1s ease 0.5s;
}
.site-branding:hover{
	text-decoration: none;
	width: 103px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	color: #fff;
}

.site-branding .icon-awsm-alt{
	position: absolute;
	left: 0;
	top: 0;
	background: #973BE8;
	z-index: 2;
}
.site-branding .icon-awsm-text{
	font-size: 44px;
	line-height: 12px;
	position: absolute;
	left: -100%;
	top: 0;
	opacity: 0;
	-webkit-transition: left 0.5s ease, opacity 0.3s ease;
	-moz-transition: left 0.5s ease, opacity 0.3s ease;
	-ms-transition: left 0.5s ease, opacity 0.3s ease;
	-o-transition: left 0.5s ease, opacity 0.3s ease;
	transition: left 0.5s ease, opacity 0.3s ease;
	z-index: 1;
}
.site-branding .icon-innovations-text{
	font-size: 68px;
	line-height: 12px;
	display: block;
	position: absolute;
	top: 12px;
	left: -100%;
	opacity: 0;
	-webkit-transition: left 0.5s ease, opacity 0.3s ease;
	-moz-transition: left 0.5s ease, opacity 0.3s ease;
	-ms-transition: left 0.5s ease, opacity 0.3s ease;
	-o-transition: left 0.5s ease, opacity 0.3s ease;
	transition: left 0.5s ease, opacity 0.3s ease;
	z-index: 1;
}
.site-branding:hover .icon-awsm-text{
	left: 35px;
	opacity: 1;
	-webkit-transition: left 0.5s ease;
	-moz-transition: left 0.5s ease;
	-ms-transition: left 0.5s ease;
	-o-transition: left 0.5s ease;
	transition: left 0.5s ease;
}
.site-branding:hover .icon-innovations-text{
	left: 35px;
	opacity: 1;
	-webkit-transition: left 0.5s ease 0.1s;
	-moz-transition: left 0.5s ease 0.1s;
	-ms-transition: left 0.5s ease 0.1s;
	-o-transition: left 0.5s ease 0.1s;
	transition: left 0.5s ease 0.1s;
}
.hamburger {
  width: 24px;
  height: 14px;
  position: relative;
  float: right;
  display: none;
  cursor: pointer;
  margin-top: 4px;
}
.hamburger span {
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 1;
  width: 100%;
}


.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 6px;
}
.hamburger span:nth-child(4) {
  top: 12px;
}
.hamburger.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}


.demo-portal{
	background: #f5f5f5;
	height: 45px;
	margin-top: 15px;
}
.portal-label{
	text-transform: uppercase;
	color: #848484;
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
	display: block;
	line-height: 45px;
}



.site-content{
	padding: 80px 0 50px;
}

.site-content .container-fluid{
	max-width: 800px;
}
.entry-header{
	margin-bottom: 20px;
	text-align: center;
	border-bottom: 1px solid rgba(148,148,148,0.5);
	padding-bottom: 20px;
}
.entry-title{
	text-align: center;
	margin: 0 0 50px;
	
}
.entry-header .entry-title{
	margin-bottom: 20px;
}
.entry-content p, .entry-content ul, .entry-content ol, .entry-content hr{
	margin-bottom: 30px;
}
.entry-content hr{
	margin-bottom: 60px;
}
.entry-content h2, .entry-content h3{
	text-align: center;
	margin: 30px 0;
}

.error-404{
	padding: 80px 0 120px;
}

/*-------- Footer -------*/

.site-footer{
	border-top: 1px solid rgba(151,151,151,0.2);
	padding: 30px 0;
	background: #fff;
	overflow: hidden;
}
.footer-logo{
	font-size: 180px;
	line-height: 20px;
	display: block;
	cursor: default;
}
.site-footer ul{
	text-align: right;
}
.site-footer li{
	padding: 0 15px;
}
.site-footer a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 16px;
}
.site-footer a:hover, .site-footer a:focus{
	color: #973BE8;
}


.mobile-navigation{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #973BE8;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 9999;
	font-family: 'Poppins', sans-serif;
}
.nav-open .mobile-navigation{
	opacity: 1;
	visibility: visible;
}
.mobile-navigation nav{
	padding-top: 53px;
	width: 100%;
	height: 100%;
	display: table;
}
.mobile-navigation nav > div{
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
.mobile-navigation ul{
	list-style: none;
	padding: 0;
}
.mobile-navigation li{
	padding: 20px 15px;
}
.mobile-navigation ul ul{
	display: none;
}
.mobile-navigation li.current_page_item ul{
	display: block;
}
.mobile-navigation a{
	font-size: 18px;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
}
.mobile-navigation .button a{
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 35px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.mobile-navigation .button a:hover{
	background: #fff;
	color: #9644e5;
}
#mobile-menu > li > a{
	display: none;
}
.mobile-navigation a:hover{
	color: #fff;
}