/*=======================================================================
* Template Name: HARPY - Personal Portfolio Template
* Author: PhyDev
* Author URI: https://themeforest.net/user/phydev
* Version: 1.0
* Tags: html, template, Portfolio, marketing, Personal, HARPY
======================================================================= */

/*------------------------------------------------------
Table of content
--------------------------------------------------------
1. General Styles (typography, links, Lsits, images , Helper classes, sections)
2. Pre Loader
3. Navigation
4. Home
5. About
6. Services
7. Work
8. Blogs
9. Contact
10. Footer
11. Mediaqueries
12. keyframes animation
------------------------------------------------------*/

/*----------------------------------------
General Styles
----------------------------------------*/
html, body {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 1px;
	background-color: #fff;
	color: #757575;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}
p {
  	line-height: 1.5;
}
b, strong {
	font-weight: 700;
}
dfn, cite, em, i {
  	font-style: italic; 
}
h1 {
	font-size: 36px;
}
h2 {
  	font-size: 26px;
}
h3 {
  	font-size: 24px;
}
h4 {
	font-size: 22px;
}
h5 {
  	font-size: 18px;
}
h6 {
  	font-size: 16px;
}
a, a:focus, a:hover, a:active {
	text-decoration: none;
	color: inherit;
	outline: none;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul {
  	list-style: none;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #fff;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb {
	background-color: #999;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	border-radius: 80px;
}

.effect {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.hor-center {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.ver-center {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/************ Template Colors ************/
.main-color {
	color: #f2c94c; /*CHANGE*/
}
.main-color-bg {
	background: #f2c94c; /* Old browsers */
	background: -webkit-linear-gradient(left,  #f2c94c 0%,#f2994a 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #f2c94c 0%,#f2994a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	color: #fefefe;
}
/************ End Template Colors ************/

a.main-color-bg:hover,
a.main-color-bg:focus {
	color: #fafafa;
}

.section,
.second-section {
  	padding: 90px 30px;
}
.section .title-box,
.second-section .title-box {
  	margin-bottom: 70px;
}
.section .title-box h2,
.second-section .title-box h2 {
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}
.section .title-box h2 .title-line,
.second-section .title-box h2 .title-line {
	display: block;
	width: 60px;
	height: 3px;
	bottom: 0;
}
.section h3 {
  	font-size: 19px;
  	font-weight: 700;
  	text-transform: capitalize;
}

.section .title-box h2 {
	color: #333;
}
.second-section .title-box h2 {
	color: #fafafa;
}
.second-section .title-box h2 .title-line {
	background: #eee !important;
}

.no-pl {
	padding-left: 0;
}
.mb-30 {
  	margin-bottom: 30px;
}

.bg-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.page-table {
	display: table;
	width: 100%;
	height: 100%;
}
.table-cell {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	padding-top: 20px;
	z-index: 5;
}

.harpy-btn,
.harpy-btn-2 {
	display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.harpy-btn {
	position: relative;
	padding: 9px 18px;
    border: 1px solid;
}
.harpy-btn-2 {
	padding: 10px 18px;
	color: #fafafa;
}
.harpy-btn .harpy-btn-txt {
	color: inherit;
}
.harpy-btn .bg-overlay {
	opacity: 0;
	z-index: -1;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}
.harpy-btn:hover .bg-overlay {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.harpy-btn-2:hover,
.harpy-btn-2:focus {
	color: #fafafa;
}
.harpy-btn:hover .harpy-btn-txt {
	color: #fafafa;
}

.slide-down {
    -webkit-animation: slide-down .8s .4s ease-out;
    -moz-animation: slide-down .8s .4s ease-out;
    animation: slide-down .8s .4s ease-out;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/*----------------------------------------
Pre Loader
----------------------------------------*/
.loader-con {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.98);
	z-index: 99;
}
.sk-folding-cube {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	-webkit-transform: translate(-50%,-50%) rotateZ(45deg);
	-moz-transform: translate(-50%,-50%) rotateZ(45deg);
	-ms-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1); 
}
.sk-folding-cube .sk-cube span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-animation: perLoaderAnimation 2.4s infinite linear both;
	-moz-animation: perLoaderAnimation 2.4s infinite linear both;
	animation: perLoaderAnimation 2.4s infinite linear both;
}
.sk-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	-moz-transform: scale(1.1) rotateZ(90deg);
	-ms-transform: scale(1.1) rotate(90deg);
	transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	-moz-transform: scale(1.1) rotateZ(180deg);
	-ms-transform: scale(1.1) rotate(180deg);
	transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	-moz-transform: scale(1.1) rotateZ(270deg);
	-ms-transform: scale(1.1) rotate(270deg);
	transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2 span {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3 span {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4 span {
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	animation-delay: 0.9s;
}


/*----------------------------------------
Navigation
----------------------------------------*/
.sideNav-btn {
    position: fixed;
    display: block;
    padding: 6px;
    width: 42px;
    height: 42px;
    left: 30px;
    top: 30px;
    z-index: 6;
	-webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.38);
	-moz-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.38);
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.38);
}
.sideNav-btn span {
	display: block;
	margin: 6px auto;
	width: 30px;
	height: 2px;
	background-color: #fefefe;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.sideNav {
	position: fixed;
	width: 280px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #282828;
	overflow-y: auto;
	-webkit-box-shadow: 2px 0 14px -2px rgba(0, 0, 0, 0.36);
	-moz-box-shadow: 2px 0 14px -2px rgba(0, 0, 0, 0.36);
	box-shadow: 2px 0 14px -2px rgba(0, 0, 0, 0.36);
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index: 8;
}
.sideNav-open .sideNav {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
.sideNav-open .after-menu-nav {
	display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 7;
}
.profile-inf {
	position: relative;
	padding: 46px;
	background-image: url(../img/nav-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
}
.profile-inf:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.26);
	z-index: 0;
}
.pr-avatar {
	position: relative;
	padding: 12px;
	z-index: 4;
}
.pr-avatar img {
	border: 8px solid;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.38);
	-moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.38);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.38)
}
.nav-list li {
	position: relative;
	padding: 0;
	font-weight: 700;
	text-transform: capitalize;
	border-bottom: 1px solid #1c1c1c;
}
.nav-list li a {
	position: relative;
    display: block;
	color: #fafafa;
    padding: 10px 35px;
    z-index: 4;
}
.nav-list li a i {
	position: relative;
    top: 2px;
	margin-right: 8px;
	font-size: 20px;
}

.nav-list li .bg-overlay {
	opacity: 0;
}
.nav-list li.active .bg-overlay {
	opacity: 0.86;
}
.nav-list li:hover .bg-overlay {
	opacity: 1;
}

.social-list {
	margin-top: 30px;
	margin-bottom: 20px;
}
.social-list li {
	display: inline-block;
	position: relative;
	margin: 4px;
}
.social-list li a {
	display: inline-block;
	position: relative;
    width: 34px;
    height: 34px;
    line-height: 32px;
    color: #fafafa;
    border: 1px solid #fff;
    z-index: 4;
}
.social-list li .bg-overlay {
	opacity: 0;
	-webkit-transform: scale(0.5);
	   -moz-transform: scale(0.5);
	    -ms-transform: scale(0.5);
	        transform: scale(0.5);
}
.social-list li:hover .bg-overlay {
	opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.social-list li:hover a {
	border-color: transparent;
}

/*----------------------------------------
Home
----------------------------------------*/
.home-1,
.home-2 {
	position: relative;
	height: 100%;
	min-height: 520px;
	background-image: url(../img/home-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
}
.home-1:after,
.home-2:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.26);
	z-index: 0;
}

.home-2 #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.home-3,
.home-4 {
	position: relative;
	height: 100%;
	min-height: 520px;
}

#home.home-3 .big-title {
	margin-bottom: 40px;
}
.home-3 .table-cell p {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 26px 10px;
    color: #fff;
}
.home-carousel .page-table {
	position: relative;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
}
.home-carousel .page-table:after {
	content: "";
    position: absolute;
    background-color: rgba(0,0,0,.6);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 3;
}
.home-carousel .first-slide {
	background-image: url(http://phydev.web44.net/wassabi/images/man-work.jpg);
}
.home-carousel .second-slide {
	background-image: url(http://phydev.web44.net/erizo/img/home-slider-1.jpg);
}
.home-carousel .third-slide {
	background-image: url(http://phydev.web44.net/erizo/img/home.jpg);
}
.home-carousel .fade-out:not(.active) {
	-webkit-animation: fade-out .4s ease-out;
	-moz-animation: fade-out .4s ease-out;
	animation: fade-out .4s ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.slide-animation .second-slide h1,
.slide-animation .second-slide p {
	-webkit-animation: slide-top 1.2s ease-out;
	-moz-animation: slide-top 1.2s ease-out;
	animation: slide-top 1.2s ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.slide-animation .first-slide .home-btn,
.slide-animation .third-slide .home-btn  {
	-webkit-animation: slide-down 1.2s ease-out;
	-moz-animation: slide-down 1.2s ease-out;
	animation: slide-down 1.2s ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.slide-animation .first-slide h1, .slide-animation .first-slide p,
.slide-animation .third-slide h1, .slide-animation .third-slide p {
	-webkit-animation: zoom-down 1.2s ease-out;
	-moz-animation: zoom-down 1.2s ease-out;
	animation: zoom-down 1.2s ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.slide-animation .second-slide .home-btn {
	-webkit-animation: slide-down 1.2s ease-out;
	-moz-animation: slide-down 1.2s ease-out;
	animation: slide-down 1.2s ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.home-slider-btn {
	display: none;
	width: 50px;
	height: 50px;
	text-align: center;
	opacity: .8;
	z-index: 8;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.owl-next .home-slider-btn {
    right: 20px;
}
.owl-prev .home-slider-btn {
    left: 20px;
}
.home-3 .home-carousel .owl-dots {
	bottom: 15px;
}

.home-4 .video-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
.home-4 .video-wrapper video {
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
	min-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.home-4:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.65);
	z-index: 3;
}
#home .sm-title {
	margin-bottom: 20px;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
#home .big-title {
	position: relative;
	margin: 0;
    margin-bottom: 60px;
	font-size: 54px;
	color: #fff;
	text-transform: capitalize;
	letter-spacing: 2px;
}
#home .big-title .hor-line {
    display: inline-block;
    width: 150px;
    height: 3px;
    bottom: -18px;
}
#home .typer-title {
	margin: 24px 0 40px;
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
}
.home-btn {
	margin-top: 20px;
	margin-right: 15px;
	margin-left: 15px;
}


/*----------------------------------------
About
----------------------------------------*/
.skills-section {
	padding: 10px 20px;
}
.skills-section h3 {
	margin: 4px 0 16px;
}
.skills-section .about-desc {
	margin: 10px 0 36px;
}
.progress-bar-text {
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
}
.progress-cont {
    display: inline-block;
    float: right;
    margin-right: 10px;
}
.progress-bar-text {
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
}
.progress-bar-linear .progress-bar-skills {
    position: relative;
    width: 100%;
    background-color: #cfcfcf;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.progress-bar-skills .progress-bar-line {
    position: relative;
    width: 5%;
    height: 6px;
    -webkit-transition: all 1.6s ease-out;
    -o-transition: all 1.6s ease-out;
    -moz-transition: all 1.6s ease-out;
    transition: all 1.6s ease-out;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.single-hobbie {

}
.hobbie-icon {
	font-size: 42px;
	color: #eee;
}
.single-hobbie p {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

/*----------------------------------------
Services
----------------------------------------*/
.singel-service {
	position: relative;
}
.service-icon {
	display: inline-block;
	padding-right: 4px;
	min-width: 75px;
	float: left;
}
.service-icon .primary-icon {
	font-size: 56px;
    color: #4a4a4a;
}
.service-icon .bg-icon {
    position: absolute;
    font-size: 120px;
    top: -46px;
    left: 26px;
    opacity: 0.1;
    z-index: 1;
}
.service-content {
	position: relative;
	padding-left: 4px;
	overflow: hidden;
	z-index: 4;
}

.timer-con {
	padding-top: 30px;
}
.count .fa {
	font-size: 52px;
	color: #fafafa;
	margin-bottom: 26px;
}
.count p {
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.count .timer {
	font-weight: 400;
	font-size: 30px;
}


/*----------------------------------------
Work
----------------------------------------*/
.work-item {
    -webkit-animation: work-animation .4s ease-in;
    -moz-animation: work-animation .4s ease-in;
    animation: work-animation .4s ease-in;
}
.filtered {
    opacity: 0;
}
#work-list {
    margin-bottom: 36px;
}
#work-list li {
    display: inline-block;
}
#work-list li .filter {
	margin: 4px;
}
#work-list li .filter-active .harpy-btn-txt {
    color: #fafafa;
}
#work-list li .filter-active .bg-overlay {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.single-work {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 10px -1px rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 10px -1px rgba(0,0,0,.3);
    box-shadow: 0 2px 10px -1px rgba(0,0,0,.3);
}
.single-work img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.work-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.28);
}
.work-overlay h3, .work-overlay p {
    position: absolute;
    font-weight: 700;
}
.work-overlay h3 {
    bottom: 10px;
    color: #eee;
    font-size: 18px;
}
.work-overlay .work-links a {
	width: 50px;
	height: 50px;
	font-size: 20px;
	line-height: 48px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.48);
	-moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.48);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.48)
}
.work-overlay .work-links a.pf-link {
	left: 50%;
	-webkit-transform: translate(25%,-170%);
	-moz-transform: translate(25%,-170%);
	-ms-transform: translate(25%,-170%);
	transform: translate(25%,-170%);
	-webkit-transition-delay: .1s;
	-moz-transition-delay: .1s;
	-o-transition-delay: .1s;
	transition-delay: .1s;
}
.work-overlay .work-links a.popup-link {
    left: 50%;
	-webkit-transform: translate(-125%,-170%);
	-moz-transform: translate(-125%,-170%);
	-ms-transform: translate(-125%,-170%);
	transform: translate(-125%,-170%);
}
.single-work:hover img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.single-work:hover .work-overlay {
	opacity: 1;
}
.single-work:hover .work-links a.pf-link {
	left: 50%;
	-webkit-transform: translate(25%,-50%);
	-moz-transform: translate(25%,-50%);
	-ms-transform: translate(25%,-50%);
	transform: translate(25%,-50%);
}
.single-work:hover .work-links a.popup-link {
    left: 50%;
	-webkit-transform: translate(-125%,-50%);
	-moz-transform: translate(-125%,-50%);
	-ms-transform: translate(-125%,-50%);
	transform: translate(-125%,-50%);
}

.testimonials-carousel {
	position: relative;
    padding-bottom: 40px;
}
.testimonials-carousel:before {
    content: "\f10d";
    font-family: FontAwesome;
    position: absolute;
    font-size: 130px;
    top: -20px;
    left: 35%;
    color: #fff;
    opacity: 0.4;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}
.one-testimonial .tsm-name {
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
}
.one-testimonial .tsm-avatar {
	height: 90px;
	width: 90px;
	margin: 14px auto;
	border: 2px solid #fafafa;
	overflow: hidden;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 14px -2px rgba(0, 0, 0, 0.48);
	-moz-box-shadow: 0 2px 14px -2px rgba(0, 0, 0, 0.48);
	box-shadow: 0 2px 14px -2px rgba(0, 0, 0, 0.48);
}
.one-testimonial .tsm-text {
	padding: 0 30px;
	font-size: 13px;
}
.home-carousel .owl-dots,
.testimonials-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 8;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.home-carousel .owl-dot,
.testimonials-carousel .owl-dot {
    display: inline-block;
    margin: 0 4px;
    width: 12px;
    height: 12px;
    border: 2px solid #fafafa;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    -moz-transition: .3s all ease-out;
    transition: .3s all ease-out;
}
.home-carousel .owl-dot:hover,
.home-carousel .owl-dot.active,
.testimonials-carousel .owl-dot:hover,
.testimonials-carousel .owl-dot.active {
    background-color: #eee;
}


/*----------------------------------------
Blogs
----------------------------------------*/
.single-blog {
	position: relative;
	overflow: hidden;
	border: 1px solid #eee;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.blog-thumbnail {
	position: relative;
	overflow: hidden;
}
.blog-thumbnail .embed-responsive {
	margin-bottom: 16px;
}
.single-blog:hover .blog-thumbnail img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.blog-details .blog-title {
	margin: 0;
	padding: 15px;
	line-height: 1.4;
}
.blog-title a {
	color: #333;
}
.blog-title a:hover {
	color: inherit;
}
.blog-meta {
	padding: 5px 15px;
	color: #777;
	background-color: #f8f8f8;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.blog-meta li {
	display: inline-block;
	margin: 4px 6px;
	font-weight: 700;
}
.blog-meta li .fa {
	margin-right: 4px;
}
.blog-text {
	padding: 15px;
}
.blog-text p {
	margin-top: 6px;
	margin-bottom: 14px;
	font-size: 13px;	
}
.blog-text .sb-link {
	margin-left: 6px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.blog-text .sb-link .fa {
	margin-left: 2px;
}
.blog-text .sb-link:hover .fa {
	margin-left: 6px;
}

.clients-carousel .single-client {
	padding: 0 25px;
}
.clients-carousel .single-client img {
	width: auto;
}


/*----------------------------------------
Contact
----------------------------------------*/
.input-field {
	width: 100%;
	padding: 8px 16px;
	color: #232323;
	border: 1px solid #ddd;
	outline: none;
}
.name-error,
.email-error,
.message-error,
.error {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: #ff2828;
}
textarea.input-field {
    height: 190px;
    resize: none;
}
#form-message {
    float: left;
    width: 100%;
}
.success {
	color: #00af07;
}
.submit-btn {
    display: block;
    margin: 0 auto;
    outline: none;
    background-color: transparent;
}

/*----------------------------------------
Blog page
----------------------------------------*/
.pages-header {
    position: relative;
    background-image: url(../img/header-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.pages-header-content {
    position: relative;
    padding-top: 160px;
    padding-bottom: 140px;
    z-index: 5;
}
.pages-header:after {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 3;
}
.pages-header h1 {
	font-size: 28px;
    margin-top: 0;
    margin-bottom: 18px;
    padding-left: 12px;
	color: #fafafa;
}
.pages-header-list {
	padding-left: 30px;
}
.pages-header-list li {
	position: relative;
	display: inline-block;
	font-size: 14px;
    font-weight: 700;
	padding: 0 10px;
}
.pages-header-list li:after {
	content: "";
	position: absolute;
	right: -2px;
	top: 3px;
	width: 2px;
	height: 18px;
	background-color: #fefefe;
}
.pages-header-list li:not(.main-color) {
	color: #fafafa;
}
.pages-header-list li:last-child:after {
	display: none;
}
.pages-header-list li a {
	color: #eee;
}
.pages-header-list li a:hover {
	color: inherit;
}
.main-wrapper {
	padding: 60px 0;
}
.main-post {
	margin-bottom: 24px;
}
.post-header {
    margin-bottom: 40px;
}
.single-post-title {
	font-size: 25px;
	color: #444;
	margin: 0 0 12px;
}
.post-meta-list {
	margin-bottom: 18px;
}
.post-meta-list li {
	position: relative;
	display: inline-block;
	font-size: 14px;
    padding: 0 6px;
    color: #111;
}
.post-meta-list li:first-child {
	padding-left: 0;
}
.post-meta-list li:after {
	content: "";
	position: absolute;
	top: 4px;
    right: -2px;
	width: 1px;
	height: 16px;
	background-color: #111;
}
.post-meta-list li:last-child:after {
	display: none;
}
.main-post p {
    line-height: 1.7;
}

.comments-section {
    padding: 20px 0;
}
.comments-section h3 {
    margin-top: 10px;
}
.single-comment {
    margin: 20px 0;
}
.comment-content {
    padding: 14px 10px;
    border-bottom: 1px solid #e6e6e6;
}
.comment-content .avatar {
	margin-right: 22px;
	float: left;
}
.comment-content .avatar img {
	width: 75px;
	height: 75px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 3px 8px -1px rgba(0,0,0,.5);
	-moz-box-shadow: 0 3px 8px -1px rgba(0,0,0,.5);
	box-shadow: 0 3px 8px -1px rgba(0,0,0,.5);
}
.comment-text {
    overflow: hidden;
}
.comment-header {
    margin-top: 2px;
    margin-bottom: 4px;
}
.comment-header .author {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 700;
}
.comment-header .time-ago {
    display: inline-block;
    font-size: 12px;
}
.comment-text p {
    font-size: 14px;
}
.comment-text .reply-btn {
	float: right;
	font-size: 13px;
	margin-right: 20px;
	padding: 8px 20px;
}
.comments-reply-box {
    padding-left: 50px;
}
.reply-form-section h3 {
	margin: 10px 0 24px;
}

.side-bar .widget {
    display: inline-block;
    margin-bottom: 50px;
    width: 100%;
}
.side-bar .widget:not(.widget-search) {
	border: 1px solid #f3f3f3;
	background: #fefefe;
	overflow: hidden;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 4px 12px -4px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 0px 4px 12px -4px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 4px 12px -4px rgba(0, 0, 0, 0.14);
}
.widget-title {
	margin: 0;
	font-size: 20px;
	padding: 12px 20px;
	text-transform: uppercase;
}
.side-bar  ul {
	padding: 20px;
}
.widget-search .form-control {
    height: 40px;
    border: 1px solid #eee;
    outline: none;
    font-size: 13px;
    padding: 10px 23px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.widget-search .input-group-btn .btn-search {
    color: #fff;
    padding: 10px 18px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
}
.side-bar  ul li {
    padding: 8px 10px;
    border-bottom: 1px solid #e6e6e6;
}
.side-bar  ul li:last-child {
	border-bottom: none;
}
.side-bar  ul li a {
	color: #6b6b6b;
	font-weight: 700;
}
.side-bar  ul li a:hover {
	color: inherit;
}
.widget ul li span {
    display: block;
    font-weight: 400;
    font-size: 11px;
    line-height: 1;
    color: #999;
    margin-top: 10px;
}
.widget-tags .tags {
	padding: 20px;
}
.widget-tags .tags-btn {
	position: relative;
    display: inline-block;
    padding: 4px 4px 4px 10px;
    margin: 4px 2px 4px 18px;
}
.widget-tags .tags-btn span {
	position: absolute;
	border: 17px solid;
	right: -34px;
	top: 0;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
}


/*----------------------------------------
 Single Portfolio
 ----------------------------------------*/
.section.pf-details-con {
 	padding: 60px 0;
 }
.pf-details-desc h3 {
	margin-top: 0;
}
.pf-gallery {
    margin-right: 0;
    margin-left: 0;
}
.sinlge-pf-gallery {
	padding-right: 0;
	padding-left: 0;
}
.pf-gallery-popuap {
	display: inline-block;
	position: relative;
}
.pf-gallery-popuap .pf-gallery-overlay {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.46);
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.pf-gallery-popuap .pf-gallery-overlay .fa {
	font-size: 30px;
    color: #eee;
}
.pf-gallery-popuap:hover .pf-gallery-overlay {
	opacity: 1;
}
.project-info li {
    padding: 15px;
    margin: 18px auto 10px;
    border: solid 1px #888;
}
.project-info .pf-label {
	font-weight: 700;
}
.share-pf {
	margin:  30px 0;
}
.share-pf .social-list {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
}
.share-pf .social-list li a {
	color: #232323;
	border-color: #333;
}
.pf-pagination {
	position: relative;
    padding: 22px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #e9e9e9;
}
.pf-pagination a {
    color: #232323;
    text-transform: uppercase;
    font-weight: 700;
}
.pf-pagination a:hover {
    color: inherit;
}
.pf-pagination a .fa {
    font-weight: 700;
}
.pf-prev-link .fa {
    margin-right: 10px;
}
.pf-next-link .fa {
    margin-left: 10px;
}
.pf-nav-btn {
    top: -8px;
    font-size: 24px;
}
.pf-next-link {
    text-align: right;
}
.pf-pagination .link-text {
    display: none;
}


/*----------------------------------------
Footer
----------------------------------------*/
.footer .footer-top {
    padding: 60px 30px;
    text-align: center;
    background-color: #232328;
}
.footer-title {
    margin: 0;
    margin-bottom: 15px;
    color: #ddd;
}
.footer .footer-top p {
	margin: 0;
	margin-top: 16px;
	color: #d4d4d4;
}
.footer-list {
	margin-top: 16px;
	margin-left: 4px;
}
.footer-list li a {
	color: #d4d4d4;
}
.footer-list li a:hover {
	color: inherit;
}
.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-bottom p {
	margin-bottom: 0;
}

/*----------------------------------------
Mediaqueries
----------------------------------------*/

@media screen and (min-width: 768px) {
	.section .title-box h2,
	.second-section .title-box h2 {
		font-size: 32px;
	}
	.harpy-btn,
	.harpy-btn-2 {
	    font-size: 15px;
	}
	.harpy-btn {
	    padding: 10px 24px;
	}
	.harpy-btn-2 {
	    padding: 11px 24px;
	}

	#home .sm-title {
		font-size: 19px;
	}
	#home .big-title {
		font-size: 68px;
	}
	#home .typer-title {
		font-size: 28px;
	}

	.home-slider-btn {
	    display: block;
	    opacity: 0;
	}
	.home-carousel:hover .home-slider-btn {
	    opacity: .8;
	}
	.home-carousel:hover .owl-next.disabled .home-slider-btn,
	.home-carousel:hover .owl-prev.disabled .home-slider-btn {
	opacity: .4;
	}

	.footer .footer-top {
	    text-align: left;
	}

	.pages-header h1 {
		font-size: 40px;
	}

	.pf-pagination .link-text {
	    display: inline-block;
	}
}

@media screen and (min-width: 992px) {
	body {
		padding-left: 280px;
	}

	.sideNav-btn {
	    display: none;
	}
	.sideNav {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.sideNav-open .after-menu-nav {
		display: none;
	}
}


/*----------------------------------------
keyframes animation
----------------------------------------*/

/* PreLoader Animations*/
@-webkit-keyframes perLoaderAnimation {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}
@-moz-keyframes perLoaderAnimation {
  0%, 10% {
    -moz-transform: perspective(140px) rotateX(-180deg);
         transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -moz-transform: perspective(140px) rotateX(0deg);
         transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -moz-transform: perspective(140px) rotateY(180deg);
         transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}
@keyframes perLoaderAnimation {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
       -moz-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
       -moz-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
       -moz-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}

/* Sceolling Animations*/
@-webkit-keyframes slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-moz-keyframes slide-down {
  from {
    opacity: 0;
    -moz-transform: translateY(30px);
         transform: translateY(30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0px);
         transform: translateY(0px);
  }
}
@keyframes slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
       -moz-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*  Slider Animations*/
@-webkit-keyframes fade-out {
  from {
    opacity : 1;
  }  
  to {
    opacity : 0;
  }  
}
@-moz-keyframes fade-out {
  from {
    opacity : 1;
  }  
  to {
    opacity : 0;
  }  
}
@keyframes fade-out {
  from {
    opacity : 1;
  }  
  to {
    opacity : 0;
  }  
}


@-webkit-keyframes zoom-down {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes zoom-down {
  from {
    opacity: 0;
    -moz-transform: scale(1.3);
         transform: scale(1.3);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@keyframes zoom-down {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
            transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
}


@-webkit-keyframes slide-top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
       -moz-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-moz-keyframes slide-top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
       -moz-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes slide-top {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
       -moz-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/* work Items Animations*/
@-webkit-keyframes work-animation {
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
@-moz-keyframes work-animation {
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
@keyframes work-animation {
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}


/*color-scheme-panel*/
.color-scheme-panel-con {
    position: fixed;
    top: 0;
    right: -270px;
    z-index: 22;
}
#color-scheme-btn {
    position: absolute;
    font-size: 24px;
    left: -44px;
    width: 44px;
    height: 44px;
    line-height: 42px;
    text-align: center;
    top: 140px;
    z-index: 20;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: 2px 0 12px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 2px 0 12px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 0 12px 0px rgba(0, 0, 0, 0.4);
}
.color-scheme-panel {
    position: relative;
    padding: 90px 12px 40px 12px;
    background-color: #fafafa;
    width: 270px;
    height: 100vh;
    text-align: center;
    z-index: 22;
    overflow-y: auto;
    -webkit-box-shadow: -4px 0 20px -4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -4px 0 20px -4px rgba(0, 0, 0, 0.25);
    box-shadow: -4px 0 20px -4px rgba(0, 0, 0, 0.25);
}
.color-scheme-panel .color-scheme-title {
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	margin: 40px 0 24px;
	letter-spacing: 0.5px;
}
.d-l-list {
    padding: 10px 34px;
}
.color-scheme-panel p {
    font-size: 13px;
    padding: 0 10px;
    margin-top: 16px;
}

.color-scheme-panel .scheme-colors li {
    display: inline-block;
    position: relative;
    width: 34px;
    height: 34px;
    margin: 10px;
}
.color-scheme-panel .scheme-colors li a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.58);
    box-shadow: 0 2px 14px -3px rgba(0, 0, 0, 0.58);
}
#color-scheme-btn:hover,
#color-scheme-btn:focus,
a.change-color:hover {
  color: #fafafa;
}
.color-scheme-panel-open {
	right: 0;
}

/*COLOR PANEL COLORS*/

/*===================================*/
.color-scheme-gold {
  color: #f2c94c;
}
.color-scheme-gold-bg {
	background: #f2c94c;
	background: -webkit-linear-gradient(right, #f2994a, #f2c94c);
	background: linear-gradient(to left, #f2994a, #f2c94c);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-reds {
  color: #c5031a;
}
.color-scheme-reds-bg {
	background: #c5031a;
	background: -webkit-linear-gradient(right, #c5031a, #EA384D);
	background: linear-gradient(to left, #c5031a, #EA384D);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-purplin {
  color: #5a21ba;
}
.color-scheme-purplin-bg {
	background: #5a21ba;
	background: -webkit-linear-gradient(right, #5a21ba, #9100ff);
	background: linear-gradient(to left, #5a21ba, #9100ff);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-blue {
  color: #0575e6;
}
.color-scheme-blue-bg {
	background: #0575e6;
	background: -webkit-linear-gradient(right, #021b79, #0575e6);
	background: linear-gradient(to left, #021b79, #0575e6);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-green {
  color: #009400;
}
.color-scheme-green-bg {
	background: #009400;
	background: -webkit-linear-gradient(right, #009400, #26de2e);
	background: linear-gradient(to left, #009400, #26de2e);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-vine {
  color: #05b589;
}
.color-scheme-vine-bg {
	background: #05b589;
	background: -webkit-linear-gradient(right, #006f53, #05b589);
	background: linear-gradient(to left, #006f53, #05b589);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-orange {
  color: #ff6c00;
}
.color-scheme-orange-bg {
	background: #ff6c00;
	background: -webkit-linear-gradient(right, #ff6c00, #ffa117);
	background: linear-gradient(to left, #ff6c00, #ffa117);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-aqua {
  color: #2F80ED;
}
.color-scheme-aqua-bg {
	background: #2F80ED;
	background: -webkit-linear-gradient(right, #2F80ED, #56CCF2);
	background: linear-gradient(to left, #2F80ED, #56CCF2);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-netflix {
  color: #8E0E00;
}
.color-scheme-netflix-bg {
	background: #8E0E00;
	background: -webkit-linear-gradient(right, #460700, #8E0E00);
	background: linear-gradient(to left, #460700, #8E0E00);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-pink {
  color: #96004c;
}
.color-scheme-pink-bg {
	background: #96004c;
	background: -webkit-linear-gradient(right, #96004c, #ff6b9d);
	background: linear-gradient(to left, #96004c, #ff6b9d);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-dark {
  color: #414345;
}
.color-scheme-dark-bg {
	background: #414345;
	background: -webkit-linear-gradient(right, #232526, #414345);
	background: linear-gradient(to left, #232526, #414345);
 	color: #fefefe;
}
/*===================================*/
.color-scheme-water {
  color: #74ebd5;
}
.color-scheme-water-bg {
	background: #74ebd5;
	background: -webkit-linear-gradient(right, #ACB6E5, #74ebd5);
	background: linear-gradient(to left, #ACB6E5, #74ebd5);
 	color: #fefefe;
}
/*===================================*/


