/**
  * Name: bosua
  * Version: 1.0
  * Author: KULLTHEMES
  * Author URI: http://www.kulthemes.com
*/

@import url("bootstrap.css");
@import url("font-awesome.min.css");
@import url("owl.carousel.css");
@import url("shortcodes.css");
@import url("pe-icon-7-stroke.css");
@import url("helper.css");
/**
  * Preloader
  * Repeatable Patterns
  * Top bar
  * Header
  * Mobile navigation
  * Page Title
  * Blog
  * Single Post
  * Widgets
  * Page About
  * Services
  * Service single
  * Portfolio
  * Portfolio-single
  * Page Team
  * Footer
*/

/* Preloader
-------------------------------------------------------------- */
.preloader {
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
	z-index: 999;
}
.clear-loading {
	text-align: center;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.loading-effect-2 {
	width: 200px;
	height: 200px;
}
.loading-effect-2 > span,
.loading-effect-2 > span:before,
.loading-effect-2 > span:after {
	content: "";
	display: block;
	border-radius: 50%;
	border: 2px solid #1b1b1b;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.loading-effect-2 > span {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-left-color: transparent;
	-webkit-animation: effect-2 2s infinite linear;
	-moz-animation: effect-2 2s infinite linear;
	-ms-animation: effect-2 2s infinite linear;
	-o-animation: effect-2 2s infinite linear;
	animation: effect-2 2s infinite linear;
}
.loading-effect-2 > span:before {
	width: 75%;
	height: 75%;
	border-right-color: transparent;
}
.loading-effect-2 > span:after {
	width: 50%;
	height: 50%;
	border-bottom-color: transparent;
}
@-webkit-keyframes effect-2 {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}	to {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes effect-2 {
  from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}	to {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* Repeatable Patterns
-------------------------------------------------------------- */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
body {
	font: 13px/24px "Poppins", "メイリオ", sans-serif;
	font-weight: 400;
	color: #333;
	-webkit-font-smoothing: antialiased !important;
}
body.dark {
	background: #040404;
	color:#858585;
}
a {
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s linear;
	   -moz-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		 -o-transition: all 0.3s linear;
			transition: all 0.3s linear;
}
.dark a {
	color: #7d7d7d;
}
a:hover,
a:focus {
	color: #33b3c3;
	text-decoration: none;
	outline: 0;
}
img {
	max-width: 100%;
	height: auto;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	color: #1c1c1c;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #ececec;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-weight: inherit;
}
.dark h1 a, .dark h2 a, .dark h3 a, .dark h4 a, .dark h5 a, .dark h6 a {
	color: #cfcfcf;
}
h1 { font: 50px/56px "Poppins", "メイリオ", sans-serif;}h2 { font: 30px/32px "Poppins", "メイリオ", sans-serif;}h3 { font: 24px/28px "Poppins", "メイリオ", sans-serif;}h4 { font: 22px/26px "Poppins", "メイリオ", sans-serif;}h5 { font: 20px/24px "Poppins", "メイリオ", sans-serif;}h6 { font: 18px/22px "Poppins", "メイリオ", sans-serif;}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	position: relative;
	display: inline-block;
	padding: 9px 30px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	background-color: #33b3c3;
	color: #fff;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)';
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	outline: none;
}
.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
	background: none;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
	color: #727272;
	background-color: #fff;
	height: 45px;
	padding: 10px 15px;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
select.error,
textarea.error,
.contact-form .textarea-message textarea.error,
input[type="text"].error,
input[type="email"].error {
	border: 1px solid #ff5050;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
	outline: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}
input, button, select, textarea {
	font-family: "Poppins",sans-serif;
}
select::-ms-expand {
	display: none;
}
textarea {
	width: 100%;
	height: 148px;
	padding: 15px;
}
input[type="checkbox"] {
	display: inline;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9c9b9b;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #9c9b9b;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9c9b9b;
}
label.error {
	display: none !important;
}

@-webkit-keyframes pop-scale { 0% { -webkit-transform: scale(0.7) } 100% { -webkit-transform: scale(1) } }@-moz-keyframes pop-scale { 0% { -moz-transform: scale(0.7) } 100% { -moz-transform: scale(1) } }@keyframes pop-scale { 0% { transform: scale(0.7) } 100% { transform: scale(1) } }
@-webkit-keyframes pop-scale2 { 0% { -webkit-transform: scale(0.5) } 100% { -webkit-transform: scale(1) } }@-moz-keyframes pop-scale2 { 0% { -moz-transform: scale(0.5) } 100% { -moz-transform: scale(1) } }@keyframes pop-scale2 { 0% { transform: scale(0.5) } 100% { transform: scale(1) } }
/* bootstrap resetting elements */
.btn {
	background-image: none;
}
textarea, 
input[type="text"],
input[type="submit"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input,
.dropdown-menu,
.navbar .nav > .active > a, 
.navbar .nav > .active > a:hover, 
.navbar .nav > .active > a:focus {
	-webkit-appearance: none;
	text-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
	border: 0;
}
.light {
	font-weight: 300;
}
.bold {
	font-weight: 700;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}
section {
	padding: 150px 0;
	background-color: #fff;
	overflow: hidden;
}
section.recent-news {
	padding-top: 40px;
}
.blog-page.full-width .blog .container {
	width: 100%;
}
body.dark section {
	background-color: #1f1f1f;
}
/* Header
-------------------------------------------------------------- */
.top-bar-section {
	padding: 13px 0 10px;
	background: #33b3c3;
}
.top-bar-section .top-contact {
	float: left;
	width: 50%;
}
.top-bar-section .top-socials {
	float: left;
	width: 50%;
	text-align: right;
}
.top-bar-section .top-contact a {
	display:inline-block;
	margin-right: 30px;
	color: #fff;
	font-size: 12px;
}
.top-bar-section .top-contact a:last-child {
	margin-right:0;
}
.top-bar-section .top-contact a i {
	display: inline-block;
	margin-right: 8px;
}
.top-bar-section .top-socials a {
	color: #fff;
	font-size: 15px;
	margin-left: 15px;
}
.top-bar-section .top-socials a:first-child {
	margin-left:0;
}
.top-bar-section .top-socials a:hover {
	color: #e4e4e4;
}
.header-nav {
	position: absolute;
	top: 0;
	z-index: 999;
	width: 100%;
}
.header {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	-webkit-transition: all 0.3s linear;
	   -moz-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		 -o-transition: all 0.3s linear;
			transition: all 0.3s linear;
}
.is-sticky .header {
	background: rgba(0,0,0,0.6);
}
.header.header-sticky {
	position: relative;
	width: 100%;
	z-index: 1000;
}
.gray .header{
	background: rgba(80,80,80,0.6);
}
.dark .header.header-sticky {
	background: #1f1f1f;
}
.header .col-sm-9 {
	position: static;
}
#mainnav ul.submega {
	float: none;
}
#mainnav > ul > li.mega {
	position: static;
}
#mainnav > ul > li.mega:hover .mega-wrap {
	opacity: 1;
	filter: alpha(opacity=100);
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
	visibility: visible;
}
#logo p {
	display: inline-block;
	margin-bottom: 0;
	max-width: 215px;
	line-height: 70px;
	margin-left:28px;
	padding-right: 40px;
//	border-right: 1px solid rgba(255,255,255,0.1);
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
#logo.logo2 p {
	max-width: 215px;
}
.is-sticky #logo p {
	line-height: 50px;
}
.is-sticky #mainnav > ul > li > a {
	height: 50px;
	line-height: 50px;
}
/* navigation */
#mainnav {
	display: block;
}
#mainnav ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}
#mainnav > ul > li.leftSub > ul {
	left: auto;
	right: 0;
}
#mainnav ul li {
	position: relative;
}
#mainnav > ul > li {
	float: left;
}
#mainnav > ul > li:first-child {
	border-left: none;
}
#mainnav > ul > li:last-child {
	border-right: none;
}
#mainnav > ul > li > a {
	position: relative;
	display: block;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	height: 70px;
	line-height: 70px;
	padding: 0 22px;
	text-transform: none;
	background: none;
}
#mainnav > ul > li > a:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	margin-left: -15px;
	width: 30px;
	height: 1px;
	background-color: #33b3c3;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
}
#mainnav > ul > li:hover > a:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

#mainnav ul li ul {
	position: absolute;
	width: 236px;
	left: -16px;
	opacity: 0;
	transition: opacity 0.3s;
	
	background-color: rgba(29,33,43,0.7);
}
#mainnav ul li.app-nav--project:hover ul{
	 opacity: 1;
}
#mainnav ul li ul li {
	height: 35px;
	color: #fff;
	letter-spacing: 2px;
	line-height: 15px;
	font-size: 10px;
}
#mainnav ul li ul li.list_link {
	display: none;
}
#mainnav ul li ul li:hover {
	background-color: rgba(255,255,255,0.06);
	border-left: 3px solid #fff;
}
#mainnav ul li ul li a {
	color: #fff;
	padding:10px 0 7px 23px;
	display: block;
	transition: all 0s;
}
#mainnav ul li ul li:hover a {
padding-left: 20px;
transition: all 0s;
}
/*header style2*/
.header-nav.style2 {
	position: relative;
}
.header-nav.style2 #mainnav > ul > li > a {
	color: #000;
}
/*mega menu*/
.mega-wrap {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	opacity: 0;
	filter: alpha(opacity=0);
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
	visibility: hidden;
}
.mega-wrap {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 1px 0;
}
.mega-wrap .mega-inner {
	float: none;
	padding: 30px 0;
	background: #252424;
	overflow: auto;
}
.mega-inner .submega {
	margin-bottom: 0;
	padding-left: 16px;
	list-style: none;
}
.mega-inner .submega li a {
	color: #f5f5f5;
	line-height: 30px;
	display: block;
	padding: 5px 12px 2px;
	box-sizing: border-box;
	border: 1px solid transparent;
}
.mega-inner .submega li a:hover {
	color: #33b3c3;
	background: #1b1b1b;
	border-radius: 3px;
}
.mega-inner h3 {
	position: relative;
	padding-left: 15px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: none;
	margin: 5px 13px 15px;
	border-bottom: 1px solid #404040;
}
.mega-inner h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #fff;
}
/* submenu */
#mainnav ul.sub-menu {
	position: absolute;
	left: 0;
	top: 100.8%;
	width: 220px;
	background-color: #252424;
	z-index: 9999;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	   -moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
			transform: scale(0.9);
	-webkit-transition: all .2s ease-out;
	   -moz-transition: all .2s ease-out;
		-ms-transition: all .2s ease-out;
		 -o-transition: all .2s ease-out;
			transition: all .2s ease-out;
}
#mainnav ul li:hover > ul.sub-menu {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1); 
}
#mainnav ul > li:hover > ul.sub-menu li ul.sub-menu:before {
	border: none;
	content: none;
}
#mainnav ul li ul li {
	margin-left: 0;
}
#mainnav ul.sub-menu li.leftSub ul {
	right: 221px;
	left: auto;
}
#mainnav ul.sub-menu li ul {
	position: absolute;
	left: 221px;
	top: 0;
}
#mainnav ul.sub-menu li:first-child {
	border-top: none;
}
#mainnav ul.sub-menu > li > a {
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	border-top: 1px dotted #4e4e4e;
	padding: 10px 18px;
	-webkit-transition: all .2s ease-out;
	   -moz-transition: all .2s ease-out;
		-ms-transition: all .2s ease-out;
		 -o-transition: all .2s ease-out;
			transition: all .2s ease-out;
}
#mainnav ul.sub-menu > li > a:hover,
#mainnav > ul > li > ul > li.active > a {
	color: #33b3c3;
	background: #1b1b1b;
}
/* Mobile navigation
---------------------------------------- */
#mainnav-mobi {
	display: block;
	margin: 0 auto;
	width: calc(100% - 30px);
	position: absolute;
	top: 100%;
	background-color: #840000;
	z-index: 1000;
	margin: 0 15px;
}
#mainnav-mobi ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}
#mainnav-mobi ul li {
	margin:0;
	position: relative;
	text-align: left;
	border-top: 1px solid #272727;
	cursor: pointer;
}
#mainnav-mobi ul > li > a {
	text-decoration: none;
	display: block;
	height: 45px;
	line-height: 45px;
	padding: 0 15px;
	color: #fff;
	background: none;
}
#mainnav-mobi ul.sub-menu {
	top: 100%;
	left: 0;
	z-index: 2000;
	position: relative;
	background-color: #1f1f1f;
}
#mainnav-mobi > ul > li > ul > li,
#mainnav-mobi > ul > li > ul > li > ul > li {
	position: relative;
	border-top: 1px solid #272727;
}
#mainnav-mobi ul.sub-menu > li > a {
	display: block;
	text-decoration: none;
	padding: 0 30px;
	border-top-color: rgba(255,255,255,0.1);
	-webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
		 -o-transition: all 0.2s ease-out;
			transition: all 0.2s ease-out;
}
#mainnav-mobi ul.sub-menu > li > ul > li > a {
	padding: 0 40px;
}
#mainnav-mobi ul.sub-menu > li > ul > li ul li > a {
	padding: 0 60px;
}
#mainnav-mobi > ul > li > ul > li:first-child a {
	border-top: none;
}
#mainnav-mobi ul.sub-menu > li > a:hover,
#mainnav-mobi > ul > li > ul > li.active > a {
	color: #fff;
}

.privacy  {
	color: #0544C1;
	position: relative;
	width: 100%;
	border-bottom:1px solid #0544C1;
	padding-bottom:3px;
	display:inline;
	line-height:2;
	font-size: 1em;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.04em;
	text-align: center;
	cursor: pointer;
}
/* modal //////////////////////////////////////////////////////////////////////////////// */
@charset "utf-8";
/* ------------------------------
   DESIGN/LAYOUT ELEMENTS
------------------------------ */
a:link,a:visited,a:active,a:hover { text-decoration: none;}

#wrapper {
	margin: 0 auto;
	padding: 0 15px 50px;
	max-width: 800px;
	text-align: left;
}

.btnArea {
	padding-bottom: 1.5em;
	text-align: center;
}

p {
	padding-bottom: 2em;
	font-size: 1em;
	line-height: 1.8em;
	text-align: left;
}


/* ------------------------------
   CHAPTER ELEMENTS
------------------------------ */
#mdOverlay {
	top: 0;
	left: 0;
	width: 100%;
	position: fixed;
	z-index: 9996;
	background: #000;
	display: none;
}

#mdWindow {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 80vw;
	height: 80vh;
	position: fixed;
	z-index: 9997;
	background: #fff;
	display: none;
}

#mdWindow > .mdClose {
	top: -55px;
	right: -20px;
	width: 60px;
	height: 60px;
	line-height: 30px;
	color: #fff;
	font-size: 5em;
	font-weight: 100;
	position: absolute;
	z-index: 9998;
	cursor: pointer;
}

#modalInclude {
	display: none;
}

#contWrap {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow-y: auto;
	border-style: none;
}


.btn-menu {
	float: right;
	font-size: 28px;
	font-family: "FontAwesome";
	color: #fff;
	text-align:center;
	width: 28px;
	height: 28px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		 -o-transition: all 0.3s ease-out;
			transition: all 0.3s ease-out;
}
.btn-menu:before{
	content: "\f0c9";
}
.btn-submenu {
	position: absolute;
	right: 0;
	top: 0;
	font: 20px/50px 'FontAwesome';
	text-align: right;
	cursor: pointer;
	width: 100%;
	padding-right: 15px;
	height: 45px;
}
.btn-submenu:before {
	content: "\f107";
	color: #fff;
}
.btn-submenu.active:before {
	content: "\f106"
}
.btn-menu {
	display: none 
}
.btn-left-menu {
	position: fixed;
	left: 20px;
	top: 17px;
	z-index: 10000;
}
.btn-left-menu a {
	display: inline-block;
	height: 33px;
	background: rgba(0,0,0,0.7);
	padding: 0 7px;
}
.btn-left-menu i {
	color: #fff;
	font-size: 32px;
}
.btn-close-menu {
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 5px;
}
.btn-close-menu i {
	font-size: 32px;
	color:#FFF;
}
/* Blog
-------------------------------------------------------------- */
.breadcrumb-wrap {
	text-align:center;
}
.breadcrumb-wrap .breadcrumb {
	margin-bottom:0;
	padding:50px 15px;
}
.breadcrumb-wrap .breadcrumb li a {
	font-weight: 600;
}
.blog-page .main-content {
	float: right;
	width: 75%;
	margin: 100px 0;
	padding-left: 40px;
}
.main-content article {
	margin-bottom:70px;
}
.right-sidebar .main-content {
	float:left;
	padding-left: 0;
	padding-right:40px;
}
.page-title {
	position: relative;
	padding: 0;
}
.page-title h1 {
	position: absolute;
	width: 100%;
	top: 45%;
	text-align: center;
	color: #fff;
}
.page-title .overlay {
	background-color: rgba(0,0,0,0.1);
}
.page-title .bg-image {
	position: relative;
	height: 500px;
	background-image: url(../images/pages/bg-page-title.jpg);
}
.page-title .bg-image.architect {
	background-image: url(../images/pages/bg-page-title-architect.jpg);
}
.page-title .bg-image.business {
	background-image: url(../images/pages/bg-page-title-business.jpg);
}
.page-title .bg-image.bg02 {
	background-image: url(../images/pages/bg-page-title02.jpg);
}
.page-title .bg-image.bg03 {
	background-image: url(../images/pages/bg-page-title03.jpg);
}
.page-title .bg-image.bg04 {
	background-image: url(../images/pages/bg-page-title04.jpg);
}
.page-title .bg-image.bg05 {
	background-image: url(../images/pages/bg-page-title05.jpg);
}
.page-title .bg-image.bg06 {
	background-image: url(../images/pages/bg-page-title06.jpg);
}
.page-title .bg-image.bg07 {
	background-image: url(../images/pages/bg-page-title07.jpg);
}
.page-title .bg-image.bg08 {
	background-image: url(../images/pages/bg-page-title08.jpg);
}
.page-title .bg-image.bg09 {
	background-image: url(../images/pages/bg-page-title09.jpg);
}
.page-title .bg-image.bg10 {
	background-image: url(../images/pages/bg-page-title10.jpg);
}
.page-title .bg-image.bg11 {
	background-image: url(../images/pages/bg-page-title11.jpg);
}
.page-title .bg-image.bg12 {
	background-image: url(../images/pages/bg-page-title12.jpg);
}
.page-title .bg-image.bg13 {
	background-image: url(../images/pages/bg-page-title13.jpg);
}
.page-title .bg-image.bg14 {
	background-image: url(../images/pages/bg-page-title14.jpg);
}
.page-title .bg-image.bg15 {
	background-image: url(../images/pages/bg-page-title15.jpg);
}
.page-title .bg-image.bg16 {
	background-image: url(../images/pages/bg-page-title16.jpg);
}
.page-title .bg-image.bg17 {
	background-image: url(../images/pages/bg-page-title17.jpg);
}
.page-title .bg-image.bg18 {
	background-image: url(../images/pages/bg-page-title18.jpg);
}
.page-title .bg-image.bg19 {
	background-image: url(../images/pages/bg-page-title19.jpg);
}
.page-title .bg-image.c01 {
	background-image: url(../images/pages/slider_pic_1.jpg);
}
.page-title .bg-image.c02 {
	background-image: url(../images/pages/slider_pic_2.jpg);
}
.page-title .bg-image.c03 {
	background-image: url(../images/pages/slider_pic_3.jpg);
}
.page-title .bg-image.t01 {
	background-image: url(../images/pages/slider_top.jpg);
}
.blog .owl-theme .owl-controls {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.page-wrap {
	margin-bottom: 50px;
}
.page-wrap.blog-post {
	margin-bottom: 0;
}
.blog-post .main-content {
	margin-top: 0;
}
.post {
	margin-bottom: 50px;
}
.blog-single .post {
	margin-bottom: 0;
}
.post .media {
	position: relative;
	max-width: 370px;
	float: left;
	margin-right: 30px;
	font-size: 0;
}
.post .media p {
	margin: 0;
}
.post .media p img {
	width: 100%;
}
.post .media p.date {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 14px 15px 11px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background-color: #2e5797;
}
.post .media p.date span {
	display: block;
	font-size: 18px;
}
.blog article .media {
	margin-bottom: 35px;
}
.blog article .media p img {
	width:100%;
}
h2.title-post {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 600;
	margin-top: 5px;
}
.meta-post {
	font-size: 12px;
	color: #888;
}
.meta-post span.date {
	font-size: 12px;
	display: inline-block;
	padding-left: 22px;
	margin-right: 38px;
	background-image: url(../images/common/icon-clock02.gif);
	background-repeat: no-repeat;
	background-position: 0 40%;
}
.meta-post span.tags {
	font-size: 12px;
	display: inline-block;
	padding-left: 22px;
	margin-right: 30px;
	background-image: url(../images/common/icon-edit.gif);
	background-repeat: no-repeat;
	background-position: 0 40%;
}
.meta-post span.tags a {
	display: inline-block;
	margin-right: 5px;
	color: #535353;
}
.meta-post span.tags a:hover {
	color: #000;
}
.readmore a {
	display: inline-block;
	margin-top: 16px;
	letter-spacing: 0.2px;
	font-size: 14px;
	color: #8ab928;
}
.readmore a:hover {
	color: #a2d042;
}
.readmore a:hover {
	color: #ff6c2e;
}
.readmore a i {
	vertical-align: middle;
}
.blog-slider {
	list-style:none;
}
.blog-list .blog .main-content article .media {
	max-width: 270px;
	width: 270px;
	float: left;
	margin-right: 25px;
}
.blog-list .blog .main-content article h2.title-post {
	font-size: 20px;
}
.blog-list .main-content article:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.no-sidebar .main-content {
	width:100%;
	padding-left:0;
}
.no-sidebar .sidebar {
	display:none;
}
.blog-grid .main-content article,
.blog-masonry .main-content article {
	width:calc(33.3333% - 30px);
	float:left;
	margin:0 15px;
	margin-bottom:50px;
}
.blog-grid.two-cols .main-content article,
.blog-masonry.two-cols .main-content article {
	width:calc(50% - 30px);
}
.blog-grid.four-cols .main-content article,
.blog-masonry.four-cols .main-content article {
	width:calc(25% - 30px);
}
.blog-grid.five-cols .main-content article,
.blog-masonry.five-cols .main-content article {
	width:calc(20% - 30px);
}
.blog-grid.six-cols .main-content article,
.blog-masonry.six-cols .main-content article {
	width:calc(16.6666% - 30px);
}
.blog-grid h2.title-post,
.blog-masonry h2.title-post {
	font-size:20px;
}
.blog-grid .meta-post .categories,
.blog-masonry .meta-post .categories {
	display:block;
}

/* Single Post
-------------------------------------------------------------- */
.blog-page.single-style2 .main-content {
	float: none;
	width: 100%;
	max-width: 800px;
	margin: 100px auto;
	padding-left: 0;
}
.blog-page.single-style2 .sidebar {
	display: none;
}
.blog-single .post .feature-post {
	max-width: 100%;
	float: none;
	margin-right: 0;
	margin-bottom: 35px;
	padding: 0;
}
.entry-post ul.list {
	margin: 40px 0 40px 40px;
}
.entry-post ul.list li {
	margin-bottom: 18px;
}
.tags-share {
	padding: 35px 0 45px;
}
.tags-share .tags,
.tags-share .share {
	display: inline-block;
	vertical-align: middle;
	width: 68%;
	font-size: 14px;
}
.tags-share .tags span,
.tags-share .share span,
.tags-share .tags ul,
.tags-share .share ul {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}
.tags-share .tags span,
.tags-share .share span {
	font-weight: bold;
	color: #333;
}
.tags-share .share span {
	margin-right: 15px;
}
.tags-share .tags ul li,
.tags-share .share ul li {
	float: left;
	margin-right: 5px;
}
.tags-share .tags ul li {
	font-size: 12px;
	background: #eee;
	padding: 0 10px;
}
.tags-share .share {
	width: 30%;
	text-align: right;
}
.tags-share .share ul li {
	width: 30px;
	height: 30px;
	text-align: center;
}
.tags-share .share li a {
	color: #333;
	display: inline-block;
	width: 100%;
	height: 100%;
	padding-top: 4px;
	background-color: #f0f0f0;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.tags-share .share li:hover a {
	background-color: #ccc;
	-webkit-transform: rotateY(-360deg);
		-ms-transform: rotateY(-360deg);
			transform: rotateY(-360deg);
}
div.author {
	margin-bottom: 50px;
}
.author > p.avatar {
	float: left;
	max-width: 150px;
}
.author > p.description {
	float: left;
	background-color: #f5f5f5;
	min-height: 150px;
	max-width: calc(100% - 150px);
	max-width: -ms-calc(100% - 150px);
	max-width: -moz-calc(100% - 150px);
	max-width: -webkit-calc(100% - 150px);
	padding: 30px;
}
.author > p.description span {
	display: block;
	color: #4a4a4a;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

/* Comment  */
.comment-list ul {
	list-style:none;
	padding-left:60px;
}
.comment-list > ul {
	padding-left:0;
}
.comment-list > ul .comment {
	margin-bottom:50px;
}
.comment-list .comment-title {
	margin-bottom:50px;
}
.comment-list ul .comment .avatar {
	display:inline-block;
	vertical-align:top;
	width:100px;
	padding-right:20px;
}
.comment-list ul .comment .avatar img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.comment-list ul .comment .comment-text {
	display:inline-block;
	vertical-align:top;
	width:calc(100% - 105px);
}
.comment-list ul .comment .comment-text h5.author {
	margin:0;
	font-size:18px;
}
.comment-list ul .comment .comment-text .date {
	font-style:italic;
	font-size:11px;
	color: #adadad;
}
.comment-reply h3.reply-title {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 20px;
}
.comment-reply h3.reply-title:after {
	width: 40px;
	height: 4px;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	background-color: #8ab928;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.commentform  p.author,
.commentform  p.email {
	width: 50%;
	float: left;
	margin-bottom: 20px;
}
.commentform  p.author {
	padding-right: 10px;
}
.commentform  p.email {
	text-align: right;
	padding-left: 10px;
}
.commentform  p.author input,
.commentform  p.email input {
	max-width: 390px;
	width: 100%;
	border: 1px solid #dfdfdf;
}
.commentform  p.comment textarea {
	height: 180px;
	max-width: 100%;
	max-height: 180px;
	border: 1px solid #dfdfdf;
}
/*============portfolio page==========*/
.portfolio-page .main-content {
	width:100%;
	margin: 100px 0;
	padding-left: 0;
	float: none;
}
.portfolio-page.full-width .main-content {
	margin-top: 0;
}
.full-width.portfolio-page .main-content .container,
.full-width.portfolio-page .main-content .col-md-12,
.full-width.portfolio-page .main-content .col-sm-12 {
	width:100%;
	padding-left: 0;
	padding-right: 0;
}
.full-width.portfolio-page .main-content .container .row {
	margin-left: 0;
	margin-right: 0;
}
.portfolio-page.portfolio-style2 .portfolio {
	padding: 5px;
	background-color: #fff;
}
.portfolio-page.portfolio-style2 .section-title > i {
	color: #414141;
}
.portfolio-page.portfolio-style2 .portfolio .item {
	width: calc(33.3333% - 3.3333px);
	padding: 5px;
}
.portfolio-page.portfolio-style2.two-cols .portfolio .item {
	width: calc(50% - 5px);
}
.portfolio-page.portfolio-style2.four-cols .portfolio .item {
	width: calc(25% - 3.3333px);
}
.portfolio-page.portfolio-style2.five-cols .portfolio .item {
	width: calc(20% - 3.3333px);
}
.portfolio-page.style3 .item {
	background-color: #fff;
}
.portfolio-page.style3 .item .image {
	margin: 0;
	padding: 0;
}
.portfolio-page.style3 .item h3 {
	margin: 0;
	padding: 15px 15px;
	text-align: center;
	font-size: 14px;
	text-transform: none;
}
.portfolio-single .project-details {
	padding-left: 40px;
	line-height: 1.9;
	font-size: 15px;
}
.portfolio-single.portfolio-style2 .project-details {
	float: left;
	padding-left: 0;
	margin: 40px 0 80px;
}
.portfolio-single.portfolio-style2 .project-details .btn-theme {
	margin-top: 0;
}
.portfolio-single.portfolio-style2 .project-details .left-col,
.portfolio-single.portfolio-style2 .project-details .right-col {
	width: 50%;
	float: left;
}
.portfolio-single .project-details .list-style {
	padding-left: 40px;
	margin: 20px 0;
}
.portfolio-single .project-details .btn-theme {
	margin-top: 35px;
}
.portfolio-single .portfolio-single-slider {
	list-style: none;
}
.portfolio-single.portfolio-style2 .project-media .item {
	width: 50%;
}
.portfolio-single.portfolio-style2 .project-media .item p {
	margin-bottom: 0;
}
/* Pagination */
.pagination {
	margin: 0;
	padding: 50px 0;
	display: block;
	background: #fff;
	border-radius:0;
}
.pagination:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.masonry .pagination {
	padding: 0 15px;
}
.pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination ul li {
	display: inline-block;
	margin-right: 1px;
}
.pagination ul li.prev a,
.pagination ul li.next a {
	padding:5px;
	background: #f5f5f5;
}
.pagination ul li a {
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	padding: 8px;
	height: 40px;
	width: 60px;
	border:1px solid #dfdfdf;
	color: #333;
	vertical-align:bottom;
}
.pagination ul li.active a {
	color: #33b3c3;
	border:2px solid #33b3c3;
}
.pagination ul li:hover a {
	color: #33b3c3;
}

/* Widgets
-------------------------------------------------------------- */
.sidebar {
	float: left;
	width: calc(25% - 20px);
	font-size: 14px;
	margin: 100px 0;
}
.sidebar .widget {
	padding: 0;
	background: #fff;
}
.page-about .sidebar,
.page-service .sidebar,
.page-partners .sidebar  {
	margin-top: 70px;
}
.right-sidebar .sidebar {
	float: right;
}
.sidebar .widget {
	margin-bottom: 50px;
}
.sidebar .widget ul {
	padding: 0;
	list-style: none;
}
.widget .widget-title {
	font-size: 20px;
	color: #333;
	font-weight: 700;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 19px;
	margin-top: 0;
}
.widget .widget-title:after {
	width: 40px;
	height: 2px;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	background-color: #33b3c3;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
.widget ul li {
	padding: 13px 0 12px;
	border-bottom: 1px solid #e1e1e1;
	padding-left: 18px;
	position: relative;
	background-image: url(../images/common/icon-arrow-list.png);
	background-repeat: no-repeat;
	background-position: -2px 46%;
}
.widget ul li a {
	color: #1e5051;
}

/* widget widget-search */
.widget-search input {
	width:100%;
	border:1px solid #d6d6d6;
	border-radius:2px;
}
/* widget widget-categories */
.widget-categories {
	font-weight: 600;
}
/* widget recent news */
.widget-recent-posts article {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e4e4e4;
}
.widget.widget-recent-posts .widget-title {
	margin-bottom: 36px;
}
.widget-recent-posts .media {
	display: inline-block;
	float: left;
	margin-right: 15px;
	max-width: 70px;
}
.widget-recent-posts .content a {
	color: #333;
}

/* widget tags */
.widget.widget-tag-cloud .widget-title {
	margin-bottom: 30px;
}
.widget-tag-cloud .tagcloud a {
	display: inline-block;
	margin-right: 5px;
	line-height: 26px;
}
.widget-tag-cloud .tagcloud a:hover {
}
/* sidebar-nav */
.sidebar-nav {
	margin-bottom: 40px;
}
.sidebar-nav ul {
	padding: 0;
	list-style: none;
}
.sidebar-nav ul li a {
	display: block;
	padding: 15px 20px 11px 20px;
	margin-bottom: 2px;
	color: #333;
	font-weight: 700;
	background-color: #f0f0f0;
}
.sidebar-nav ul li a.active {
	padding-left: 16px;
	border-left: 4px solid #2e5797;
}
.sidebar-nav ul li a:hover {
	background-color: #f9f9f9;
}
ul.icon-list {
	list-style: none;
}
ul.icon-list li {
	position: relative;
	padding-left: 21px;
	margin-bottom: 16px;
	line-height: 23px;
}
ul.icon-list li:before {
	display: inline-block;
	position: absolute;
	left: -6px;
	top: -3px;
	width: 25px;
	height: 25px;
	padding-top: 2px;
	content: "\f121";
	text-align: center;
	font-family: "Ionicons";
	font-size: 13px;
	color: #fff;
	background-color: #2e5797;
	background-position: top;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transform: scale(0.6);
}
.accordion-box h3 {
	margin-bottom: 20px;
}

/* Page About
-------------------------------------------------------------- */
.about-list {
  padding-left:10px;
}
.info-section {
	padding: 150px 0 30px;
}
.about-section {
	padding: 30px 0 60px;
}

/* Portfolio-single
-------------------------------------------------------------- */
.page-portfolio-single {
	margin-bottom: 84px;
}
.portfolio-single h2 {
	margin-top: 0;
	margin-bottom: 21px;
	font-size: 30px;
	font-weight: 600;
}
.portfolio-single p {
	margin-bottom: 15px;
}
.portfolio-single .info {
	margin-top: 46px;
}
.portfolio-single .info p {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 17px;
	font-size: 14px;
	margin-bottom: 18px;
}
.portfolio-single .info span {
	color: #333;
	font-weight: 500;
}
.share {
	margin-top: -7px;
}
.share span {
	display: inline-block;
	margin-right: 12px;
	letter-spacing: 1px;
}
.share ul {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}
.share ul li {
	float: left;
	margin-right: 9px;
	width: 36px;
	height: 36px;
	text-align: center;
}
.share li a {
	color: #333;
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 15px;
	padding-top: 6px;
	background-color: #f0f0f0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.share li:hover a {
	background-color: #ccc;
	-webkit-transform: rotateY(-360deg);
	-ms-transform: rotateY(-360deg);
	transform: rotateY(-360deg);
}
/* Footer
-------------------------------------------------------------- */
#footer {
	padding-bottom: 0px;
}
.footer {
	padding: 0px 0 0;
	background-color: #222;
	color: #757575;
	overflow: hidden;
}
.footer.style2 {
	text-align: center;
}
.footer h3 {
	margin-top: 0;
	margin-bottom: 40px;
	padding-bottom: 14px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.2px;
	position: relative;
}
.footer h3:after {
	width: 35px;
	height: 1px;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	background-color: #33b3c3;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
.footer .footer-logo {
	margin-bottom: 20px;
}
.footer .footer-logo img {
	width: 57px;
	border: 1px dotted #767676;
	padding: 10px 18px;
}
.footer .contact-info li {
	font-size: 12px;
}
.footer .contact-info i {
	display: inline-block;
	width: 35px;
	color: #33b3c3;
	font-size: 16px;
}
.footer .description {
	font-weight: 500;
	letter-spacing: 0.4px;
	margin-bottom: 25px;
}
.footer .footer-info p.phone {
	padding-left: 35px;
	font-size: 20px;
	font-weight: 500;
	left: 24px;
	color: #2e5797;
	background: url(../images/common/icon-phone.png) no-repeat 0 0;
}
.footer .footer-info p.phone span {
	display: block;
	font-size: 14px;
	font-style: italic;
	color: #757575;
}
.footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer ul li a {
	color: #868686;
	font-size: 14px;
}
.footer ul li a:hover {
	color: #fff;
}
.footer .bottom {
	margin-top: 0px;
	padding: 15px 0 15px;
	font-weight: 500;
	letter-spacing: 0.3px;
	color: #757575;
	background-color: #181818;
}
.footer .bottom p {
	margin: 0;
	text-indent: 3px;
}
.footer ul.tags li {
	display: inline-block;
}
.footer ul.tags li a {
	display: inline-block;
	margin: 0 2px;
	margin-bottom: 8px;
	padding: 2px 10px;
	border: 1px solid #5d5d5d;
	border-radius: 3px;
	font-size: 12px;
}
.footer ul.useful-link li {
	margin-bottom: 6px;
}
.footer .subscribe-form {
	position: relative;
	margin-top: 20px;
}
.footer .subscribe-form #emailsubscribe {
	background-color: #383838;
	color: #fff;
	font-weight: 400;
	width: 100%;
	padding-right: 38px;
}
.footer .subscribe-form .submit {
	position: absolute;
	top: 0;
	right: 0;
	padding: 11px 20px 10px;
	border-radius: 0 3px 3px 0;
}
.bottom {
	background: #525252;
	padding: 80px 40px 20px;
}
.bottom .socials li {
	display: inline-block;
}
.bottom ul.socials {
	text-align: right;
}
.bottom ul.socials li a {
	display: inline-block;
	width: 25px;
	height: 25px;
	border: 1px solid #434343;
	font-size: 15px;
	text-align: center;
	line-height: 25px;
	color: #cdcdcd;
}
.bottom .socials a:hover {
	background: #33b3c3;
	color: #fff;
}
.bottom .copyright {
	color: #959595;
	text-transform:none;
	font-size:10px;
}
/*footer style2*/
.footer.style2 .followus li {
	display: inline-block;
	margin: 0 20px;
}
.footer.style2 .followus li i {
	display: block;
	color: #fff;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #33b3c3;
	font-size: 30px;
	margin-bottom: 10px;
}
.footer.style2 .logo {
	margin: 50px 0;
}
.footer.style2 .logo img {
	border: 1px solid #5d5d5d;
	padding: 18px;
	width: 100px;
}
.page-top {
	position: fixed;
	bottom: -100px;
	right: 10px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: #4d4d4d;
	margin-bottom: 0;
	z-index: 999;
	opacity: 0.7;
	filter: alpha(opacity=70);
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)';
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}
.page-top.show {
	bottom: 10px;
}
.page-top:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}
.page-top a {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 20px;
	color: #fff;
}
.page-not-found {
	padding: 250px 0;
	background: #2c2c2c;
	text-align: center;
}
.page-not-found form .input-group {
	display: inline-block;
	position: relative;
}
.page-not-found form .input-group button {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
}
.page-not-found h1 {
	font-size: 200px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.page-not-found h3 {
	text-transform: none;
	color: #33b3c3;
	margin-top: -35px;
	margin-bottom: 50px;
	letter-spacing: 13px;
}
.page-not-found form input.form-control {
	width: 500px;
	height: 42px;
	padding-right: 40px;
	margin-right: 5px;
}
.page-not-found form button[type="submit"]{
	border: none;
	height: 42px;
	background: #33b3c3;
	border-radius: 0 5px 5px 0;
	color: #fff;
}
.page-not-found form .note {
	color: #fff;
	font-size: 16px;
}
.page-not-found.style2 .border {
	display:inline-block;
	vertical-align:top;
	padding:35px;
	border: 1px solid #ccc;
}
.page-not-found.style2 .right-info {
	display: inline-block;
	max-width: 340px;
	padding-left: 25px;
}
.page-not-found.style2 h1 {
	font-size:125px;
}
.page-not-found.style2 h3 {
	margin-top:-17px;
	margin-bottom:0;
	letter-spacing: 2px;
}
.page-comingsoon {
	background-color: #2c2c2c;
	background-image: url(../images/pages/bg-comingsoon.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
.page-comingsoon .page-section {
	padding: 0;
	background: none;
	text-align: center;
}
.page-comingsoon h1 {
	position: relative;
	font-size: 100px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: none;
	margin-top: 40px;
}
.page-comingsoon .separator {
	display: inline-block;
	width: 300px;
	height: 1px;
	margin-top: 50px;
	background-color: #4e4e4e;
}
.page-comingsoon .btn i {
	display: inline-block;
	margin-right: 10px;
}
.countdown-wrapper {
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
}
.countdown-section {
	display: inline-block;
	text-align: center;
	width: 120px;
	height: 123px;
	margin: 0 12px;
	background: rgb(24, 24, 24);
	border: 1px solid #fff;
}
.countdown-section span.countdown-amount {
	display: block;
	font-size: 33px;
	font-weight: bold;
	color: #fff;
	line-height: 77px;
}
.countdown-section span.countdown-period {
	display: block;
	font-size: 15px;
	line-height: 45px;
	color: #fff;
	border-top: 1px solid;
}
.page-comingsoon.style2 h1 {
	font-size: 60px;
	margin-top: 0;
	margin-bottom: 32px;
	letter-spacing: 14px;
}
.style2 .countdown-wrapper {
	margin-bottom: 38px;
}
.style2 .countdown-section {
	width: 150px;
	height: 150px;
	margin: 0 12px;
	border-radius: 50%;
	border: 7px solid #a2a2a2;
}
.style2 .countdown-section span.countdown-period {
	line-height: 32px;
	border-top: 1px solid #ccc;
	width: 80px;
	margin: 0 auto;
}
.style2 .countdown-section span.countdown-amount {
	font-size: 70px;
	line-height: 77px;
	padding-top: 18px;
}
.style2 #subscribeForm input#emailsubscribe {
	border-radius: 25px;
	padding: 0 20px;
	font-weight: 400;
}
.style2 #subscribeForm input.submit {
	height: 45px;
	border-radius: 25px;
}

.address-parent {
	text-align: center;
}
.address-child {
	display: inline-block;
	text-align: left;
}

/* Loading
-------------------------------------------------------------- */
@-webkit-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading {
  background: none;
  position: relative;
  width: 200px;
  height: 200px;
  transform:scale(0.6);
}
.loading > div {
  position: absolute;
  display: block;
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  border-radius: 80px;
  box-shadow: 0 6px 0 0 #999999;
  -ms-animation: loading-anim 1s linear infinite;
  -moz-animation: loading-anim 1s linear infinite;
  -webkit-animation: loading-anim 1s linear infinite;
  -o-animation: loading-anim 1s linear infinite;
  animation: loading-anim 1s linear infinite;
}
/* HeadLine
-------------------------------------------------------------- */
.poster-wrapper {
	width: 100%;
	height: 500px;
	overflow: hidden;
}
#headline {
	z-index: 2;
	position: relative;
	top: -500px;

	width: 100%;
	height: 500px;

	/*background: url(../images/pages/bg.jpg);*/
	/*background-repeat: no-repeat;*/
	/*background-size: cover;*/
	/*background-position: 50% 50%;*/
	background-color: rgba(0, 0, 0, 0.2);

}
.th1 {
	font-size:36px;
	text-align:center;
	left: 0px;
	padding: 16% 10%;
	color: #fff;
	position: absolute;
	pointer-events: none;
	width:100%;
	font-family: 'Open Sans', sans-serif;
	text-transform:none;
}
.th1 {
    padding: 240px 20px;
}
.th1 h1 {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 4px;
}
.th1 sup {
    font-size: 12px;
    top: -20px;
}
@media(min-width:1600px) {
	#postervid {
		z-index: 1;
		position: relative;
		top: -200px;
		width: 100%;
	}
}
@media screen and (min-width: 1029px) and (max-width: 1599px) {
	#postervid {
		z-index: 1;
		position: relative;
		top: 0px;
		width: 100%;
	}
} 
@media screen and (min-width: 768px) and (max-width: 1028px) {
	#postervid {
		z-index: 1;
		position: relative;
		top: 0px;
		left: -10%;
		width: 120%;
	}
} 
@media only screen and (max-width: 768px) {
	#postervid {
		display: none;
		z-index: 1;
		position: relative;
		top: 50px;
		left: -20%;
		width: 140%;
	}
	.poster-wrapper{
		height: 250px;
		background: url(../images/pages/bg.jpg) no-repeat center center fixed; 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	#headline {
		top: -250px;
		height: 250px;
	}
	.th1 {
	    padding: 80px 20px 20px;
	}
	.th1 h1 {
		font-size:26px;
	}
	#mainnav-mobi > ul > li > ul > li {
		background-color: #222;
		padding-left: 10px;
	}

	#mainnav ul li ul li.list_link {
		display: block;
	}
}
