/*---------------------------------------------------------
Table of Content

1.General
2.Preloader
3.Navigation

---------------------------------------------------------*/


/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/


@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700');


.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
}

.oh {
    overflow: hidden;
}

.relative {
    position: relative;
}

.section-wrap {
    padding: 100px 0;
    overflow: hidden;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-wrap-lg {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

.mobile section {
    background-attachment: scroll !important;
}

.static {
    position: static;
}

.color-white {
    color: #fff !important;
}

.color-green {
    color: #2cb8a5 !important;
}

.left {
    float: left;
}

.right {
    float: right;
}

.bg-light {
    background-color: #dcdcdc;
}

.bg-dark {
    background-color: #121212;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.last {
    margin-bottom: 0 !important;
}

::-moz-selection {
    color: #fff;
    background: #2cb8a5;
}

::-webkit-selection {
    color: #fff;
    background: #2cb8a5;
}

::selection {
    color: #fff;
    background: #2cb8a5;
}

a {
    text-decoration: none;
    color: #2cb8a5;
    outline: none;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.dark-link {
    color: #121212;
}

.dark-link:hover {
    color: #2cb8a5;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2cb8a5;
    outline: none;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.5;
	letter-spacing: 0.04em;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    background: #fff;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: #7a7a7a;
}

video {
    height: 100%;
    width: 100%;
}

body img {
    border: none;
    max-width: 100%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    margin-top: 0;
    color: #121212;
    font-weight: 600;
    line-height: 1.5;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    color: inherit;
}

p {
    font-size: 14px;
    color: #7a7a7a;
    font-weight: normal;
    line-height: 26px;
}


/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 5px;
    width: 5em;
    height: 5em;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    border-top: 0.5em solid rgba(44, 184, 165, 1);
    border-right: 0.5em solid rgba(245, 245, 245, .5);
    border-bottom: 0.5em solid rgba(245, 245, 245, .5);
    border-left: 0.5em solid rgba(245, 245, 245, .5);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Scroll Down icon
-------------------------------------------------------*/

.scroll-down {
    font-size: 34px;
    width: 20px;
    height: 34px;
	font-family: "Montserrat", sans-serif;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px%;
	border: 1px solid #fff;
    text-align: center;
    line-height: 34px;
    z-index: 50 !important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -10px;
	opacity: 0.7;
}

@-webkit-keyframes scroll-down-icon {
    0% {
        bottom: 3px;
		opacity: 0;
    }
    50% {
        bottom: 12px;
		opacity: 0;
    }
    100% {
        bottom: 3px;
    }
}

@-moz-keyframes scroll-down-icon {
    0% {
        bottom: 3px;
		opacity: 0;
    }
    50% {
        bottom: 12px;
		opacity: 0;
    }
    100% {
        bottom: 3px;
    }
}

@-o-keyframes scroll-down-icon {
    0% {
        bottom: 3px;
		opacity: 0;
    }
    50% {
        bottom: 12px;
		opacity: 0;
    }
    100% {
        bottom: 3px;
    }
}

@keyframes scroll-down-icon {
    0% {
        bottom: 3px;
		opacity: 0;
    }
    50% {
        bottom: 12px;
		opacity: 0;
    }
    100% {
        bottom: 3px;
    }
}

.scroll-down i {
    color: #fff;
    -webkit-animation: scroll-down-icon 1s infinite;
    -moz-animation: scroll-down-icon 1s infinite;
    -o-animation: scroll-down-icon 1s infinite;
    animation: scroll-down-icon 1s infinite;
    position: absolute;
    left: 5.5px;
}


/*-------------------------------------------------------*/
/* Navigation Menu
/*-------------------------------------------------------*/

.navbar {
    margin-bottom: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    z-index: 1200;
}

.navbar.navbar-fixed-top {
    padding-left: 40px;
    padding-right: 40px;
}

.navbar.white {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.3);
}

.navbar.transparent {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar.navbar-fixed-top.transparent .navbar-collapse {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar.navbar-fixed-top ul.navbar-right {
    margin-right: 0px;
}

.navbar.shrink {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar.container-fluid {
    position: relative;
}

@media (max-width: 767px) {
    .navbar.transparent {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
}

@media (min-width: 768px) {
    .navbar.navbar-fixed-top ul.nav > li {
        margin-top: 70px;
        margin-bottom: 16px;
        margin-left: 24px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
	
    .navbar.navbar-fixed-top ul.nav > li > a {
        font-family: 'Raleway', sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 1;
        font-weight: 400;
        text-decoration: none;
        letter-spacing: 0.1em;
        padding: 0;
        background-color: transparent;
    }
	
	
    .navbar.navbar-fixed-top.transparent ul.nav > li > a {
        color: #d9d9d9;
    }
	
	.navbar.navbar-fixed-top ul.nav > li > a::before {
		content: '';
		display: block;
		position: absolute;
		bottom: -17px;
		left: 0;
		height: 4px;
		width: 100%;
		background-color: transparent;
		transform-origin: center top;
		transform: scale(0, 1);
		transition: color 0.1s,transform 0.3s ease-out;
	}
	
	.navbar.navbar-fixed-top.transparent ul.nav > li > a:hover,
    .navbar.navbar-fixed-top.transparent ul.nav > li.active > a {
        color: #fff;
        background-color: transparent;
    }
	
	.navbar.navbar-fixed-top.transparent ul.nav > li > a:hover::before,
	.navbar.navbar-fixed-top.transparent ul.nav > li.active > a::before {
		transform-origin: center top;
		transform: scale(1, 1);
		background-color: #fff;
	}
	
    .navbar.navbar-fixed-top.white ul.nav > li > a {
        color: #bbbbbb;
    }
	
	.navbar.navbar-fixed-top.white ul.nav > li > a:hover,
    .navbar.navbar-fixed-top.white ul.nav > li.active > a {
        color: #000;
        background-color: transparent;
    }
	
	.navbar.navbar-fixed-top.white ul.nav > li > a:hover::before,
	.navbar.navbar-fixed-top.white ul.nav > li.active > a::before {
		transform-origin: center top;
		transform: scale(1, 1);
		background-color: #000;
		bottom: -16px;
	}
	
    .navbar.navbar-fixed-top.shrink ul.nav > li {
        margin-top: 24px;
        margin-bottom: 22px;
    }
	
    .navbar.navbar-fixed-top.shrink ul.nav > li > a {
        color: #bbbbbb;
        padding: 0;
    }
	
	.navbar.navbar-fixed-top.shrink ul.nav > li > a:hover,
    .navbar.navbar-fixed-top.shrink ul.nav > li.active > a {
        color: #000;
        background-color: transparent;
    }
	
	.navbar.navbar-fixed-top.shrink ul.nav > li > a:hover::before,
	.navbar.navbar-fixed-top.shrink ul.nav > li.active > a::before {
		transform-origin: center top;
		transform: scale(1, 1);
		background-color: #000;
		bottom: -22px;
	}
}


/* Logo */

.navbar.navbar-fixed-top .navbar-brand {
    margin-top: 44px;
    /* 100px - height logo */
    margin-bottom: 16px;
    height: 40px;
    margin-left: 0;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	color: #000;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 2px;
	font-family: 'Raleway', sans-serif;
}

.navbar.navbar-fixed-top .navbar-brand img.logo {
    width: auto;
    height: 40px;
	/* Height logo */
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	display: inline-block;
}

.navbar.navbar-fixed-top .navbar-brand .logo-text-black {
	color: #000;
	width: auto;
    height: 40px;
	line-height: 40px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
}

.navbar.navbar-fixed-top .navbar-brand .logo-text-white {
	color: #fff;
	width: auto;
    height: 40px;
	line-height: 40px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
}

@media (max-width: 767px) {
    .navbar.navbar-fixed-top .navbar-brand {
        position: absolute;
        height: 100%;
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
	
    .navbar.navbar-fixed-top .navbar-brand img.logo {
        height: 40px;
    }
}

@media (min-width: 768px) {
    .navbar.navbar-fixed-top.shrink .navbar-brand {
        margin-top: 10px;
        margin-bottom: 10px;
        height: 40px;
    }
	
    .navbar.navbar-fixed-top.shrink .navbar-brand img.logo {
        width: auto;
        height: 40px;
    }
}


/* Overlay Menu */

@media (max-width: 767px) {
    .navbar.navbar-fixed-top {
        height: 60px;
        float: none;
        display: block;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
	
    .navbar-toggle {
        position: fixed;
        top: 13px;
        right: 4px;
        width: 26px;
        cursor: pointer;
        z-index: 200;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease;
        opacity: 1;
        display: inline;
    }
	
    .navbar-toggle:hover {
        opacity: 1;
    }
	
    .navbar-toggle.active .top {
        -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
        transform: translateY(8px) translateX(0) rotate(45deg);
        background: #2cb8a5;
    }
	
    .navbar-toggle.active .middle {
        opacity: 0;
        background: #2cb8a5;
    }
	
    .navbar-toggle.active .bottom {
        -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
        transform: translateY(-8px) translateX(0) rotate(-45deg);
        background: #2cb8a5;
    }
	
    .navbar-toggle span {
        background: #000;
        border: none;
        height: 1px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all .35s ease;
        transition: all .35s ease;
        cursor: pointer;
    }
	
    .navbar-toggle span:nth-of-type(2) {
        top: 8px;
    }
	
    .navbar-toggle span:nth-of-type(3) {
        top: 16px;
    }
	
    .transparent .navbar-toggle span {
        background: #fff;
    }
	
    .full {
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        -webkit-transition: opacity .35s, visibility .35s, height .35s;
        transition: opacity .35s, visibility .35s, height .35s;
        visibility: hidden;
        overflow: hidden;
    }
	
    .full.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }
	
    .full.open li {
        -webkit-animation: fadeInRight .5s ease forwards;
        animation: fadeInRight .5s ease forwards;
        -webkit-animation-delay: .35s;
        animation-delay: .35s;
    }
	
    .full.open li:nth-of-type(2) {
        -webkit-animation-delay: .4s;
        animation-delay: .4s;
    }
	
    .full.open li:nth-of-type(3) {
        -webkit-animation-delay: .45s;
        animation-delay: .45s;
    }
	
    .full.open li:nth-of-type(4) {
        -webkit-animation-delay: .50s;
        animation-delay: .50s;
    }
	
	.full.open li:nth-of-type(5) {
        -webkit-animation-delay: .55s;
        animation-delay: .55s;
    }
	
    .full .navbar-collapse {
        position: relative;
        top: 46%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 20px;
        font-family: 'Raleway', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 400;
        text-align: center;
    }
	
    .full .navbar-collapse a:hover,
    .full .navbar-collapse .active a {
        color: #2cb8a5;
        background-color: transparent;
    }
	
    .full ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        height: 100%;
    }
	
    .full ul li {
        display: block;
        position: relative;
        opacity: 0;
        padding: 20px 0;
    }
	
    .full ul li a {
        display: block;
        position: relative;
        color: #bbbbbb;
        text-decoration: none;
        overflow: hidden;
    }
	
    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 150%;
        }
        100% {
            opacity: 1;
            left: 0;
        }
    }
	
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 150%;
        }
        100% {
            opacity: 1;
            left: 0;
        }
    }
}


/* Hero
-------------------------------------------------------*/

.hero-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .4), transparent, transparent, transparent, rgba(0, 0, 0, .4));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .4), transparent, transparent, transparent, rgba(0, 0, 0, .4));
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent, transparent, transparent, rgba(0, 0, 0, .4));
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#c9000000', GradientType=0);
    transition: all .65s ease;
}


/* Services
-------------------------------------------------------*/

.service-description {
    font-size: 16px;
    color: #7a7a7a;
    background-color: #fff;
    padding: 30px;
    margin: 30px 20px;
}

.service-description p {
    font-size: 16px;
}

.service-item-box h3 {
    font-size: 16px;
    margin-top: 30px;
}

.service-item-box i {
    line-height: 80px;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 30px;
}

.negative-indent {
    padding-left: 15px;
    text-indent: -13px;
    line-height: 18px;
    margin-bottom: 7px;
}

.text-justified {
	text-align: justify;
	text-justify: inter-word;
}


/*Hi Icons*/

.hi-icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 15px 30px;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


/* Effect 1 */

.icon-effect-1 .hi-icon {
    background: #2cb8a5;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}

.icon-effect-1 .hi-icon:after {
    top: -5px;
    left: -5px;
    padding: 5px;
    box-shadow: 0 0 0 2px #2cb8a5;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}

.icon-effect-1a .hi-icon:hover {
    background-color: #2cb8a5;
    color: #fff;
}

.icon-effect-1a .hi-icon:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}


/* Portfolio
-------------------------------------------------------*/

.portfolio-filter {
    list-style: none;
    margin-bottom: 50px;
    cursor: default;
    font-size: 13px;
    text-align: center;
}

.portfolio-filter a.active,
.portfolio-filter a:hover {
    color: #121212;
}

.portfolio-filter.dark a.active,
.portfolio-filter.dark a:hover {
    color: #fff;
}

.portfolio-filter a {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    margin: 0 15px;
    color: #8a8a8a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.work-container {
    margin-bottom: 30px;
    overflow: hidden;
}

.work-item {
    position: relative;
}

.work-img > a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.work-item img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.work-description {
    padding: 15px 20px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    display: block;
    left: 0;
    top: auto;
    bottom: -75px;
    z-index: 3;
    -webkit-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.60s cubic-bezier(0.86, 0, 0.07, 1);
}

.work-item .work-description h2 {
    font-size: 14px;
    margin-bottom: 3px;
}

.work-item .work-description > span > a {
    color: #7a7a7a;
    font-size: 13px;
}

.work-item .work-description > span > a:hover {
    color: #2cb8a5;
}

.work-img {
    position: relative;
    overflow: hidden;
}

.work-item:hover .work-overlay {
    opacity: 1;
    visibility: visible;
}

.work-item:hover .work-img img {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}

.work-item:hover .work-description {
    bottom: 0;
}

.work-overlay {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.project-icons {
    position: absolute;
    top: 20%;
    width: 100%;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.project-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin: 0 3px;
    line-height: 40px;
    text-align: center;
    color: #121212;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.project-icons a:hover {
    color: #fff;
    background-color: #2cb8a5;
}

.work-item:hover .project-icons {
    position: absolute;
    top: 40%;
    margin-top: -20px;
}

.work-index-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.12em;
    font-size: 30px;
    margin-bottom: 90px;
}


/* Parallax Testimonials
-------------------------------------------------------*/

.parallax {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 0;
    z-index: -1;
}

.mobile .parallax {
    background-attachment: scroll !important;
    background-position: 50% 50% !important;
}

.parallax-testimonials > div {
    padding: 100px 0;
}

.parallax-testimonials h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.12em;
    font-size: 30px;
    margin-bottom: 10px;
}

.parallax-testimonials .testimonial-text {
    font-size: 18px;
    color: #fff;
    line-height: 34px;
    margin-bottom: 13px;
    font-weight: 300;
}

.parallax-testimonials .testimonial span {
    color: #dddddd;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
	margin-bottom: 13px;
}

.hero-wrap {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/*-------------------------------------------------------*/
/* Footer Type-1
/*-------------------------------------------------------*/

.footer {
    background-color: #121212;
}

.footer-widgets {
    padding: 80px 0;
}

.footer-widgets h5 {
    margin-bottom: 16px;
    color: #fff;
}

.footer-links li {
    padding-bottom: 7px;
}

.footer-links li:last-child {
    padding-bottom: 0;
}

.footer-widgets a {
    color: #7a7a7a;
}

.footer-widgets a:hover,
.copyright a:hover,
.footer-entry .entry-meta li a:hover,
.bottom-footer-links li a:hover {
    color: #fff;
}

.footer-get-in-touch p {
    margin-bottom: 7px;
}

p.footer-address {
    margin-bottom: 24px;
}

.footer-entry-list .posts-list .entry-img {
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
}

.footer-entry-list ul > .footer-entry {
    border-bottom: 1px solid #292929;
    border-top: 0;
}

.footer-entry-list .footer-entry .entry-meta {
    margin-top: 0;
}

.footer-entry-list ul > .footer-entry.small-space {
    padding: 9px 0 14px;
}

.footer-entry:first-child,
.footer-links li:first-child {
    padding-top: 0 !important;
}

.footer-entry:last-child,
.footer-links li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.footer-entry .entry-meta li,
.footer-entry .entry-meta li a {
    color: #4c4c4c;
    font-size: 12px;
}

.footer-entry-list .footer-entry .entry-title {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 1px;
}

.footer-links ul > li {
    padding: 8px 0;
    border-bottom: 1px solid #292929;
    line-height: 20px;
}

.bottom-footer {
    background-color: #000;
    padding: 34px 0;
}

.copyright span {
    display: inline-block;
    font-size: 13px;
    line-height: 32px;
}

.copyright a {
    color: #7a7a7a;
}


/* Go to Top
-------------------------------------------------------*/

#back-to-top {
    display: block;
    z-index: 1000;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 20px;
    position: fixed;
    bottom: -40px;
    margin-left: calc(100vw - 76px);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .1s ease-in-out;
    background-color: #2c2c2c;
    text-decoration: none;
}

#back-to-top i {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#back-to-top a {
    width: 40px;
    height: 40px;
    display: block;
    color: #cccccc;
}

#back-to-top.show {
    bottom: 20px;
}

#back-to-top:hover {
    background-color: #2cb8a5;
}

#back-to-top:hover i {
    color: #fff;
}


/* Text Rotator
-------------------------------------------------------*/

.hero-holder {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-message {
    display: table-cell;
    vertical-align: bottom;
    height: 100%;
    width: 100%;
    text-align: left;
    padding-bottom: 120px;
	padding-left: 80px;
    padding-right: 80px;
}

.hero-message h1 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
	font-size: 52px;
    font-weight: 700;
    line-height: 1.2em;
}

.hero-message h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2em;
}

.hero-message h1 span {
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-message h2 span {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-subtitle {
    text-transform: none;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    font-size: 24px;
    max-width: 800px;
    margin: 12px auto 0;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.05em;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-message.text-rotator {
    vertical-align: bottom;
    text-align: left;
    padding-bottom: 120px;
}

.hero-message.text-rotator h1 {
    font-size: 52px;
    line-height: 1.2em;
}

.text-rotator h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.text-rotator h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.6s;
}


/* Intro
-------------------------------------------------------*/

.intro {
    padding: 150px 0;
}

.intro-heading {
    font-size: 38px;
    line-height: 56px;
    margin-bottom: 28px;
}

p.intro-text {
    font-size: 17px;
    line-height: 32px;
}


/* Featured Works
-------------------------------------------------------*/

.featured-works .work-container {
    margin-bottom: 0;
}

.work-item.hover-2 .work-description {
    background-color: transparent;
    padding: 0 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    color: #fff;
}

.work-item.hover-2 .work-description h2 {
    position: relative;
    bottom: -100px;
    -webkit-transition: bottom .3s ease-in-out .1s;
    -o-transition: bottom .3s ease-in-out .1s;
    transition: bottom .3s ease-in-out .1s;
}

.work-item.hover-2 .work-description span {
    position: relative;
    bottom: -100px;
    display: block;
    -webkit-transition: bottom .3s ease-in-out;
    -o-transition: bottom .3s ease-in-out;
    transition: bottom .3s ease-in-out;
}

.work-item.hover-2:hover .work-description h2 {
    bottom: 0;
    -webkit-transition: bottom .3s ease-in-out .1s;
    -o-transition: bottom .3s ease-in-out .1s;
    transition: bottom .3s ease-in-out .1s;
}

.work-item.hover-2:hover .work-description span {
    bottom: 0;
    -webkit-transition: bottom .3s ease-in-out .2s;
    -o-transition: bottom .3s ease-in-out .2s;
    transition: bottom .3s ease-in-out .2s;
}

.work-item .work-description i {
    font-size: 40px;
}

.work-item.hover-2:hover .work-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* Services
-------------------------------------------------------*/

.icon-boxes.style-2 .service-item-box i {
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 55px;
    color: #2cb8a5;
}


/* Our Team
-------------------------------------------------------*/

.team-img img {
    transition: filter .2s ease-in-out;
    -webkit-filter: grayscale(100%);
    /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(100%);
    /* FF 35+ */
    overflow: hidden;
}

.team-img img:hover {
    -webkit-filter: grayscale(0%);
    /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(0%);
    /* FF 35+ */
}

.team-title {
    margin: 34px 0 8px;
}


/* Call to Action Style-2
-------------------------------------------------------*/

.call-to-action.style-2 {
    padding: 60px 0;
}

.call-to-action.style-2 h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.12em;
    font-size: 30px;
}

.call-to-action.style-2 .cta-button {
    text-align: center;
}


/* Contact
-------------------------------------------------------*/

#contact {
    background-color: #fff;
}

.contact-item {
    position: relative;
    padding-left: 36px;
    margin-top: 20px;
    font-size: 15px;
}

.contact-item p {
    font-size: inherit;
}

.contact-icon {
    position: absolute;
    left: 0;
}

.contact-icon i {
    font-size: 16px;
    color: #a3a3a3;
}

#contact-form .message {
    height: 50px;
    width: 100%;
    font-size: 13px;
    line-height: 50px;
    text-align: center;
    float: none;
    margin-top: 20px;
    display: none;
    color: #fff;
}

#contact-form .message.error {
    background-color: #ef5659;
}

#contact-form .message.success {
    background-color: #2cb8a5;
}


/* Google Map
-------------------------------------------------------*/

.gmap-btn {
    background-color: #f5f5f5;
    width: 100%;
    height: 70px;
    z-index: 2;
    position: relative;
    text-align: center;
    line-height: 70px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #121212;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gmap-btn:hover,
.gmap-btn.opened {
    color: #fff;
    background-color: #252525;
}

.gmap {
    width: 100%;
    height: 450px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gmap.gmap-hidden {
    visibility: hidden;
    z-index: -10;
    margin-top: -450px;
    opacity: 0;
}

.gmap.opened {
    margin-top: 0;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}


/* Feature Boxes
-------------------------------------------------------*/

.icon-boxes.style-4 .service-item-box h3 {
    font-size: 20px;
    margin-top: 0;
}


/* Service Boxes Style-5
-------------------------------------------------------*/

.icon-boxes.style-5 {
    padding: 0;
}

.icon-boxes.style-5 .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    border-left: 1px solid #e0e0e0;
}

.service-item-wrap {
    border-right: 1px solid #e0e0e0;
    padding: 9% 5%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.icon-boxes.style-5 .service-item-box,
.icon-boxes.style-5 .service-item-box i,
.hidden-text {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.icon-boxes.style-5 .service-item-box {
    position: absolute;
    padding: 0 20%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 60%;
    left: 0;
}

.icon-boxes.style-5 .service-item-box i {
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 55px;
    color: #bebebe;
}

.hidden-text {
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
}

.equal-height-container .service-item-wrap:first-child h2 {
    margin-top: 40px;
}

.service-item-wrap:hover .service-item-box {
    top: 50%;
}

.icon-boxes.style-5 .service-item-wrap:hover .service-item-box i {
    color: #2cb8a5;
}

.service-item-wrap:hover .hidden-text,
.mobile .hidden-text {
    opacity: 1;
    visibility: visible;
}


/* Testimonials Style-2
-------------------------------------------------------*/

.testimonials.style-2 .testimonial-box p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
    padding: 30px;
    background-color: #f5f5f5;
}

.testimonial-author {
    padding-top: 26px;
}

.testimonial-author span:first-child {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #121212;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span:last-child {
    font-size: 13px;
    display: block;
}


/* Brands Carousel
-------------------------------------------------------*/

.brands-wrap {
    padding: 35px 0;
    border-top: 1px solid #ececec;
}


/*-------------------------------------------------------*/
/* Portfolio Grids
/*-------------------------------------------------------*/

.works-grid.grid-5-col .work-item {
    width: 20%;
}

.works-grid.grid-4-col .work-item {
    width: 25%;
}

.works-grid.grid-3-col .work-item {
    width: 33.333%;
}

.works-grid.grid-2-col .work-item {
    width: 50%;
}

.works-grid.small-gutter {
    margin-left: 10px;
    margin-right: 10px;
}

.works-grid.small-gutter .work-item {
    padding: 0 5px;
}

.works-grid.no-gutter .work-item {
    padding: 0;
}

.works-grid.small-gutter:not(.with-title) .work-container {
    margin-bottom: 10px;
}

.works-grid.no-gutter .work-container,
.related-products .work-container {
    margin: 0;
}

.works-grid.with-title .work-description {
    position: relative;
    bottom: auto;
}

.works-grid.with-title .work-item:hover .work-img img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.works-grid.with-title .work-item:hover .project-icons {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
}





/*-------------------------------------------------------*/
/* Page Title / Breadcrumbs
/*-------------------------------------------------------*/

.page-title {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    background-position: center center;
    margin-top: 100px;
}

.page-title .container {
    height: 240px;
}

.title-holder {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.title-text {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.title-text h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.12em;
}

.breadcrumb {
    width: auto;
    background-color: transparent;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 13px;
}

.breadcrumb a,
.page-title.style-2 .breadcrumb a,
.page-title.style-2 .breadcrumb>li+li:before {
    color: #7a7a7a;
}

.breadcrumb a:hover,
.page-title.style-2 .breadcrumb a:hover {
    color: #2cb8a5;
}

.page-title.style-2 .title-text h1,
.page-title.style-2 .breadcrumb > .active {
    color: #121212;
}

.page-title .breadcrumb a,
.page-title .breadcrumb > .active {
    color: #fff;
}

.page-title .breadcrumb>li+li:before {
    color: #fff;
    opacity: 0.5;
    padding: 0 1px 0 5px;
}


/* Page Title Style-2
-------------------------------------------------------*/

.page-title.style-2 {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.page-title.style-2 .container {
    height: auto;
}


/* Page Title Style-3
-------------------------------------------------------*/

.page-title.style-3 .container {
    height: 700px;
}

.page-title.style-3 {
    background-attachment: fixed;
}

.page-title.style-3 .title-text h1 {
    font-size: 60px;
    font-weight: bold;
}


/*-------------------------------------------------------*/
/* 404
/*-------------------------------------------------------*/

.page-404 h1 {
    font-size: 200px;
    line-height: 1.2;
}

.page-404 a,
.page-404 p {
    font-size: 14px;
}


/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/

.upperacase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.heading {
    margin-bottom: 30px;
}

h1.heading-small {
    font-size: 20px;
    letter-spacing: 0.2em;
}

h2.heading-small {
    font-size: 16px;
    letter-spacing: 0.2em;
}

h3.heading-small {
    font-size: 15px;
    letter-spacing: 0.2em;
}

h4.heading-small {
    font-size: 14px;
    letter-spacing: 0.2em;
}

h5.heading-small {
    font-size: 13px;
    letter-spacing: 0.2em;
}

h6.heading-small {
    font-size: 12px;
    letter-spacing: 0.2em;
}

.bottom-line:after {
    content: "";
    display: block;
    width: 35px;
    border-bottom: 2px solid #7a7a7a;
    margin: 19px auto 24px;
    z-index: 1;
    position: relative;
}

.bottom-line.style-2:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #f2f2f2;
}

.bottom-line.left-align:after {
    margin: 19px auto 24px 0;
}

.subheading {
    font-size: 15px;
    line-height: 26px;
    margin-top: 7px;
}

.subheading.style-2 {
    font-size: 16px;
}

.section-headings p {
    margin-bottom: 30px;
}

blockquote {
    padding: 0 0 20px;
    margin: 0;
    border: none;
}

blockquote > p {
    font-size: 18px;
    line-height: 28px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 5px !important;
    position: relative;
}

blockquote p:before,
blockquote p:after {
    content: '"';
    font-size: 20px;
}

blockquote p:before {
    position: absolute;
    left: -10px;
}

blockquote > span {
    color: #2cb8a5;
    font-size: 14px;
}

.blockquote-style-1 {
    background-color: #2cb8a5;
    padding: 40px;
}

.blockquote-style-1 p,
.blockquote-style-1 span {
    color: #fff;
}

.blockquote-style-2 {
    padding: 40px;
    border-left: 2px solid #2cb8a5;
}

.dropcap {
    font-family: 'Montserrat', sans-serif;
}

.dropcap.style-1 {
    float: left;
    color: #2cb8a5;
    font-size: 47px;
    line-height: 48px;
    padding-right: 10px;
}

.dropcap.style-2 {
    float: left;
    color: #fff;
    text-align: center;
    background-color: #2cb8a5;
    width: 38px;
    height: 38px;
    font-size: 24px;
    line-height: 40px;
    margin: 7px 10px 0 0;
}

.highlight {
    padding: 3px 5px;
    color: #fff;
    background-color: #2cb8a5;
}

.list li {
    line-height: 24px;
}

.list li i {
    line-height: 21px;
}

.bullets li,
.arrows li,
.checks li,
.numbers li {
    margin-bottom: 20px;
    color: #7a7a7a;
}

.bullets li:before {
    content: "• ";
    font-size: 14px;
    color: #2cb8a5;
    padding-right: 0.5em;
}

.arrows i {
    margin-right: 5px;
}

.arrows i,
.checks i {
    color: #2cb8a5;
}

.checks i {
    font-size: 12px;
    margin-right: 7px;
    vertical-align: middle;
}

ol.numbers {
    padding-left: 20px;
}

.section-columns p {
    margin-bottom: 40px;
}


/*-------------------------------------------------------*/
/* Shortcodes
/*-------------------------------------------------------*/

img.alignleft {
    float: left;
    margin: 10px 20px 10px 0;
}

img.alignright {
    float: right;
    margin: 10px 0 10px 20px;
}


/* Buttons
-------------------------------------------------------*/

.section-buttons .btn {
    margin-bottom: 20px;
}

.btn {
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.14em;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    color: #fff;
    background-color: #121212;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.btn.btn-dark {
    background-color: #2b2b2b;
}

.btn.btn-light {
    background-color: #ccc;
    color: #121212;
	font-size: 11px;
    padding: 10px 25px;
}

.btn-lg {
    font-size: 13px;
    padding: 13px 34px;
}

.btn-md {
    font-size: 11px;
    padding: 10px 25px;
}

.btn-sm {
    font-size: 10px;
    padding: 7px 23px;
}

.btn.btn-color {
    background-color: #2cb8a5;
}

.btn.btn-transparent {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.btn.btn-white {
    color: #121212;
    background-color: #fff;
}

.btn.btn-stroke {
    border-color: #121212;
    background-color: transparent;
    color: #121212;
}

.rounded {
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
    border-radius: 70px;
}

.btn.btn-orange {
    background-color: #cc9c69;
}

.btn.btn-brown {
    background-color: #c2a191;
}

.btn.btn-red {
    background-color: #ef5659;
}

.btn.btn-blue {
    background-color: #529fbf;
}

.btn.btn-purple {
    background-color: #b48cc3;
}

.btn.btn-olive {
    background-color: #89a571;
}

.btn.btn-lavender {
    background-color: #7e90ca;
}

.btn.btn-pink {
    background-color: #d18a9a;
}

.btn:focus {
    color: #fff;
    outline: none !important;
}

.btn:hover {
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    color: #fff;
    opacity: 1;
}

.btn-transparent:hover,
.btn.btn-stroke:hover,
.btn.btn-light:hover {
    background-color: #2cb8a5;
    border-color: transparent;
}

.btn.btn-white:hover {
    background-color: #121212;
}


/* Social Icons
-------------------------------------------------------*/

.social-icons a {
    margin: 0 3px 6px 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #7a7a7a;
    background-color: #f2f2f2;
    line-height: 32px;
    text-align: center;
    font-size: 13px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.social-icons.rounded a {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.social-icons.large a,
.social-icons.large i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}

.social-icons.transparent a {
    background-color: transparent;
}

.social-icons.dark a {
    background-color: #252525;
}

.social-icons:not(.colored) a:hover {
    color: #fff;
    background-color: #2cb8a5;
}

.footer-socials .social-icons a,
.top-bar .social-icons a {
    margin-bottom: 0;
    background-color: transparent;
    font-size: 18px;
    border: 1px solid #252525;
}

.social-icons.colored a {
    color: #fff;
}

.social-icons.colored a:hover {
    opacity: 0.9;
}

.colored .social-twitter {
    background-color: #00acee;
}

.colored .social-facebook {
    background-color: #3b5998;
}

.colored .social-google-plus {
    background-color: #dd4b39;
}

.colored .social-linkedin {
    background-color: #0e76a8;
}

.colored .social-vimeo {
    background-color: #1ab7ea;
}

.colored .social-youtube {
    background-color: #c4302b;
}

.colored .social-instagram {
    background-color: #3f729b;
}

.colored .social-pinterest {
    background-color: #c8232c;
}

.colored .social-rss {
    background-color: #f26522;
}

.colored .social-dribbble {
    background-color: #ea4c89;
}

.colored .social-skype {
    background-color: #00aff0;
}

.colored .social-soundcloud {
    background-color: #ff3300;
}

.colored .social-vk {
    background-color: #45668e;
}

.colored .social-delicious {
    background-color: #3399ff;
}

.colored .social-android {
    background-color: #a4c639;
}

.colored .social-digg {
    background-color: #000000;
}

.colored .social-reddit {
    background-color: #ff4500;
}

.colored .social-dropbox {
    background-color: #007ee5;
}

.colored .social-odnoklassniki {
    background-color: #ed812b;
}

.colored .social-github {
    background-color: #4183c4;
}

.colored .social-flickr {
    background-color: #ff0084;
}

.colored .social-lastfm {
    background-color: #d51007;
}

.colored .social-email {
    background-color: #242424;
}


/* Progress Bars
-------------------------------------------------------*/

.progress-bar {
    -moz-transition: width 2s ease-in-out;
    -webkit-transition: width 2s ease-in-out;
    transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
    box-shadow: none;
}

.progress-bars {
    margin-bottom: 27px;
}

.progress-bars h6 {
    color: #121212;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-bars h6 span {
    color: #121212;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    float: right;
}

.progress.meter {
    height: 8px;
    border-radius: 0;
    position: relative;
    background: #f7f7f7;
    margin-bottom: 27px;
    box-shadow: none;
}

.progress.meter:last-child {
    margin-bottom: 0;
}

.progress .progress-bar {
    display: block;
    height: 8px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.meter .progress-bar {
	background-image: linear-gradient(to right, #f7f7f7, #2cb8a5);
}

.meter.blue .progress-bar {
    background-color: #529fbf;
}

.meter.olive .progress-bar {
    background-color: #89a571;
}

.meter.orange .progress-bar {
    background-color: #cc9c69;
}

.meter.violet .progress-bar {
    background-color: #b48cc3;
}


/* Icon Boxes Style-3
-------------------------------------------------------*/

.icon-boxes.style-3 .service-item-box {
    padding: 34px 15px;
    border: 1px solid #e0e0e0;
}

.icon-boxes.style-3 i {
    width: auto;
    height: auto;
    line-height: 1;
    color: #7a7a7a;
}

.icon-boxes.style-3 h3 {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 5px;
}


/* Form Elements
-------------------------------------------------------*/

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
    height: 39px;
    border: 1px solid #e0e0e0;
    background-color: transparent;
    width: 100%;
    margin-bottom: 16px;
    padding: 0 16px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    -ms-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
}

textarea {
    height: auto;
    padding: 8px 16px;
    margin-bottom: 25px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: #121212;
    outline: none;
    box-shadow: none;
}


/*Change Color of Placeholders*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #7a7a7a;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #7a7a7a;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #7a7a7a;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #7a7a7a;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-left: 12px;
    background: url(../img/shop/shop_icons.png) no-repeat;
    background-position: 100% -176px;
}

select::-ms-expand {
    display: none;
}


/* Checkboxes & Radio Buttons
-------------------------------------------------------*/

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label:before {
    width: 17px;
    height: 17px;
    background-color: #f0f0f0;
    content: "";
    display: inline-block;
    font-size: 13px;
    margin: -4px 12px 0 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before {
    content: "\f00c";
    font-family: "FontAwesome";
    color: #121212;
    font-size: 9px;
    line-height: 16px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    cursor: pointer;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
    text-transform: none;
    letter-spacing: normal;
    color: #7a7a7a;
    font-size: 13px;
}

.radio-buttons > li,
.checkboxes > li {
    padding: 7px 0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + label:before {
    display: inline-block;
    content: "";
    width: 17px;
    height: 17px;
    background-color: #f0f0f0;
    border-radius: 40px;
    margin: -3px 10px 0 0;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 0;
}

input[type="radio"]:checked + label:before {
    background-color: #121212;
    border: 5px solid #f0f0f0;
    padding: 1px;
}

input[type="radio"]:focus {
    outline: none;
}

label {
    font-weight: normal;
    color: #121221;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    vertical-align: middle;
}