/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==================================
  Table of Contents
   ==================================
** @included fonts  
** Basic
** Preloader
** Social List
** Navbar
** Header
** About
** Features
** Quotes
** Portfolio
** Call To Action
** Services
** Counters
** Team
** Skills
** Blog
** Tweets
** Pricing
** Clients
** Contact
** Google map
** Footer
** Another /Buttons, Helper Classes.../
** Buttons
** Animations /On scroll/
** Popup
** Progress Bars
** Collapse
   ================================== */
   
/* ==================================
   Fonts
   ================================== */
@import url(http://fonts.googleapis.com/css?family=Raleway:300,400,400italic,600,700);
@import url(http://fonts.googleapis.com/css?family=Inconsolata:400,400italic,600,700);
/* ==================================
   Basic
   ================================== */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	position: relative;
	background: #F2F2F2;
	color: #666;
	font-family: "Inconsolata", Arial, Helvetica, sans-serif;
	font-size: 15px;
	height: 100%;
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	color: #2b2b2b;
}
p, blockquote {
	font-family: "Inconsolata", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}
blockquote {
	font-style: italic;
	margin: 0 0 1.25rem 0;
	padding: 0 1.25rem 0 1.875rem;
	border-left: 5px solid #101820;
}
blockquote cite {
	display: block;
	font-style: normal;
	margin-top: 1em;
	text-transform: uppercase;
}
a {
	color: #101820;
	text-decoration: none;
}
a:active, a:hover {
	color: #000;
	text-decoration: none;
}
a:focus {
	color: #ccc;
	text-decoration: underline;
	outline: none;
}
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
figure {
	margin: 0;
}
.slider {
	margin-left: 0;
	padding: 0;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.section-header {
	margin: 4em 0;
}
.section-title {
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	letter-spacing: 3px;
	margin: 2em;
}
.section-title::before {
	content: attr(data-text);
	position: relative;
	display: table;
	margin: 1.5em auto;
	font-size: 0.625em;
	line-height: 1;
	font-weight: normal;
	letter-spacing: 2px;
}
.section-title::after {
	content: "";
	display: table;
	margin: 1.5em auto;
	width: 2em;
	height: 1px;
	background-color: #101820;
}
.small-title {
	font-family: "raleway", sans-serif;
	font-weight: bold;
	line-height: 1;
	text-align: left;
	margin-bottom: 1.125em;
}
.small-title::before {
	content: attr(data-text);
	position: relative;
	display: block;
	margin: 0.5rem 0;
	font-size: 12px;
	line-height: 1;
	font-weight: normal;
	color: #7597ba;
}
.small-title::after {
	content: "";
	display: block;
	margin: 1.625em 0;
	width: 2em;
	height: 1px;
	background-color: #101820;
}
.small-title.centered {
	text-align: center;
}
.small-title.centered::after {
	margin: 1.625em auto;
}
.icon {
	font-size: 1.875em;
	line-height: 1;
	display: inline-block;
	color: inherit;
}
.page404 {
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 6em;
	font-weight: bold;
}
/* ==================================
   Preloader
   ================================== */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-flow: row nowrap;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-ms-flex-flow: row nowrap;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #ffffff;
}
.preloader span:nth-child(1), .preloader span:nth-child(2) {
	display: block;
	width: 2em;
	height: 2em;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.preloader span:nth-child(1) {
	-webkit-order: 1;
	order: 1;
	-webkit-animation: left-circle 1.5s infinite ease-in-out;
	animation: left-circle 1.5s infinite ease-in-out;
}
.preloader span:nth-child(2) {
	-webkit-order: 2;
	order: 2;
	-webkit-animation: right-circle 1.5s infinite ease-in-out;
	animation: right-circle 1.5s infinite ease-in-out;
}
@-webkit-keyframes left-circle {
 0% {
 -webkit-transform: translateX(0) rotate(0);
 -moz-transform: translateX(0) rotate(0);
 -ms-transform: translateX(0) rotate(0);
 transform: translateX(0) rotate(0);
}
 50% {
 -webkit-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 -moz-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 -ms-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 transform: translateX(3.125em) scale(1.5) rotate(260deg);
 background: none repeat scroll 0 0 #101820;
}
 100% {
 -webkit-transform: translateX(0) rotate(0);
 -moz-transform: translateX(0) rotate(0);
 -ms-transform: translateX(0) rotate(0);
 transform: translateX(0) rotate(0);
}
}
@-webkit-keyframes right-circle {
 0% {
 -webkit-transform: translateX(0);
 -moz-transform: translateX(0);
 -ms-transform: translateX(0);
 transform: translateX(0);
}
 50% {
 -webkit-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 -moz-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 -ms-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 background: none repeat scroll 0 0 #000;
}
 100% {
 -webkit-transform: translateX(0);
 -moz-transform: translateX(0);
 -ms-transform: translateX(0);
 transform: translateX(0);
}
}
@keyframes left-circle {
 0% {
 -webkit-transform: translateX(0) rotate(0);
 -moz-transform: translateX(0) rotate(0);
 -ms-transform: translateX(0) rotate(0);
 transform: translateX(0) rotate(0);
}
 50% {
 -webkit-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 -moz-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 -ms-transform: translateX(3.125em) scale(1.5) rotate(260deg);
 transform: translateX(3.125em) scale(1.5) rotate(260deg);
 background: none repeat scroll 0 0 #101820;
}
 100% {
 -webkit-transform: translateX(0) rotate(0);
 -moz-transform: translateX(0) rotate(0);
 -ms-transform: translateX(0) rotate(0);
 transform: translateX(0) rotate(0);
}
}
@keyframes right-circle {
 0% {
 -webkit-transform: translateX(0);
 -moz-transform: translateX(0);
 -ms-transform: translateX(0);
 transform: translateX(0);
}
 50% {
 -webkit-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 -moz-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 -ms-transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 transform: translateX(-3.125em) scale(1.5) rotate(-260deg);
 background: none repeat scroll 0 0 #000;
}
 100% {
 -webkit-transform: translateX(0);
 -moz-transform: translateX(0);
 -ms-transform: translateX(0);
 transform: translateX(0);
}
}
/* ==================================
   Social List
   ================================== */
.social-list {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	margin-bottom: 0;
}
.social-list li {
	display: inline-block;
	margin-left: 0.5em;
}
.social-list li:first-child {
	margin-left: 0;
}
.social-list a {
	width: 1.125em;
	height: 2em;
	font-size: 1em;
	line-height: 2em;
	border-radius: 1em;
	color: inherit;
	display: inline-block;
	text-align: center;
	text-decoration: none;
}
.share {
	margin-bottom: 3em;
	text-align: center;
}
/* ==================================
   Navbar
   ================================== */
nav {
	display: table;
	float: right;
	margin: 0 auto;
	position: relative;
	z-index: 1000;
}
.navbar-default {
	display: table-cell;
	vertical-align: middle;
}
.navbar-default li {
	cursor: pointer;
	margin: 0 0 0 30px;
	position: relative;
}
.navbar-default li a {
	color: #2b2b2b;
	display: block;
	font-family: "Raleway", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 16px 0 5px;
	text-decoration: none;
	text-transform: uppercase;
	z-index: 100;
}
.navbar-default li:hover a {
	color: #333333;
	background-color: transparent;
}
.navbar-default li a {
	color: #2b2b2b;
	position: relative;
}
.navbar-default li a::after {
	background: #2b2b2b none repeat scroll 0 0;
	bottom: 5px;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	margin-left: -1px;
	position: absolute;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	width: 0;
}
.is-transparent.navbar-default li a::after {
	background: #ffffff none repeat scroll 0 0;
	bottom: 5px;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	margin-left: -1px;
	position: absolute;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	width: 0;
}
.is-transparent.navbar-default li a {
	color: #fff;
}
.navbar-default li a:hover::after {
	color: #2b2b2b;
	left: 0;
	width: 100%;
}
/*.is-transparent.navbar-fixed-top {
    background-color: #ffffff;
}
.is-transparent.navbar-fixed-top li a::after {
    background: #2b2b2b none repeat scroll 0 0;
    bottom: 5px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin-left: -1px;
    position: absolute;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    width: 0;
}
.is-transparent.navbar-fixed-top .navbar-nav > li > a{color:#2b2b2b;}
..is-transparent.navbar-fixed-top .navbar-nav > li > a:hover,
 ..is-transparent.navbar-fixed-top .navbar-nav > li > a:focus {
    opacity: 1;
    color: #2b2b2b !important;}
.is-transparent.navbar-fixed-top li a:hover::after {
    color: #2b2b2b;
    left: 0;
    width: 100%;
}
 .is-transparent.navbar-fixed-top .navbar-brand {
    color: #777;
  }*/










.navbar-default li.active a::after {
	left: 0;
	width: 100%;
}
.navbar-default .navbar-nav > li.active a {
	background-color: transparent;
}
.navbar-default .dropdown-menu {
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.25) inset;
	box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.25) inset;
}
.navbar-default .dropdown-menu > li {
	margin: 0 10px;
}
.navbar-default .dropdown-menu > li > a {
	padding: 6px 20px;
	color: #838379;
}
.navbar-default .dropdown-menu > li > a:hover {
	background: none;
	color: #101820;
}

@media only screen and (min-width: 991px) {
.is-transparent {
	background-color: transparent;
	border-color: transparent;
	padding: 1em;
}
.navbar-brand img#logo-white {
	display: none;
}
.is-transparent .navbar-brand {
	color: #ffffff;
}
.is-transparent .navbar-brand img#logo-black {
	display: none;
}
.is-transparent .navbar-brand img#logo-white {
	display: inline-block;
}
.is-transparent .navbar-brand:hover {
	color: #4285f4;
}
.is-transparent .navbar-nav > li > a {
	color: #ffffff;
	
}
.is-transparent .navbar-nav > li > a:hover,  .is-transparent .navbar-nav > li > a:focus {
	color: #ffffff;
	opacity: 1;
}
.is-transparent .dropdown-menu {
	background-color: rgba(0, 0, 0, 0.25);
	border: none;
	-webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.25) inset;
	box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.25) inset;
}
.is-transparent .dropdown-menu > li > a {
	color: #ffffff;
	opacity: 0.7;
}
.is-transparent .dropdown-menu > li > a:hover {
	color: #ffffff;
	opacity: 1;
}
.has-dropdown {
	position: relative;
}
.navbar-right .has-dropdown > .dropdown-menu {
	right: 100%;
	top: -25%;
}
}

@media only screen and (min-width: 320px)  and (max-width: 768px) {
.is-transparent.navbar-default {
	background-color: #fff;
	
}
.navbar-brand {
	display:inline-block;
	padding-top: 0px;
}
.navbar-brand img#logo-white {
	display: none;
}
.navbar-default li {
	margin: 0 20px;
}
.navbar-default li a, .is-transparent.navbar-default li a {
	color: #000;
	padding: 10px 15px;
}
.is-transparent.navbar-default li a::after {
	background-color: #000
}
.navbar-default li.active a, .is-transparent.navbar-default li.active a {
	color: #000
}
.navbar-default li.dropdown.open ul li {
	margin: 0 20px;
	padding: 10px 15px;
}
.navbar-default li.dropdown.open ul li a {
	padding: 0;
}
}

@media only screen and (min-width: 768px)  and (max-width: 999px) {
.navbar-default li {
	margin: 0 0 0 27px;
}
.navbar-default li a, .is-transparent.navbar-default li a {
	color: #000;
	padding: 15px 0;
}
.is-transparent.navbar-default li a::after {
	background-color: #000
}
.navbar-default li.active a, .is-transparent.navbar-default li.active a {
	color: #000
}
}
.dropdown:hover > .dropdown-menu {
	display: block;
}
.has-dropdown:hover > .dropdown-menu {
	display: block;
}
/* ==================================
   Header                   
   ================================== */
.header {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-ms-flex-flow: column wrap;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 75%;
	min-height: 75vh;
	padding: 2em;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/placeholder1.jpg) no-repeat scroll center center #c8c9c7;
	background-size: cover;
}
.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #000;
	opacity: 0.5;
}
.header .button {
	margin-bottom: 0;
}
.hero {
	height: 100%;
	min-height: 100vh;
	background: url(../img/backgrounds/Hero1.jpg) no-repeat scroll center center #c8c9c7;
	background-size: cover;
}
.banner {
	z-index: 2;
}
.banner h1, .banner h4, .banner p, .banner h2 {
	color: #ffffff;
}
.banner .btn {
	margin-top: 1em;
}
.scroll-down {
	position: absolute;
	right: 0;
	bottom: 1em;
	left: 0;
	margin: auto;
	display: block;
	width: 2em;
	height: 2em;
}
.scroll-down:hover {
	-webkit-animation: simAnim 1s infinite;
	animation: simAnim 1s infinite;
}
@-webkit-keyframes simAnim {
 from {
 bottom: 1em;
}
 to {
 bottom: 0;
}
}
@keyframes simAnim {
 from {
 bottom: 1em;
}
 to {
 bottom: 0;
}
}

@media only screen and (max-width: 40em) {
.header {
	min-height: 75%;
	height: auto;
}
.hero {
	min-height: 100%;
}
}
/* ==================================
   About
   ================================== */
.about {
	width: 100%;
	height: auto;
	padding-top: 4em;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 4em;
	text-align: center;
	background: none no-repeat scroll center center #ffffff;
}
.mockup {
	overflow: hidden;
}
.mockup img {
	margin-top: -1em;/*only demo*/

}
/* ==================================
   Features                   
   ================================== */
.features {
	width: 100%;
	height: auto;
	padding: 3em 0;
	text-align: center;
	border-top: 1px solid #F1F1F1;
	background: none no-repeat scroll center center #ffffff;
}
.feature {
	padding: 2.5em 12%;
	text-align: center;
}
.feature .fa, .feature .linea {
	font-size: 1.875em;
	color: #838379;
}
/* ==================================
   Quotes
   ================================== */
.quotes {
	position: relative;
	padding: 7em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero2.jpg) no-repeat scroll center center #ffffff;
	background-size: cover;
}
.quotes::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #3d3935;
	opacity: 0.3;
}
.quote-list {
	list-style: none;
	margin: 0;
	padding: 0;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.quote-list li {
	display: inline-block;
}
.quote {
	margin: 0;
	padding: 1em;
	border-left: none;
	color: inherit;
}
.quote cite {
	display: block;
	font-size: 14px;
}
/* ==================================
   Portfolio                  
   ================================== */
nav.popup-nav {
	display: block;
	float: none;
	margin: 0 auto;
	position: relative;
	z-index: 1000;
}
.story {
	position: relative;
	padding: 7em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero5.jpg) no-repeat scroll center center #ffffff;
	background-size: cover;
	background-color: #3d3935;
}
.story::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #3d3935;
	opacity: 0.3;
}
.portfolio {
	position: relative;
	width: 100%;
	height: auto;
	padding: 2em 0 4em;
	text-align: center;
	background-color: #fff;
}
.isotope {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/* clear fix */
.isotope::after {
	content: '';
	display: block;
	clear: both;
}
.item {
	position: relative;
	float: left;
	height: auto;
	overflow: hidden;
	background-color: rgba(244, 243, 243, 0.2);
	margin-bottom: 0.875em;
}
.grid-sizer, .gutter-sizer {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}
.item, .grid-sizer {
	width: 32.5%;
}
.gutter-sizer {
	width: 1%;
}

@media (max-width: 768px) {
.item,  .grid-sizer {
	width: 99%;
}
.gutter-sizer {
	width: 1%;
}
}

@media (min-width: 768px) and (max-width: 970px) {
.item,  .grid-sizer {
	width: 31%;
}
.gutter-sizer {
	width: 2%;
}
}
.item-figure {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #B2B2B2;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.item-figure img {
	position: relative;
	display: block;
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	-moz-transition: opacity 0.35s, -moz-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05, 1.05, 1);
	-moz-transform: scale3d(1.05, 1.05, 1);
	transform: scale3d(1.05, 1.05, 1);
}
.item-figure p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 3em;
	padding: 0 1em;
	max-width: 150px;
	border-right: 4px solid #666;
	text-align: right;
	opacity: 0;
	color: #222;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	transition: opacity 0.35s;
}
.item-figure:hover img {
	opacity: 0.15;
	-webkit-transform: scale3d(1, 1, 1);
	-moz-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.item-figure:hover .overlay:before {
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
.item-figure:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 110%;
	height: 110%;
	background: rgba(255, 255, 255, 0.5);
	-webkit-transition: -webkit-transform 0.6s;
	-moz-transition: -moz-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.overlay > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.filter {
	display: table;
	margin: 0 auto 3em;
	padding: 0;
	list-style: none;
}
.filter li {
	display: inline-block;
	margin-right: 0.5em;
}
.filter li:last-child {
	margin-right: 0;
}
.btn.load-more {
	display: inline-block;
	margin-top: 3em;
}
/* ==================================
   Call To Action
   ================================== */
.call-to {
	position: relative;
	padding: 6em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero3.jpg) no-repeat fixed center center #101820;
	background-size: cover;
}
.call-to::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #fff;
	opacity: 0.7;
}
.call-to .button {
	margin-top: 4em;
}
.action {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	-webkit-align-content: center;
	-webkit-align-items: center;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

@media only screen and (max-width: 40em) {
.action {
	-webkit-flex-direction: column;
	flex-direction: column;
}
}
/* ==================================
   Services                   
   ================================== */
.services {
	position: relative;
	width: 100%;
	height: auto;
	padding: 2em 0 4em;
	text-align: center;
}
.service-list {
	margin: 2em 0;
}
.service {
	padding: 1.5em;
	margin: 0.9375em 0.25em;
	color: #101820;
	background: none repeat scroll center center #ffffff;
}
.service .fa, .service .linea {
	font-size: 2em;
	color: #d6d2c4;
	color: #a29979;
}
.service h5 {
	margin: 1.875em 0;
}
.service:hover .fa, .service:hover .icon {
	opacity: 0.35;
	color: #4285f4;
	-webkit-transform: translateY(1.625em) scale(2);
	-moz-transform: translateY(1.625em) scale(2);
	-ms-transform: translateY(1.625em) scale(2);
	transform: translateY(1.875em) scale(2);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	-moz-transition: opacity 0.35s, -moz-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
/* ==================================
   Counters                   
   ================================== */
.counters {
	position: relative;
	width: 100%;
	height: auto;
	padding: 8em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero4.jpg) no-repeat scroll center center #101820;
	background-size: cover;
}
.giving {
	position: relative;
	width: 100%;
	height: auto;
	padding: 8em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero4.jpg) no-repeat scroll center center #101820;
	background-size: cover;
	/*background-color: #000;*/
	opacity: 0.9 #000;
}
.giving a {
	color: #46A0F5;
}
.giving::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #3d3935;
	opacity: 0.7;
	font: #FFFFFF;
}
.giving h1 h2 h3 h4 h5 {
	color: #ffffff;
}
.counters::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #000;
	opacity: 0.7;
}
.numbers {
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	color: inherit;
	text-align: center;
}
.number {
	display: block;
	min-height: 1em;
	font-size: 2em;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 1px;
}
.number-info {
	display: block;
	font-size: 0.8em;
	line-height: 2;
	margin-top: 0.875em;
	text-transform: uppercase;
}

@media only screen and (max-width: 40em) {
#counters {
	background-size: cover;
	height: auto;
	min-height: 100%;
}
.counters {
	position: relative;
	z-index: 999;
}
}
/* ==================================
   Team
   ================================== */
.team {
	position: relative;
	width: 100%;
	height: auto;
	padding: 2em 0 4em;
	text-align: center;
	background: #ffffff;
}
.team .overlay a {
	text-indent: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.members {
	margin: 4em 0;
}
.team-figure {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: -webkit-linear-gradient(-45deg, #34495e 0%, #fff0c0 100%);
	background: linear-gradient(-45deg, #34495e 0%, #fff0c0 100%);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.team-figure img {
	position: relative;
	display: block;
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	-moz-transition: opacity 0.35s, -moz-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
.team-figure:hover img {
	opacity: 0.1;
	-webkit-transform: scale3d(2, 2, 1);
	-moz-transform: scale3d(2, 2, 1);
	transform: scale3d(2, 2, 1);
}
.team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.team-overlay ul {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	height: 3em;
	margin: 1em 10%;
	color: #ffffff;
	background: none;
	border: 2px solid #ffffff;
	opacity: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	-moz-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transform-origin: 50% -100%;
	-moz-transform-origin: 50% -100%;
	-ms-transform-origin: 50% -100%;
	transform-origin: 50% -100%;
}
.team-overlay:hover ul {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	-moz-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.member-name {
	text-transform: uppercase;
	text-align: center;
	margin: 1.625em 0;
	font-weight: bold;
}
.member-name::before {
	content: attr(data-text);
	position: relative;
	display: table;
	margin: 1.5em auto;
	font-size: 0.625em;
	line-height: 1;
	font-weight: normal;
	color: #838379;
}
.member-name::after {
	content: "";
	display: table;
	margin: 1.5em auto;
	width: 3em;
	height: 1px;
	background-color: #101820;
}
/* ==================================
   Skills                   
   ================================== */
.skills {
	position: relative;
	width: 100%;
	height: auto;
	padding: 8em 0;
	text-align: center;
	color: #ffffff;
	background: url(../img/backgrounds/Hero5.jpg) no-repeat scroll center #101820;
	background-size: cover;
}
.skills h5 {
	color: #fff;
}
.skills::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #000;
	opacity: 0.7;
}
.chart {
	position: relative;
	text-align: center;
	height: 110px;
	max-height: 110px;
	margin: 1.25em 0 1em;
}
.chart .percent {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	height: 1em;
	color: inherit;
	font-size: 2em;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 1px;
}
/* ==================================
   Blog
   ================================== */
.blog {
	position: relative;
	width: 100%;
	height: auto;
	padding: 2em 0 1em;
	text-align: center;
}
/* clear fix */
#list-masonry::after {
	content: "";
	display: block;
	clear: both;
}
.post {
	padding: 1em 0 3em;
	margin: 2em 0 3em;
	text-align: left;
	border-bottom: 1px solid #f6f6f6;
}
.post:last-child {
	margin-bottom: 1.5em;
	border-bottom: none;
}
.post-media {
	margin-bottom: 2em;
}
.post-title {
	margin-bottom: 1em;
	font-weight: bold;
}
.post.preview {
	padding: 0 0 3em;
}
.post.preview .post-media {
	margin-bottom: 1em;
}
.post.gridview {
	text-align: center;
	margin-top: 0;
	border: none;
}
.meta-list {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}
.meta-list li {
	display: inline-block;
	position: relative;
}
.meta-list li:last-child .meta {
	margin-right: 0;
}
.meta-list li:last-child .meta::after {
	content: none;
}
.meta {
	position: relative;
	font-family: "Roboto Regular", sans-serif;
	font-size: 0.75em;
	line-height: 1.4;
	color: #838379;
	text-transform: uppercase;
	margin-right: 1.5em;
}
.meta::before {
	content: attr(data-text);
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin-right: 0.125em;
	color: #838379;
}
.meta::after {
	content: "";
	display: inline;
	position: absolute;
	top: 41%;
	right: -12px;
	width: 4px;
	height: 4px;
	background-color: #838379;
}
.post-text {
	margin: 1em 0 2em;
}
/* Comments */
.comments {
	padding: 1em 0 3em;
	margin: 2em 0 3em;
}
.comments-list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: justify;
}
.comments-list li {
	padding: 1.5em 0;
	border-top: 1px solid #f6f6f6;
}
.comments-list > li:first-child {
	border-top: none;
}
.comments-list ul {
	list-style: none;
	margin: 0;
	padding: 1.5em 0 0 4.125em;
}
.comments-list ul li:last-child {
	padding-bottom: 0;
}
.comments-list ul.meta-list {
	display: inline;
	padding: 0;
}
.comments-list ul.meta-list li {
	padding: 0;
	border-top: none;
}
.comments-list ul.meta-list .meta {
	margin-right: 1.5em;
}
.avatar {
	float: left;
	width: 3.25em;
	height: 3.25em;
	margin-right: 1.125em;
}
.comment {
	overflow: hidden;
}
.comment h6 {
	display: inline;
}
.comment .meta {
	margin-right: 0.125em;
}
.comment p {
	margin: 1.5em 0 1.875em;
}
.author {
	display: inline;
	text-transform: uppercase;
	margin-right: 0.625em;
}
/* Reply form */
.leave-reply {
	margin: 1em 0;
}
/* Sidebar, Widgets */
.sidebar {
	position: relative;
	padding: 2.25em 0;
	text-align: left;
}
.widget {
	position: relative;
	display: block;
	margin-bottom: 0.625em;
}
.latest-post {
	list-style: none;
	margin: 0;
	padding: 0;
}
.latest-post li {
	display: block;
	margin-bottom: 0.625em;
}
.latest-post li::after {
	content: "";
	display: block;
	width: 2em;
	height: 1px;
	margin-top: 0.625em;
	background: none repeat scroll 0 0 #101820;
}
.latest-post li:last-child::after {
	background: none repeat scroll 0 0 transparent;
}
.latest-post li .meta::before, .latest-post li .meta::after {
	content: none;
}
.latest-post .post-title {
	display: block;
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.6;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
}
.categories-list {
	list-style: none;
	margin: 0;
	margin-bottom: 0.625em;
	padding: 0;
}
.categories-list li {
	position: relative;
	display: block;
	margin-bottom: 0;
}
.categories-list li::before {
	content: "";
	display: inline;
	position: absolute;
	top: 45%;
	left: 0;
	width: 4px;
	height: 4px;
	background-color: #838379;
}
.categories-list li a {
	margin-left: 1em;
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.6;
	font-weight: bold;
	text-transform: uppercase;
}
.categories-list li a::after {
	content: attr(data-text);
	display: inline;
	font-size: inherit;
	line-height: inherit;
	font-weight: bold;
	margin-left: 0.125em;
	color: #838379;
}
.tags-list {
	list-style: none;
	margin: 0 0 3em;
	padding: 0;
	padding-right: 2em;
}
.tags-list li {
	display: inline-block;
	margin: 0.25em 0.25em 0.25em 0;
}
/* ==================================
   Tweets
   ================================== */
.tweets {
	position: relative;
	width: 100%;
	height: auto;
	padding: 6em 0;
	text-align: center;
	background: #fff;
	background-size: cover;
}
.tweets::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.4;
}
.twitter-carousel {
	width: 100%;
	height: auto;
	margin: 3em 0;
}
.twitter-feed {
	font-family: "Roboto Regular", sans-serif;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
	text-align: center;
}
.twitter-feed ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tweet_text, .tweet_time, .tweet_user {
	display: block;
}
.tweet_text {
	padding: 0.4em;
	line-height: 1.4;
	color: #ffffff;
}
.tweet_text a {
	font-family: inherit;
	color: #dbe4ed;
}
.tweet_text a:hover {
	color: #b9cadc;
}
.tweet_time a {
	color: #dbe4ed;
}
.tweet_time a:hover {
	color: #b9cadc;
}
.tweet_user {
	color: #dbe4ed;
	line-height: 1;
}
.tweet_user:hover {
	color: #b9cadc;
}
.tweet_user::before {
	content: "@";
	color: #dbe4ed;
}
.tweet_user::before:hover {
 color: #b9cadc;
}
/* ==================================
   Pricing                   
   ================================== */
.pricing {
	width: 100%;
	height: auto;
	padding: 6em 0;
	text-align: center;
	background: none no-repeat scroll center center #f2f2f2;
}
.pricing-table {
	list-style: none;
	padding: 3.5em 3.5em 4.5em;
	margin: 0.9375em 1em;
	background: none repeat scroll center center #ffffff;
	text-align: center;
}
.pricing-table .title {
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	background: #ffffff none repeat scroll 0 0;
	border-bottom: 1px solid #d8d8d8;
	color: #2b2b2b;
	margin-top: 20px;
	padding: 10px 0 12px;
	position: relative;
	font-size: 24px;
	line-height: 1.35;
	font-weight: 600;
}
.pricing-table .title::after {
	background: #ffffff none repeat scroll 0 0;
	bottom: -5px;
	content: "";
	height: 12px;
	left: 50%;
	margin-left: -6px;
	position: absolute;
	transform: rotate(45deg);
	width: 12px;
}
.pricing-table .title::before {
	background: #dddddd none repeat scroll 0 0;
	bottom: -7px;
	content: "";
	height: 12px;
	left: 50%;
	margin-left: -6px;
	position: absolute;
	transform: rotate(45deg);
	width: 12px;
}
.pricing-table.highlighted .title::before {
	background: #2b2b2b none repeat scroll 0 0;
}
.pricing-table.highlighted .title {
	background: #ffffff none repeat scroll 0 0;
	border-bottom: 1px solid #2b2b2b;
}
.pricing-table .uppercase {
	margin-bottom: 0;
	padding-top: 5px;
	position: relative;
}
.pricing-table .uppercase {
	color: #2b2b2b;
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.pricing-table .price {
	color: #2b2b2b;
	font-size: 60px;
	font-weight: 400;
	margin: 0.875em 0;
}
.pricing-table .price sup {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	padding-right: 5px;
	vertical-align: super;
}
.pricing-table .description {
	margin-bottom: 0.5em;
}
.pricing-table .cta-button {
	margin-top: 3em;
}
.line-through {
	color: #bbbbbb;
	text-decoration: line-through;
}
/* ==================================
   Clients
   ================================== */
.clients {
	position: relative;
	width: 100%;
	height: auto;
	padding: 7em 0;
	text-align: center;
	background: #FFF;
	background-size: cover;
}
.clients::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.4;
}
.brands {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.brands img {
	margin: auto;
	opacity: 0.4;
	transition: all 0.2s ease 0s;
}
.brands img:hover {
	opacity: 1;
	transition: all 0.2s ease 0s;
}
/* ==================================
   Contact
   ================================== */
.contact {
	position: relative;
	width: 100%;
	height: auto;
	padding: 2em 0 4em;
	text-align: center;
}
.address {
	text-align: left;
	margin-bottom: 3em;
}
.address .fa, .address .icon {
	display: block;
	float: left;
	width: 2em;
	height: 2em;
	font-size: 1.625em;
	text-align: center;
	margin-bottom: 0.375em;
}
.form-detached {
	margin-bottom: 2em;
}
.contact-form {
	text-align: center;
}
.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857;
	color: #555;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #d9d9d6;
	border-radius: 1px;
	box-shadow: none;
}
.form-control:focus {
	border-color: #838379;
	outline: 0px none;
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075), 0px 0px 3px rgba(217, 217, 214, 0.3);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075), 0px 0px 3px rgba(217, 217, 214, 0.3);
}
/* ==================================
   Google map
   ================================== */
.map {
	position: relative;
	width: 100%;
	height: 8em;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
#my-map {
	width: 100%;
	height: 40em;
}
.show-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0.25em 0;
	display: -webkit-box;
	display: -webkit-flex;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	z-index: 2;
	cursor: pointer;
}
.show-map span, .show-map i {
	display: block;
	color: #2b2b2b;
}
.opened {
	height: 40em;
}
.opened .show-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: table;
	text-align: center;
	z-index: 2;
}
.map.opened .helper {
	padding: 1em 0;
}
/* ==================================
   Footer
   ================================== */
.footer {
	position: relative;
	bottom: 0;
	width: 100%;
	height: auto;
	text-align: center;
	background-color: #2b2b2b;
	line-height: 26px;
}
.footer .container {
	padding-bottom: 39px;
	padding-top: 39px;
}
.footer h6 {
	margin: 1.5em 0;
}
.footer h6 a {
	position: relative;
	display: table;
	padding: 0;
	margin: auto;
	font-weight: normal;
	text-transform: uppercase;
	color: #101820;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.footer .social-list.alignright i.fa {
	margin-left: 3px;
}
.footer .social-list li a i {
	color: #8d8d8d;
	font-size: 16px;
	position: relative;
	top: 2px;
}

@media only screen and (min-width: 40.063em) {
.footer.fixed-bottom {
	position: fixed;
	z-index: -99;
}
.footer.fixed-bottom h6 {
	margin-top: 0;
}
}
/* ==================================
   Another /Buttons, Helper Classes.../ 
   ================================== */
/* ==================================
   Buttons
   ================================== */
.btn {
	border: 2px solid #2b2b2b;
	color: #2b2b2b;
	display: inline-block;
	font-family: "Raleway", "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 10px 0;
	padding: 12px 25px 10px;
	position: relative;
	text-shadow: none !important;
	text-transform: uppercase;
	transition: all 0.2s ease 0s;
	z-index: 1;
	border-radius: 0;
	background-color: transparent;
}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
}
.btn:hover, .btn:focus, .btn.focus {
	color: #101820;
	text-decoration: none;
}
.btn-default {
	color: #2b2b2b
}
.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
	color: #FFF;
	background-color: #000;
	border-color: transparent;
}
.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
	background-image: none;
}
.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
	background-color: #ffffff;
	border-color: #c8c9c7;
}
.btn-default .badge {
	color: #ffffff;
	background-color: #101820;
}
.btn-primary {
	color: #ffffff;
	background-color: #6787b7;
	border-color: #5679af;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
	color: #ffffff;
	background-color: #4c6d9f;
	border-color: #405d87;
}
.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
	background-image: none;
}
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
	background-color: #6787b7;
	border-color: #5679af;
}
.btn-primary .badge {
	color: #6787b7;
	background-color: #ffffff;
}
.btn-success {
	color: #ffffff;
	background-color: #789d4a;
	border-color: #6b8c42;
}
.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
	color: #ffffff;
	background-color: #5e7a3a;
	border-color: #4b622e;
}
.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
	background-image: none;
}
.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
	background-color: #789d4a;
	border-color: #6b8c42;
}
.btn-success .badge {
	color: #789d4a;
	background-color: #ffffff;
}
.btn-info {
	color: #ffffff;
	background-color: #7ba4db;
	border-color: #6796d6;
}
.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
	color: #ffffff;
	background-color: #5388d0;
	border-color: #3775c8;
}
.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
	background-image: none;
}
.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
	background-color: #7ba4db;
	border-color: #6796d6;
}
.btn-info .badge {
	color: #7ba4db;
	background-color: #ffffff;
}
.btn-warning {
	color: #ffffff;
	background: rgba(0, 0, 0, 0);
	border: 2px solid #fff;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
	color: #ffffff;
	background-color: #000;
	border-color: transparent;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
	background-image: none;
}
.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
	background-color: #000;
	border-color: #e9943d;
}
.btn-warning .badge {
	color: #eca154;
	background-color: #ffffff;
}
.btn-slide:hover {
	color: #000;
	background-color: #ffffff;
	border: 2px solid #fff;
}
.btn-danger {
	background-color: #ffffff;
	border-color: transparent;
	color: #2b2b2b;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
	color: #ffffff;
	background-color: #111111;
	border-color: #000;
}
.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
	background-image: none;
}
.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
	background-color: #c26e60;
	border-color: #bb5d4e;
}
.btn-danger .badge {
	color: #c26e60;
	background-color: #ffffff;
}
.btn-link {
	color: #337ab7;
	font-weight: normal;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
	border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
	color: #23527c;
	text-decoration: underline;
	background-color: transparent;
}
.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
	color: #6a8fb4;
	text-decoration: none;
}
.btn-sm, .btn-group-sm > .btn {
	font-size: 10px;
	line-height: 1.5;
	padding: 5px 11px;
}
.label-default {
	background-color: #6a8fb4;
}
.label-default[href]:hover, .label-default[href]:focus {
	background-color: #4e769d;
}
.label-primary {
	background-color: #6787b7;
}
.label-primary[href]:hover, .label-primary[href]:focus {
	background-color: #4c6d9f;
}
.label-success {
	background-color: #789d4a;
}
.label-success[href]:hover, .label-success[href]:focus {
	background-color: #5e7a3a;
}
.label-info {
	background-color: #7ba4db;
}
.label-info[href]:hover, .label-info[href]:focus {
	background-color: #5388d0;
}
.label-warning {
	background-color: #eca154;
}
.label-warning[href]:hover, .label-warning[href]:focus {
	background-color: #e78826;
}
.label-danger {
	background-color: #c26e60;
}
.label-danger[href]:hover, .label-danger[href]:focus {
	background-color: #ad5142;
}
/* ==================================
   Animations /On scroll/
   ================================== */
.animated {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.delay-01 {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-ms-animation-delay: 0s;
	animation-delay: 0s;
}
.animated.delay-02 {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.animated.delay-03 {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	animation-delay: 1s;
}
.animated.delay-04 {
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-ms-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.animated.delay-05 {
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	animation-delay: 2s;
}
.animated.delay-06 {
	-webkit-animation-delay: 2.5s;
	-moz-animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	animation-delay: 2.5s;
}
/* ==================================
   Create delay as follows:
.animated.delay-[time] {
    -webkit-animation-delay: [time]s;
       -moz-animation-delay: [time]s;
        -ms-animation-delay: [time]s;
            animation-delay: [time]s;
}
================================== */
/* ==================================
   Popup
   ================================== */
.white-popup {
	position: relative;
	background: #ffffff;
	padding: 0;
	width: auto;
	max-width: 1170px;
	margin: 0 auto;
}
.mfp-content {
	width: 100%;
	background: none no-repeat scroll center center #e2ddd4;
	margin: 0 auto;
	padding: 0;
}
.popup-nav {
	background: #ffffff;
	border: 1px solid #c8c9c7;
}
.controls {
	list-style: none;
	margin: 0;
	padding: 2em 0;
}
.controls li {
	display: inline-block;
}
.controls li:last-child {
	float: right;
}
.controls a {
	width: 2.25em;
	height: 2.25em;
	font-size: 1em;
	line-height: 2.25em;
	display: inline-block;
	text-align: center;
	color: #c8c9c7;
	border: 1px solid #c8c9c7;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.controls a:hover {
	color: #2f302e;
}
.popup-wrap {
	margin: 5em 0;
}
.popup-slider {
	list-style: none;
	margin: 0;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.popup-slider.slick-slider {
	margin: 0;
	padding: 0;
}
.project-wrap {
	padding: 1.875em;
	background: #ffffff;
}
.project-wrap .btn {
	margin-top: 1.2em;
}
/* ==================================
   Progress Bars
   ================================== */
.progress {
	margin-bottom: 20px;
	background-color: #d9d9d6;
	border-radius: 0px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset;
}
.skill {
	width: 0;
	-webkit-transition: width 2s ease-in;
	-moz-transition: width 2s ease-in;
	-o-transition: width 2s ease-in;
	transition: width 2s ease-in;
}
/* ==================================
   Collapse
   ================================== */
.panel-group .panel {
	margin-bottom: 0px;
	border-radius: 1px;
}
.panel-default > .panel-heading {
	color: #333;
	background-color: #ffffff;
	border-color: #DDD;
}
.panel-title {
	font-family: "Roboto Regular", sans-serif;
}
