


/* ==================================================
   Basic Styles
================================================== */

html, body {
	height: 100%;
}

html, hmtl a{
	width:100%;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;

}

body{
	color:#000;
	font-weight:300;
	font-size:16px;
	font-family: 'Open Sans', sans-serif;
	line-height:28px;
}

a{
	color:#ca0030;
	text-decoration: none;
	cursor: pointer;

	-webkit-transition: color 0.1s linear 0s;
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	color:#4C4F55;
	text-decoration:none;
}

a img {
	border: none;
}

a > img {
	vertical-align: bottom;
}

img {
	max-width: none;
}

strong {
  	font-weight: 700;
}

p {
	margin: 0 0 30px;
}

hr {
	border-style: dashed;
	border-color: #F1F1F1;
	border-bottom: none;
	border-left: none;
	border-right: none;
	margin: 50px 0;
}

ul {
	list-style: circle;
}

li {
	line-height: 30px;
}

.align-left{
	float:left;
	margin:0 25px 0 0px!important;
}

.align-right{
	float:right;
	margin:0 0 0 25px!important;
}

.text-align-left {
	text-align: left;
}

.text-align-center {
	text-align: center;
}

.text-align-right {
	text-align: right;
}

.color-text {
    color: #ca0030;
}

.through{
	text-decoration:line-through;
}

input, button, select, textarea {
	font-weight: 300;
	font-family: 'Open Sans', sans-serif;
	outline: 0;
}

input:focus,
textarea:focus,
input[type="text"]:focus {
	outline: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #fff;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #fff;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #fff;
}

/* ==================================================
   Code and Pre
================================================== */

code,
pre {
  	padding: 0 3px 2px;
  	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
  	color: #232527;
  	font-size: 12px;
  	font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

code {
  	padding: 2px 4px;
  	border: 1px solid #dde4e9;
  	background-color: #F6F6F6;
  	color: #232527;
  	white-space: nowrap;
}

pre {
  	display: block;
  	margin: 70px 50px;
  	padding: 30px;
  	border: 1px solid #dde4e9;
  	-webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
  	background-color: #FCFCFC;
  	white-space: pre;
  	white-space: pre-wrap;
  	word-wrap: break-word;
  	word-break: break-all;
  	font-size: 12px;
  	line-height: 20px;
}

pre code {
  	padding: 0;
  	border: 0;
  	background-color: transparent;
  	color: inherit;
  	white-space: pre;
  	white-space: pre-wrap;
}

.pre-scrollable {
  	overflow-y: scroll;
  	max-height: 340px;
}

/* ==================================================
   Typography
================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
	margin:0 0 20px 0;
	color:#000;
	font-weight:400;
	font-family: 'Open Sans', sans-serif;
	line-height:1.5em;
}

h1{
	font-size:48px;
}

h2{
	font-size:36px;
}

h3{
	font-size:24px;
}

h4{
	font-size:20px;
}

h5{
	font-size:18px;
}

h6{
	font-size:16px;
}

h3.spec {
	color: #000;
    font-size: 24px;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 30px;
	padding-top: 0.4em;
    text-transform: uppercase;
}

#about-us h3 {
	max-width:900px;
	margin:0 auto;
	text-align:center;
	font-size:21px;

}

#about-us h3 span {
	display:block;
	color: #ca0030;
	text-transform:uppercase;
}

#about-us .title-page .title {
	font-weight:600;
}

.services-box p {
	font-style:italic;
	line-height:normal;
	padding-top: 10px;
}

.services-box h3 {
	font-weight:600;
}

@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotating {
    from{
        -moz-transform: rotate(0deg);
    }
    to{
        -moz-transform: rotate(360deg);
    }
}

.icon-container {
		width: 180px;
    height: 180px;
    background: url(../images/circle-bg.png);
	position:relative;
	margin-bottom:15px;
}

.rotating {
    -webkit-animation: rotating 1000ms linear;
    -moz-animation: rotating 1000ms linear;

}

.icon {
	-webkit-transform: scale(0,0); /* Safari and Chrome */
	-moz-transform: scale(0,0); /* firefox */

}
.scaled {
-webkit-animation: scale 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000) forwards;
   -moz-animation: scale 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000) forwards;
    -ms-animation: scale 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000) forwards;
     -o-animation: scale 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000) forwards;
        animation: scale 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000) forwards;

	-moz-animation-delay: 500ms;
	-webkit-animation-delay: 500ms;
	-ms-animation-delay: 500ms;
	-o-animation-delay: 500ms;
	animation-delay: 500ms;
}
#honest .icon-container {
	-moz-animation-delay: 550ms;
	-webkit-animation-delay: 550ms;
	-ms-animation-delay: 550ms;
	-o-animation-delay: 550ms;
	animation-delay: 550ms;

}
#honest .scaled {
	-moz-animation-delay: 1100ms;
	-webkit-animation-delay: 1100ms;
	-ms-animation-delay: 1100ms;
	-o-animation-delay: 1100ms;
	animation-delay: 1100ms;
}

#open-minded .icon-container {
	-moz-animation-delay: 1150ms;
	-webkit-animation-delay: 1150ms;
	-ms-animation-delay: 1150ms;
	-o-animation-delay: 1150ms;
	animation-delay: 1150ms;

}
#open-minded .scaled {
		-moz-animation-delay: 1700ms;
	-webkit-animation-delay: 1700ms;
	-ms-animation-delay: 1700ms;
	-o-animation-delay: 1700ms;
	animation-delay: 1700ms;
}



@-webkit-keyframes scale {
    from{
-webkit-transform: scale(0,0); /* Safari and Chrome */
    }
    to{
-webkit-transform: scale(1,1); /* Safari and Chrome */
    }
}

@-moz-keyframes scale {
    from{
-moz-transform: scale(0,0); /* Safari and Chrome */
    }
    to{
-moz-transform: scale(1,1); /* Safari and Chrome */
    }
}
/* ==================================================
   Margin Bottom Sets
================================================== */

.margin-0{
	margin-bottom:0 !important;
}

.margin-10{
	margin-bottom:10px !important;
}

.margin-15{
	margin-bottom:15px !important;
}

.margin-20{
	margin-bottom:20px !important;
}

.margin-30{
	margin-bottom:30px !important;
}

.margin-40{
	margin-bottom:40px !important;
}

.margin-50{
	margin-bottom:50px !important;
}

.margin-60{
	margin-bottom:60px !important;
}

.margin-70{
	margin-bottom:70px !important;
}

.margin-80{
	margin-bottom:80px !important;
}

/* ==================================================
   Separator
================================================== */

.sep {
	margin: 0 0 70px;
	text-align: center;
}

.sep .separator {
	display: inline-block;
	width: 100px;
	height: 24px;
	background: url(../images/seperator.png) no-repeat;
	vertical-align: text-top;
}

/* ==================================================
   Home Slider
================================================== */

#the-journey {
	position: relative;
	height: 100%;
}

/* ==================================================
   Header
================================================== */

header {
	width: 100%;
	z-index: 99;
	margin-top:-110px;
}

header .sticky-nav {
	position: relative;
	width: 100%;
	top:0;

	height: 110px;
	background: #fff;
	z-index: 1001;

	-webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.15);
	box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.15);


}

header .sticky-nav.stuck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	background: #fff;
	/*width:1260px;*/
}



header .sticky-nav .nav-inner {
	width:100%;
	-webkit-transition: all 750ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
   -moz-transition: all 750ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -ms-transition: all 750ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
     -o-transition: all 750ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
        transition: all 750ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
}
header #logo {
	float: left;
	padding: 10px 0 10px 20px;
}

header #logo a {
	background: url(../images/logo.png) no-repeat;
	width: 160px;
	height: 90px;
	text-indent: -9999px;
	display: block;
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transition: opacity 0.25s ease-in-out 0s;
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;
}

header #logo a:hover {
	opacity: 0.65;
	filter: alpha(opacity=65);
}

nav#menu {
	float: right;
	margin-right: 20px;
}

nav#menu #menu-main-menu {
	margin: 0;
	padding: 0;
}

nav#menu #menu-main-menu li {
	list-style: none;
	display: inline-block;
	float:left;
}

nav#menu #menu-main-menu li:first-child {
	margin-left: 0;
}

nav#menu #menu-main-menu li a {
	color: #000;
	font-size: 13px;
	font-weight: 300;
	line-height: 110px;
	display: block;
	text-transform: uppercase;
	padding:0 15px;
}

nav#menu #menu-main-menu li.current a,
nav#menu #menu-main-menu li a:hover {
	color: #ca0030;
	/*background: #ca0030;*/
}


/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
	display: none;
}

.menu-nav {
	background:url(../images/menu-mobile.png) 0 0 no-repeat;
	width: 32px;
	height: 32px;
	display: block;
	margin: 37px 0 0 0;

	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);

	-webkit-transition: -webkit-transform 250ms ease-out 0s;
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu-nav.open {
	background-position: 0 -32px;

	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);

	-webkit-transition: -webkit-transform 250ms ease-out 0s;
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

#navigation-mobile {
	display: none;
	text-align: right;
	width: 100%;
	background: #FFFFFF;
	border-bottom: 1px solid #F1F1F1;
	position: relative;
	float: left;
	z-index: 9999;
	top:-465px;
}

.stuck #navigation-mobile {
	top:auto;
}

#navigation-mobile li {
	list-style: none;
	padding: 0 20px;
	border-top: 1px solid #F1F1F1;
}

#navigation-mobile li a{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	padding: 20px 0;
}


/* ==================================================
   Section Page
================================================== */
.single-staff-members img {
	width:100%;
}

.page {
	background: #F5F6F6;
	padding: 60px 0 0 0;
	position: relative;
	z-index: 99;
	/*background: #fff;*/
	/*padding-top:130px;*/
	clear:both;
}

.page .container {
}

.single-post .img-container {
	padding-top: 300px !important;
	padding-bottom: 0px;
	background-size:cover;
	background-position: center;
}

.single-post .img-container h2 {
	  background: rgba(255,255,255,0.7);
	  margin-bottom: 0;
	  padding: 0.5em 1em;
}

.page-alternate .container {
}

.page-alternate {
	/*background: #FFFFFF;*/
	/*padding: 100px 0;*/
	position: relative;
	z-index: 99;
	background: rgba(255,255,255,0.95);
	padding-top:90px;
}

.dark-bg {
	background: #222 url(../images/bg-dark.jpg) repeat !important;
	color: #afafaf;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 {
	color: #fff;
}

.title-page {
	margin-bottom: 40px;
}

.title-page .title {
	font-size: 38px;
	margin: 0 0 5px 0;
	letter-spacing: -2px;
	text-transform: uppercase;
	text-align:center;
}

.title-page .title:before {
	content:"\2014";
	padding-right: 1em;
}

.title-page .title:after {
	content:"\2014";
	padding-left: 1em;

}

.title-page .title-description {
	font-size: 24px;
	font-weight: 200;
	margin: 0 0 30px 0;
}

/* ==================================================
   Section Portfolio
================================================== */

.work-nav {
	margin-bottom: 30px;
}

.type-work {
	color: #4C4F55;
	font-size: 24px;
	font-weight: 300;
	line-height: 1em;
	text-transform: uppercase;
}

.work-nav #filters {
	margin: 0;
	padding: 0;
	list-style: none;
}

.work-nav #filters li {
	display: inline-block;
	padding: 0;
	margin-right: 30px;
}

.work-nav #filters li a {
	color: #55606A;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
}

.work-nav #filters li a:hover {
	color: #ca0030;
}

.work-nav #filters li a.selected {
	color: #ca0030;
}

#thumbs {
	margin: 0;
	padding: 0;
}

#thumbs li {
	list-style-type: none;
}

.item-thumbs {
	position: relative;
	overflow: hidden;
	margin-bottom: 22px;
	cursor: pointer;
	margin-left:22px;
}

.item-thumbs a + img {
	width: 100%;
	height:189px;
}

.item-thumbs .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 189px;

	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-transition: opacity 250ms ease-out 0s;
	   -moz-transition: opacity 250ms ease-out 0s;
		 -o-transition: opacity 250ms ease-out 0s;
		    transition: opacity 250ms ease-out 0s;
}

.item-thumbs:hover .hover-wrap,
.item-thumbs.active .hover-wrap {
	opacity: 1;
	filter: alpha(opacity=100);

}

.item-thumbs .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 189px;;
	background: #ca0030;

	opacity: 0.65;
	filter: alpha(opacity=65);
}

.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	color: #FFFFFF;
	font-size: 40px;
	line-height: 1em;

	transform: scale(0,0);
-ms-transform: scale(0,0); /* IE 9 */
-webkit-transform: scale(0,0); /* Safari and Chrome */

	opacity: 1;
	filter: alpha(opacity=100);
		-webkit-transition: all 250ms ease-out 0s;
	   -moz-transition: all 250ms ease-out 0s;
		 -o-transition: all 250ms ease-out 0s;
		    transition: all 250ms ease-out 0s;

}
.item-thumbs:hover .hover-wrap .overlay-img-thumb {

		transform: scale(1,1);
-ms-transform: scale(1,1); /* IE 9 */
-webkit-transform: scale(1,1); /* Safari and Chrome */
}
/* ==================================================
   About Section
================================================== */

.profile-name {
	margin-bottom: 0;
}

.profile-description {
	margin-bottom: 25px;
}

.image-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px;
	cursor: pointer;
}

.image-wrap img {
	width: 100%;
}

.image-wrap  .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;

	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-transition: opacity 250ms ease-out 0s;
	   -moz-transition: opacity 250ms ease-out 0s;
		 -o-transition: opacity 250ms ease-out 0s;
		    transition: opacity 250ms ease-out 0s;
}

.image-wrap:hover .hover-wrap,
.image-wrap.active .hover-wrap {
	opacity: 1;
	filter: alpha(opacity=100);
}

.image-wrap .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ca0030;

	opacity: 0.45;
	filter: alpha(opacity=45);
}

.image-wrap .hover-wrap .overlay-text-thumb {
	position: absolute;
	width: 100%;
	height: 32px;
	top: 50%;
	margin: -16px 0 0 0;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 300;
	line-height: 32px;
	text-transform: uppercase;
	text-align: center;

	opacity: 1;
	filter: alpha(opacity=100);
}

.social-icons {
	margin: 0;
	padding: 0;
	text-align:center;
}

.social-icons li {
	display: inline-block;
	margin-left: 15px;
}

.social-icons li:first-child {
	margin-left: 0;
}

.social-icons li a{
	color: red;
	font-size: 16px;
	line-height: 1em;
	width: 16px;
	height: 16px;

	opacity: 0.7;
	filter: alpha(opacity=70);

	-webkit-transition: opacity 0.1s linear 0s;
	   -moz-transition: opacity 0.1s linear 0s;
		 -o-transition: opacity 0.1s linear 0s;
		    transition: opacity 0.1s linear 0s;
}

.social-icons li a:hover{
	opacity: 1;
	filter: alpha(opacity=100);
}

/* ==================================================
   Big Blockquote
================================================== */

.big-quote {
	text-align: center;
	background:url(../images/mountain.jpg) repeat center;
	background-attachment: fixed;
	background-size:cover;
	padding:100px 0;
	position:static;
}

.mountain {
	background:url(../images/mountain.jpg) repeat center;
	background-attachment: fixed;
	background-size:cover;
}

.big-quote p {
	font-size: 36px;
	color: #ffffff;
	line-height: 48px;
	font-weight:600;
}

.big-quote span {
	font-size: 32px;
	color: #fff;
}

.big-quote a {
	font-weight:600;
	text-transform: uppercase;
	font-size:14px;
}
/* ==================================================
   Service Section
================================================== */

.services-box {
	text-align: center;
}

.services-box .icon {
	background: #ca0030;
    display: inline-block;
    height: 160px;
    position: absolute;
    width: 160px;
	margin-bottom: 40px;
	top:10px;
	left:10px;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
}

.services-box .icon span {
	color: #FFFFFF;
	font-size: 60px;
	line-height: 160px;
}


.font-icon-ok {
	background: url(../images/support.png) center center no-repeat;
}

.font-icon-road {
	background: url(../images/back-office-icon.png) center center no-repeat;

}

.font-icon-cloud {
	background: url(../images/boardroom.png) center center no-repeat;
}

.font-icon-ok:before,
.font-icon-road:before,
.font-icon-cloud:before {
	content:'';
	width:60px;
	height:160px;
	display:block;
}

/* ==================================================
   Map
================================================== */

#map-area {
	width: 100%;
}

#map-area iframe {
	width:100%;
	height: 400px;
}
.map {
	height: 400px;
}

/* ==================================================
   Blog Section
================================================== */

.post {
	border-top: 1px dashed #F1F1F1;
    margin-top: 50px;
    padding-top: 60px;
    position: relative;
}

.post:first-child {
	border-top: none;
	margin: 0;
	padding: 0;
}

.post-thumb {
	margin-bottom: 30px;
}

.post-thumb a {
	position: relative;
	display: block;
	position:relative;
	height:300px;
	overflow:hidden;
}

.post-thumb img {
	width: 100%;
	position:absolute;
}
/*
.entry-title,
.entry-title a {
	font-size: 36px;
	font-weight: 300;
	line-height: 1.5em;
	color: #4C4F55;
	margin-bottom: 5px;
	padding:10px 20px;
	background:rgba(255,255,255,0.7);
	position:absolute;
	bottom:50px;
}

.entry-title a:hover {
	color: #ca0030;
}
*/
.entry-meta,
.entry-meta a {
    color: #4C4F55;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.entry-meta a:hover {
	color: #ca0030;
}

.entry-meta {
    margin-bottom: 20px;
}

.entry-meta .divider {
    margin: 0 6px;
}

.entry-content .more-link {
	display: block;
}

.entry-meta.entry-footer {
    padding-top: 20px;
}

/* ==================================================
   Comments
================================================== */

#comments {
    margin: 100px 0 0;
}

.comments-title,
#reply-title {
    border-bottom: 1px dashed #999;
    font-size: 28px;
    font-weight: 300;
    line-height: 38px;
    margin: 0 0 50px;
    padding: 0 0 20px;
}

.commentlist {
    list-style-type: none;
    margin: 20px 0 90px;
}

.comment {
    position: relative;
}

.comment-side {
    float: left;
    margin: 0 30px 0 0;
}

.comment-side .avatar {
	-webkit-border-radius: 999px;
	   -moz-border-radius: 999px;
    		border-radius: 999px;

    display: block;
    height: 50px;
    width: 50px;
}

.comment .comment-cont {
    margin-left: 80px;
}

.comment-author cite,
.comment-author cite a {
    color: #4C4F55;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
}

.comment-author cite a:hover {
	color: #ca0030;
}

.comment-meta {
    margin: 8px 0 15px;
}


.comment-meta,
.comment-meta a {
    color: #4C4F55;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase;
}

.comment-meta a:hover {
	color: #ca0030;
}

.comment-body {
    border-bottom: 1px dashed #999;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.comment-body p {
    line-height: 30px;
}

.children {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.children .comment {
    padding-left: 90px;
}

/* ==================================================
   Respond
================================================== */

#comment-form {
	margin-bottom: 0;
}

#comment-form p {
	margin-bottom: 1px;
}

#comment-form input,
#comment-form textarea {
    border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
    border-radius: 0;

    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

background:#333 url(../images/bg-dark.jpg) repeat;
    color: #55606A;
    font-size: 16px;
    height: auto;
    padding: 15px;
	margin: 0;

    resize: none;
}

#comment-form input {
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#comment-form textarea {
    width: 100%;
	resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#comment-form .submit {
    background-color: #E0E0E0;
    color: #55606A;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 40px;
    text-align: center;
    vertical-align: middle;
    width: auto;
	margin-top: 30px;

	-webkit-transition: background 0.1s linear 0s, color 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		    transition: background 0.1s linear 0s, color 0.1s linear 0s;
}

#comment-form .submit:hover {
    background: #FF7B3A;
	color: #FFFFFF;
}

/* ==================================================
   Navigation Blog
================================================== */

.navigation {
    border-top: 1px dashed #F1F1F1;
    font-size: 14px;
    margin: 50px 0 55px;
    padding-top: 100px;
    text-align: center;
}

.navigation .prev,
.navigation .next {
	background-color: #E0E0E0;
	color: #FFFFFF;
	font-weight: 400;
	display: inline-block;
	margin: 2px 1px;
	position: relative;
	padding: 10px 24px;

	-webkit-transition: background 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
		    transition: background 0.1s linear 0s;
}

.navigation .number {
	background-color: #E0E0E0;
	display: inline-block;
	margin: 1px;
	position: relative;
	color: #FFFFFF;
	font-weight: 400;
	padding: 10px 24px;

	-webkit-transition: background 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
		    transition: background 0.1s linear 0s;
}

.navigation .prev:hover,
.navigation .next:hover,
.navigation .number:hover,
.navigation .current {
	background-color:#ca0030;
}


/* ==================================================
   Contact Section
================================================== */

.contact-details h3 {
	color: #4C4F55;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
	line-height: 1em;
    text-transform: uppercase;
}

.contact-details ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-details ul li {
	margin: 0 0 20px;
	line-height: 28px;
	padding: 0;
}

#contact-form {
	margin-bottom: 0;
}

#contact-form p {
	margin-bottom: 1px;
}

#contact-form input,
#contact-form textarea {
    border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
    border-radius: 0;

    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	background-color: #222;
    color: #fff;
    font-size: 16px;
    height: auto;
    padding: 15px;
	margin: 0;

    resize: none;
}

#contact h3 {
	text-align:center;
}

#contact .title-page {
	margin:0;
}

#contact-form input {
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-form textarea {
    width: 100%;
	resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-form .submit {
    background: #E0E0E0;
    color: #55606A;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 40px;
    text-align: center;
    vertical-align: middle;
    width: auto;
	margin-top: 30px;

	-webkit-transition: background 0.1s linear 0s, color 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		    transition: background 0.1s linear 0s, color 0.1s linear 0s;
}

#contact-form .submit:hover {
    background: #ca0030;
	color: #FFFFFF;
}

#response {
	margin-top: 20px;
	color: #55606A;
}


/* ==================================================
   Twitter Feed
================================================== */

#twitter-feed {
	padding: 100px 0 90px;
	text-align: center;
	background:#fff;
}

#twitter-feed .follow {
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-left: -8px;
	font-size: 16px;
}

#ticker .tweet_list {
	margin: 0;
	padding: 0;
	height: 64px;
	list-style: none;
	overflow-y: hidden;
}

#ticker .tweet_list li {
	font-size: 18px;
	height: 64px;
	line-height: 28px;
	overflow: hidden;
}

#ticker .tweet_list .tweet_time a {
	color: #7f8289;
	font-size: 14px;
	font-style: italic;
	margin-left: 10px;
}

#ticker .tweet_list .tweet_time a:hover {
	color: #ca0030;
}


/* ==================================================
   Social Area
================================================== */

#social-area {
    text-align: center;
	padding-top:0;
}

#social-area #social ul {
	margin: 0;
	padding: 0;
}

#social-area #social ul li {
	display: inline-block;
	margin-left: 30px;
	list-style: none;
	cursor: pointer;
}

#social-area #social ul li:first-child {
	margin-left: 0;
}

#social ul li a {
	display: block;
	width: 70px;
	height: 70px;

	background: transparent;

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

#social ul li a span {
	display: inline-block;
	margin: 0;
	color: #55606a;
	font-size: 32px;
	line-height: 70px;

	opacity: 0.3;
	filter: alpha(opacity=30);

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

#social ul li:hover a,
#social ul li.active a {
	background-color: #ca0030;

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
		 border-radius:100px;
		    transform: rotateY(180deg);
}

#social ul li:hover a span,
#social ul li.active a span {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

/* ==================================================
   Footer
================================================== */

footer {
	position: relative;
	width: 100%;
	height: auto;
	background: #FFFFFF;
	text-align: center;
	z-index: 99;
}

footer .credits {
	color: #55606A;
	font-size: 13px;
	margin-bottom: 0;
	padding: 20px 0;
	text-transform: uppercase;
}

/* ==================================================
   Back to Top
================================================== */

#back-to-top {
	display: none;
	background-color: #E0E0E0;
	margin: 0;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 50px;
	height: 50px;
	z-index: 99;

	-webkit-transition: background 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
		    transition: background 0.1s linear 0s;
}

#back-to-top:hover {
	background-color:#ca0030;
}

#back-to-top i {
	font-size: 16px;
	color: #FFFFFF;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -7px;
	line-height: 1em;
}

#back-to-top i {
	margin-left: -7px;
}


/* ==================================================
   Preloader
================================================== */

#jpreOverlay,
#jSplash {
	background-color: #FFFFFF;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 700;
	color: #111 !important;
}

#jpreSlide{
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
}

#jpreLoader {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
}

#jprePercentage {
	width: 50px;
	height: 50px !important;
	line-height: 50px;
	position: absolute !important;
	text-align: center;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -25px;
	z-index: 800;

	font-size: 24px;
	color: #111;

	-webkit-animation: circle 3s infinite ease-in-out;
	   -moz-animation: circle 3s infinite ease-in-out;
		-ms-animation: circle 3s infinite ease-in-out;
		 -o-animation: circle 3s infinite ease-in-out;
			animation: circle 3s infinite ease-in-out;
}

#circle {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 11;
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
	background: transparent;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;

	-webkit-animation: circle 3s infinite ease-in-out;
	   -moz-animation: circle 3s infinite ease-in-out;
		-ms-animation: circle 3s infinite ease-in-out;
			animation: circle 3s infinite ease-in-out;
}

@-webkit-keyframes circle {
	0% {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	}
	50% {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	transform: scale(0.7);
	}
	100% {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	}
}

@-moz-keyframes circle {
	0% {-moz-transform: rotateY(0deg);
	}
	50% {-moz-transform: rotateY(180deg);
		-moz-animation-timing-function: ease-out;
	}
	100% {-moz-transform: rotateY(0deg);
		-moz-animation-timing-function: ease-in;
	}
}

@-ms-keyframes circle {
	0% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
	50% {-ms-transform: rotateY(180deg);
		-ms-animation-timing-function: ease-out;
	}
	100% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
}

@-o-keyframes circle {
	0% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
	50% {-o-transform: rotateY(180deg);
		-o-animation-timing-function: ease-out;
	}
	100% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
}

@keyframes circle {
	0% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
	50% {transform: rotateY(180deg);
		animation-timing-function: ease-out;
	}
	100% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
}


/* ==================================================
   Isotope Filtering
================================================== */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */



/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}

.container {
	margin:0 auto;
	padding:30px 0;
}

#parent-container {
	/*position:absolute;*/
	top:0;
	/*width:1260px;*/
	/*left:-1230px;*/
}
/*
#parent-container.active {
	left:0;
}
*/

/*
loading anims
*/

.windows8 {
position: relative;
width: 90px;
height:90px;
}

.windows8 .wBall {
position: absolute;
width: 86px;
height: 86px;
opacity: 0;
-moz-transform: rotate(225deg);
-moz-animation: orbit 9.9s infinite;
-webkit-transform: rotate(225deg);
-webkit-animation: orbit 9.9s infinite;
-ms-transform: rotate(225deg);
-ms-animation: orbit 9.9s infinite;
-o-transform: rotate(225deg);
-o-animation: orbit 9.9s infinite;
transform: rotate(225deg);
animation: orbit 9.9s infinite;
}

.windows8 .wBall .wInnerBall{
position: absolute;
width: 11px;
height: 11px;
background: #CA002F;
left:0px;
top:0px;
-moz-border-radius: 11px;
-webkit-border-radius: 11px;
-ms-border-radius: 11px;
-o-border-radius: 11px;
border-radius: 11px;
}

.windows8 #wBall_1 {
-moz-animation-delay: 2.16s;
-webkit-animation-delay: 2.16s;
-ms-animation-delay: 2.16s;
-o-animation-delay: 2.16s;
animation-delay: 2.16s;
}

.windows8 #wBall_2 {
-moz-animation-delay: 0.43s;
-webkit-animation-delay: 0.43s;
-ms-animation-delay: 0.43s;
-o-animation-delay: 0.43s;
animation-delay: 0.43s;
}

.windows8 #wBall_3 {
-moz-animation-delay: 0.86s;
-webkit-animation-delay: 0.86s;
-ms-animation-delay: 0.86s;
-o-animation-delay: 0.86s;
animation-delay: 0.86s;
}

.windows8 #wBall_4 {
-moz-animation-delay: 1.3s;
-webkit-animation-delay: 1.3s;
-ms-animation-delay: 1.3s;
-o-animation-delay: 1.3s;
animation-delay: 1.3s;
}

.windows8 #wBall_5 {
-moz-animation-delay: 1.73s;
-webkit-animation-delay: 1.73s;
-ms-animation-delay: 1.73s;
-o-animation-delay: 1.73s;
animation-delay: 1.73s;
}

@-moz-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-moz-transform: rotate(180deg);
-moz-animation-timing-function: ease-out;
}

7% {
opacity: 1;
-moz-transform: rotate(300deg);
-moz-animation-timing-function: linear;
-moz-origin:0%;
}

30% {
opacity: 1;
-moz-transform:rotate(410deg);
-moz-animation-timing-function: ease-in-out;
-moz-origin:7%;
}

39% {
opacity: 1;
-moz-transform: rotate(645deg);
-moz-animation-timing-function: linear;
-moz-origin:30%;
}

70% {
opacity: 1;
-moz-transform: rotate(770deg);
-moz-animation-timing-function: ease-out;
-moz-origin:39%;
}

75% {
opacity: 1;
-moz-transform: rotate(900deg);
-moz-animation-timing-function: ease-out;
-moz-origin:70%;
}

76% {
opacity: 0;
-moz-transform:rotate(900deg);
}

100% {
opacity: 0;
-moz-transform: rotate(900deg);
}

}

@-webkit-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-webkit-transform: rotate(180deg);
-webkit-animation-timing-function: ease-out;
}

7% {
opacity: 1;
-webkit-transform: rotate(300deg);
-webkit-animation-timing-function: linear;
-webkit-origin:0%;
}

30% {
opacity: 1;
-webkit-transform:rotate(410deg);
-webkit-animation-timing-function: ease-in-out;
-webkit-origin:7%;
}

39% {
opacity: 1;
-webkit-transform: rotate(645deg);
-webkit-animation-timing-function: linear;
-webkit-origin:30%;
}

70% {
opacity: 1;
-webkit-transform: rotate(770deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:39%;
}

75% {
opacity: 1;
-webkit-transform: rotate(900deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:70%;
}

76% {
opacity: 0;
-webkit-transform:rotate(900deg);
}

100% {
opacity: 0;
-webkit-transform: rotate(900deg);
}

}

@-ms-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-ms-transform: rotate(180deg);
-ms-animation-timing-function: ease-out;
}

7% {
opacity: 1;
-ms-transform: rotate(300deg);
-ms-animation-timing-function: linear;
-ms-origin:0%;
}

30% {
opacity: 1;
-ms-transform:rotate(410deg);
-ms-animation-timing-function: ease-in-out;
-ms-origin:7%;
}

39% {
opacity: 1;
-ms-transform: rotate(645deg);
-ms-animation-timing-function: linear;
-ms-origin:30%;
}

70% {
opacity: 1;
-ms-transform: rotate(770deg);
-ms-animation-timing-function: ease-out;
-ms-origin:39%;
}

75% {
opacity: 1;
-ms-transform: rotate(900deg);
-ms-animation-timing-function: ease-out;
-ms-origin:70%;
}

76% {
opacity: 0;
-ms-transform:rotate(900deg);
}

100% {
opacity: 0;
-ms-transform: rotate(900deg);
}

}

@-o-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-o-transform: rotate(180deg);
-o-animation-timing-function: ease-out;
}

7% {
opacity: 1;
-o-transform: rotate(300deg);
-o-animation-timing-function: linear;
-o-origin:0%;
}

30% {
opacity: 1;
-o-transform:rotate(410deg);
-o-animation-timing-function: ease-in-out;
-o-origin:7%;
}

39% {
opacity: 1;
-o-transform: rotate(645deg);
-o-animation-timing-function: linear;
-o-origin:30%;
}

70% {
opacity: 1;
-o-transform: rotate(770deg);
-o-animation-timing-function: ease-out;
-o-origin:39%;
}

75% {
opacity: 1;
-o-transform: rotate(900deg);
-o-animation-timing-function: ease-out;
-o-origin:70%;
}

76% {
opacity: 0;
-o-transform:rotate(900deg);
}

100% {
opacity: 0;
-o-transform: rotate(900deg);
}

}

@keyframes orbit {
0% {
opacity: 1;
z-index:99;
transform: rotate(180deg);
animation-timing-function: ease-out;
}

7% {
opacity: 1;
transform: rotate(300deg);
animation-timing-function: linear;
origin:0%;
}

30% {
opacity: 1;
transform:rotate(410deg);
animation-timing-function: ease-in-out;
origin:7%;
}

39% {
opacity: 1;
transform: rotate(645deg);
animation-timing-function: linear;
origin:30%;
}

70% {
opacity: 1;
transform: rotate(770deg);
animation-timing-function: ease-out;
origin:39%;
}

75% {
opacity: 1;
transform: rotate(900deg);
animation-timing-function: ease-out;
origin:70%;
}

76% {
opacity: 0;
transform:rotate(900deg);
}

100% {
opacity: 0;
transform: rotate(900deg);
}

}


/* GRAPH */
.content {
	width:960px;
	height:300px;
	margin:0 30px;
	padding-top:450px;
	position:relative;
}


.line, .line1, .line2, .line3 {
	background:#fff;
	width:0px;
	height:1px;
}

.running .line {
	-moz-transform:rotate(9deg);
	-moz-transform-origin: -21em 10em;
	-moz-animation:move 1s linear forwards;

	-webkit-transform:rotate(9deg);
	-webkit-transform-origin: -21em 10em;
	-webkit-animation:move 0.5s linear forwards;

}

.running .line1 {
	-moz-transform:rotate(9deg);
	-moz-transform-origin: -21em 10em;
	-moz-animation:move1 1s 1s linear forwards;

	-webkit-transform:rotate(-4deg);
	-webkit-transform-origin: 65em -120em;
	-webkit-animation:move1 0.5s 0.5s linear forwards;
}
.running .line2 {
	-moz-transform:rotate(-10deg);
	-moz-transform-origin: 26em -95em;
	-moz-animation:move2 1s 2s linear forwards;

	-webkit-transform:rotate(-10deg);
	-webkit-transform-origin: 26em -95em;
	-webkit-animation:move2 0.5s 1s linear forwards;
}
.running .line3 {
	-moz-transform:rotate(145deg);
	-moz-transform-origin: 18em 4em;
	-moz-animation:move3 1s 3s linear forwards;

	-webkit-transform:rotate(145deg);
	-webkit-transform-origin: 18em 4em;
	-webkit-animation:move3 0.5s 1.5s linear forwards;
}

.running .ball,.running  .ball1,.running  .ball2,.running  .ball3,.running  .ball4,
.running .ball5,.running  .ball6,.running  .ball7,.running  .ball8,.running  .ball9,
.running .ball10,.running  .ball11,.running  .ball12,.running  .ball13 {
	background: rgba(255,255,255,0.8);

	width:10px;
	height:10px;
	border-radius:50px;

	position:absolute;
	z-index:99;

	-moz-transform:scale(0);
	-moz-animation:point 0.1s linear forwards;

	-webkit-transform:scale(0);
	-webkit-animation:point 0.1s linear forwards;
}

.running .pulse,.running .pulse1,.running  .pulse2,.running  .pulse3,.running  .pulse4 {
	width:100px;
	height:100px;
	border-radius:300px;
	border: 1px solid #ca0030;
	box-shadow: 0 0 5px #ca0030;
	position:absolute;

	-moz-transform:scale(0);
	-moz-animation:pulse 1s ease-out;

	-webkit-transform:scale(0);
	-webkit-animation:pulse 1s ease-out;
}

/* TOOLTIP */

.ball a, .ball1 a, .ball2 a, .ball3 a, .ball4 a {
	float:left;
	height:10px;
	width:10px;
	text-decoration:none;
	position:relative;
}

.ball a small, .ball1 a small, .ball2 a small, .ball3 a small, .ball4 a small {
	background:#000;
	text-align:center;
	width:70px;
	padding:5px;
	border-left:1px solid #111; border-top:1px solid #111; border-right:1px solid #333; border-bottom:1px solid #333;
	border-radius:3px;
	display:none;
	color:#fff;
	font-size:0.8em;
	text-indent:0;
}
.ball:hover {
	width:50px;
	height:50px;
	margin-top:-25px;
	margin-left:-25px;
	/*
	-webkit-animation:point 10s linear forwards;
		-moz-animation:tooltip .25s linear forwards;

	-webkit-animation:tooltip .25s linear forwards;
	*/
}

.ball, .ball1, .ball2, .ball3, .ball 4 {
	-webkit-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
   -moz-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -ms-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
     -o-transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
        transition: all 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
}
/*
.ball a:hover small, .ball1 a:hover small, .ball2 a:hover small, .ball3 a:hover small, .ball4 a:hover small {
	display:block;
	position:absolute;
	top:0px;
	left:50%;
	margin:-40px;
	z-index:9999;


}
*/
/* COORDINATE POINTS */

.running .ball  { top:500px; left:0; }
.running .ball1 { top:511px; left:96px; width:20px; height:20px; }
.running .ball2 { top: 491px;
left: 212px;
width: 30px;
height: 30px;}
.running .ball3 { top: 439px;
left: 405px;
width: 40px;
height: 40px; }
.running .ball4 { top: 331px;
left: 604px;
width: 60px;
height: 60px;}
.running .ball5  { top: 225px;
left: 510px;
width: 20px;
height: 20px; }
.running .ball6 { top: 271px;
left: 366px;}
.running .ball7 { top: 311px;
left: 300px;
width: 5px;
height: 5px; }
.running .ball8 { top: 292px;
left: 174px;
width: 7px;
height: 7px; }
.running .ball9 { top: 221px;
left: 114px;
width: 3px;
height: 3px;
}
.running .ball10 { top: 145px;
left: 130px; }
.running .ball11 { top: 161px;
left: 286px;
width: 5px;
height: 5px; }
.running .ball12 {top: 122px;
left: 402px;
width: 1px;
height: 1px; }
.running .ball13 { top: -19px;
left: 494px;
width: 75px;
height: 75px; }


.pulse  { top:452px; left:-46px; }
.pulse1 { top:469px; left:55px; }
.pulse2 { top:455px; left:176px; }
.pulse3 { top: 356px;
left: 323px;
width: 200px !important;
height: 200px !important; }
.pulse4 { top: 216px;
left: 482px;
width: 300px !important;
height: 300px !important; }

.running small {
	display:none;
}
/* CONTROL LAYER DELAY */

#layerBall, #layerPulse   { -moz-animation-delay:0s; -webkit-animation-delay:0s; }
#layerBall1, #layerPulse1 { -moz-animation-delay:0.9s; -webkit-animation-delay:0.5s; }
#layerBall2, #layerPulse2 { -moz-animation-delay:1.9s; -webkit-animation-delay:1s; }
#layerBall3, #layerPulse3 { -moz-animation-delay:2.9s; -webkit-animation-delay:1.5s; }
#layerBall4, #layerPulse4 { -moz-animation-delay:4s; -webkit-animation-delay:2s; }

/* ANIMATION */

@-moz-keyframes move {
	0%   { width:0px;}
	100% { width:59px; }
}
@-moz-keyframes move1 {
	0%   { width:0px;}
	100% { width:200px; }
}
@-moz-keyframes move2 {
	0%   { width:0px;}
	100% { width:400px; }
}
@-moz-keyframes move3 {
	0%   { width:0px;}
	100% { width:92px; }
}

@-moz-keyframes point {
	0%  {-moz-transform:scale(0,0);}
	100%{-moz-transform:scale(1,1);}
}

@-moz-keyframes pulse {
	0%   {-moz-transform: scale(0);opacity: 0;}
    10%  {-moz-transform: scale(1);opacity: 0.5;}
	50%  {-moz-transform: scale(1.75);opacity: 0;}
    100% {-moz-transform: scale(0);opacity: 0;}
}

@-moz-keyframes tooltip {
	0%  { -moz-transform:scale(0,0); opacity:0;}
	50% { -moz-transform:scale(1.2,1.2); opacity:0.3; }
	75% { -moz-transform:scale(0.9,0.9); opacity:0.7;}
	100%{ -moz-transform:scale(1,1); opacity:1;}
}

@-webkit-keyframes move {
	0%   { width:0px;}
	100% { width:59px;  }
}
@-webkit-keyframes move1 {
	0%   { width:0px;}
	100% { width:51px;  }
}
@-webkit-keyframes move2 {
	0%   { width:0px;}
	100% { width:102px;  }
}
@-webkit-keyframes move3 {
	0%   { width:0px;}
	100% { width:92px;  }
}

@-webkit-keyframes point {
	0%  {-webkit-transform:scale(0,0);}
	100%{-webkit-transform:scale(3,3);}
}

@-webkit-keyframes pulse {
	0%   {-webkit-transform: scale(0);opacity: 0;}
    10%  {-webkit-transform: scale(1);opacity: 0.5;}
	50%  {-webkit-transform: scale(1.75);opacity: 0;}
    100% {-webkit-transform: scale(0);opacity: 0;}
}

@-webkit-keyframes tooltip {
	0% { -webkit-transform:scale(3,3); opacity:0.3; }
	50% { -webkit-transform:scale(2.5,2.5); opacity:0.7;}
	100%{ -webkit-transform:scale(2,2); opacity:1;}
}

/* Trigger button for javascript */

.trigger {
	background: #000000;
	background: -moz-linear-gradient(top, #161616 0%, #000000 100%);
	background: -webkit-linear-gradient(top, #161616 0%,#000000 100%);
	border-left:1px solid #111; border-top:1px solid #111; border-right:1px solid #333; border-bottom:1px solid #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	text-decoration: none;
	text-transform: lowercase;
	text-align: center;
	color: #fff;
	padding: 10px;
	border-radius: 3px;
	display: block;
	margin: 0 auto;
	width: 140px;
}

.trigger:hover {
	background: -moz-linear-gradient(top, #202020 0%, #161616 100%);
	background: -webkit-linear-gradient(top, #202020 0%, #161616 100%);
}


.title-bar {
	background-color: #ca0030;
	display: block;
	height: 2px;
	margin: 0 auto 12px auto;
	width: 60px;
}

.graph h6 {
	width: 120px;
	text-align:center;
	font-size:12px;
	margin:-90px auto 0 auto;
	color:#fff;
	line-height: 1.2em;
}

#why-camino h3 {
	text-align:center;
}

.graph {
	width:220px;
	height:220px;
	margin:50px auto 10px auto;
	opacity:0;
}

#line1,
#line2,
#line3,
#line4,
#line5 {
	-webkit-transition: width 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
   -moz-transition: width 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -ms-transition: width 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
     -o-transition: width 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
        transition: width 1000ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */

}

#line1,#line4,#line5 {
	height:0px;
	width: 0px;
	border-bottom:1px dashed #000;
	-moz-transform: rotate(90deg);
	-moz-transform-origin: 0px 0px;
	-webkit-transform: rotate(90deg);
	-webkit-transform-origin: 0px 0px;
	transform: rotate(90deg);
	transform-origin: 0px 0px;
	-ms-transform: rotate(90deg);
	-ms-transform-origin: 0px 0px;
	position: absolute;
	left:50%;
}
#line2 {
	height:0px;
	width: 0px;
	border-bottom:1px dashed #000;
	-moz-transform: rotate(180deg);
	-moz-transform-origin: 0px 0px;
	-webkit-transform: rotate(180deg);
	-webkit-transform-origin: 0px 0px;
	transform: rotate(180deg);
	transform-origin: 0px 0px;
	-ms-transform: rotate(180deg);
	-ms-transform-origin: 0px 0px;
	margin:0 auto;
	position: absolute;
	left:50%;
	top:24px;
}

#line3 {
	height:0px;
	width: 0px;
	border-bottom:1px dashed #000;
	-moz-transform-origin: 0px 0px;
	-webkit-transform-origin: 0px 0px;
	transform-origin: 0px 0px;
	-ms-transform-origin: 0px 0px;
	margin:0 auto;
	position: absolute;
	left:50%;
	top:23px;
}

#line4 {
	width:0px;
	left:10px;
	top:24px;
	left:186px;
}

#line5 {
	right: 165px !important;
	left: auto !important;
	width: 0;
	top: 24px;
	}

#line2,#line3 {
	transition-delay: 0.5s;
-webkit-transition-delay: 0.5s; /* Safari */

}
#line4, #line5 {
transition-delay: 1s;
-webkit-transition-delay: 1s; /* Safari */
}


.full-width {
	width:100%;
	margin-bottom:50px;
	position:relative;
}

#about-us .title-page {
	margin-bottom:10px;
}
@media (min-width: 1200px) {
	/*
	#focussed {
		margin-left:20px;
	}

	#honest {
		margin-left:25px;
	}
	*/
	#line1.line-expand {
	width:45px;
}
#line2.line-expand {
	width:390px;
}
#line3.line-expand {
	width:390px;
}
#line4.line-expand {
	width:20px;
}
#line5.line-expand {
	width:20px;
}

}

@media (max-width: 979px) and (min-width: 768px) {
	.page {
		padding-top:0;
	}
}

.info {
	background:#222 url(../images/bg-dark.jpg) repeat;
	border-top:0;
	padding:10px;
}

.info a {
	font-size: 16px;
font-weight: 600;
display:block;
color: #fff;
text-transform:uppercase;
}

#blog .info a {
	line-height: normal;
}

#blog .info p {
	margin:0;
}

#blog .info {
	height:80px;
	overflow:hidden;
}

.info span {
	font-size: 14px;
font-weight: 300;
margin-bottom: 0;
display:block;
line-height:normal;
color:#ccc;
}

.page-template-page-testimonials-php .page, .contact-page .page, #blog{
background:#f6f6f6;
}

.contact #about-us .title-page .title {
	font-weight:400;
}

.entry-title {
font-size: 36px;
font-weight: 300;
line-height: 1.5em;
color: #4C4F55;
margin-bottom: 5px;
padding: 10px 20px;
background: rgba(255,255,255,0.7);
position: absolute;
bottom: 50px;
}

/*
Table Style - This is what you want
------------------------------------------------------------------ */
table a:link {
	color: #666;
	font-weight: bold;
	text-decoration:none;
}
table a:visited {
	color: #999999;
	font-weight:bold;
	text-decoration:none;
}
table a:active,
table a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
table {
	font-size:14px;
	background:#eaebec;
	border:#ccc 1px solid;

}
table .vc-th td {
	padding:21px 25px 22px 25px;
	border-left:#ccc 1px solid;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
}
table .vc-th:first-child{
	text-align: left;
	padding-left:20px;
}
table tr:first-child th:first-child{
}
table tr:first-child th:last-child{
}
table tr{
	text-align: center;
	padding-left:20px;
}
table tr td:first-child{
	text-align: left;
	padding-left:20px;
	border-left: 0;
}
table tr td {
	padding:18px;
	border-top: 1px solid #ffffff;
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;

	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
}
table tr:nth-child(even) td{
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}
table tr:last-child td{
	border-bottom:0;
}
table tr:last-child td:first-child{
}
table tr:last-child td:last-child{
}
table tr:hover td{
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
}

#blog .container {
	padding-top:0;
}
/*
.entry-content {
	-moz-column-count:3;
-webkit-column-count:3;
column-count:3;
}
*/




#wrapper{margin:0 auto;position:relative;}

.flipbox {
	position:relative;
	width:34%;
	padding-bottom:34%;
	background:rgba(3,50,202,0.8) !important;
	margin:0 auto;
	border-radius:100000px;
	margin-top:5%;
}

.flipbox img {
	width:100%;
	height:100%;
	position:absolute;
}

#wrapper {
	height:100%;
	width:100%;
}

#sitemap a {
	display:block;
}

/* ==================================================
   Buttons
================================================== */
/*
.button {
  	display: inline-block;
  	margin-bottom: 0;
  	padding: 16px 26px;
  	-webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
  	background-color: #E0E0E0;
  	color: #55606A;
  	vertical-align: middle;
	line-height: 1em;
  	text-align: center;
  	text-transform: uppercase;
  	font-weight:500;
  	font-size: 16px;
  	cursor: pointer;
	border:none;

	-webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
  	*border: 0;
  	*zoom: 1;
}

/*--- Hover/Active/Focus State ---*/
/*
.button:hover,
.button:active,
.button:focus {
	background-color: #FF7B3A;
	color:#FFFFFF;
}

/* --- Button Sizes --- */
/*
.button.button-large {
  	padding: 20px 30px;
  	font-size: 18px;
}

.button.button-small {
  	padding: 8px 18px;
  	font-size: 14px;
}

.button.button-mini {
  	padding: 4px 12px;
  	font-size: 12px;
}

.button.button-block {
	padding-right: 0;
	padding-left: 0;
	width: 100%;
}

.button + .button {
	margin-left: 10px;
}

/* ==================================================
   Accordion & Toggle
================================================== */

.accordion {
  	margin-bottom: 20px;
}

.accordion-group {
  	margin-bottom: 4px;
  	border: none;
  	-webkit-border-radius: 0;
       -moz-border-radius: 0;
          	border-radius: 0;
}

.accordion-heading {
  	border-bottom: 0 none;
}

.accordion-heading .accordion-toggle {
	position: relative;
  	display: block;
  	padding: 15px;
	background:#F1F1F1;
	color: #55606A;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;

	-webkit-transition: all 0.1s linear 0s;
	-moz-transition: all 0.1s linear 0s;
	-ms-transition: all 0.1s linear 0s;
	-o-transition: all 0.1s linear 0s;
	transition: all 0.1s linear 0s;
}

.accordion-toggle {
  	cursor: pointer;
}

.accordion-heading:hover .accordion-toggle,
.accordion-heading:hover .accordion-toggle.inactive {
	background:#ca0030;
	color:#FFFFFF;
}

.accordion-heading .accordion-toggle.active {
	background:#ca0030;
	color:#FFFFFF;
}

.accordion-heading .accordion-toggle.inactive {
	background:#F1F1F1;
}

.accordion-heading.accordionize .accordion-toggle span,
.accordion-heading.togglize .accordion-toggle span {
    position: absolute;
    top: 50%;
    right: 20px;
    margin: -8px 0 0 0;
    color: #55606A;
    font-size: 18px;

	-webkit-transition: all 0.1s linear 0s;
	-moz-transition: all 0.1s linear 0s;
	-ms-transition: all 0.1s linear 0s;
	-o-transition: all 0.1s linear 0s;
	transition: all 0.1s linear 0s;
}

.accordion-heading:hover .accordion-toggle span {
	color: #FFFFFF;
}

.accordion-heading .accordion-toggle.active span,
.accordion-heading:hover .accordion-toggle.inactive span {
	color: #FFFFFF;
}

.accordion-heading.accordionize .accordion-toggle.active span,
.accordion-heading.togglize .accordion-toggle.active span {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-heading.togglize .accordion-toggle span {
	margin: -8px 0 0 0;
	font-size: 18px;
}

.accordion-heading.togglize .accordion-toggle.active span {
	opacity:0;
	filter: alpha(opacity=0);
}

.accordion-heading.togglize .accordion-toggle.active span + span {
	opacity:1;
	filter: alpha(opacity=100);
}

.accordion-inner {
	background: #F1F1F1;
  	padding: 16px 20px;
	border: none;
}

/* ==================================================
   Alerts
================================================== */

.alert {
  	margin-bottom: 20px;
  	padding: 15px 35px 15px 15px;
	border: none;
	text-shadow: none;
  	-webkit-border-radius: 0px;
       -moz-border-radius: 0px;
          	border-radius: 0px;
  	background-color: #DBA571;
}

.alert,
.alert h4 {
	color: #FFFFFF;
}

.alert h4 {
  	margin: 0;
}

.alert .close {
 	position: relative;
  	top: 2px;
  	right: -22px;
  	line-height: 20px;
	color: #FFFFFF;
	text-shadow: none;

	-webkit-transition: opacity 0.1s linear 0s;
	-moz-transition: opacity 0.1s linear 0s;
	-ms-transition: opacity 0.1s linear 0s;
	-o-transition: opacity 0.1s linear 0s;
	transition: opacity 0.1s linear 0s;
}

.alert .close:hover {
	opacity: 1;
}

.alert-standard {
  	background-color: #F1F1F1;
	color: #55606A;
}

.alert-standard .close {
	color: #55606A;
}

.alert-success {
  	background-color: #1F7F5C;
}

.alert-danger,
.alert-error {
  	background-color: #E56C69;
}

.alert-info {
  	background-color: #5A9AA8;
}


.alert-block {
  	padding-top: 14px;
    padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
  	margin-bottom: 0;
}

.alert-block p + p {
  	margin-top: 5px;
}

/* ==================================================
   Tabs
================================================== */

.nav {
 	margin-bottom: 0px;
  	margin-left: 0;
  	list-style: none;
}

.nav > li > a {
  	display: block;
  	color: #55606A;
  	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
  	-webkit-border-radius: 0;
       -moz-border-radius: 0;
          	border-radius: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  	background-color: #ca0030;
	color: #FFFFFF;
  	text-decoration: none;
  	display: block;
}

.nav > li > a > img {
  	max-width: none;
}

.nav > .pull-right {
  	float: right;
}

.nav-tabs {
  	*zoom: 1;
}

.nav-tabs:before,
.nav-tabs:after {
  	display: table;
  	content: "";
  	line-height: 0;
}

.nav-tabs:after {
  	clear: both;
}

.nav-tabs {
  	border-bottom: none;
}

.nav-tabs > li {
	float: left;
	margin: 0 4px 0 0;
}

.nav-tabs > li > a {
	background: #F1F1F1;
	padding:15px;
  	line-height: 20px;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
	border: none;
  	background-color: #ca0030;
	color: #FFFFFF;
  	cursor: default;
}

.tabbable {
  	*zoom: 1;
}

.tabbable:before,
.tabbable:after {
  	display: table;
  	content: "";
  	line-height: 0;
}

.tabbable:after {
  	clear: both;
}

.tab-content {
  	overflow: auto;
	padding: 20px;
	background: #F1F1F1;
}

.tab-content > .tab-pane {
  	display: none;
}

.tab-content > .active {
  	display: block;
}


/* ==================================================
   Blockquotes
================================================== */

blockquote {
  	padding: 15px 20px;
  	border-left: 2px solid #ca0030;
}

blockquote p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

blockquote small {
  	display: block;
  	color: #65676c;
  	font-weight:400;
  	font-size: 13px;
  	line-height: 20px;
	margin-top: 10px;
}

blockquote small:before {
  	content: '';
}

/* ==================================================
   Tooltip
================================================== */

.tooltip {
  	position: absolute;
  	z-index: 999;
  	display: block;
  	visibility: visible;
  	padding: 5px;
  	font-weight:400;
  	font-size: 14px;
  	opacity: 0;
  	filter: alpha(opacity=0);
}

.tooltip.in {
  	opacity: 1;
  	filter: alpha(opacity=100);
}

.tooltip.top {
  	margin-top: -3px;
}

.tooltip.right {
  	margin-left: 3px;
}

.tooltip.bottom {
  	margin-top: 3px;
}

.tooltip.left {
  	margin-left: -3px;
}

.tooltip-inner {
  	padding: 16px;
  	max-width: 300px;
  	-webkit-border-radius: 0;
       -moz-border-radius: 0;
          	border-radius: 0;
  	background-color: #ca0030;
  	color: #FFFFFF;
  	text-align: center;
  	text-decoration: none;
}

.tooltip-arrow {
  	position: absolute;
  	width: 0;
  	height: 0;
  	border-style: solid;
  	border-color: transparent;
}

.tooltip.top .tooltip-arrow {
  	bottom: 0;
  	left: 50%;
  	margin-left: -15px;
  	border-width: 10px 10px 0;
  	border-top-color: #ca0030;
}

.tooltip.right .tooltip-arrow {
  	top: 50%;
  	left: 0;
  	margin-top: -15px;
  	border-width: 10px 10px 10px 0;
  	border-right-color: #ca0030;
}

.tooltip.left .tooltip-arrow {
  	top: 50%;
  	right: 0;
  	margin-top: -15px;
  	border-width: 10px 0 10px 10px;
  	border-left-color: #ca0030;
}

.tooltip.bottom .tooltip-arrow {
  	top: 0;
  	left: 50%;
  	margin-left: -15px;
  	border-width: 0 10px 10px;
  	border-bottom-color: #ca0030;
}

/* ==================================================
   Info Block
================================================== */

.info-block {
    border-left: 2px solid #ca0030;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.info-text {
    padding-right: 20%;
    position: relative;
}

.info-block h3 {
    font-size: 24px;
	line-height: 1.3em;
	text-transform: uppercase;
}

.info-block p {
	margin-bottom: 0;
}

.info-block a.button {
    margin-top: -20px;
    position: absolute;
    right: 0;
    top: 50%;
}

/* ==================================================
   Video
================================================== */

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    padding-top: 30px; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border: none;
}

/* ==================================================
   Progress Bars
================================================== */

.page .progress {
	background-color: #E0E0E0;
}

.page-alternate .progress {
	background-color: #E0E0E0;
}

.progress-bar {
	margin: 26px 0 0;
}

.progress {
	position: relative;
	background-image: none;
	height: 46px;
	-webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;

	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;

	filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
	margin: 0;
}

.progress .bar {
	background-color: #ca0030;
	background-image: none;

	-webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;

	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;

	filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.progress .field {
	position: absolute;
	color: #FFFFFF;
	line-height: 44px;
	left: 20px;
}

.progress .field-value {
	position: absolute;
	color: #FFFFFF;
	line-height: 44px;
	right: 20px;
}

/* ==================================================
   LightBox Image / Video
================================================== */

.lightbox {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	cursor: pointer;
}

.lightbox a + img {
	width: 100%;
}

.lightbox .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;

	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-transition: opacity 250ms ease-out 0s;
	   -moz-transition: opacity 250ms ease-out 0s;
		 -o-transition: opacity 250ms ease-out 0s;
		    transition: opacity 250ms ease-out 0s;
}

.lightbox:hover .hover-wrap,
.lightbox.active .hover-wrap {
	opacity: 1;
	filter: alpha(opacity=100);
}

.lightbox .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ca0030;

	opacity: 0.45;
	filter: alpha(opacity=45);
}

.lightbox .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1em;

	opacity: 1;
	filter: alpha(opacity=100);
}

/* ==================================================
   Icons Example
================================================== */

.icons-example ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.icons-example ul li {
	display: inline-block;
	margin: 15px;
	list-style: none;
	cursor: pointer;
}

.icons-example ul li a {
	display: block;
	width: 70px;
	height: 70px;

	background: transparent;

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

.icons-example ul li a span {
	display: inline-block;
	margin: 0;
	color: #55606a;
	font-size: 32px;
	line-height: 70px;

	opacity: 0.3;
	filter: alpha(opacity=30);

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

.icons-example ul li:hover a,
.icons-example ul li.active a {
	background-color: #ca0030;

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
		    transform: rotateY(180deg);
}

.icons-example ul li:hover a span,
.icons-example ul li.active a span {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

.profile-name {
	text-align:center;
}

p.address {
	width: 200px;
margin: 0 auto;
}

.contact-page .title-description {
	max-width: 900px;
margin: 0 auto;
text-align: center;
font-size: 21px;
}

#job .entry-title {
	position: static;
	background: none;
	padding: 20px 0;
}

.button {
	display: inline-block;
	margin-bottom: 0;
	padding: 10px 0px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: #ca0030;
	color: #ffffff !important;
	vertical-align: middle;
	line-height: 1em !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px !important;
	cursor: pointer;
	border: none;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	width:100%;
}

#job .apply,
#job .applywithlinkedinButton {
	line-height:normal !important;
	float: left;
	margin-right:20px;
	padding-bottom: 20px;
}

#job .entry-meta {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	overflow: auto;
	padding: 20px 0 0 0;
}

#job .entry-content{
	clear:both;
}

.button:hover {
	background-color: #333;
}

/*
body.page {
	position: static !important;
	z-index: 99;
	background: #fff;
	clear: none !important;
	margin: 0 !important;
}

*/
#parent-container {
	padding-top:100px;
}

.page-template-page-jobs-php .dark-bg .title-page .title:before,
.page-template-page-jobs-php .dark-bg .title-page .title:after {
	display:none;
}


.img-bg {
	width:100%;
	height:189px;
	background-size:cover;
	background-position: center;
}

.vc_row {
	margin-left: 0 !important;
	margin-right:0 !importantl;
}

.apply {
	width:100%;
	margin-top:20px;
}

.job-meta img {
	width:100%;
}

@media screen and (max-width:600px) {
	.mobile-hide {
		display:none;
	}
}