::selection {
	color: #fff;
	background: #ff3100;
}
::-moz-selection {
	color: #fff;
	background: #ff3100;
}
html, body {
	height: 100%;
	min-height: 100%;
}
body {
	color: #313131;
	font-size: 14px;
	position: relative;
	line-height: 1.7em;
	font-weight: 400;
	font-family: 'montserratlight';
	background: #fff;
	transition: all 0.5s ease;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 30px 0;
	color: #313131;
	font-weight: 700;
	outline: none;
}
p {
	margin-bottom: 20px;
}
a, button {
	outline: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
input {
	outline: none;
}
img {
	max-width: 100%;
}
a {
	color: #ff3100;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out
}
a:hover {
	text-decoration: none;
	color: #ff3100;
}
a:focus {
	text-decoration: none;
	outline: none;
	color: #ff3100;
}

/*input field*/

.input-box input, select, textarea {
	font-size: 13px;
	outline: none;
	color: #1b1b1b;
	display: block;
	width: 100%;
	padding: 15px 15px 15px 30px;
	background-color: #f3f3f3;
	border: solid 1px #999999;
	border-radius: 2px;
	_box-shadow: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	transition: all 0.4s ease-in-out;
}

input:focus, select:focus, textarea:focus {
	border-color: #459d49;
}

/*submit field*/

input[type='submit'] {
	display: block;
	color: #fff;
	border: none;
	text-transform: capitalize;
	cursor: pointer;
	font-weight: 300;
	border-radius: 4px;
	width: 100%;
	padding: 15px;
	outline: none;
	background: #ff3100;
	transition: all 0.4s ease-in-out;
}
input[type='submit']:hover {
	background-color: #EE2F02;
}
input[type='submit']:active {
	background-color: #EE2F02;
}
textarea {
	height: 100px;
}
input[type='checkbox'], input[type='radio'] {
	border: none;
	display: inline-block;
	width: auto;
	padding: 0;
	box-shadow: 0 0 0 0
}
input:: -webkit-input-placeholder, textarea:: -webkit-input-placeholder {
	color: #464646;
}
::-webkit-input-placeholder {
	/* Safari, Chrome and Opera */
	color: #464646;
}
:-moz-placeholder {
	/* Firefox 18- */
	color: #464646;
}
::-moz-placeholder {
	/* Firefox 19+ */
	color: #464646;
}
:-ms-input-placeholder {
	/* IE 10+ */
	color: #464646;
}
::-ms-input-placeholder {
	/* Edge */
	color: #464646;
}
:placeholder-shown {
	/* Standard one last! */
	color: #464646;
}
input:focus:: -webkit-input-placeholder, textarea:focus:: -webkit-input-placeholder {
	color: #464646;
}

/*css checkbox*/

[type="checkbox"]:not(:checked), [type="checkbox"]:checked, [type="radio"]:not(:checked), [type="radio"]:checked {
	_position: absolute;
	_left: -9999px;
}
[type="checkbox"]:not(:checked)+label, [type="checkbox"]:checked+label, [type="radio"]:not(:checked)+label, [type="radio"]:checked+label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
[type="checkbox"]:not(:checked)+label:before, [type="checkbox"]:checked+label:before, [type="radio"]:not(:checked)+label:before, [type="radio"]:checked+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -3px;
	width: 25px;
	height: 25px;
	border: 1px solid #dce0e0;
	background: #fff;
	border-radius: 4px;
}
[type="radio"]:not(:checked)+label:before, [type="radio"]:checked+label:before {
	top: 0;
}
[type="radio"]:not(:checked)+label:before, [type="radio"]:checked+label:before {
	border-radius: 50%;
	border-color: #0371dd;
}
[type="checkbox"]:checked+label:before, [type="radio"]:checked+label:before {
	border: none !important;
}
[type="checkbox"]:not(:checked)+label:after, [type="checkbox"]:checked+label:after, [type="radio"]:not(:checked)+label:after, [type="radio"]:checked+label:after {
	content: '\f3fd'/* '\f00c'*/
	;
	position: absolute;
	top: -3px;
	left: 0px;
	font-family: 'Ionicons'/*'FontAwesome'*/
	;
	width: 25px;
	height: 25px;
	font-size: 30px;
	line-height: 25px;
	border: 1px solid #dce0e0;
	background: #fff;
	text-align: center;
	border-radius: 4px;
}
[type="radio"]:not(:checked)+label:after, [type="radio"]:checked+label:after {
	content: '\f111';
	top: 0px;
	width: 25px;
	height: 25px;
	font-family: 'FontAwesome';
	border: 1px solid #0371dd;
	background: #fff;
	text-align: center;
	border-radius: 50%;
	line-height: 20px;
	font-size: 13px;
	color: #0371dd;
}
[type="radio"]:checked+label:after {
	border-color: #0371dd;
}
[type="checkbox"]:not(:checked)+label:after, [type="radio"]:not(:checked)+label:after {
	opacity: 0;
	transform: scale(0);
	border: none;
}
[type="checkbox"]:checked+label:after, [type="radio"]:checked+label:after {
	opacity: 1;
	/*transform: scale(0);*/
}
[type="checkbox"]:disabled:not(:checked)+label:before, [type="checkbox"]:disabled:checked+label:before, [type="radio"]:disabled:not(:checked)+label:before, [type="radio"]:disabled:checked+label:before {
	border: 1px #dce0e0 solid;
}
[type="checkbox"]:disabled:checked+label:after, [type="radio"]:disabled:checked+label:after {
	color: #999;
	border: none;
}
[type="checkbox"]:disabled+label, [type="radio"]:disabled+label {
	color: #aaa;
}
[type="checkbox"]:checked:focus+label:before, [type="checkbox"]:not(:checked):focus+label:before, [type="radio"]:checked:focus+label:before, [type="radio"]:not(:checked):focus+label:before {
	border: 1px #dce0e0 solid;
}
label:hover:before {
	border: 1px #dce0e0 solid;
}

/*css checkbox*/


/*select field*/


.bootstrap-select .btn:focus {
	outline: none !important;
}
.dropdown-menu {
	background-color: #fff;
	color: #878484;
	border-color: #878484;
}
.dropdown-menu>li>a {
	color: #878484;
}
.full-width {
	width: 100% !important;
}
.btn-default:hover .caret {
	color: #475c67
}
.caret {
	border-top: 5px solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	color: #475c67;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
}

/*====== repeated classes ======*/

.button {
	background-color: transparent;
	padding: 10px 20px;
	text-align: center;
	display: inline-block;
	color: #4d4c4c;
	text-decoration: none;
	margin: 0 0 15px;
	font-size: 17px;
	font-weight: 600;
	border: solid 3px #565555;
	text-transform: uppercase
}
.button:hover {
	background-color: #565555;
	color: #fff
}
.button:active, .button:focus {
	background-color: #565555;
	color: #fff
}

/*.container {
	width: auto;
	max-width: 1140px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}*/


/*========== main-header ==============*/

.main-header {
	width: 100%;
	z-index: 99999;
	background: #fff;
	padding: 10px 0 0 0;
	position: relative;
	transition: top 0.2s ease-in-out;
	-webkit-box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
	-moz-box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
	box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
}
.main-header .container {
	max-width: 1170px;
	position: relative;
}

/*.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}*/


/**  NAVIGATION  **/


/*.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
	float: left;
	max-width: 140px;
	transition: all 0.5s ease-in-out;
}
.navbar>.container .navbar-brand img, .navbar>.container-fluid .navbar-brand img {transition: all 0.5s ease-in-out;}
.navbar>.container .navbar-brand:hover, .navbar>.container-fluid .navbar-brand:hover{transform: scale(1.3);}
.navbar-default, .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: transparent; margin:0 auto; border-radius: 0; border: none; padding-left:0; padding-right:0; }
.navbar {
	border: none;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	background:transparent; 
	min-height: 80px;
	clear: both;
}
.navbar-nav {
	float: none;
	margin:45px 0 0 0;
	clear: right;
	border: none;
}
.nav li {
	float: left;
	margin: 0px;
	padding: 0;
	display: block;
	text-align:center;
	position:relative;
	text-transform: capitalize;
	transition: all 0.5s ease;
}
.nav li:last-child{ margin-right:0;}
.nav li a, .navbar-default .navbar-nav>li>a { transition: all 0.5s ease; padding:5px 20px; color:#6e6e6e; font-size:16px; text-transform:capitalize; position: relative;}
.navbar-default .navbar-nav>li.hidden-me>a{ padding-right:0px;}
.navbar-default .navbar-nav>li>a>i{ font-size:20px;}
.nav li a:focus, .nav li.current_page_item a, .navbar-default .navbar-nav>li:hover>a, .navbar-default .navbar-nav>li.current_page_item>a, .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
	color: #ff3100 !important;
	background-color:transparent !important;
}
.nav li:after{ content:'/'; color: #d4d4d4; position: absolute; top: 5px; right:0%; width: 2px;}
.nav li:last-child:after{ content: '';}
.nav li>ul{ position:absolute; opacity: 0; visibility: hidden; border-radius: 0 0 2px 2px; top: -100em; margin: 0; padding: 0; right: 0; min-width: 215px; box-shadow: 0 6px 12px rgba(0,0,0,.175); background: #fff; -webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out; }
.nav li:first-child>ul,.nav li:nth-child(2)>ul,.nav li:nth-child(3)>ul,.nav li:nth-child(4)>ul{ left: 0; right: auto;}
.nav li:hover>ul{ top: 100%; opacity: 1; visibility: visible;}
.nav li>ul>li.divider{ height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; width: 100%;}
.nav li>ul>li:after, .nav li ul li:after{ content:''; display: none;}
.nav li>ul>li, .nav li>ul div li{ display:block; margin: 0; padding: 0; float: none;}
.nav li ul li a, .nav li ul div li a{ text-align:left; font-size: 14px !important; text-align: left !important; color: #6e6e6e; display: block; padding:5px 15px !important; width: 100% !important;}
.nav li ul li:hover a, .nav li ul li:focus a, .nav li ul li:hover>a span{ color:#ff3100;}
.nav li ul li a span{ font-size:12px; color: #909090; font-weight: 400; padding-left: 3px; padding-right: 3px;}
.nav li ul li a i{ font-size:16px;}
.nav li:nth-child(2)>ul{height: 310px;overflow-y: scroll;}
.nav li ul li.divider{border-top: solid 1px #d4d4d4;}*/


/*==============================================
Headroom Styling for top menu
==============================================
*/

.headroom {
	position: fixed;
	top: 0px\9;
	left: 0;
	right: 0;
	transition: all .2s ease-in-out;
	z-index: 5555;
}
.isHome .headroom--unpinned, .headroom--unpinned {
	top: -132px;
}
.isHome .headroom--pinned, .headroom--pinned {
	top: 0;
	background-color: #fff;
}
.ie9 .headroom {
	top: 0px;
}
.ie9 .headroom-unpinned {
	top: -132px;
}
.headroom--top {
	background-color: #fff;
}
.isHome .headroom--top {
	background-color: #fff;
}

/*==searchbox css==*/

.animated {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.navbar-bootsnipp {
	background-color: rgb(255, 255, 255);
	border-color: rgb(95, 176, 228);
	border-radius: 0px;
	margin-bottom: 0px;
	z-index: 100;
}
.navbar-bootsnipp:nth-of-type(2) {
	border-top-width: 1px;
	z-index: 50
}
.navbar-bootsnipp.affix-top {
	position: absolute;
	top: 0px;
	width: 100%;
}
.navbar-bootsnipp.affix {
	top: 0px;
	width: 100%;
}
.navbar-bootsnipp .navbar-nav>li>form>.input-group>input, .navbar-bootsnipp .navbar-nav>li>form>.input-group>.input-group-btn>.btn {
	border-radius: 0px;
}
.navbar-bootsnipp .navbar-nav>li:not(.disabled).open>a, .navbar-bootsnipp .navbar-nav>li:not(.disabled).active>a, .navbar-bootsnipp .navbar-nav>li:not(.disabled)>a:hover, .navbar-bootsnipp .navbar-nav>li:not(.disabled)>a:focus {
	border-left-width: 5px;
	color: rgb(95, 176, 228);
}
.navbar-bootsnipp .navbar-nav>li.disabled>a {
	color: rgb(200, 200, 200);
}
.navbar-bootsnipp .navbar-nav>li>.dropdown-menu {
	border-radius: 0;
	margin-right: -1px;
	min-width: 220px;
	padding: 0px;
}
.navbar-bootsnipp .navbar-nav>li:not(.dropdown-right)>.dropdown-menu {
	left: 0px;
	margin-left: -1px;
	right: auto;
}
.navbar-bootsnipp .navbar-nav>li>.dropdown-menu>li>a {
	border-left: 0px solid rgb(95, 176, 228);
	color: rgb(120, 120, 120);
	font-size: 16px;
	font-weight: 400;
	padding: 10px 20px;
	white-space: nowrap;
}
.navbar-bootsnipp .navbar-nav>li>.dropdown-menu>li.active>a, .navbar-bootsnipp .navbar-nav>li>.dropdown-menu>li>a:hover, .navbar-bootsnipp .navbar-nav>li>.dropdown-menu>li>a:focus {
	background-color: rgb(245, 245, 245);
	border-left-width: 5px;
	padding-left: 15px;
}
.navbar .bootsnipp-profile>a {
	padding-bottom: 9px;
	padding-top: 9px;
}
.navbar .bootsnipp-profile>a>img {
	border-radius: 50%;
	width: 32px;
}
.navbar .bootsnipp-profile>.dropdown-menu {
	width: 320px;
}
.navbar .bootsnipp-profile>.dropdown-menu>li>.row {
	padding: 5px 15px;
}
.navbar .bootsnipp-profile>.dropdown-menu>li>.row img {
	width: 100%;
}
.navbar-bootsnipp .bootsnipp-search {
	display: none;
}
.navbar-bootsnipp .bootsnipp-search .form-control {
	background-color: rgb(235, 235, 235);
	border-radius: 0px;
	border-width: 0px;
	font-size: 24px;
	padding: 30px 0px;
}
.navbar-bootsnipp .bootsnipp-search .form-control {
	background-color: #fcfcfc;
	border-radius: 0px;
	border-width: 0px;
	font-size: 14px;
	letter-spacing: 2px;
	padding: 25px 0px;
}
.navbar-bootsnipp .bootsnipp-search .form-control:focus {
	border-color: transparent;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.navbar-bootsnipp .bootsnipp-search .input-group-btn>.btn {
	padding: 3px 15px;
	border-radius: 0px;
	background: none;
	outline: none;
	color: #cdcdcd;
	font-size: 30px;
}
.navbar-bootsnipp .bootsnipp-search .input-group-btn>.btn.active, .navbar-bootsnipp .bootsnipp-search .input-group-btn>.btn:hover, .navbar-bootsnipp .bootsnipp-search .input-group-btn>.btn:focus {
	color: #ff3100;
	transform: scale(1.5);
	box-shadow: none;
}
.navbar-bootsnipp .bootsnipp-search .input-group-btn>.btn-default {
	background-color: rgb(245, 245, 245);
}
.nav-padding {
	padding-top: 61px;
}
.navbar-bootsnipp .bootsnipp-search {
	background-color: #fcfcfc;
	display: block;
	position: absolute;
	top: 100%;
	width: 100%;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-o-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	-o-transform-origin: 0 0 0;
	-ms-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	visibility: hidden;
	-webkit-box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
	-moz-box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
	box-shadow: 2px 0px 5px 0px rgba(0, 16, 31, 0.5);
}
.navbar-bootsnipp .bootsnipp-search.open {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	visibility: visible;
}
.navbar-bootsnipp .bootsnipp-search>.container {
	padding: 0px;
}
.main-header .top-right {
	float: right;
	width: 275px;
	position: absolute;
	right: 0;
	top: 0;
}
.main-header .top-right ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-header .top-right ul li {
	float: left;
	display: block;
	margin-right: 10px;
}
.main-header .top-right ul li:last-child {
	margin-right: 0;
}
.main-header .top-right ul.logins li a {
	color: #808080;
	border-radius: 4px;
	border: solid 2px #dddddd;
	font-size: 15px;
	padding: 5px 10px 2px 10px;
	display: block;
}
.main-header .top-right ul.logins li:hover a {
	background: #808080;
	color: #fff;
	border-color: #808080;
}
.main-header .top-right ul.logins li.login a {
	border-color: #ff3100;
	color: #ff3100;
}
.main-header .top-right ul.logins li.login:hover a {
	background: #ff3100;
	color: #fff;
}
.main-header .top-right ul.social {
	border-right: solid 1px #dddddd;
	float: left;
	display: block;
	margin-right: 10px;
	padding-right: 10px;
}
.main-header .top-right ul.social li a {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: block;
	border: solid 1px #e0e0e0;
	text-align: center;
	line-height: 30px;
	color: #808080;
	font-size: 14px;
}
.main-header .top-right ul.social li:hover a {
	border-color: #ff3100;
	color: #ff3100;
}
.visible-me {
	display: none;
}
.hidden-me {
	display: block;
}
.top-right1 {
	float: right;
	width: 275px;
	position: absolute;
	right: 0;
	top: 8px;
}
.top-right1 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.top-right1 ul li {
	float: left;
	display: block;
	margin-right: 10px;
}
.top-right1 ul li:last-child {
	margin-right: 0;
}
.top-right1 ul.logins li a {
	color: #808080;
	border-radius: 4px;
	border: solid 2px #dddddd;
	font-size: 15px;
	padding: 0px 5px 0px 5px;
	display: block;
}
.top-right1 ul.logins li:hover a {
	background: #808080;
	color: #fff;
	border-color: #808080;
}
.top-right1 ul.logins li.login a {
	border-color: #ff3100;
	color: #ff3100;
}
.top-right1 ul.logins li.login:hover a {
	background: #ff3100;
	color: #fff;
}
.top-right1 ul.social {
	border-right: solid 1px #dddddd;
	float: left;
	display: block;
	margin-right: 10px;
	padding-right: 10px;
}
.top-right1 ul.social li a {
	border-radius: 50%;
	width: 25px;
	height: 25px;
	display: block;
	border: solid 1px #e0e0e0;
	text-align: center;
	line-height: 25px;
	color: #808080;
	font-size: 12px;
}
.top-right1 ul.social li:hover a {
	border-color: #ff3100;
	color: #ff3100;
}
.attr-nav ul.logins{
margin-top: 25px;
float: right;
margin-left: 10px;
}
.attr-nav ul.logins li {
	float: left;
	display: block;
	margin-right: 10px;
}
.attr-nav ul.logins li:last-child {
	margin-right: 0;
}
.attr-nav ul.logins li a {
	color: #808080;
	border-radius: 4px;
	border: solid 2px rgba(255,255,255,0.8);
	font-size: 12px;
	padding: 1px 5px 1px 5px;
	display: block;
}
.attr-nav ul.logins li:hover a {
	background: #808080;
	color: #fff;
	border-color: #808080;
}
.attr-nav ul.logins li.login a {
	border-color: #e95e59;
	color: #ff3100;
}
.attr-nav ul.logins li.login:hover a {
	background: #e95e59;
	color: #fff;
}

/*========= main-header ends =========*/


/*========= main-footer starts =========*/

.main-footer {
	background: #f6f6f6;
	padding: 40px 0;
	color: #6e6e6e;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.main-footer h2 {
	font-size: 18px;
	color: #6e6e6e;
	display: block;
	font-family: 'RobotoLight', sans-serif;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.main-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-footer ul li {
	display: block;
	margin-bottom: 10px;
}
.main-footer ul li a {
	font-size: 13px;
	color: #6e6e6e;
	display: block;
	line-height:20px;
	font-family: gothambook;
}
.main-footer ul li a i {
	padding-right: 10px;
}
.main-footer ul.f-links li {
	position: relative;
}
.main-footer ul.f-links li:before {
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 13px;
	color: #6e6e6e;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 18px;
}
.main-footer ul.f-links li a {
	padding-left: 15px;

}
.main-footer .get-in-touch {
	background: #100e0e;
	max-width: 168px;
	font-size: 14px;
	color: #fff;
	font-family: 'Cutive', serif;
	display: block;
	text-align: center;
	padding: 10px 20px 5px 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.main-footer ul.social {
	width: 100%;
	float: left;
}
.main-footer ul.social li {
	display: block;
	margin-right: 5px;
	float: left;
}
.main-footer ul.social li a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	background: #100e0e;
}
.main-footer ul.social li a i {
	padding-right: 0;
}
.main-footer .get-in-touch:hover, .main-footer ul.social li:hover a, .main-footer .f-post:hover .f-cal {
	color: #fff;
	background: #ff3100;
}
.main-footer .f-post {
	padding: 0 0 15px 0;
	margin-bottom: 15px;
	border-bottom: solid 1px #A3A3A3;
}
.main-footer .f-post:before, .main-footer .f-post:after {
	content: '';
	display: table;
	clear: both;
}
.main-footer .f-post:last-child {
	border-bottom: none;
}
.main-footer .f-post .f-info {
	width: calc(100% - 60px);
	padding: 0 10px 0 0;
	float: left;
}
.main-footer .f-post .f-info a {
	color: #6e6e6e;
	font-size: 14px;
	margin-bottom: 0;
}
.main-footer .f-cal {
	width: 60px;
	background: #100e0e;
	padding: 10px 0;
	float: right;
	text-align: center;
	transition: all 0.5s ease;
}
.main-footer .f-cal h5 {
	font-size: 14px;
	color: #fff;
}
.main-footer .f-cal h5 span {
	display: block;
}
.main-footer p {
	margin-bottom: 0;
	font-family: gothambook;
}
.main-footer .f-post .f-info:hover a, .main-footer ul li:hover a, .main-footer ul li:hover:before {
	color: #ff3100;
}

/*========= main-footer ends =========*/


/*========= banner starts =========*/

.banner {
	text-align: center;
	overflow: hidden;
}
.banner ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.banner ul.banner-list li {
	position: relative;
}
.banner ul.banner-list li .banner-img {
	background-size: cover !important;
	height: 575px;
	background-position: 50% 50% !important;
	text-align: center;
	margin: 0 auto;
}
.banner ul.banner-list li .banner-overlay, .listing-banner .banner-overlay {
	padding-top: 100px;
	background-color: rgba(255, 253, 253, 0.85);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.banner h1 {
	font-size: 36px;
	font-family: 'Cutive', serif;
	color: #4d4d4d;
	font-weight: 300;
}
.banner-list li .banner-overlay .loc-type {
	list-style: none;
	margin: 60px auto;
	padding: 0;
}
.banner-list li .banner-overlay .loc-type:before, .banner-list li .banner-overlay .loc-type:after {
	content: '';
	display: table;
}
.banner-list li .banner-overlay .loc-type li {
	padding: 0 4%;
	display: block;
	float: left;
	width: 20%;
}
.banner-list li .banner-overlay .loc-type li .title-txt {
	font-size: 20px;
	font-family: 'Cutive', serif;
	font-weight: 300;
	display: block;
}
.banner-list li .banner-overlay .loc-type li .title-info {
	font-size: 16px;
	font-family: 'montserratlight';
	font-weight: 300;
	display: block;
}
.banner-list li .banner-overlay .banner-cta {
	list-style: none;
	margin: 60px auto 0 auto;
	padding: 0;
}
.banner-list li .banner-overlay .banner-cta li {
	display: inline-block;
	margin-right: 20px;
}
.banner-list li .banner-overlay .banner-cta li:last-child {
	margin-right: 0;
}
.banner-list li .banner-overlay .banner-cta li a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #ff3100;
	border-radius: 4px;
	border: solid 2px #ff3100;
	padding: 10px 30px;
	display: inline-block;
}
.banner-list li .banner-overlay .banner-cta li:hover a, .banner-list li .banner-overlay .banner-cta li.join a {
	background: #ff3100;
	color: #fff;
	border-radius: 4px;
}
.banner .bx-wrapper .bx-prev, .banner .bx-wrapper .bx-next {
	width: 76px;
	height: 76px;
	/*border-radius: 50%; border: solid 1px #9f9f9f;*/
}
.banner .bx-wrapper .bx-prev:after, .banner .bx-wrapper .bx-next:after {
	content: '';
	width: 31px;
	height: 31px;
	background: url(../images/next.svg) 0 0 no-repeat;
	position: absolute;
	left: 45%;
	top: 20px;
}
.banner .bx-wrapper .bx-prev:after {
	background: url(../images/previous.svg) 0 0 no-repeat;
	left: 35%;
}
.banner .bx-wrapper .bx-next {
	right: -100em;
}
.banner .bx-wrapper:hover .bx-next {
	right: 0;
	/*background-color: rgba(229,229,229,0.5)*/
}
.banner .bx-wrapper .bx-prev {
	left: -100em;
	/*background-color: rgba(229,229,229,0.5)*/
}
.banner .bx-wrapper:hover .bx-prev {
	left: 0;
}

/*========= banner ends =========*/


/*========= main-content starts =========*/

.main-content {
	background: #f6f6f6;
	padding: 50px 0 50px 0;
	position: relative;
}
.featured-wrap {
	padding: 0px 0 0 0;
	position: relative;
	z-index: 1;
}
.featured-wrap .featured-top-title h2 {
	margin-bottom: 25px;
	position: relative;
	font-size: 30px;
	font-family: 'Cutive', serif;
	font-weight: 600;
	display: innile-block;
	font-family: 'Josefin Sans', sans-serif;
	pointer-events: none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='your_transparent.png', sizingMethod='scale');
background: none !important;
}
.featured-wrap .featured-top-title h2:after {
	position: absolute;
	left: 0;
	width: 50px;
	content: '';
	height: 3px;
	top: 100%;
	background: #1f79a4;
	z-index:1
}
.featured-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.featured-wrap ul li, .posts-lists .column {
	_float: left;
	display: block;
	/*box-shadow:0px 0px 5px 0px rgba(0, 0, 0, 0.75);*/
	border-radius: 2px;
	_overflow: hidden;
	margin-bottom: 0px;
}
.featured-wrap .featured-top {
	padding: 30px 0;
	position: relative;
	text-align: center;
	border-radius: 2px 2px 0 0;
}
.featured-wrap .featured-top img {
	max-width: 70px;
	margin: 0 auto;
}
.featured-wrap .featured-green {
	background: #00d185;
}
.featured-wrap .featured-gray {
	background: #687071;
}
.featured-wrap .featured-yellow {
	background: #ffa800;
}
.featured-wrap .featured-dark-green {
	background: rgba(0, 150, 136, 1);
}
.featured-wrap .featured-light-blue {
	background: rgba(16, 214, 196, 1);
}
.featured-wrap .featured-purple {
	background: rgba(99, 94, 144, 1.00);
}
.featured-wrap .featured-dark-purple {
	background: rgba(121, 35, 134, 1.00);
}
.featured-wrap .featured-apple-green {
	background: rgba(85, 201, 215, 1.00);
}
.featured-wrap .featured-pale-yellow {
	background: rgba(164, 147, 5, 1.00);
}
.featured-wrap .featured-top .feat-category {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(37, 37, 37, 0.25);
	color: #fff;
	font-size: 10px;
	padding: 5px 10px;
}
.featured-wrap .featured-btm {
	min-height: 210px;
	padding: 20px 0;
	background: #fff;
	border-radius: 0 0 2px 2px;
}
.featured-wrap .featured-btm:before, .featured-wrap .featured-btm:after {
	content: '';
	display: table;
}
.featured-wrap .featured-btm h3, .featured-wrap .featured-btm h3 a {
	font-size: 14px;
	font-family: 'Cutive', serif;
	color: #4d4d4d;
	font-weight: 300;
	line-height: 18px;
}
.featured-wrap .featured-btm h3:hover a {
	color: #ff3100;
}
.featured-wrap .featured-btm h3 {
	border-bottom: none;
	padding: 0 0 0 20px;
	margin-bottom: 20px;
	float: left;
	width: calc(100% - 45px);
}
.featured-wrap .category-icon img {
	width: 18px;
	text-align: center;
	margin: 5px auto;
	display: block;
}
.featured-wrap .featured-green .category-icon, .featured-wrap .featured-gray .category-icon, .featured-wrap .featured-yellow .category-icon, .featured-wrap .featured-dark-green .category-icon, .featured-wrap .featured-light-blue .category-icon, .featured-wrap .featured-dark-green .category-icon, .featured-wrap .featured-light-blue .category-icon, .featured-wrap .featured-purple .category-icon, .featured-wrap .featured-apple-green .category-icon, .featured-wrap .featured-pale-yellow .category-icon, .featured-wrap .featured-dark-purple .category-icon {
	float: right;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #00d185;
	margin-right: 10px;
	position: absolute;
	right: 0;
	z-index: 99;
	bottom: 10px;
}
.featured-wrap .featured-btm .category-icon img {
	width: 18px;
	text-align: center;
	margin: 5px auto;
	display: block;
}
.featured-wrap .featured-btm .locate-date {
	border-top: solid 1px #ededed;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.featured-wrap .featured-btm .locate-date {
	border-top: solid 1px #ededed;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.featured-wrap .featured-btm .locate-date:before, .featured-wrap .featured-btm .locate-date:after {
	content: '';
	display: table;
	clear: both;
}
.featured-wrap .featured-btm .locate-date li {
	float: left;
	display: block;
	width: 50%;
	border-right: solid 1px #ededed;
	box-shadow: none;
	text-align: left;
	font-size: 16px;
	color: #9e9e9e;
	padding: 8px 25px;
	min-height: 10px;
	margin-bottom: 0;
}
.featured-wrap .featured-btm .locate-date li {
	float: left;
	display: block;
	width: 50%;
	border-right: solid 1px #ededed;
	box-shadow: none;
	text-align: left;
	font-size: 14px;
	color: #9e9e9e;
	padding: 8px 15px;
	min-height: 10px;
	margin-bottom: 0;
}
.featured-wrap .featured-btm .locate-date li:nth-child(2) {
	border-right: none;
}
.featured-wrap .featured-btm .locate-date li:last-child {
	border-right: none;
}
.featured-wrap .featured-btm .locate-date li:last-child {
	width: 100%;
	border-top: solid 1px #ededed;
	text-align: left;
}
.featured-wrap .featured-overlay, .featured-wrap .column .featured-overlay {
	position: absolute;
	top: -100em;
	left: -100em;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 209, 133, 0.92);
	border-radius: 2px;
	overflow: hidden;
}
.featured-wrap ul li:hover .featured-overlay, .featured-wrap .column:hover .featured-overlay {
	left: 0;
	top: 0;
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
}
.featured-wrap .featured-overlay h3, .featured-wrap .featured-overlay h3 a {
	color: #fff;
	font-size: 14px;
	font-family: 'Cutive', serif;
	border-bottom: none;
	font-weight: 300;
}
.featured-wrap .featured-overlay h3 {
	padding: 40px 20px 20px 20px;
	line-height: 20px;
}
.featured-wrap .featured-overlay p {
	padding: 0 20px;
	font-size: 12px;
	color: #fff;
}
.featured-wrap .featured-overlay ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.featured-wrap .featured-overlay ul li {
	box-shadow: none;
	border-top: solid 1px #fff;
	text-align: center;
	color: #fff;
	font-size: 16px;
	border-right: solid 1px #fff;
	border-radius: 0;
	width: 50%;
	min-height: 10px;
	margin-bottom: 0;
}
.featured-wrap .featured-overlay ul li:last-child {
	border-right: none;
}
.featured-wrap .featured-overlay ul li a {
	color: #fff;
	font-size: 16px;
	display: block;
	padding: 15px 0;
}
.featured-wrap .bx-wrapper .bx-controls-direction a {
	top: -40px;
	width: 40px;
	height: 40px;
	border: solid 1px #b8b8b8;
	border-radius: 50%;
	text-align: center;
}
.featured-wrap .bx-wrapper .bx-prev:after, .featured-wrap .bx-wrapper .bx-next:after {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../images/right-sm.svg) 0 0 no-repeat;
	position: absolute;
	left: 45%;
	top: 12px;
}
.featured-wrap .bx-wrapper .bx-prev:after {
	background: url(../images/left-sm.svg) 0 0 no-repeat;
	left: 35%;
}
.featured-wrap .bx-wrapper .bx-next {
	right: 0px;
}
.featured-wrap .bx-wrapper .bx-prev {
	left: auto;
	right: 50px;
}
.featured-wrap .featured-gray .category-icon {
	background: #687071;
}
.featured-wrap .featured-yellow .category-icon {
	background: #ffa800;
}
.featured-wrap .featured-dark-green .category-icon {
	background: rgba(0, 150, 136, 1);
}
.featured-wrap .featured-light-blue .category-icon {
	background: rgba(16, 214, 196, 1);
}
.featured-wrap .featured-purple .category-icon {
	background: rgba(99, 94, 144, 1.00);
}
.featured-wrap .featured-apple-green .category-icon {
	background: rgba(85, 201, 215, 1.00);
}
.featured-wrap .featured-pale-yellow .category-icon {
	background: rgba(164, 147, 5, 1.00);
}
.featured-wrap .featured-dark-purple .category-icon {
	background: rgba(121, 35, 134, 1.00);
}
.featured-wrap .featured-gray .featured-overlay {
	background: rgba(104, 112, 113, 0.94);
}
.featured-wrap .featured-yellow .featured-overlay {
	background: rgba(255, 168, 0, 0.94);
}
.featured-wrap .featured-dark-green .featured-overlay {
	background: rgba(0, 150, 136, 0.94);
}

.featured-wrap .featured-light-blue .featured-overlay {
	background: rgba(16, 214, 196, 0.94);
}
.featured-wrap .featured-purple .featured-overlay {
	background: rgba(99, 94, 144, 0.94);
}
.featured-wrap .featured-apple-green .featured-overlay {
	background: rgba(85, 201, 215, 0.94);
}
.featured-wrap .featured-pale-yellow .featured-overlay {
	background: rgba(164, 147, 5, 0.94);
}
.featured-wrap .featured-dark-purple .featured-overlay {
	background: rgba(121, 35, 134, 0.94);
}
.featured-wrap .categories-wrap {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.categories-wrap .cat-div {
	min-height: 200px;
	margin-bottom: 35px;
	overflow: hidden;
	color: #fff;
	box-shadow: 0 0 10px 3px rgba(0, 16, 31, 0.3);
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	padding:10px
}
.categories-wrap .cat-div a {
	height: 100%;
	color: #fff;
	_padding: 15px 5px;
	float: left;
	width: 100%;
	display: block;
}
.categories-wrap .cat-div:before, .categories-wrap .cat-div:after {
	content: '';
	display: table;
}
.categories-wrap .cat-div .cat-top {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
	padding-top: 10px;
}
.categories-wrap .cat-div .cat-top .cat-top-left {
	width: 20px;
	font-size: 20px;
	font-family: 'montserratextralight';
	float: left;
	letter-spacing: 0px;
	display: block;
	text-align: left;
	margin-top: 0px;
}
.categories-wrap .cat-div .cat-top .cat-top-right {
	width: calc(100% - 30px);
	font-size: 12px;
	text-transform: uppercase;
	float: right;
	line-height: 16px;
}
.categories-wrap .cat-div .cat-btm {
	display: block;
	text-align: center;
	margin: 0 auto;
	max-height: 100px;
	vertical-align: middle;
}
.categories-wrap .cat-div .cat-btm img {
	max-width: 100px;
	transition: all 0.5s ease;
}
.categories-wrap .dark-red {
	background: #e40000;
}
.categories-wrap .dark-pale-yellow {
	background: #dda73a;
}
.categories-wrap .bright-green {
	background: #0bc10b;
}
.categories-wrap .dark-blue {
	background: rgba(11, 121, 224, 1.0);
}
.categories-wrap .bright-red {
	background: #fa3e19;
}
.categories-wrap .bright-blue {
	background: #14c2e7;
}
.categories-wrap .dull-brown {
	background: #bc7f04;
}
.categories-wrap .dark-pink {
	background: #b20065;
}
.categories-wrap .bright-yellow {
	background: #eab514;
}
.categories-wrap .bright-pink {
	background: #fc00ac;
}
.categories-wrap .dark-brown {
	background: #b14d11;
}
.categories-wrap .dull-blue {
	background: #3e7fa9;
}
.categories-wrap .light-yellow {
	background: #ffb400;
}
.categories-wrap .aqua-blue {
	background: #00ace5;
}
.categories-wrap .dark-green {
	background: #2eb000;
}
.categories-wrap .peace-blue {
	background: #1276af;
}
.categories-wrap .navy-blue {
	background: #0a1e52;
}
.categories-wrap .purple {
	background: #c326e5;
}
.categories-wrap .bright-blue .cat-btm img {
	max-width: 100px;
}
.categories-wrap .cat-div:hover {
	opacity: 0.9;
	box-shadow: 0 0 10px 3px rgba(0, 16, 31, 0.5);
}
.categories-wrap .cat-div:hover .cat-top .cat-top-right {
	visibility: hidden;
}
.categories-wrap .cat-div:hover img {
	transform: scale(1.3);
	margin-top: -20px;
}
.categories-wrap .bright-red:hover .cat-btm img, .categories-wrap .bright-blue:hover .cat-btm img {
	transform: scale(1.2);
	margin-top: 0px;
}
.posts-lists .column {
	margin-bottom: 30px;
	background: #fff;
}
.featured-wrap .column {
	position: relative;
	width: 100%;
}
.listing-wrap {
	padding-top: 30px;
}
#nav-filter {
	border-bottom: solid 1px #e0dfdf;
	background: #fff;
	padding: 12px 0 10px 0;
	min-height: 30px;
	position: relative;
	z-index: 4444 !important;
}
#nav-filter #filter {
	width: calc(100% - 145px);
	float: left;
	margin-left: 0px;
}
#nav-filter .nav-text {
	font-size: 14px;
	color: #c2c2c2;
	margin: 0;
	padding: 5px 0;
	width: 145px;
	font-family: 'Montserrat', sans-serif;
	text-align: left;
}
#nav-filter .nav {
	width: 100%;
	margin: 0;
	padding: 0;
}
#nav-filter .nav li {
	float: left;
	display: block;
	border-left: solid 1px #c8c8c8;
}
#nav-filter .nav li:after, #nav-filter .nav li:before {
	content: '';
	display: none;
}
#nav-filter .nav li:nth-child(2)>ul, #nav-filter .nav li:last-child>ul {
	min-width: 180px;
}
#nav-filter .nav li:nth-child(2) ul {
	height: auto;
}
#nav-filter .nav li ul li, #nav-filter .nav li:nth-child(2) ul li, #nav-filter .nav li ul li:first-child {
	width: 100%;
}
#nav-filter .nav li a, #nav-filter .nav li ul li a {
	display: block;
	text-align: left;
	padding: 4px 25px;
	font-size: 14px;
	color: #585858;
}
#nav-filter .nav li input, #nav-filter .nav li button[type='submit'] {
	float: left;
	width: 30px;
	background: none;
	border: none;
}
#nav-filter .nav li input {
	width: calc(100% - 30px);
	margin: 0;
	padding: 5px 10px;
	color: #585858;
}
#nav-filter .nav li button[type='submit'] {
	font-size: 20px;
	padding: 0 10px;
}
#nav-filter .nav li button[type='submit'] i {
	text-align: center;
	display: block;
}
#nav-filter .nav li {
	width: 15%;
}
#nav-filter.navbar-default .navbar-nav>li>a>i {
	font-size: 16px;
	float: right;
}
#nav-filter .nav li:first-child {
	width: 26%;
}
#nav-filter .nav li>ul {
	z-index: 22;
	left: 0;
	right: auto;
	min-width: 250px;
	border-radius: 0 0 2px 2px;
	max-height: 300px;
	overflow-y: scroll;
	padding: 10px 0;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
#nav-filter .nav li>ul>li, #nav-filter .nav li>ul>li:first-child, #nav-filter .nav li ul div li {
	width: 100%;
	border-left: none
}
#nav-filter .nav li>ul>li>a {
	font-size: 13px;
	padding: 5px 15px;
	text-transform: capitalize;
}
#nav-filter .nav li>ul>li:hover>a {
	color: #fff;
	background: #ff3100;
}
#nav-filter .nav li>ul>li:last-child>a {
	border-radius: 0 0 2px 2px;
}
#nav-filter .nav li ul li a img {
	float: left;
	width: 20px;
	margin-right: 10px;
}
#nav-filter .nav li:last-child>ul {
	left: auto;
	right: 0;
}
.inner-content {
	padding-bottom: 50px;
}
.listing-banner {
	position: relative;
}
.listing-banner .banner-img {
	margin: 0 auto;
	display: block;
	height: 500px;
	background-position: 0 0;
	background-size: cover !important;
	opacity: 0.1;
}
.listing-banner .banner-overlay {
	padding-top: 90px;
	background-color: rgba(0, 0, 0, 0.50);
}
.listing-banner .banner-overlay .container {
	position: relative;
	z-index: 2;
}
.listing-banner .banner-overlay .container img {
	margin-top: -50px;
}
.listing-banner .banner-icon {
	position: absolute;
	bottom: 0;
	right: 20px;
}
.listing-banner h1 {
	color: #fff;
	font-size: 60px;
	font-family: 'montserratblack';
	margin-bottom: 35px;
}
.listing-banner p, .listing-banner p a {
	color: #fff;
	font-size: 24px;
}
.listing-banner .social {
	list-style: none;
	margin: 0;
	padding: 0;
}
.listing-banner .social li {
	float: left;
	margin: 0 10px 0 0;
	padding: 0;
	display: block;
}
.listing-banner .social li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: none;
	border: solid 1px #fff;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
}
.listing-wrap {
	padding: 50px 0 0 0;
}
.listing-wrap h3 {
	border-bottom: solid 1px #4b4b4b;
	padding-bottom: 10px;
	font-size: 20px;
	color: #313131;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 20px;
}
.listing-wrap .company-info h3 {
	padding-bottom: 0;
	border-bottom: none;
}
.listing-wrap .company-info p {
	margin-bottom: 30px;
}
.listing-wrap .company-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.listing-wrap .company-info ul li {
	display: block;
	margin-bottom: 5px;
}
.listing-wrap .company-info ul li a {
	display: block;
	color: #0376b1;
}
.listing-wrap .company-feed {
	margin-bottom: 40px;
	float: left;
	width: 100%;
}
.listing-wrap .company-feed:before, .listing-wrap .company-feed:after {
	content: '';
	display: table;
}
.listing-wrap .company-feed .f-row {
	margin-bottom: 20px;
	float: left;
	width: 100%;

}
.listing-wrap .company-feed .f-row .f-left {
	width: 85px;
	float: left;
}
.listing-wrap .company-feed .f-row .f-left img {
	width: 100%;
}
.listing-wrap .company-feed .f-row .f-right {
	float: right;
	width: calc(100% - 85px);
	padding: 15px 0 5px 15px;
}
.listing-wrap .company-feed .f-row .f-right h4 {
	margin: 0px 0 5px 0;
}
.listing-wrap .company-feed .f-row .f-right h4, .listing-wrap .company-feed .f-row .f-right h4 a {
	font-size: 14px;
	color: #0376b1;
}
.listing-wrap .company-feed .f-row .f-right h4 a:hover, .listing-wrap .company-info ul li a:hover {
	color: #ff3100;
}
.listing-wrap .company-feed .f-row .f-right p {
	font-size: 14px;
	margin-bottom: 10px;
}
.listing-wrap .post-events {
	padding: 25px 0;
	border-top: solid 1px #bbbbbb;
	overflow: hidden;
}
.listing-wrap .post-events h2 {
	font-weight: 400;
	font-size: 24px;
	font-family: 'Montserrat', sans-serif;
	display: block;
	margin-bottom: 30px;
}
.listing-wrap .post-events ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.listing-wrap .post-events ul li {
	display: block;
	margin-bottom: 5px;
	float: left;
	width: 100%;
}
.listing-wrap .post-events ul li a {
	color: #444444;
	display: block;
	padding: 10px 20px;
	float: left;
	width: 100%;
	overflow: hidden;
	background: #f0f0f0;
}
.listing-wrap .post-events ul li a:hover {
	background: #dadada;
	color: #0376b1;
}
.listing-wrap .post-events ul li a .e-icon {
	float: left;
	width: 30px;
}
.listing-wrap .post-events ul li a .e-icon img {
	max-width: 30px;
	float: left;
}
.listing-wrap .post-events ul li a .e-date {
	float: right;
	width: 125px;
	text-align: right;
	padding-top: 5px;
}
.listing-wrap .post-events ul li a .e-text {
	float: left;
	width: calc(100% - 155px);
	padding-left: 10px;
	padding-top: 5px;
}
.listing-wrap .comment-area {
	margin: 30px 0;
}
.login-wrap-reg {
	text-align: center;
	background: #fff;
	_max-width: 500px;
	margin: 0px auto 0;
	padding: 30px 30px;
}
.login-wrap-reg h1 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 50px;
	color: #6e6e6e;
	margin-bottom: 40px;
	font-weight: 500;
	display: block;
}
.login-wrap-reg h1 span {
	color: #ff0000;
}
.login-wrap-reg h2 {
	font-size: 30px;
	line-height: normal;
	font-family: 'RobotoLight';
	margin-bottom: 40px;
	font-weight: 300;
	color: #6e6e6e;
}
.login-wrap {
	text-align: center;
	_background: #f6f6f6;
	max-width: 500px;
	margin: 0px auto 0;
}
.login-wrap h1 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 50px;
	color: #6e6e6e;
	margin-bottom: 40px;
	font-weight: 500;
	display: block;
}
.login-wrap h1 span {
	color: #ff0000;
}
.login-wrap h2 {
	font-size: 30px;
	line-height: normal;
	font-family: 'RobotoLight';
	margin-bottom: 40px;
	font-weight: 300;
	color: #6e6e6e;
}
.login-wrap .form-top .form-group .input-box {
	position: relative;
}
.login-wrap .form-top .form-group .input-box .icon-position {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 20px;
	color: #bbbbbb;
}
.icon-position{
    position: absolute;
    top: 5px;
    right: 30px;
    font-size: 20px;
    color: #bbbbbb;

}
.login-wrap input {
	border: solid 1px #ebebeb;
	color: #bbbbbb;
	background: #fff;
	border-radius: 4px;
	padding: 15px 25px;
	_width: 100%;
}
.login-wrap .form-top input[type='submit'] {
	background: #ff0000;
	color: #fff;
	font-family: 'Cutive', serif;
	text-align: center;
	border: none;
	font-weight: 700;
	padding: 20px 25px 15px 25px;
}
.login-wrap .form-top input[type='submit']:hover, .login-wrap .form-top input[type='submit']:focus {
	background: #F00000;
}
/*.login-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.login-wrap .form-top ul li {
	float: left;
	display: block;
	width: 50%;
	text-align: left;
}
.login-wrap .form-top ul li:last-child {
	float: right;
	text-align: right;
}
.login-wrap .form-top ul li a, .login-wrap a {
	color: #337ab7;
}
.login-wrap .form-top ul li a:hover, .login-wrap a:hover {
	text-decoration: underline;
}
.login-wrap .form-top ul li label {
	font-weight: 300;
	color: #6e6e6e;
	font-family: 'montserratlight';
}*/
.form-group:before, .form-group:after {
	content: '';
	display: table;
	clear: both;
}
.login-wrap .form-btm {
	padding: 20px 0;
}
.login-wrap .form-btm .or {
	text-align: center;
	position: relative;
}
.login-wrap .form-btm .or:before {
	content: '';
	width: 100%;
	display: block;
	position: relative;
	height: 1px;
	background: #dcdcdc;
}
.login-wrap .form-btm .or .or-text {
	color: #6e6e6e;
	font-size: 14px;
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 50px;
	margin: -18px auto 0 auto;
	font-family: 'Cutive', serif;
	background: #f6f6f6;
	padding: 10px 0px;
}
.login-wrap .form-btm ul.social-login {
	width: 100%;
	float: left;
	margin: 25px auto;
}
.login-wrap .form-btm ul li {
	float: left;
	display: block;
	width: calc(50% - 10px);
	margin: 0 20px 0 0;
}
.login-wrap .form-btm ul li:last-child {
	margin-right: 0;
}
.login-wrap .form-btm ul li a {
	background: #1E1D1D;
	color: #fff;
	padding: 10px 20px;
	display: block;
	font-size: 14px;
	border-radius: 4px;
}
.login-wrap .form-btm ul li a i {
	padding-left: 10px;
}
.login-wrap .form-btm ul li a:hover {
	text-decoration: none;
}
.login-wrap .form-btm ul.social-login li.facebook a {
	background: #3b5998;
}
.login-wrap .form-btm ul.social-login li.twitter a {
	background: #32c0e4;
}
.register-wrap {
	max-width: 670px;
}
.register-wrap .form-top, .register-wrap .form-btm {
	max-width: 600px;
	margin: 0 auto;
}
.register-wrap .register-in {
	padding: 0px 5% 0;
}
.login-wrap input:: -webkit-input-placeholder, .login-wrap textarea:: -webkit-input-placeholder {
	color: #bbbbbb;
}
.login-wrap input::-webkit-input-placeholder {
	/* Safari, Chrome and Opera */
	color: #bbbbbb;
}
.login-wrap input:-moz-placeholder {
	/* Firefox 18- */
	color: #bbbbbb;
}
.login-wrap input::-moz-placeholder {
	/* Firefox 19+ */
	color: #bbbbbb;
}
.login-wrap input:-ms-input-placeholder {
	/* IE 10+ */
	color: #bbbbbb;
}
.login-wrap input::-ms-input-placeholder {
	/* Edge */
	color: #bbbbbb;
}
.login-wrap input:placeholder-shown {
	/* Standard one last! */
	color: #bbbbbb;
}
.login-wrap input:focus:: -webkit-input-placeholder, .login-wrap textarea:focus:: -webkit-input-placeholder {
	color: #bbbbbb;
}
.bordered {
	padding: 15px 25px;
	border: solid 1px #ebebeb;
	color: #bbbbbb;
	background: #f9f9f9;
	float: left;
	display: block;
	border-radius: 4px;
	text-align: left;
}
.bordered img {
	max-width: 250px;
}
label.error {
	color: #ff0000;
	text-align: left;
	display: block;
	padding: 5px 0;
}
.login-wrap input.error {
	border-color: #ff0000;
}

/*========= main-content ends =========*/

.banner {
	height: 575px;
}
#wrapper {
	width: 100%;
	height: 550px;
	overflow: hidden;
	position: relative;
	z-index: 1 !important;
}
#wrapper .video-banner {
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1 !important;
}
#tubular-container {
	position: absolute !important;
	z-index: 1 !important;
	height: 850px !important;
	top: 0px !important;
}
#tubular-container:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	content: '';
	z-index: 5 !important;
}
.banner .bx-wrapper .bx-viewport {
	height: 575px !important;
	position: relative;
	z-index: 100 !important;
}
.banner ul.banner-list li .banner-overlay {
	background: none;
}
.banner, .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6 {
	color: #fff;
	text-align: left;
}
.banner h1 {
	font-weight: bold;
	margin-bottom: 20px;
}
.banner .text-center h1 {
	text-align: center;
}
.banner h1 span {
	color: #ff3100;
}
.banner p {
	font-size: 16px;
}
.banner-list li .banner-overlay .banner-cta li a {
	border-color: #fff;
	color: #fff;
}
.banner-list li .banner-overlay .banner-cta li.join a {
	background: none;
}
.banner-list li .banner-overlay .banner-cta li:hover a {
	border-color: #ff3100;
	background: #ff3100;
}
.featured-lists .owl-item {
	overflow: hidden;
}
.featured-lists .owl-controls .owl-nav .owl-prev, .featured-lists .owl-controls .owl-nav .owl-next {
	position: absolute;
	right: 0;
	text-indent: -9999px;
	top: -55px;
	z-index: 222;
	width: 40px;
	height: 40px;
	border: solid 1px #b8b8b8;
	border-radius: 50%;
	text-align: center;
}
.featured-lists .owl-controls .owl-nav .owl-prev:after, .featured-lists .owl-controls .owl-nav .owl-next:after {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../images/right-sm.svg) 0 0 no-repeat;
	position: absolute;
	left: 45%;
	top: 12px;
}
.featured-lists .owl-controls .owl-nav .owl-prev:after {
	background: url(../images/left-sm.svg) 0 0 no-repeat;
	left: 35%;
}
.featured-lists .owl-controls .owl-nav .owl-next {
	right: 0px;
}
.featured-lists .owl-controls .owl-nav .owl-prev {
	left: auto;
	right: 50px;
}

.tp-caption.fullscreenvideo {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
}
.tp-banner .main-title {
	letter-spacing: 0;
	font-weight: 400;
	text-transform: none;
	font-size: 3.5em;
	text-shadow: none;
	margin-bottom: 10px;
	padding: 0;
	color: #fff;
	white-space: nowrap;
	font-family: 'Josefin Sans', sans-serif;
}
.tp-banner .dark .main-title {
	color: #454545 !important
}
.tp-banner .textwrapper {
	border: 0;
	height: auto;
	margin: 0;
	font-size: 1em;
	padding: 0;
	white-space: nowrap;
}
.tp-banner .textwrapper p {
	font-size: 2em !important;
	margin-bottom: 20px;
	margin-top: 20px;
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	line-height: 46px
}
.tp-banner .dark .textwrapper p {
	color: #454545 !important
}
.tp-banner .textwrapper p:before {
	content: "";
}
.tp-banner .btn {
	margin: 0 0px 0 0;
}

/*.demo-2 .tp-banner .btn:last-child {
  margin: 0 0px 0 10px;
}*/

.tp-banner h2 {
	font-size: 70px;
	padding-top: 0;
}
.tp-banner .textwrapper {
	padding-top: 0;
	margin: auto;
}

/********************************************
	-	SLIDER NAVIGATION CORRECTION	-
********************************************/

.tparrows {
	z-index: 508 !important
}

/* LIGHT ON DARK */


/* NAV ARROW STYLE */

.tparrows.default.miami-light {
	width: 23px;
	height: 44px;
	padding-top: 0px;
	padding-bottom: 0px;
	background: transparent;
}
.tparrows.default.miami-light:after {
	position: absolute;
	line-height: 50px;
	text-align: center;
	font-family: "revicons";
	color: #aaa;
	font-size: 40px;
	top: 0px;
	left: 0px;
	z-index: 0;
	width: 23px;
	height: 44px;
	-webkit-transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.tparrows.default.miami-light:hover:after {
	color: #fff;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}
.tp-rightarrow.miami-light {
	padding-right: 100px;
}
.tp-leftarrow.miami-light {
	padding-left: 100px;
}
.tp-rightarrow.miami-light:after {
	content: '\e825';
	padding-left: 76px;
	padding-top: 25px;
}
.tp-leftarrow.miami-light:after {
	content: '\e824';
	padding-right: 76px;
	padding-top: 25px;
}

/* BULLET STYLE */

.tp-bullets.simplebullets.miami-light {
	height: 9px;
	vertical-align: middle;
	line-height: 10px
}
.tp-bullets.simplebullets.miami-light .bullet {
	cursor: pointer;
	width: 9px;
	height: 9px;
	background: #aaa;
	float: left;
	position: relative;
	margin-right: 7px;
	border-radius: 50%;
	-webkit-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	-ms-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.tp-bullets.simplebullets.miami-light .bullet.selected, .tp-bullets.simplebullets.miami-light .bullet:hover {
	background: #fff;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.5);
}
.tp-bullets.simplebullets.miami-light .bullet.last {
	margin-right: 0px;
}

/* DARK ON LIGHT */


/* NAV ARROW STYLE */

.tparrows.default.miami-dark {
	width: 23px;
	height: 44px;
	padding-top: 50px;
	padding-bottom: 50px;
	background: transparent;
}
.tparrows.default.miami-dark:after {
	position: absolute;
	line-height: 50px;
	text-align: center;
	font-family: "revicons";
	color: #333;
	color: rgba(51, 51, 51, 0.5);
	font-size: 50px;
	top: 0px;
	left: 0px;
	z-index: 0;
	width: 23px;
	height: 44px;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
}
.tparrows.default.miami-dark:hover:after {
	color: #333;
	color: rgba(51, 51, 51, 1);
}
.tp-rightarrow.miami-dark {
	padding-right: 100px;
}
.tp-leftarrow.miami-dark {
	padding-left: 100px;
}
.tp-rightarrow.miami-dark:after {
	content: '\e825';
	padding-left: 76px;
	padding-top: 25px;
}
.tp-leftarrow.miami-dark:after {
	content: '\e824';
	padding-right: 76px;
	padding-top: 25px;
}

/* BULLET STYLE */

.tp-bullets.simplebullets.miami-dark {
	height: 9px;
	vertical-align: middle;
	line-height: 10px
}
.tp-bullets.simplebullets.miami-dark .bullet {
	cursor: pointer;
	width: 9px;
	height: 9px;
	background: #333;
	background: rgba(51, 51, 51, 0.5);
	float: left;
	position: relative;
	margin-right: 7px;
	border-radius: 50%;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	-ms-transition: background 0.3s ease-in-out;
}
.tp-bullets.simplebullets.miami-dark .bullet.selected, .tp-bullets.simplebullets.miami-dark .bullet:hover {
	background: #333;
}
.tp-bullets.simplebullets.miami-dark .bullet.last {
	margin-right: 0px;
}

/******************************
	-	IMG HOVERS	-
********************************/

.tp-imghover-wrapper {
	position: relative;
	width: auto;
	height: auto;
	display: inline-block;
	overflow: hidden;
}
.tp-imghover-wrapper img {
	width: 100%;
	max-width: 100%;
}
.tp-imghover-overlay {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	overflow: hidden;
	position: absolute;
	z-index: 2;
}
.tp-imghover-hover {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	visibility: hidden;
	z-index: 1;
}
.tp-imghover-title, .tp-imghover-subtitle {
	visibility: hidden;
}
.tp-imghover-topline, .tp-imghover-bottomline, .tp-imghover-leftline, .tp-imghover-rightline {
	visibility: hidden;
}
.tp-banner .btn {
	padding: 5px 20px;
	border-radius: 40px;
	_border: 2px solid;
}
.tp-banner .btn-lg {
	padding: 12px 48px;
}
.tp-banner .btn-sm {
	padding: 8px 25px;
}
.tp-banner .btn-xs {
	padding: 5px 20px;
	font-size: 0.9em;
}
.tp-banner .btn-link {
	border-color: transparent;
}
.tp-banner .btn-group>.btn.btn-bordered:first-child {
	border-right: 0;
}
.tp-banner .btn-group>.btn.btn-bordered:last-child {
	border-left: 0;
}
.tp-banner .content-custom-button {
	padding: 25px;
}
.dt-rs-container {
	position: relative;
	float: left;
	width: 100%;
}
.dt-rs-container .dt-header-search {
	position: absolute;
	bottom: 280px;
	width: 100%;
	text-align: center;
	z-index: 999 !important;
}
.dt-header-search-inner {
	display: inline-block;
}
.dt-header-search .dt-search-row:first-child {
	border-radius: 3px 0 0 3px;
}
.dt-search-row.listing-name {
	width: 239px;
	display: inline-block;
}
.dt-header-search .dt-search-row {
	height: 68px;
	border: 1px solid #e5e5e5;
	background: #fff;
	float: left;
	margin-left: -1px;
	padding: 3px 14px;
	position: relative;
	text-align: left;
}
.dt-search-row.listing-name {
	width: 239px;
	display: inline-block;
}
.dt-header-search .dt-search-row {
	height: 68px;
	border: 1px solid #e5e5e5;
	background: #fff;
	float: left;
	margin-left: -1px;
	padding: 3px 14px;
	position: relative;
	text-align: left;
}
.dt-header-search-inner .dt-search-row {
	-webkit-transition: background ease-in-out 0.2s;
	-moz-transition: background ease-in-out 0.2s;
	-o-transition: background ease-in-out 0.2s;
	transition: background ease-in-out 0.2s;
}
.dt-header-search .dt-search-row label {
	text-transform: uppercase;
	color: #4b5966;
	font-weight: 600;
	font-size: 12px;
}
.dt-header-search-inner .dt-search-row label {
	-webkit-transition: color ease-in-out 0.2s;
	-moz-transition: color ease-in-out 0.2s;
	-o-transition: color ease-in-out 0.2s;
	transition: color ease-in-out 0.2s;
}
.dt-header-search .dt-search-row.listing-name input {
	border: none;
	padding: 0;
}
.dt-header-search .dt-search-row input {
	_padding: 0;
	_border: none;
	margin-top: -4px;
	display: block;
	font-size: 13px;
	background-color: transparent;
	outline: none;
	-webkit-font-smoothing: initial;
	-moz-osx-font-smoothing: initial;
}
.dt-search-row.listing-category {
	width: 200px;
	display: inline-block;
}
.dt-search-row.listing-category .btn-default, .dt-search-row.listing-category .btn-default:hover, .dt-search-row.listing-category .btn-default:active {
	color: #888;
	background-color: transparent;
	border-color: #dce0e0;
	border-radius: 0px;
	border: none;
	font-size: 13px;
	padding: 0px 25px 0px 0px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	height: auto;
	font-family: 'montserratlight', sans-serif;
	text-transform: none;
	letter-spacing: 0em;
	line-height: 1.2em;
	font-weight: normal;
}
.dt-search-row.listing-category .bootstrap-select.btn-group .btn .caret {
	position: absolute;
	top: 50%;
	right: 0px;
	margin-top: -2px;
	vertical-align: middle;
}
.dt-search-row.listing-address {
	width: 218px;
	display: inline-block;
}
.dt-search-row.listing-address .btn-default, .dt-search-row.listing-address .btn-default:hover, .dt-search-row.listing-address .btn-default:active {
	color: #888;
	background-color: transparent;
	border-color: #dce0e0;
	border-radius: 0px;
	border: none;
	font-size: 13px;
	padding: 0px 25px 0px 0px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	height: auto;
	font-family: 'montserratlight', sans-serif;
	text-transform: none;
	letter-spacing: 0em;
	line-height: 1.2em;
	font-weight: normal;
}
.dt-search-row.listing-address .bootstrap-select.btn-group .btn .caret {
	position: absolute;
	top: 50%;
	right: 0px;
	margin-top: -2px;
	vertical-align: middle;
}
.dt-button.dt-button-invert {
	border: 2px solid rgba(255, 255, 255, 0.5);
}
.dt-create-listing, .dt-author-account {
	margin-top: 30px;
}
.dt-button {
	font-family: 'Poppins';
	font-size: 14px;
	color: #fff;
	border-radius: 3px;
	font-weight: 600;
	padding: 5px 21px 5px 20px;
	position: relative;
	overflow: hidden;
}
.dt-login-register, .dt-create-listing, .dt-author-account {
	float: right;
}
.dt-button.dt-button-danger, .dt-button.dt-button-danger:hover {
	background-color: #f25f5c;
	color: #fff;
}
.dt-button.dt-button-danger {
	background: #e95e59;
	opacity: 1;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.dt-header-search-submit {
	height: 68px;
	display: inline-block;
	line-height: 68px;
	padding: 0 44px;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 400;
	border-radius: 0 3px 3px 0;
	-webkit-font-smoothing: initial;
	-moz-osx-font-smoothing: initial;
}
.dt-search-row.listing-category .dt-custom-select-container {
	top: 66px;
}
.dt-custom-select-container, .db-row-autocomplete {
	position: absolute;
	z-index: 22;
	width: 100%;
	left: 0;
	max-height: 185px;
	background: #fff;
	border: 0px solid transparent;
	border-top: none;
	display: none;
	box-shadow: inset 0px 13px 29px 0px #F8F8F9;
}
.dt-custom-select-item, .db-autocomplete-item {
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 13px;
	line-height: 26px;
	color: #909FA5;
	padding: 0 15px 0 30px;
	cursor: pointer;
	position: relative;
	-webkit-transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
	-moz-transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
	-o-transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
	transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.dt-custom-select-inner, .db-autocomplete-inner {
	max-height: 185px;
	overflow: hidden;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.13);
}
.dt-custom-select-items, .db-autocomplete-items {
	max-height: 139px;
	overflow-y: auto;
	position: relative;
	margin-right: -16px;
}
.dt-custom-select-items, .db-autocomplete-items {
	margin-bottom: 10px;
}
.dt-custom-select-item:before {
	content: '';
	background: url(images/checkbox.svg);
	background-position: center;
	width: 12px;
	height: 14px;
	position: absolute;
	top: 8px;
	left: 13px;
	opacity: 0;
}
.dt-custom-select-scrollbar-wrapper, .db-autocomplete-scrollbar-wrapper {
	width: 1px;
	position: absolute;
	right: 0;
	top: 43px;
	height: calc(100% - 45px);
}
.db-autolocate-me {
	position: absolute;
	top: 10px;
	right: 25px;
	cursor: pointer;
}
.section-shade-top {
	background-image: linear-gradient(to top, transparent 0, rgba(0, 0, 0, 0.8) 150%);
	background-repeat: repeat-x;
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#ff000000', GradientType=0);
}
.dt-header-categories {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 140px;
	background: rgba(255, 255, 255, 1);
	text-align: center;
	overflow: hidden;
	z-index: 99;
	line-height: 18px !important
}
.dt-header-categories .dt-header-category-item {
	_display: inline-block;
	cursor: pointer;
	text-align: center;
	margin: 0 0px;
	margin-top: 20px;
	color: #454545;
}
.dt-header-categories .dt-header-category-item a {
	color: #454545
}
.dt-header-categories .dt-header-category-item:hover .dt-header-category-icon, .dt-header-categories .dt-header-category-item:hover .dt-header-category-name {
	color: #02276f;
}
.dt-header-categories .dt-header-category-item img {
	_height: 40px;
	margin: 0 auto;
	max-width: 100%;
	width: 75%

}
.dt-header-category-item .dt-header-category-icon {
	display: block;
	font-size: 50px;
	margin-bottom: 4px;
}
.dt-header-category-item .dt-header-category-icon:before {
	margin: 0;
}
.dt-header-category-item .dt-header-category-name {
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Open Sans Condensed', sans-serif;
	-webkit-font-smoothing: initial;
	font-weight: 600;
	line-height: 18px !important;
	margin-bottom: 20px;
display: block;
}
.featured-carousal .owl-controls .owl-nav {
	height: 0;
	left: 0;
	margin-top: -14px;
	opacity: 1;
	padding: 0 10px;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.featured-carousal .owl-controls .owl-carousel:hover .owl-nav {
	opacity: 1;
}
.featured-carousal .owl-controls .owl-nav>div.owl-next:before {
	content: "";
}
.featured-carousal .owl-controls .owl-nav>div {
	border: 1px solid #cacaca;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0);
	float: left;
	height: 36px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 36px;
}
.featured-carousal .owl-controls .owl-nav>div:hover {
	border-color: #e2e2e2;
}
.featured-carousal .owl-controls .owl-nav>div.owl-next {
	float: right;
}
.featured-carousal .owl-controls .owl-nav>div:before {
	color: #cacaca;
	content: "";
	font-family: fontawesome;
	font-size: 16px;
	height: 100%;
	left: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.featured-carousal .owl-controls .owl-nav .owl-prev {
	margin-left: -75px;
}
.featured-carousal .owl-controls .owl-nav .owl-next {
	margin-right: -75px;
}
.featured-carousal .owl-nav>div:hover:after {
	color: #d70204;
}
.featured-carousal .owl-nav>div:hover {
	background-color: #d70204;
}
.dt-header-categories .owl-controls .owl-nav {
	height: 0;
	left: 0;
	margin-top: -14px;
	opacity: 1;
	padding: 0 10px;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.dt-header-categories .owl-controls .owl-carousel:hover .owl-nav {
	opacity: 1;
}
.dt-header-categories .owl-controls .owl-nav>div.owl-next:before {
	content: "";
}
.dt-header-categories .owl-controls .owl-nav>div {
	border: 1px solid #cacaca;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0);
	float: left;
	height: 36px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 36px;
}
.dt-header-categories .owl-controls .owl-nav>div:hover {
	border-color: #e2e2e2;
}
.dt-header-categories .owl-controls .owl-nav>div.owl-next {
	float: right;
}
.dt-header-categories .owl-controls .owl-nav>div:before {
	color: #cacaca;
	content: "";
	font-family: fontawesome;
	font-size: 16px;
	height: 100%;
	left: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 999;
	width: 100%;
}
.dt-header-categories .owl-controls .owl-nav .owl-prev {
	margin-left: -75px;
}
.dt-header-categories .owl-controls .owl-nav .owl-next {
	margin-right: -75px;
}
.dt-header-categories .owl-nav>div:hover:after {
	color: #d70204;
}
.dt-header-categories .owl-nav>div:hover {
	background-color: #d70204;
}
.scroll-containerss {
	max-height: 320px !important;
	overflow: auto;
}
.large-margin .ps-scrollbar-x-rail {
	margin: 0 25%;
	opacity: 0.5;
	background-color: #eee;
}
.large-margin .ps-scrollbar-y-rail {
	margin: 100px 0;
	opacity: 0.5;
	background-color: #eee;
}

.titlehead{
	border-bottom:#e8e8e8 1px solid;
}

.titlehead .title-border{
	padding-bottom:9px;
	display:inline-block;
	border-bottom-width:1px;
	border-bottom-style:solid;
	margin-bottom:-1px;
	border-color:#1f79a4
}
.accent-color{color:#4cadc5;}

.accent-bg{ background-color: #4cadc5;}

.double-border{
	position:relative;
	width:100%;
	height:3px;
}
.double-border > div{
	position:absolute;
	width:50%;
	height:3px;
	left:0;
	top:0;
	display:block;
}
.double-border > div:last-child{
	right:0;
	left:auto;
}

.recent-carousal .owl-controls .owl-nav {
	height: 0;
	left: 0;
	margin-top: -14px;
	opacity: 1;
	padding: 0 10px;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.recent-carousal .owl-controls .owl-carousel:hover .owl-nav {
	opacity: 1;
}
.recent-carousal .owl-controls .owl-nav>div.owl-next:before {
	content: "";
}
.recent-carousal .owl-controls .owl-nav>div {
	border: 1px solid #cacaca;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0);
	float: left;
	height: 36px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 36px;
}
.recent-carousal .owl-controls .owl-nav>div:hover {
	border-color: #e2e2e2;
}
.recent-carousal .owl-controls .owl-nav>div.owl-next {
	float: right;
}
.recent-carousal .owl-controls .owl-nav>div:before {
	color: #cacaca;
	content: "";
	font-family: fontawesome;
	font-size: 16px;
	height: 100%;
	left: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.recent-carousal .owl-controls .owl-nav .owl-prev {
	margin-left: -75px;
}
.recent-carousal .owl-controls .owl-nav .owl-next {
	margin-right: -75px;
}
.recent-carousal .owl-nav>div:hover:after {
	color: #d70204;
}
.recent-carousal .owl-nav>div:hover {
	background-color: #d70204;
}


.section-shadow {
    box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.1), inset 0 2px 0px rgba(0, 0, 0, 0.07), inset 0 3px 0px rgba(0, 0, 0, 0.03);
}

.parabanner {
position: relative;
z-index: 1;
}
.overle{position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index:-1;
}

.parallaxBackground {
-webkit-transition: 0 ease-in-out;
-moz-transition: 0 ease-in-out;
-o-transition: 0 ease-in-out;
-webkit-transition-property: background-position;
-moz-transition-property: background-position;
-o-transition-property: background-position;
background-size: cover !important;
_-webkit-transform: translate3d(0,0,0);
}


.dt-header-categories-btm {
	text-align: center;
	line-height: 18px !important
}
.dt-header-categories-btm .dt-header-category-item {
	_display: inline-block;
	cursor: pointer;
	text-align: center;
	margin: 0 0px;
	margin-top: 20px;
	color: #fff;
	min-height: 110px;
}
.dt-header-categories-btm .dt-header-category-item a {
	color: #fff
}
.dt-header-categories-btm .dt-header-category-item:hover .dt-header-category-icon, .dt-header-categories-btm .dt-header-category-item:hover .dt-header-category-name {
	color: #ffe066;
}
.dt-header-categories-btm .dt-header-category-item img {
	height: 60px;
	margin: 0 auto 10px;
	display: block;
}
.dt-header-categories-btm .dt-header-category-item .dt-header-category-icon {
	display: block;
	font-size: 50px;
	margin-bottom: 4px;
}
.dt-header-categories-btm .dt-header-category-item .dt-header-category-icon:before {
	margin: 0;
}
.dt-header-categories-btm .dt-header-category-item .dt-header-category-name {
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Open Sans Condensed', sans-serif;
	-webkit-font-smoothing: initial;
	font-weight: 600;
	line-height: 18px !important
}

.dt-header-categories-btm .owl-controls .owl-nav {
	height: 0;
	left: 0;
	margin-top: -14px;
	opacity: 1;
	padding: 0 10px;
	position: absolute;
	top: 30%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.dt-header-categories-btm .owl-controls .owl-carousel:hover .owl-nav {
	opacity: 1;
}
.dt-header-categories-btm .owl-controls .owl-nav>div.owl-next:before {
	content: "";
}
.dt-header-categories-btm .owl-controls .owl-nav>div {
	border: 1px solid #cacaca;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0);
	float: left;
	height: 36px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 36px;
}
.dt-header-categories-btm .owl-controls .owl-nav>div:hover {
	border-color: #e2e2e2;
}
.dt-header-categories-btm .owl-controls .owl-nav>div.owl-next {
	float: right;
}
.dt-header-categories-btm .owl-controls .owl-nav>div:before {
	color: #cacaca;
	content: "";
	font-family: fontawesome;
	font-size: 16px;
	height: 100%;
	left: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 999;
	width: 100%;
}
.dt-header-categories-btm .owl-controls .owl-nav .owl-prev {
	margin-left: -75px;
}
.dt-header-categories-btm .owl-controls .owl-nav .owl-next {
	margin-right: -75px;
}
.dt-header-categories-btm .owl-nav>div:hover:after {
	color: #d70204;
}
.dt-header-categories-btm .owl-nav>div:hover {
	background-color: #d70204;
}

.site-bottom-footer{
	background-color:#fff;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding:20px 0;
	font-family: 'Roboto', sans-serif;
	font-size:12px;
}
.site-bottom-footer p{
	margin-bottom:0;
	color:#fff;
	font-size:14px;
	font-family:gothambook
}

.site-bottom-footer .footer-nav{
	float:right;
	margin:0;
	list-style-type:none;
	border-left: solid 1px #dddddd;
	padding: 13px 0 7px;
}

.site-bottom-footer .footer-nav li{
	display:inline-block;
	text-transform:none;
	margin-left:20px;
}
.site-bottom-footer .footer-nav li a{
font-weight: 600;
font-size: 14px;
color: #50514F;
line-height:40px;
font-family: 'Open Sans Condensed', sans-serif;
text-transform: uppercase;
}

.site-bottom-footer ul.social{ 
	
	float: right; 
	display: block; 
	margin-right: 20px; 
	padding: 18px 0 0px;
}
.site-bottom-footer ul.social li{
	display:inline-block;
	text-transform:uppercase;
	margin-left:5px;
}
.site-bottom-footer ul.social li a{ border-radius: 50%; width: 30px; height: 30px; display: block; border: solid 1px #e0e0e0; text-align: center; line-height: 30px; color: #808080; font-size: 14px;}
.site-bottom-footer ul.social li:hover a{ border-color: #ff3100; color: #ff3100; background:#e2e2e2}

.dt-footer-min-logo {
    display: inline-block;
    float: left;
    margin-right: 20px;
}
.dt-footer-copyright {
    color: #50514F;
    margin-top: 0;
    padding-top: 12px;
}
.dt-footer-copyright {
   font-family: 'gothambook';
    font-size: 13px;
    color: #454545;
    line-height: 19px;

}

.upcoming-events{
	margin:0 0 30px 0;
	list-style-type:none;
	padding:0
}

.upcoming-events > li, .staff_widget > ul > li{
	padding-top:12px;
	position:relative;
	display: block;
float: none !important;
	border-bottom: 1px solid #e2e2e2
}
.upcoming-events > li:last-child{border-bottom: 0px solid #e2e2e2}

.upcoming-events .event-title{
	margin-bottom:0;
	_font-family: 'Open Sans Condensed', sans-serif;
}
.event-title1{
	margin-bottom:0;
	font-family: 'Open Sans Condensed', sans-serif;
	margin-top: 10px
}
.upcoming-events p{margin: 0 0 10px 0;}
.upcoming-events .event-thumb, .staff_widget > ul > li .img-thumbnail{
	width:75px;
	height:75px;
	float:left;
	display:inline-block;
	-webkit-border-radius:100%;
	border-radius:100%;
}
.upcoming-events .event-excerpt, .staff_widget > ul > li .people-info{
	padding-left:85px;
	min-height:79px;
}
.upcoming-events .event-excerpt1{
	padding-left:85px;
	min-height:79px;
	padding-top: 10px;
	padding-bottom: 5px;
}
.upcoming-events .event-date{
	position:absolute;
	top:16px;
	left:4px;
	width:67px;
	height:67px;
	text-transform:uppercase;
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color:#ffffff;
	text-align:center;
	font-weight:700;
	opacity:0;
	-webkit-border-radius:100%;
	border-radius:100%;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}

.upcoming-events .event-date .day{
	font-size:24px;
	display:block;
	margin-top:12px;
}
.upcoming-events .event-date .monthyear{
	font-size:11px;
	display:block;
}
.upcoming-events li:hover .event-date{
	opacity:1;
	-webkit-transition: opacity .3s .2s;
	-moz-transition: opacity .3s .2s;
	-ms-transition: opacity .3s .2s;
	-o-transition: opacity .3s .2s;
	transition: opacity .3s .2s;
}

.upcoming-events .event-cats a{
	color:#999;
	text-transform:uppercase
}
.upcoming-events .event-location{
	font-size:12px;
	font-family: 'RobotoLight', sans-serif;
	color:#999;
}
.upcoming-events-footer{
	text-align:center;
}
.upcoming-events-footer a{
	display:block;
	font-size:11px;
	text-transform:uppercase;
	font-weight:700;
	letter-spacing:.1em;
	font-family: 'Roboto', sans-serif;
}
.upcoming-events .event-cats a:hover{
	color:#4cadc5;
}

.upcoming-events a{color: #777;
text-decoration: none;
}
.upcoming-events a:hover{
	color:#4cadc5;
}

.upcoming-events .event-date{
  background-color: #4cadc5;
}

.upcoming-events li:hover .event-details-btn{
	background-color:#9bc8ce;
}

.event-excerpt .category-icon img {
	width: 15px;
	text-align: center;
	margin: 5px auto;
	display: block;
}


.event-excerpt .featured-green {
	background: #00d185;
}
.event-excerpt .featured-gray {
	background: #687071;
}
.event-excerpt .featured-yellow {
	background: #ffa800;
}
.event-excerpt .featured-dark-green {
	background: rgba(0, 150, 136, 1);
}
.event-excerpt .featured-light-blue {
	background: rgba(16, 214, 196, 1);
}
.event-excerpt .featured-purple {
	background: rgba(99, 94, 144, 1.00);
}
.event-excerpt .featured-dark-purple {
	background: rgba(121, 35, 134, 1.00);
}
.event-excerpt .featured-apple-green {
	background: rgba(85, 201, 215, 1.00);
}
.event-excerpt .featured-pale-yellow {
	background: rgba(164, 147, 5, 1.00);
}

.event-excerpt .featured-green .category-icon {
	background: #00d185;
}

.event-excerpt .featured-gray .category-icon {
	background: #687071;
}
.event-excerpt .featured-yellow .category-icon {
	background: #ffa800;
}
.event-excerpt .featured-dark-green .category-icon {
	background: rgba(0, 150, 136, 1);
}
.event-excerpt .featured-light-blue .category-icon {
	background: rgba(16, 214, 196, 1);
}
.event-excerpt .featured-purple .category-icon {
	background: rgba(99, 94, 144, 1.00);
}
.event-excerpt .featured-apple-green .category-icon {
	background: rgba(85, 201, 215, 1.00);
}
.event-excerpt .featured-pale-yellow .category-icon {
	background: rgba(164, 147, 5, 1.00);
}
.event-excerpt .featured-dark-purple .category-icon {
	background: rgba(121, 35, 134, 1.00);
}


.event-excerpt .featured-green .category-icon, .event-excerpt .featured-gray .category-icon, .event-excerpt .featured-yellow .category-icon, .event-excerpt .featured-dark-green .category-icon, .event-excerpt .featured-light-blue .category-icon, .event-excerpt .featured-dark-green .category-icon, .event-excerpt .featured-light-blue .category-icon, .event-excerpt .featured-purple .category-icon, .event-excerpt .featured-apple-green .category-icon, .event-excerpt .featured-pale-yellow .category-icon, .event-excerpt .featured-dark-purple .category-icon {
	float: right;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	_background: #00d185;
	margin-right: 0px;
	position: absolute;
	right: 0;
	z-index: 99;
	top: 10px;
}


/* Color Scheme Specific Classes */

.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn:active,
.btn.active {
  background-image: none;
}
.btn-default {
  text-shadow: 0 1px 0 #fff;
  background-image: none;
  background-image: none;
  background-image: none;
  background-image: none;
  filter: none;
  filter: none;
  background-repeat: repeat-x;
  background-color:#fff;
  border-color: #e8e8e8;
  border-color: #e8e8e8;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #fafafa;
  border-color: #e8e8e8;
  background-position: 0 -15px;
}
.btn-default:active,
.btn-default.active {
  background-color: #fafafa;
  border-color: #e8e8e8;
}
.btn-default:disabled,
.btn-default[disabled] {
  background-color: #fafafa;
  background-image: none;
}
.btn-primary {
  border-color: #2b669a;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #2d6ca2;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #2d6ca2;
  border-color: #2b669a;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  background-color: #2d6ca2;
}
.btn-success {
  border-color: #3e8f3e;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #419641;
}
.btn-success:active,
.btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}
.btn-success:disabled,
.btn-success[disabled] {
  background-color: #419641;
}
.btn-info {
  border-color: #28a4c9;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #2aabd2;
}
.btn-info:active,
.btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}
.btn-info:disabled,
.btn-info[disabled] {
  background-color: #2aabd2;
}
.btn-warning {
  border-color: #e38d13;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #eb9316;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}
.btn-warning:disabled,
.btn-warning[disabled] {
  background-color: #eb9316;
}
.btn-danger {
  border-color: #b92c28;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #c12e2a;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}
.btn-danger:disabled,
.btn-danger[disabled] {
  background-color: #c12e2a;
}
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  -webkit-border-radius:20px;
  border-radius:20px;
  padding-left:20px;
  padding-right:20px;
  -webkit-transition:all 0.3s ease 0.2s;
  -moz-transition:all 0.3s ease 0.2s;
  -ms-transition:all 0.3s ease 0.2s;
  -o-transition:all 0.3s ease 0.2s;
  transition:all 0.3s ease 0.1s;
  text-shadow: none;
  border-width:0;
  text-decoration:none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: 'Roboto', sans-serif;
  text-transform:uppercase;
  letter-spacing:.07em;
  line-height: 1.66857143;
  font-weight:700;
  color:rgba(255,255,255,.9);
  position:relative;
  font-size:12px;
}
.btn-default{
	border-width:0;
	color:#333;
	border:1px solid #DDD;
}
.btn-sm,
.btn-group-sm > .btn{
  -webkit-border-radius:3px;
  border-radius:3px;
  font-size:11px;
  padding-left:8px;
  padding-right:8px;
}
.meta-data {
    color: #999;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}
label {
    font-family: 'Roboto', sans-serif !important;
}
.label {
    font-size: 10px !important;
    text-transform: uppercase;
    position: relative;
    top: -2px;
}

/* Inner Pages */
.page-header{
	min-height:300px;
	margin:0;
	background-color:#ccc;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	border:0;
	overflow: hidden;
}
.page-header .featured-green {
	background: #00d185;
}
.page-header .featured-gray {
	background: #687071;
}
.page-header .featured-yellow {
	background: #ffa800;
}
.page-header .featured-dark-green {
	background: rgba(0, 150, 136, 0.5);
}
.page-header .featured-light-blue {
	background: rgba(16, 214, 196, 0.5);
}
.page-header. featured-purple {
	background: rgba(99, 94, 144, 0.5);
}
.page-header .featured-dark-purple {
	background: rgba(121, 35, 134, 0.5);
}
.page-header .featured-apple-green {
	background: rgba(85, 201, 215, 0.5);
}
.page-header .featured-pale-yellow {
	background: rgba(164, 147, 5, 0.5);
}
.page-header h2{
	text-align:right;
	padding-top:155px;
	color:#ffffff;
}
.page-header .breadcrumb{
	padding:0;
	margin:0;
	padding-top:165px;
	background:none;
	font-family: 'Roboto', sans-serif;
	text-transform:uppercase;
	font-size:12px;
}
.secondary-bar{
	padding:20px 0;
	background:url(../images/wave-high.png) repeat-x #fafafa;
	border-bottom:#e8e8e8 1px solid;
}
.secondary-bar .flexslider .flex-prev, .secondary-bar .flexslider .flex-next{
	top:-44px;
}



.page-header .cover {
	margin:0;
	padding-top:200px;
	background:none;
	font-family: 'Roboto', sans-serif;
	padding-bottom:20px
}

.page-header .cover H1 {
    font-size: 40px;
    line-height: 52px;
    margin: 0;
    padding: 5px 120px 0 0;
	color:#fff;
	font-family: 'Roboto', sans-serif;
	font-weight:600
}

.page-header .cover H2 {
    font-size: 22px;
	line-height: 25px;
    font-weight: 500;    
    margin-bottom: 0;
    padding: 20px 0 30px;
	font-family: 'Josefin Sans', sans-serif;
	text-align:left
}
.page-header .cover img.logo {
    border: 7px solid #fff;
    border-radius: 2px;
    width: 100%;
    background-color: #fff;
	margin-top:15px
}
.page-header .cover img.logo, .page-header .cover img.logo, .speakers .cover img.photo {
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}

.page-header .social {
	list-style: none;
	margin: 0;
	padding: 0;
}
.page-header .social li {
	float: left;
	margin: 0 10px 0 0;
	padding: 0;
	display: block;
}
.page-header .social li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: none;
	border: solid 1px #fff;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
}
.actions.other {
    color: #fff;
    padding: 5px 0 10px;
}
.actions {
    background-repeat: repeat;
    color: #fff;
    font-family: robotolight;
    padding: 10px 0;
}
.actions.other a.btn {
    border: 1px solid #fff;
   font-family: 'Roboto', sans-serif;
text-transform: uppercase;
font-weight:700;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 2px;
}
.actions a.btn.register {
    background-image: url(../images/mask10.png);
}
.actions a.btn {
    color: #fff;
    padding: 0 3px;
    font-size: 15px;
    opacity: .8;
    font-family: Roboto;
	margin-right: 8px;
}
.actions.share {
    border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
    color: #fff;
    margin: 10px 20px 0 0;
    padding: 10px 0px 10px;
    text-align: left;
}
.actions a.btn:hover{color:#000;opacity:1}
.actions.share label {
    float: left;
    font-size: 14px;
    opacity: .8;
    text-align: left;
    width: 20%;
}

.page-header .thumb {
    bottom: -50px;
    opacity: .2;
    position: absolute;
    right: 50px;
    width: 40%;
}
svg:not(:root) {
    overflow: hidden;
}
p .navbar-text {
    border-right: 1px solid #eee;
    font-size: 13px;
    height: 30px;
    margin: 10px 0;
    min-width: 120px;
    padding: 4px 0 0;
}
.scrollable-menu{
	overflow: auto;

	width: 100%;
	min-height: 400px;
	
}
#filters {
    font-family: roboto;
}
#filters {
    border-bottom: solid 1px #e0dfdf;
    background: #fff;
    padding: 0;
    min-height: 30px;
}
#filters .nav li {
    _float: left;
    display: block;
    border-left: solid 1px #c8c8c8;
}
#filters .dropdown-menu li a, #filters.navbar-default .navbar-text {
    _font-family: robotoregular;
    font-size: 14px;
}
#filters.navbar-default .navbar-text {
margin-top: 15px;
margin-bottom: 10px;
border-right: 0px solid #eee;
    font-size: 13px;
    height: 30px;
    margin: 10px 15px;
    min-width: 120px;
    padding: 4px 0 0;
}
#filters .search {
    margin: 8px auto;
}
#filters .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    color: red;
    outline: 0;
    text-decoration: none;
    background-color: #fff;
}
.dropdown-menu > li > a i {
    margin-right: 10px;
}
.flag-icon {
    border-radius: 25px;
}
.navbar-default .navbar-nav > li > a > i {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}
#filters .navbar-form {
    padding: 0px;
    margin-top: 0px;
    margin-right: -15px;
    margin-bottom: 0px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
}

/*----------------------------------------*/
/* 6. about-section
/*----------------------------------------*/
.section-title {
    color: #555555;
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px;
    text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	_font-family:gothammedium;
	letter-spacing: 1px;
font-weight: 500;

}
.sub-title {
    color: #555555;
   font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
	margin-bottom:10px;
	font-weight:500
}

.sub-title i{margin-right:10px}

.descp > p {
    color: #888888;
    line-height: 25px;
    margin: 0 0 10px 0;
}
.descp > h4 {
    color: #888888;
    line-height: 25px;
    margin: 0 0 30px 0;
	font-size: 20px;
	font-family: 'Poppins';
	
}
.descp img.logo{
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.descp img.logo {
    border: 7px solid #fff;
    border-radius: 2px;
    width: 100%;
    background-color: #fff;
    margin-top: 5px;
}
ul.bullet {
    list-style-type:none;
    padding-left:0px;
	margin-left:10px;
	margin-bottom:20px;
	overflow: hidden

}

.bullet li {
    position:relative;
    padding-left:10px;
    margin-bottom:8px !important;
    line-height:20px;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	display:block;
	font-family:gothambook;
	width: 100%;
	
}

.bullet li:hover { padding-left:10px;}
.bullet li:before {
    position:absolute;
    top:0;
    left:0;
    font-family:FontAwesome;
    content:"\f0da"
}

ul.bullet ul {margin-let:15px !important; padding-left:20px; margin-bottom:0px;list-style:circle;}

ul.bullet1 {
    list-style-type:none;
    padding-left:0px;
	margin-left:10px;
	margin-bottom:20px
}

.bullet1 li {
    position:relative;
    padding-left:10px;
    margin-bottom:5px;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	display:block;

}
.bullet1 li a{	
border-bottom:1px solid #f2f2f2;
padding-bottom:10px;
display:block;
}
.bullet1 li a:hover{}
.bullet1 li a:hover:after{ 
position:absolute;
    top:0;
    right:0;
    font-family:FontAwesome;
    content:"\f0d9"}
.bullet1 li a.current:after{ 
position:absolute;
    top:0;
    right:0;
    font-family:FontAwesome;
    content:"\f0d9"}
	
.bullet1 li:hover { padding-left:15px;}
.bullet1 li:before {
    position:absolute;
    top:0;
    left:0;
    font-family:FontAwesome;
    content:"\f0da"
}

.about-step { margin-bottom: 20px }
.about-top { margin-bottom: 40px }
.total-step {
    border-left: 2px solid rgba(36, 123, 160, 0.6);
    padding-left: 25px;
}
.about-step:last-child { margin: 0 }

.about-btn { margin-top: 15px }
.about-right {
    border: 7px solid #e2e2e2;
    padding: 20px 20px;
}

/* Gutter Sizes - Large */
.row.gutter-lg { margin-right: -40px; margin-left: -40px;}
.row.gutter-lg > [class*="col-"] {padding-right: 40px; padding-left: 40px;}
/* Gutter Sizes - Medium */
.row.gutter-md { margin-right: -25px; margin-left: -25px;}
.row.gutter-md > [class*="col-"] {padding-right: 25px; padding-left: 25px;}
/* Gutter Sizes - Small */
.row.gutter-sm { margin-right: -10px; margin-left: -10px;}
.row.gutter-sm > [class*="col-"] {padding-right: 10px; padding-left: 10px;}
/* Gutter Sizes - Extra small */
.row.gutter-xs { margin-right: -5px; margin-left: -5px;}
.row.gutter-xs > [class*="col-"] {padding-right: 20px; padding-left: 20px;}
/* Gutter Sizes - zero gutter */
.row.gutter-0 { margin-right: 0; margin-left: 0;}
.row.gutter-0 > [class*="col-"] {padding-right: 0; padding-left: 0;}

.infinite-scroll {
	border: 1px solid #aaa;
	padding: 5px 10px;
	height: 200px;
	overflow-y: scroll;
	margin: 20px 0;
	background: #ffc;
}
.sponsored {
    margin-top: 20px;
}
#side .sponsored {
    padding-top: 20px;
    border-top: 1px dotted #aaa;
}
.next {
    text-align: center;
    margin: 10px 0;
}
.jscroll-loading {
    text-align: center;
    background: url(loading.gif) no-repeat center;
    padding: 5px 0;
    margin-bottom: 10px;
    font-style: italic;
    text-indent: -9999px;
}

.dt-orgniser{
	border-radius: 3px;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.10);
	-webkit-transition: box-shadow ease-in-out 0.2s;
	-moz-transition: box-shadow ease-in-out 0.2s;
	-o-transition: box-shadow ease-in-out 0.2s;
	transition: box-shadow ease-in-out 0.2s;
}
.dt-orgniser:hover{
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}
.dt-orgniser-image {
	_height: 160px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    display: block;
    border: 1px solid rgba(0,0,0,0.1);


}
.dt-orgniser .featured-top {
    padding: 30px 0;
    position: relative;
    text-align: center;
    border-radius: 0;
}

.dt-orgniser .featured-top img {
    max-width: 100px;
    margin: 0 auto;
}
.dt-orgniser-data {
    padding: 14px 20px;
    border-radius: 0 0 4px 4px;
    position: relative;
	border-top: 0px !important;
	border: 1px solid rgba(0,0,0,0.1);
	position: relative;
	text-align: center;
}

.dt-orgniser-data-title{
    font-family: 'Poppins';
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #888;
	max-width: 100%;
	margin-bottom: 10px;

}
.dt-orgniser-data h5{
    font-family: 'Poppins';
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #555;
	max-width: 100%;
	margin-bottom: 10px;

}
.dt-orgniser-data p{
    font-family: 'Poppins';
    font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #888;
	max-width: 100%;
	margin-bottom: 0px;

}
.dt-orgniser-meta {
    border-top: 1px solid #e6e9ea;
    padding-top: 12px;
    margin-top: 10px;
}
.dt-orgniser-meta .dt-orgniser-meta-category {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    float: left;
    position: relative;
    bottom: -5px;
    cursor: pointer;
	font-family: 'Poppins';
	font-weight: 400;
	color: #00a9e8
}
.dt-orgniser-meta .dt-orgniser-meta-category:before {
    font-family: 'FontAwesome';
    content: '\f08d';
    _border: 2px solid #555555;
    font-weight: normal;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 7px;
    position: relative;
    bottom: -1px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dt-orgniser-meta .dt-orgniser-meta-rating {
    float: right;
    display: block;
    height: 16px;
    margin-bottom: 11px;
}
.dt-orgniser-meta .dt-orgniser-meta-ratingopen {
    font-size: 14px;
    line-height: 15px;
    _font-weight: 600;
    float: left;
    position: relative;
    bottom: -5px;
    cursor: pointer;
	color: #00a9e8
}
.dt-orgniser-meta .dt-orgniser-meta-ratingopen:before {
    font-family: 'FontAwesome';
    content: '\f08e';
    _border: 2px solid #555555;
    font-weight: normal;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 7px;
    position: relative;
    _bottom: -2px;
}
.organisers .media-left {
    min-width: 60px;
    width: 60px;
}
.media-body, .media-left, .media-right {
    display: table-cell;
    vertical-align: top;
}
.media-left, .media > .pull-left {
    padding-right: 10px;
}
.organisers .media-left img.photo {
    min-width: 50px;
    width: 50px;
}
.section-title-org {
    color: #555555;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    _font-family: gothammedium;
    letter-spacing: 1px;
    font-weight: 500;
}
ul.org-lists{
	margin:0 0px 30px 0;
	list-style-type:none;
	padding:0
}

.org-lists > li{
	padding-top:10px;
	position:relative;
	display: block;
float: none !important;
	border-bottom: 1px solid #e2e2e2
}
.org-lists > li:first-child{
	padding-top:0px;
}
.org-lists .event-title{
	margin-bottom:0;
	font-family: 'Josefin Sans', sans-serif;
}
.org-lists .event-title a{
	margin-bottom:0;
	font-family: 'Josefin Sans', sans-serif;
	color: #337ab7;
	font-weight: 500
}
.org-lists p{margin: 0 0 10px 0;}

.dt-speakers{
	border-radius: 3px;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.10);
	-webkit-transition: box-shadow ease-in-out 0.2s;
	-moz-transition: box-shadow ease-in-out 0.2s;
	-o-transition: box-shadow ease-in-out 0.2s;
	transition: box-shadow ease-in-out 0.2s;
}
.dt-speakers:hover{
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}
.dt-speakers-image {
	_height: 160px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    display: block;
    border: 0px solid rgba(0,0,0,0.1);


}
.dt-speakers .featured-top {
    padding: 10px 10px;
    position: relative;
    text-align: center;
    border-radius: 0;
}

.dt-speakers .featured-top img {
    max-width: 70px;
    margin: 0 auto;
}
.dt-speakers-data {
    padding: 10px;
    position: relative;
	border-left: 1px solid rgba(0,0,0,0.1);
	position: relative;
	
}
.dt-speakers-data p.meta-data {
    color: #999;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
	margin-bottom: 0
}

.dt-speakers-data-title{
    font-family: 'Poppins';
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #888;
	max-width: 100%;
	margin-bottom: 10px;

}
.dt-speakers-meta {
    border-top: 1px solid #e6e9ea;
    padding-top: 8px;
    margin-top: 10px;
}
.dt-speakers-meta .dt-speakers-meta-category {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    float: left;
    position: relative;
    bottom: -5px;
    cursor: pointer;
	font-family: 'Poppins';
	font-weight: 400;
	color: #00a9e8
}
.dt-speakers-meta .dt-speakers-meta-category:before {
    font-family: 'FontAwesome';
    content: '\f08d';
    _border: 2px solid #555555;
    font-weight: normal;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 7px;
    position: relative;
    bottom: -1px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dt-speakers-meta .dt-speakers-meta-rating {
    float: right;
    display: block;
    height: 16px;
    margin-bottom: 11px;
}
.dt-speakers-meta .dt-speakers-meta-ratingopen {
    font-size: 14px;
    line-height: 15px;
    _font-weight: 600;
    float: left;
    position: relative;
    bottom: -5px;
    cursor: pointer;
	color: #00a9e8
}
.dt-speakers-meta .dt-speakers-meta-ratingopen:before {
    font-family: 'FontAwesome';
    content: '\f08e';
    _border: 2px solid #555555;
    font-weight: normal;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 7px;
    position: relative;
    _bottom: -2px;
}

.profile-wrap{}
.profile-wrap .sidebar,.profile-wrap .dashboard{}
.profile-wrap .sidebar h2, .profile-wrap .dashboard h2{font-size: 18px; display: block; margin-bottom: 15px;border-bottom: solid 1px rgba(228,223,223,1.00); text-transform: none !important}
.profile-wrap .sidebar .sidebar-lists {margin: 20px 0 25px 0;}
.profile-wrap .sidebar .sidebar-lists ul{list-style: none; margin: 0 0 25px 0; padding: 0; }
.profile-wrap .sidebar .sidebar-lists ul li{display: block; float: none; width: 100%; margin-left: 0px;transition: all 0.4s ease;margin-bottom: 5px}
.profile-wrap .sidebar .sidebar-lists ul li a{ color:rgba(0,0,0,0.7); display: inline-block; padding: 5px 10px; border-radius: 4px; font-size: 14px; font-family: gothambook}
.profile-wrap .sidebar .sidebar-lists ul li a i{margin-right: 5px; display: inline-block;}
.profile-wrap .sidebar .sidebar-lists ul li a span{font-size: 12px;}
.profile-wrap .sidebar .sidebar-lists ul li:hover, .profile-wrap .sidebar .sidebar-lists ul li.active{ margin-left: 0;}
.profile-wrap .sidebar .sidebar-lists ul li:hover a, .profile-wrap .sidebar .sidebar-lists ul li.active a{ background: #ff3100; color: #fff;}
.profile-wrap .dashboard h1, h2, h3, h4, h5, h6 {
    margin: 0 0 18px 0;
    color: #333333;
    font-weight: 400 !important;
    line-height: 1.5em;
    font-family: 'gothammedium', sans-serif;
}
.profile-wrap .dashboard p{font-family: 'gothambook'; margin-bottom: 15px; font-size: 16px}
.profile-wrap .dashboard .dashboard-content{ background: #fff; margin-top: 20px; padding: 20px;}
.profile-wrap .dashboard .dashboard-content .user-img{ margin: 0 auto; text-align: center; width: 100px;}
.profile-wrap .dashboard .dashboard-content .user-img img{ width: 100px; height: 100px; overflow: hidden; object-fit: cover; border-radius: 50%;}
.dashboard-content .user-title{ margin-top:5px;}
.dashboard-content .user-title h4, .dashboard-content .user-title h5{ font-weight: 300; margin-bottom: 10px; letter-spacing: 2px;}
.dashboard-in{padding: 30px 0; margin-top: 30px; border-top: solid 1px rgba(228,223,223,1.00);}
.dashboard-in label{text-align: right; display: block; font-weight: 400; margin:6px 0 0 0;}
#kvFileinputModal{top: 60px; z-index: 1060;}
#kvFileinputModal.file-zoom-fullscreen.modal{top: 100px;}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn-group:not(:last-child)>.btn, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){outline: none !important;}
.file-caption-main .btn-file{background:rgba(78,78,78,1.00) !important ; border-color: rgba(78,78,78,1.00) !important;}
.dashboard-content input, .dashboard-content textarea{ height: 35px; background: #fff; border-radius: 4px; border-color: #ccc; padding-left: 10px; padding-top: 5px; padding-bottom: 5px; padding-right: 10px; color: rgba(86,86,86,1.00)}
.dashboard-content textarea{height: auto; resize: none;}
.dashboard-content textarea:focus{background: #fff; border-color: #ccc;}

.dashboard-content .bootstrap-select > .btn{ height: 35px;}
.dashboard-content .bootstrap-select.btn-group .dropdown-menu li{ float: none;}
.dashboard-content .bootstrap-select.btn-group .dropdown-menu{border-color:#ccc ;}
.dashboard-in .dashboard-cta-btn{border-top: solid 1px rgba(228,223,223,1.00); padding-top: 30px; margin-top: 20px;}
.dashboard-in .dashboard-cta-btn .btn-danger, .dashboard-in .btn-danger{ background: #ff3100; border-color:#ff3100;}
.dashboard-in .dashboard-cta-btn .btn-default{ float: right;}
.dashboard-content .user-title .boost-page{ display: block; margin-top: 15px;}
.dashboard-content .user-title .boost-page .btn, .dashboard .btn-cta{background: #ff3100; outline: none !important; color: #fff; border-radius: 4px;}
.dashboard-content .tooltip-info{ position: relative;}
.dashboard-content .tooltip-info .tooltip-in{ position: absolute; top: 6px; left: 0;}
.dashboard-content .bordered-div{border-top:solid 1px rgba(228,223,223,1.00); padding-top: 20px; margin-top: 15px; padding-bottom: 15px;}
.dashboard-content .dashboard-cta-btn-in{border: none; margin:0; padding:20px 0;}
.dashboard .btn-cta{ float: right; position: relative; top: -60px;}
.profile-wrap .dashboard .dashboard-team{background: none; padding: 0;}
.dashboard-team .team-board{background: #fff; padding: 20px; box-shadow: 0 3px 3px rgba(0,0,0,.1); border-radius: 1px;}
.dashboard-team .team-board h2,.dashboard-team .team-board h3,.dashboard-team .team-board h4,.dashboard-team .team-board h5,.dashboard-team .team-board p{font-weight: 400 !important; margin-bottom: 10px;}
.dashboard-team .team-board .btn-default{font-size: 13px; padding: 5px 10px;}
.dashboard-team .team-board .btn-default:hover{border-color: #ff3100; background: #ff3100; color: #fff;}
.dashboard-team .team-board .team-img, .profile-img{max-width: 160px; margin: 0 auto; overflow: hidden; object-fit: cover; border-radius: 50%; max-height: 160px;}

.dashboard #mymodal .modal-content{z-index: 22222 !important;}
.dashboard .modal-add-team{ margin: 30px auto !important; width: 700px;}
.dashboard .modal-add-team .modal-header{background:#ff3100; border-radius: 4px 4px 0 0; color: #fff;}
.dashboard .modal-add-team .modal-header h4{ color: #fff;}
.dashboard .modal-add-team input{height: 35px; padding: 5px 10px;}
.dashboard .modal-add-team label{text-align: right; display: block; margin-top: 5px;}
.dashboard .modal-add-team .btn-action{background: #ff3100; color: #fff; outline: none !important;}
.dashboard .modal-add-team .btn-action:hover, .dashboard .modal-add-team .btn-action:focus{outline: none !important;}
.pagination-wrap{margin:20px 0 15px 0; display: block;}
.pagination-wrap:before,.pagination-wrap:after{content: ''; display: table;}
.pagination-wrap .pagination>li>a, .pagination-wrap .pagination>li>span{color: #222;}
.team-board .table-in thead>tr>td{font-weight: 600;}
.team-board .table-in tbody>tr>td>.green{padding: 5px 10px; border-radius: 4px; color: #fff; font-size: 12px; background: rgba(26,76,0,1.00);}
.team-board .table-in tbody>tr>td>ul>li{ margin-right: 5px;}
.team-board .table-in tbody>tr>td>ul>li>a{ padding: 5px; border-radius: 4px; background: rgba(151,151,151,1.00); color: #fff; text-align: center;}

.no-border{border: none; margin-top: 0; padding-top: 20px;}
.img-list>li{width: 50px; float: left; display: block; margin-right: 10px; border-radius: 4px;}
.bootstrap-datetimepicker-widget .table{width: 100% !important;}
.dashboard-in label.text-left{text-align: left; display: inline-block;}
.dashboard-in .width-sm{max-width: 300px;}
.dashboard-in .btn-danger{display: block; float: right; outline: none !important;}
.dashboard-in .dropdown-menu>.active>a, .dashboard-in .dropdown-menu>.active>a:focus, .dashboard-in .dropdown-menu>.active>a:hover{background: #ff3100;}
.dashboard-in .bs-searchbox input.form-control{height: 30px;}

.navbar-text1 {
    margin-top: 5px;
margin-bottom: 10px;
border-right: 1px solid #e2e2e2;
font-size: 12px;
line-height: 16px;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.infohead{text-align: center;
background: #004080;
color: #fff;
font-size: 16px;
padding: 5px 0;
text-transform: uppercase}

/** Action Box **/
.action_box {padding:24px 0; color:#fff; border-top:0px solid #fff; border-bottom:0px solid #fff; position:relative; background-color:#0092c8; clear: both; }
.action_box .action_box_content { max-width: 1170px; margin: 0 auto; padding:0 15px; width: 100%; }
.action_box h4.text {margin: 0px 0 10px 0; font-weight: 200; font-size: 24px; line-height: 1.4; color: #fff}
.action_box .ac-subtitle { color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin-bottom: 0 !important }
.action_box:after,
.action_box:before {content:""; position:absolute; left:50%; bottom:-14px; margin-left: -25%; border-radius:3px; border: 8px solid transparent; 
	border-top-width: 7px; border-top-color:#0092c8;z-index: 9;}
.action_box[data-arrowpos=center]:after,
.action_box[data-arrowpos=center]:before {margin-left: -7px; }
.action_box[data-arrowpos=right]:after,
.action_box[data-arrowpos=right]:before {margin-left: 25%; }
/* Style 2 */
.action_box.style2 .action_box_content { display: block; }
.action_box.style2 .ac-content-text, .action_box.style2 .ac-buttons { display: block; text-align: center; padding-left: 0; }
.action_box.style2 .ac-content-text { margin-bottom: 25px; }
.action_box.style2 .ac-btn, .action_box.style2 .ac-btn:last-child { display: inline-block; margin: 0 5px; }
/* Action Box style 3 */
.style3 .action_box_inner {background-color: #ec008c; position: relative; padding: 35px; border-radius: 6px; z-index: 1;}
.style3 .action_box_inner:before {position: absolute; content: ''; background-color: #ec008c; top: -6px; left: 0; width: 100%; height: 100%; 
	display: block; -webkit-transform: skewY(1.5deg); -ms-transform: skewY(1.5deg); transform: skewY(1.5deg); border-radius: 6px; 
	transform-origin: right top;}
.style3 .action_box_inner:after {position: absolute; content: ''; background-color: rgba(0, 174, 239, 0.4); width: 90%; height: 30%; display: block; 
	border-radius: 4px; -webkit-transform: skewY(-2deg); -ms-transform: skewY(-2deg); transform: skewY(-2deg); right: 5%; top: -20px; z-index: -1; }
.action_box.style3 {padding:0;border-radius: 6px;}
.action_box.style3 .action_box_content{position:relative;}
.action_box.style3:before {position: absolute; content: ''; background-color: #ec008c; width: 30px; height: 32px; display: block; bottom: -6px; 
	left: 20%; border-radius: 4px; -webkit-transform: skewY(35deg); -ms-transform: skewY(35deg); transform: skewY(35deg); }
.action_box.style3:after {display:none}

@media (min-width: 320px) {
	.action_box .ac-btn { margin: 0 5px; } 
}
@media (min-width: 1200px) {
	.action_box .action_box_content { display: table; }
	.action_box .ac-content-text { display: table-cell; }
	.action_box .row.flex {display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex;}
	.action_box .ac-buttons { text-align: right; display: table-cell; vertical-align: middle; padding-left: 30px;}
	.action_box .ac-btn { margin: 0; display: inline; }
	.action_box .ac-btn:last-child { margin-left: 15px; } 
}
@media (max-width: 1200px) {
	.action_box { text-align: center; }
	.action_box .ac-content-text { margin-bottom: 25px; }  
}
.btn-lined {
    border-width: 1px;
    background: none;
    color: #fff;
    text-shadow: none;
    padding: 7px 20px;
    line-height: 1.6;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    border-style: solid;
    border-radius: 3px;
    border-color: #fff;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
	font-family: gothammedium
}
.btn-lined-black {
    border-width: 1px;
    background: none;
    color: #454545;
    text-shadow: none;
    padding: 7px 20px;
    line-height: 1.6;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    border-style: solid;
    border-radius: 3px;
    border-color: #454545;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
	font-family: gothammedium
}
.btn-fullwhite {
    background-color: #fff;
    color: #242424;
}
.btn-fullwhite, .btn-fullblack, .btn-fullcolor{
    text-shadow: none;
    padding: 10px 20px;
    line-height: 1.6;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
    border-style: solid;
    border-radius: 3px;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
}
.btn-fullwhite, .btn-fullblack, .btn-fullcolor {
    border-width: 0;
}

.fancy-file-upload {
	position:relative;
	height:40px;
	overflow:hidden;
	display:block;
	margin-bottom:3px;
}
.fancy-file-upload>span.button {
	color:#fff;
	background-color:#333;
	position: absolute;
	top: 4px;
	right: 4px;
	top:4px;
	bottom:4px;
	line-height: 10px;
	font-size: 13px;
	padding: 5px 5px 15px 5px;
	z-index: 10;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
			border-radius: 3px;
}
	.fancy-file-upload.fancy-file-primary>span.button {
		background-color:#333;
	}
	.fancy-file-upload.fancy-file-success>span.button {
		background-color:#4cae4c;
	}
	.fancy-file-upload.fancy-file-danger>span.button {
		background-color:#d43f3a;
	}
	.fancy-file-upload.fancy-file-warning>span.button {
		background-color:#eea236;
	}
	.fancy-file-upload.fancy-file-info>span.button {
		background-color:#46b8da;
	}
	.fancy-file-upload.fancy-file-default>span.button {
		color:#666;
		background-color:rgba(0,0,0,0.1);
	}

.fancy-file-upload>input[type=text] {
	background-color:transparent;
	padding-left: 10px;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
			border-radius: 3px;
}
.fancy-file-upload>input[type=file] {
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding: 8px 10px;
	position: absolute;
	-moz-opacity: 0;
	opacity: 0;
	z-index: 11;
	bottom: 0;
	right: 5;

    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
			border-radius: 3px;
}
.fancy-file-upload>i {
	position:absolute;
	top: -1px;
	width: 42px;
	height: 42px;
	color: inherit;
	line-height: 42px;
	position: absolute;
	text-align: center;

    color:#888;

	z-index: 10;
}


#contents_wrap {text-align:left}
#contents_wrap h4{padding-left:20px;}
#contents_wrap h4.red_title{background:url("../img/sub/red_dote.png") no-repeat left 8px;}
#contents_wrap h4.green_title{background:url("../img/sub/green_dote.png") no-repeat left 8px;}
#contents_wrap h4.blue_title{background:url("../img/sub/blue_dote.png") no-repeat left 8px;}
#contents_wrap h4.pink_title{background:url("../img/sub/pink_dote.png") no-repeat left 8px;}
#contents_wrap h4.yellow_title{background:url("../images/yellow_dote.png") no-repeat left 8px;}
#contents_wrap .board_red_table{border-top:2px solid #990000;}
#contents_wrap .board_blue_table{border-top:2px solid #0581b8;}
#contents_wrap .board_green_table td{text-align:center;}
#contents_wrap .board_green_table{border-top:2px solid #5f8011;}
#contents_wrap .board_yellow_table{border-top:2px solid #fd7700;}
#contents_wrap .board_yellow_table td{text-align:center;}
#contents_wrap .tb_left td{text-align:left;}
#contents_wrap .board_table th{padding:10px 15px;border:1px solid #e3e3e3;background:#f5f5f5;text-align:left;border-right:none;}
#contents_wrap .board_table th:first-child{border-left:none;}
#contents_wrap .board_table td{padding:10px 15px;border:1px solid #e3e3e3;border-right:none;}
#contents_wrap #abstractTable td{padding:10px 15px ;border-right:none; !important}
#contents_wrap .board_table td p{line-height:20px;}
#contents_wrap .title_th th{text-align:center;}
#contents_wrap .abstractsBox{border: 1px solid #777; padding: 5px 10px; margin-top: 20px;}
#contents_wrap .abstractsBoxOnline {margin-top: 20px;}
#contents_wrap .imagine_korea{position:relative;min-height:214px;margin-bottom:30px;margin-top:20px;}
#contents_wrap .imagine_korea dt{position:absolute;left:0px;top:0px;border:1px solid #dedede;margin:auto;text-align:center;}
#contents_wrap .imagine_korea dt img{width:200px;text-align:center;margin:15px auto;padding:20px 60px;}
#contents_wrap .imagine_korea dd{padding-left:365px;padding-top:5px;text-align:justify;/*text-align:justify;word-break:keep-all;*/}


.mt_5 {
    margin-top: 5px !important;
}
.mt_50 {
    margin-top: 50px !important;
}
.f11, .f_11 {
    font-size: 11px !important;
text-align:left
}
.f22, .f_22 {
    font-size: 22px !important;

}
ul.dote_list{list-style: none;margin: 0;padding: 0;}
.dote_list > li{background:url("../images/red_dote1.png") no-repeat 8px 7px;padding-left:20px;margin:5px 0px;list-style: none;line-height: 18px;}
.dote_list > li > ul{padding:0px 5px;margin:10px 0px;}
.dote_list > li > ul > li{line-height:20px;margin-top:5px;color:#666;}
.dote_list > li > ul > li:first-child{}
.yell_dote_list > li, .yell_dote_list > dt{background:url("../images/yellow_dote1.png") no-repeat 8px 7px;}

.contact-infos {
    _background: #ffffff none repeat scroll 0 0;
    float: left;
    padding: 0px;
    width: 100%;
}
.contact-infos > span {
    float: left;
    width: 100%;
}
.contact-infos > span img {
    float: left;
    width: 100%;
}
.contact-infos > ul {
    float: left;
    list-style: outside none none;
    margin: 0px 0 0;
    padding: 0;
    width: 100%;
}
.contact-infos > ul > li:last-child {
    margin: 0;
}

.contact-infos > ul > li {
    float: left;
    margin-bottom: 11px;
    padding-left: 185px;
    position: relative;
    width: 100%;
}
.contact-infos > ul > li > span i {
    margin-right: 3px;
}
.contact-infos > ul > li p {
    font-size: 13px;
    margin-top: -4px;
}
.contact-infos > ul > li > span {
    color: #333333;
    font-family: gothammedium;
    font-size: 12px;
    font-weight: normal;
    left: 0;
    letter-spacing: 0px;
    position: absolute;
    top: 0;
	text-transform:uppercase
}
.form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: left;
}


.dt-header-categories-foot {
	position: relative;
	bottom: 0;
	width: 100%;
	height: 140px;
	background: rgba(255, 255, 255, 1);
	text-align: center;
	overflow: hidden;
	z-index: 99;
	line-height: 18px !important
}
.dt-header-categories-foot .dt-header-category-item1 {
	_display: inline-block;
	cursor: pointer;
	text-align: center;
	margin: 0 0px;
	margin-top: 20px;
	color: #454545;
}
.dt-header-categories-foot .dt-header-category-item1 a {
	color: #454545
}

.dt-header-categories-foot .dt-header-category-item1 img {
	_height: 40px;
	margin: 0 auto;
	max-width: 100%;
	width: 75%

}
.dt-header-category-item1 .dt-header-category-icon1 {
	display: block;
	font-size: 50px;
	margin-bottom: 4px;
}
.dt-header-category-item1 .dt-header-category-icon1:before {
	margin: 0;
}
.dt-header-category-item1 .dt-header-category-name1 {
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Open Sans Condensed', sans-serif;
	-webkit-font-smoothing: initial;
	font-weight: 600;
	line-height: 18px !important;
	margin-bottom: 20px;
display: block;
}

.dt-header-categories-foot .owl-controls .owl-nav {
	height: 0;
	left: 0;
	margin-top: -14px;
	opacity: 1;
	padding: 0 10px;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100%;
}
.dt-header-categories-foot .owl-controls .owl-carousel:hover .owl-nav {
	opacity: 1;
}
.dt-header-categories-foot .owl-controls .owl-nav>div.owl-next:before {
	content: "\f054";
}
.dt-header-categories-foot .owl-controls .owl-nav>div {
	border: 1px solid #cacaca;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0);
	float: left;
	height: 36px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 36px;
}
.dt-header-categories-foot .owl-controls .owl-nav>div:hover {
	border-color: #e2e2e2;
}
.dt-header-categories-foot .owl-controls .owl-nav>div.owl-next {
	float: right;
}
.dt-header-categories-foot .owl-controls .owl-nav>div:before {
	color: #cacaca;
	content: "\f053";
	font-family: fontawesome;
	font-size: 16px;
	height: 100%;
	left: 0;
	line-height: 34px;
	position: absolute;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 999;
	width: 100%;
}
.dt-header-categories-foot .owl-controls .owl-nav .owl-prev {
	margin-left: -75px;
}
.dt-header-categories-foot .owl-controls .owl-nav .owl-next {
	margin-right: -75px;
}
.dt-header-categories-foot .owl-nav>div:hover:after {
	color: #d70204;
}
.dt-header-categories-foot .owl-nav>div:hover {
	background-color: #d70204;
}

/* ================================================
   Countdown Timer
   ================================================ */

.countdown_wrap {
    _margin-top: 40px;
	margin-top: 0px;
}

.countdown_wrap p {
    font-size: 22px;
    margin-bottom: 0;
}

#countdown,
#countdown li {
    list-style: none;
}

#countdown {
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
}

#countdown li {
    display: inline-block;
    width: 104px;
    text-align: center;
    background: #FFF;
    padding: 15px 5px;
    margin-right: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

#countdown li span {
    font-size: 40px;
    font-weight: bold;
    color: #3b3b3b;
    height: 108px;
    line-height: 1.0;
    position: relative;
    font-family: 'Montserrat', Arial, sans-serif;
}

#countdown li p {
    margin-top: 5px;
    color: #8a8a8a;
    text-transform: uppercase;
    font-size: .875em;
}

.countdown_title {
    margin: 20px 0;
}

/* 6.4 Client carousel 1*/
.ow-client-logo {
	background-color:#fff;
	display:table;
	width:100%;
}
.client-logo {
	display:table-cell;
	text-align:center;
	vertical-align:middle;
	padding:10px;
}
.owl-carousel .ow-client-logo img {
	max-height:100%;
	width:auto;
	display:inline-block;
}

.client-logo-media img{
	max-width:100% !important;
	margin:0px auto !important;
	width:auto !important;
	}


/*-------------------------------------
	2. Title separators 
-------------------------------------*/
.wt-separator-outer {
	overflow:hidden;
}
/*Separator defualt*/
.wt-separator {
	display:inline-block;
	height:3px;
	width:50px;
	position:relative;
}
.wt-separator .separator-left,
.wt-separator .separator-right {
	position:absolute;
	top:50%;
	width:70px;
	height:2px;
	margin-top:-1px;
}
.wt-separator .separator-left{
	left:-80px;
}
.wt-separator .separator-right{
	right:-80px;
}
/*Separator liner*/
.wt-separator.style-liner {
	width:20px;
	height:4px;
}
/*Separator square*/
.wt-separator.style-square {
	width:10px;
	height:10px;
	background-color:transparent;
	border-width:3px;
	border-style:solid;
	border-color:#2d3239;
}
.wt-separator.style-square .separator-left,
.wt-separator.style-square .separator-right {
	height:3px;
}
.wt-separator.style-square.has-bg {
	border-color:#fff;
}

/*Separator icon*/
.wt-separator.style-icon {
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	font-size:18px;
}




/*-------------------------------------
	3. Deviders 
-------------------------------------*/
.wt-divider{
	height:1px;
	position:relative;
	margin:30px 0;
}
.wt-divider.divider-2px {
	height:2px;
}
.wt-divider.divider-3px {
	height:3px;
}
.wt-divider.divider-4px {
	height:4px;
}
.wt-divider i{
	position:absolute;
	width:30px;
	height:30px;
	text-align:center;
	line-height:30px;
	display:block;
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.wt-divider.icon-left {
	margin-left:40px;
}
.wt-divider.icon-left i{
	left:-40px;
}
.wt-divider.icon-right {
	margin-right:40px;
}
.wt-divider.icon-right i{
	left:auto;
	right:-40px;
}
.wt-divider.icon-center i{
	left:50%;
	margin-left:-5px;
}
.section-head {
    margin-bottom: 50px;
}
.bg-red {
    background-color: #FF4045;
}