/*==============================================================================

 * Template Name: Kuber - Portfolio Template
 * Author: ixtheme - (https://themeforest.net/user/ixtheme)
 * Description: Digital Agency and Portfolio Template
 * Version: 1.0
 * Copyright 2019 ixtheme

==============================================================================
    
    [Table of CSS contents]
    ===================
	
    01. GOOGLE FONTS
    02. DEFAULT CSS
	03. COMMON CSS
		--- cursor style
		--- PRELOADER start
	04. HEADER CSS
		--- navigation close style
		--- navigation style
		--- color chooser style
	05. HERO WRAPPER CSS
		--- hero social links style
    06. EXPERIENCE WRAPPER CSS
    07. EXPERTISE WRAPPER CSS
    08. AWARDS WRAPPER CSS
    09. TESTIMONIAL WRAPPER CSS
    10. CLIENTS WRAPPER CSS
    11. WORKS WRAPPER CSS
        --- works-grid style
        --- work-grid overlay start
        --- work details start
	12. PROMO WRAPPER CSS
	13. JOURNAL WRAPPER CSS
		--- journal pagination strat
		--- journal details start
		--- react journal start
	14. CONTAT WRAPPER CSS
	15. FOOTER WRAPPER CSS
	16. === DARK MODE CSS ===
	

==============================================================================*/

/* ==========================================================================
    01. GOOGLE FONTS
========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Oswald:200,400,500,600&display=swap');
@import url('split.css');
@import url('glitch.css');

/* ==========================================================================
    02. DEFAULT CSS
========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 170%;
	position: relative;
}

body::after {
	position: fixed;
	content: "";
	height: 0;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background-color: #111;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

body.page__tran::after {
	height: 100vh;
}

::-moz-selection {
	background: transparent;
	color: transparent;
	text-shadow: none;
}

::selection {
	background: transparent;
	color: transparent;
	text-shadow: none;
}

a {
	display: inline-block;
	-webkit-transition: .25s;
	transition: .25s;
}

a:hover,
a:active {
	text-decoration: none;
	outline: 0;
}

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

li {
	padding: 0;
	margin: 0;
}

/* ==========================================================================
   03. COMMON CSS
========================================================================== */

.wrapper {
	padding: 130px 0;
}

.wrapper__alt {
	background-color: #f9f9f9;
}

.button-default {
	color: #fff;
	border: 1px solid #aaa;
	background: rgba(0, 0, 0, 0.02);
	height: 42px;
	line-height: 40px;
	padding: 0 30px;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	font-weight: 500;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	text-transform: uppercase;
	font-size: 13px;
	overflow: hidden;
}

.button-default:hover {
	color: #000;
	border-color: #000; 
	background: transparent;
}

.section__header {
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: 3px;
	margin-bottom: 80px;
	font-family: 'Oswald', sans-serif;
}

.main__content {
	transition: filter 0.4s, transform 0s;
	-webkit-transition: filter 0.4s, transform 0s;
	-moz-transition: filter 0.4s, transform 0s;
	-ms-transition: filter 0.4s, transform 0s;
	-o-transition: filter 0.4s, transform 0s;
}

.main__content {
	width: calc(100% - 140px) !important;
	right: 0;
	position: absolute;
}

.main__content_hide {
	opacity: .2;
	filter: blur(7px);
	-webkit-filter: blur(7px);
}

/* cursor style */

.cursor {
	opacity: .7;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 40px;
    width: 40px;
    z-index: 99998;
    border-width: 2px;
    border-style: solid;
    border-color: #E14056;
    transition: .4s cubic-bezier(.23, 1, .32, 1), transform .3s;
    -webkit-transition: .4s cubic-bezier(.23, 1, .32, 1), transform .3s;
    -moz-transition: .4s cubic-bezier(.23, 1, .32, 1), transform .3s;
    -ms-transition: .4s cubic-bezier(.23, 1, .32, 1), transform .3s;
    -o-transition: .4s cubic-bezier(.23, 1, .32, 1), transform .3s;
}

.cursor.hover {
	height: 80px;
	width: 80px;
	opacity: .1;
	background-color: #E14056;
}

.page__hero_title {
	font-size: 48px;
	line-height: 1.5;
	font-weight: 100;
	margin-top: -25px;
	margin-bottom: -20px;
}

.page__hero_title i {
	font-size: 68px;
	color: #000;
	font-style: normal;
	display: block;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

.main__content_hide .page__hero_title i {
	color: #888;
}

.page__hero_title span.sub__text {
	font-size: 18px;
	display: block;
	font-weight: 600;
}

/* -- PRELOADER start */

#preloader{width:100%;height:100vh;overflow:hidden;position:fixed;z-index:99999999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display: flex}#preloader::before,#preloader::after{position:absolute;content:"";width:100%;height:50%;background:#111;top:0;left:0;transition:.4s;-webkit-transition:.4s;-moz-transition:.4s;-ms-transition:.4s;-o-transition:.4s}#preloader::after{top:auto;bottom:0}#preloader.loaded::before,#preloader.loaded::after{height:0%}.scroll-static{position:relative;width:50%;height:1px;overflow:hidden;margin:auto;transition:all .8s;-webkit-transition:all .8s;-moz-transition:all .8s;-ms-transition:all .8s;-o-transition:all .8s;z-index:555}.scroll-static::before{position:absolute;content:"";width:0;height:100%;left:50%;background:#666;animation:showLine 700ms ease-in-out 0s forwards;-o-animation:showLine 700ms ease-in-out 0s forwards;-webkit-animation:showLine 700ms ease-in-out 0s forwards;transform:translateX(-50%);-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%)}@keyframes showLine{0%{width:0;opacity:0}100%{width:100%;opacity:1}}@-o-keyframes showLine{0%{width:0;opacity:0}100%{width:100%;opacity:1}}@-webkit-keyframes showLine{0%{width:0;opacity:0}100%{width:100%;opacity:1}}.scroll-static::after{position:absolute;content:"";width:100%;height:100%;left:-100px;top:0;animation:scroll-static 2s cubic-bezier(.86,0,.07,1) infinite;-o-animation:scroll-static 2s cubic-bezier(.86,0,.07,1) infinite;-webkit-animation:scroll-static 2s cubic-bezier(.86,0,.07,1) infinite;animation-delay:1200ms}@keyframes scroll-static{0%{left:-100%;background:#fff}100%{left:100%;background:#fff}}@-o-keyframes scroll-static{0%{left:-100%;background:#fff}100%{left:100%;background:#fff}}@-webkit-keyframes scroll-static{0%{left:-100%;background:#fff}100%{left:100%;background:#fff}}.scroll-static.loaded{width:100%;opacity:0}.scroll-static.loaded::after{opacity:0}
.work-loader{color:#fff;font-size:8px;margin:auto;width:1em;height:1em;border-radius:50%;position:relative;text-indent:-9999em;-webkit-animation:load4 1.3s infinite linear;animation:load4 1.3s infinite linear;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}@-webkit-keyframes load4{0%,100%{box-shadow:0 -3em 0 .2em,2em -2em 0 0em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 0}12.5%{box-shadow:0 -3em 0 0,2em -2em 0 .2em,3em 0 0 0,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em}25%{box-shadow:0 -3em 0 -.5em,2em -2em 0 0,3em 0 0 .2em,2em 2em 0 0,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em}37.5%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0em 0 0,2em 2em 0 .2em,0 3em 0 0em,-2em 2em 0 -1em,-3em 0em 0 -1em,-2em -2em 0 -1em}50%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 0em,0 3em 0 .2em,-2em 2em 0 0,-3em 0em 0 -1em,-2em -2em 0 -1em}62.5%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 0,-2em 2em 0 .2em,-3em 0 0 0,-2em -2em 0 -1em}75%{box-shadow:0em -3em 0 -1em,2em -2em 0 -1em,3em 0em 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0em 0 .2em,-2em -2em 0 0}87.5%{box-shadow:0em -3em 0 0,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0em 0 0,-2em -2em 0 .2em}}@keyframes load4{0%,100%{box-shadow:0 -3em 0 .2em,2em -2em 0 0em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 0}12.5%{box-shadow:0 -3em 0 0,2em -2em 0 .2em,3em 0 0 0,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em}25%{box-shadow:0 -3em 0 -.5em,2em -2em 0 0,3em 0 0 .2em,2em 2em 0 0,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em}37.5%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0em 0 0,2em 2em 0 .2em,0 3em 0 0em,-2em 2em 0 -1em,-3em 0em 0 -1em,-2em -2em 0 -1em}50%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 0em,0 3em 0 .2em,-2em 2em 0 0,-3em 0em 0 -1em,-2em -2em 0 -1em}62.5%{box-shadow:0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 0,-2em 2em 0 .2em,-3em 0 0 0,-2em -2em 0 -1em}75%{box-shadow:0em -3em 0 -1em,2em -2em 0 -1em,3em 0em 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0em 0 .2em,-2em -2em 0 0}87.5%{box-shadow:0em -3em 0 0,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0em 0 0,-2em -2em 0 .2em}}

.loader__content {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	text-align: center;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.loader__content::before,
.loader__content::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scaleY(1.5);
	-webkit-transform: translate(-50%, -50%) scaleY(1.5);
	-moz-transform: translate(-50%, -50%) scaleY(1.5);
	-ms-transform: translate(-50%, -50%) scaleY(1.5);
	-o-transform: translate(-50%, -50%) scaleY(1.5);
	color: #fff;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 200;
	font-size: 20px;
	z-index: -1;
	letter-spacing: 2px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.loader__content::after {
	content: "Kuber";
	margin-top: -45px;
}

.loader__content::before {
	content: "Loading";
	margin-top: 45px;
}

.loader__content.loaded::after {
	margin-top: -200px;
	opacity: 0;
}

.loader__content.loaded::before {
	margin-top: 200px;
	opacity: 0;
}

/* PRELOADER end */


/* ==========================================================================
   04. HEADER CSS
========================================================================== */

.sidebar__left {
	position: fixed;
	height: 100%;
	width: 140px;
	top: 0;
	left: 0;
	padding: 60px 0;
	z-index: 999;
}

.navigation__toggle {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	position : relative;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 auto;
}

.navigation__toggle::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	border: 1px solid #ddd;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.navigation__toggle:hover::after {
	border: 1px solid #555;
	transform: scale(1.03);
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
}

.navigation__toggle span {
	display: inline-block;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	margin: 0 2px;
	position: relative;
	overflow: hidden;
}

.navigation__toggle span::after,
.navigation__toggle span::before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: background-color .3s;
	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
}

.navigation__toggle:hover span::after,
.navigation__toggle:hover span::before {
	background-color: #000;
}

.navigation__toggle:hover span:nth-child(1)::after,
.navigation__toggle:hover span:nth-child(1)::before {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.navigation__toggle:hover span:nth-child(2)::after,
.navigation__toggle:hover span:nth-child(2)::before {
	-webkit-transition-delay: .35s;
	transition-delay: .35s;
}

.navigation__toggle:hover span:nth-child(3)::after,
.navigation__toggle:hover span:nth-child(3)::before {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.navigation__toggle span::after {
	top: 15px;
}

.navigation__toggle:hover span::after{
	top: 0 !important;
	transition: .6s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}

.navigation__toggle:hover span::before {
	top: -15px;
	transition: .6s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}

/* navigation close style */

.navigation__toggle.navigation__close span {
	overflow: visible;
	margin: 0 1px;
}

.navigation__toggle.navigation__close span::after,
.navigation__toggle.navigation__close span::before,
.navigation__toggle.navigation__close span:nth-child(2) {
	background-color: #000;
}

.navigation__toggle.navigation__close:hover span::after,
.navigation__toggle.navigation__close span::after {
	top: 7px !important;
}

.navigation__toggle.navigation__close span::before,
.navigation__toggle.navigation__close:hover span::before {
	top: -7px;
}

.navigation__toggle.navigation__close span:nth-child(1),
.navigation__toggle.navigation__close span:nth-child(3),
.navigation__toggle.navigation__close span:nth-child(2)::after,
.navigation__toggle.navigation__close span:nth-child(2)::before {
	background: transparent;
}

.navigation__toggle.navigation__close span::after,
.navigation__toggle.navigation__close span::before,
.navigation__toggle.navigation__close:hover span::after,
.navigation__toggle.navigation__close:hover span::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	transition: 0s;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-ms-transition: 0s;
	-o-transition: 0s;
}

/* navigation style */

.navigation {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 140px);
	background: transparent;
	overflow: hidden;
	overflow-y: auto;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}

.navigation_show {
	z-index: 990;
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: .45s;
	transition-delay: .45s;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.navigation_inner {
	text-align: right;
	padding: 30px 0;
	padding-right: 50px;
	position: relative;
}

.navigation_inner::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 2px;
	right: 0;
	background: #000;
	top: 0;
	transition: 0.5s cubic-bezier(.77,0,.175,1);
	-webkit-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-moz-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-ms-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-o-transition: 0.5s cubic-bezier(.77,0,.175,1);
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}

.navigation.navigation_show .navigation_inner::after {
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
}

.navigation .contact__info {
	padding-left: 50px;
}

.navigation .contact__info div {
	margin-left: -30px;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.navigation_show .contact__info div {
	margin-left: 0;
	filter: blur(0);
	-webkit-filter: blur(0);
	opacity: 1;
	visibility: visible;
}

.navigation .nav__label {
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	position: relative;
	right: -30px;
	opacity: 0;
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.navigation.navigation_show .nav__label:nth-child(1),
.navigation.navigation_show .contact__info div:nth-child(1) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.navigation.navigation_show .nav__label:nth-child(2),
.navigation.navigation_show .contact__info div:nth-child(2) {
	-webkit-transition-delay: .65s;
	transition-delay: .65s;
}

.navigation.navigation_show .nav__label:nth-child(3),
.navigation.navigation_show .contact__info div:nth-child(3) {
	-webkit-transition-delay: .8s;
	transition-delay: .8s;
}

.navigation.navigation_show .nav__label:nth-child(4),
.navigation.navigation_show .contact__info div:nth-child(4) {
	-webkit-transition-delay: .95s;
	transition-delay: .95s;
}

.navigation.navigation_show .nav__label:nth-child(5),
.navigation.navigation_show .contact__info div:nth-child(5) {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s;
}

.navigation.navigation_show .nav__label:nth-child(6),
.navigation.navigation_show .contact__info div:nth-child(6) {
	-webkit-transition-delay: 1.25s;
	transition-delay: 1.25s;
}

.navigation.navigation_show .nav__label:nth-child(7),
.navigation.navigation_show .contact__info div:nth-child(7) {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s;
}

.navigation.navigation_show .nav__label {
	opacity: 1;
	right: 0;
	font-weight: 100;
	filter: blur(0px);
	-webkit-filter: blur(0px);
}

.navigation .nav__label_inner {
	font-size: 42px;
	line-height: 1;
	display: inline-block;
	font-weight: 100;
	padding: 15px 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	position: relative;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
}

.navigation .nav__label:first-child .nav__label_inner {
	padding-top: 0;
}

.navigation .nav__label:last-child .nav__label_inner {
	padding-bottom: 0;
}

.navigation .nav__label_inner::after {
	position: absolute;
	content: "";
	background: #000;
	height: 12px;
	width: 0;
	right: 0;
	bottom: 20px;
	z-index: -1;
	transition: 0.5s cubic-bezier(.77,0,.175,1);
	-webkit-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-moz-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-ms-transition: 0.5s cubic-bezier(.77,0,.175,1);
	-o-transition: 0.5s cubic-bezier(.77,0,.175,1);
}

.navigation .nav__label:last-child .nav__label_inner::after {
	bottom: 0;
}

.navigation .nav__label_inner.active::after,
.navigation .nav__label_inner:hover::after {
	width: 99%;
	right: auto;
	left: 0;
	opacity: .2;
}

.sub__menu {
	margin: 5px 0;
	display: none;
}

.sub__menu li a {
	color: #000;
	opacity: .5;
	font-weight: 700;
	padding: 5px 0;
}

.sub__menu li a.active,
.sub__menu li a:hover {
	opacity: 1;
}

/* color chooser style */

.color__chooser_toggle {
	position: relative;
	height: 40px;
	width: 40px;
	background: #eee;
	cursor: pointer;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	margin: 0 auto;
	margin-top: 40px;
	overflow: hidden;
}

.color__chooser_toggle::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 50%;
	right: 0;
	background-color: #000;
	transition: 0.3s cubic-bezier(.77,0,.175,1);
	-webkit-transition: 0.3s cubic-bezier(.77,0,.175,1);
	-moz-transition: 0.3s cubic-bezier(.77,0,.175,1);
	-ms-transition: 0.3s cubic-bezier(.77,0,.175,1);
	-o-transition: 0.3s cubic-bezier(.77,0,.175,1);
}

.color__chooser_toggle:hover::after {
	top: 0;
}

.breadcrumb__text {
	position: absolute;
	line-height: 1;
	text-transform: uppercase;
	left: 50%;
	top: calc(50% + 100px);
	transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	text-align: center;
	display: inline;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 2px;
}


/* ==========================================================================
   05. HERO WRAPPER CSS
========================================================================== */

.hero__content {
	position: relative;
}

.main__content.background__img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #2e2f33;
}

body .vegas-container {
	position: absolute;
	z-index: 1;
}

.vegas-overlay {
	opacity: .5;
	background-image: none;
	background-color: #000;
}

.main__content.kenburns-slideshow::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: .5;
	z-index: -1;
}

.glitch .glitch__img {
	background: url(../img/author00.jpg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.title__person {
	color: #000;
	font-size: 70px;
	font-weight: 700;
	margin-bottom: 25px;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.main__content.background__img .title__person {
	color: #fff;
}

.main__content_hide .title__person {
	color: #888;
}

.main__content.background__img .main__content_hide .title__person {
	color: #aaa;
}

.title__person_info {
	font-size: 18px;
	color: #333;
	line-height: 1.7;
}

.main__content.background__img .title__person_info {
	color: #ddd;
}

.main__content.background__img .slide-horizontal .char::before,
.main__content.background__img .slide-horizontal .char::after {
	color: #fff;
}

/* hero social links style */

.hero__socials {
	margin-top: 30px;
}

.hero__socials .social__label {
	text-transform: uppercase;
	font-size: 13px;
	margin-right: 20px;
	letter-spacing: 1px;
	position: relative;
	line-height: 1.3;
}

.hero__socials .social__label:hover {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.hero__socials .social__label::after {
	position: absolute;
	content: "";
	height: 1px;
	width: 0;
	background: #999;
	right: 0;
	bottom: 0;
	transition: width 0.3s cubic-bezier(.77,0,.175,1);
	-webkit-transition: width 0.3s cubic-bezier(.77,0,.175,1);
	-moz-transition: width 0.3s cubic-bezier(.77,0,.175,1);
	-ms-transition: width 0.3s cubic-bezier(.77,0,.175,1);
	-o-transition: width 0.3s cubic-bezier(.77,0,.175,1);
}

.hero__socials .social__label:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

/* ==========================================================================
   06. EXPERIENCE WRAPPER CSS
========================================================================== */

.experience__row {
	font-size: 16px;
	margin-bottom: 50px;
	opacity: .7;
	font-weight: 500;
}

.experience__row:last-child {
	margin-bottom: 0;
}

.experience__row.featured {
	border-bottom: 1px solid #000;
	padding-bottom: 40px;
	opacity: 1;
	font-weight: 600;
}

/* ==========================================================================
   07. EXPERTISE WRAPPER CSS
========================================================================== */

.expertise__wrapper .section__header {
	margin-bottom: 55px;
}

.expertise__item {
	font-size: 38px;
	margin-top: 25px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	z-index: 1;
	display: inline-block;
	position: relative;
}

.expertise__items .divider {
	display: inline-block;
	height: 5px;
	width: 50px;
	background-color: #000;
	margin: 0 20px;
	position: relative;
	top: -12px;
}

/* ==========================================================================
   08. AWARDS WRAPPER CSS
========================================================================== */

.awards__row {
	font-size: 16px;
	margin-bottom: 50px;
	font-weight: 500;
}

.awards__row:last-child {
	margin-bottom: 0;
}

.awards__row.featured {
	font-weight: 600;
}

/* ==========================================================================
   09. TESTIMONIAL WRAPPER CSS
========================================================================== */

.testimonial__item .testimonial__text {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 35px;
	margin-top: -5px;
	opacity: .7;
	cursor: text;
}

.testimonial__item .reviewer__name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	cursor: text;
}

.testimonial__item .reviewer__designation {
	font-weight: 500;
	opacity: .5;
	cursor: text;
}

.testimonials__carousel .owl-nav {
	margin-top: 30px;
}

.testimonials__carousel .owl-nav button {
	outline: 0;
	border: 0;
	position: relative;
	height: 50px;
	width: 50px;
}

.testimonials__carousel .owl-nav button:first-child {
	margin-left: -17px;
}

.testimonials__carousel .owl-nav button:last-child {
	margin-right: 0;
}

.testimonials__carousel .owl-nav button::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: -1px;
	top: -2px;
	border: 2px solid;
	border-color: #555;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transition: .3s cubic-bezier(.77,0,.175,1);
	-webkit-transition: .3s cubic-bezier(.77,0,.175,1);
	-moz-transition: .3s cubic-bezier(.77,0,.175,1);
	-ms-transition: .3s cubic-bezier(.77,0,.175,1);
	-o-transition: .3s cubic-bezier(.77,0,.175,1);
	opacity: 0;
}

.testimonials__carousel .owl-nav button:hover::after {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	opacity: 1;
}

/* ==========================================================================
   10. CLIENTS WRAPPER CSS
========================================================================== */

.clients__wrapper .section__header {
	margin-bottom: 50px;
}

.client__item {
	margin-top: 30px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.client__item::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	background-color: #000;
	bottom: 0;
	left: 0;
	transition: .4s cubic-bezier(.77,0,.175,1);
	-webkit-transition: .4s cubic-bezier(.77,0,.175,1);
	-moz-transition: .4s cubic-bezier(.77,0,.175,1);
	-ms-transition: .4s cubic-bezier(.77,0,.175,1);
	-o-transition: .4s cubic-bezier(.77,0,.175,1);
	z-index: -1;
}

.client__item:hover::after {
	height: 100%;
	bottom: auto;
	top: 0;
}

.client__item img {
	width: 100%;
	border: 1px solid #eee;
	position: relative;
	z-index: -1;
}

.client__item a {
	display: block;
}

.brand__name {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 15px;
	line-height: 1.3;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	padding: 0 30px;
	visibility: hidden;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition-delay: .12s;
	transition-delay: .12s;
}

.client__item:hover .brand__name {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	visibility: visible;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

/* ==========================================================================
   11. WORKS WRAPPER CSS
========================================================================== */

.mfp-container {
	z-index: 9999;
	padding: 0;
}

button.mfp-close {
	color: #fff;
	z-index: 9999;
	position: fixed;
	right: auto;
	background-color: rgba(0, 0, 0, 0.4) !important;
	opacity: 1;
	left: calc(50% - 30px);
	border-radius: 50%;
	top: 35px;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}

button.mfp-close:hover {
	background-color: #000 !important;
}

.work__title {
	font-size: 75px;
	font-weight: 600;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	padding-left: 30px;
}

.work__title .project__count {
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	left: 0;
	top: 17px;
	color: #aaa;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
}

.work__title::after,
.work__title::before {
	position: absolute;
	content: "";
	background-color: #F94444;
	transition: .4s cubic-bezier(.77,0,.175,1);
	-webkit-transition: .4s cubic-bezier(.77,0,.175,1);
	-moz-transition: .4s cubic-bezier(.77,0,.175,1);
	-ms-transition: .4s cubic-bezier(.77,0,.175,1);
	-o-transition: .4s cubic-bezier(.77,0,.175,1);
}

.work__title::after {
	height: 10px;
	width: 50px;
	right: -86px;
	top: calc(50% - 1px);
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
}

.work__title::before {
	height: 50px;
	width: 10px;
	right: -66px;
	top: calc(50% - 20px);
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}

.work__title:hover::after {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
}

.work__title:hover::before {
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
}

.works__item:last-child .work__title {
	margin-bottom: 0;
}

.work__title a {
	position: relative;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-repeat: no-repeat;
	background-image: linear-gradient(to bottom, #F94444, #F94444), linear-gradient(to bottom, #000, #000);
	background-size: 0% 100%, 100% 100%;
	background-position: center;
	background-position: 0% 50%, 50% 50%;
	transition: background-size .5s cubic-bezier(.77,0,.175,1);
	-webkit-transition: background-size .5s cubic-bezier(.77,0,.175,1);
	-moz-transition: background-size .5s cubic-bezier(.77,0,.175,1);
	-ms-transition: background-size .5s cubic-bezier(.77,0,.175,1);
	-o-transition: background-size .5s cubic-bezier(.77,0,.175,1);
}

.main__content_hide .work__title a {
	background-image: linear-gradient(to bottom, #F94444, #F94444), linear-gradient(to bottom, #888, #888);
}

.work__title a:hover {
	background-size: 100% 100%, 100% 100%;
	background-position: 100% 50%, 50% 50%;
}

/* works-grid style */

.works__item_grid_row {
	margin-top: -50px;
}

.works__item_grid_row a {
	display: block;
}

.works__item_grid {
	height: 220px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 50px;
	position: relative;
}

.work__grid_info {
	font-family: 'Oswald', sans-serif;
	color: #000;
	text-transform: uppercase;
	margin-top: 20px;
}

.work__grid_info h3 {
	font-weight: 500;
}

.works__item_grid_row .project__count {
	margin-bottom: 5px;
	display: inline-block;
	position: relative;
	padding-left: 35px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.works__item_grid_row .project__count::after {
	position: absolute;
	content: "";
	height: 1px;
	width: 25px;
	background: #000;
	left: 0;
	top: 50%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.works__item_grid_row a:hover .project__count {
	padding-left: 25px;
}

.works__item_grid_row a:hover .project__count::after {
	width: 15px;
}

/* work-grid overlay start */

.works__item_grid.overlay .work__grid_info {
	margin-top: 0;
	background: #fff;
	position: absolute;
	left: 15px;
	bottom: 35px;
	width: calc(100% - 30px);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.works__item_grid.overlay:hover .work__grid_info {
	bottom: 15px;
	opacity: 1;
	visibility: visible;
}

.works__item_grid.overlay .work__grid_info span,
.works__item_grid.overlay .work__grid_info h3 {
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	margin-left: 10px;
	opacity: 0;
}

.works__item_grid.overlay:hover .work__grid_info span {
	margin-left: 0;
	opacity: 1;
	-webkit-transition-delay: .22s;
	transition-delay: .22s;
}

.works__item_grid.overlay:hover .work__grid_info h3 {
	margin-left: 0px;
	opacity: 1;
	-webkit-transition-delay: .15s;
	transition-delay: .15s;
}

.works__item_grid.overlay .project__count {
	padding-left: 0 !important;
}

.works__item_grid.overlay .project__count::after {
	display: none;
}

/* work details start */

.ajax__work_popup {
	padding-top: 120px;
	padding-bottom: 50px;
	background-color: #fff;
	position: relative;
	top: 50px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.mfp-ready .ajax__work_popup {
	top: 0;
	opacity: 1;
	visibility: visible;
}

.work__image,
.work__image img {
	background-color: #fbfbfb;
	text-align: center;
}

.work__details_info {
	margin-bottom: 50px;
}

.work__details_info .work__title {
	padding-left: 0;
	margin-bottom: 10px;
	margin-left: -4px;
	margin-top: -20px;
}

.work__details_info .work__title::after,
.work__details_info .work__title::before {
	display: none;
}

.work__details_info p {
	font-size: 17px;
	font-weight: 600;
	opacity: .6;
}

.work__details_text,
.work__details_info_cards,
.work__image {
	margin-bottom: 70px;
}

.work__details_text p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
}

.work__details_info_cards .card__item {
	border: 1px solid #eee;
	padding: 15px 20px;
	margin-bottom: 25px;
	border-radius: 3px;
}

.work__details_info_cards .card__item:last-child {
	margin-bottom: 0;
}

.work__details_info_cards .card__item h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 8px;
	opacity: .5;
}

.work__details_info_cards .card__item p {
	font-size: 16px;
	font-weight: 500;
}

.work__details_info_cards.cards__two .work__details_text {
	margin-bottom: 0;
}

.work__details_info_cards.cards__two .card__item {
	border: 0;
	padding: 0;
}


/* ==========================================================================
   12. PROMO WRAPPER CSS
========================================================================== */

.promo__wrapper h2 {
	font-size: 28px;
	width: 420px;
	max-width: 100%;
	line-height: 1.5;
	font-weight: 600;
}

.promo__wrapper .button-default {
	margin-top: 40px;
}

/* ==========================================================================
   13. JOURNAL WRAPPER CSS
========================================================================== */

.journal__item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 350px;
	margin-bottom: 50px;
	box-shadow: 0 5px 25px #ddd;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	position: relative;
	z-index: 1;
}

.journal__item::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.3;
	z-index: -1;
	left: 0;
	top: 0;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.journal__tag {
	display: inline-block;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 6px 10px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	line-height: 1;
	margin-bottom: 25px;
}

.journal__item a {
	display: block;
	color: #fff;
	text-shadow: 0 1px 5px #5a5a5a;
	width: 350px;
	max-width: 100%;
	font-family: 'Oswald', sans-serif;
	font-size: 38px;
	line-height: 1.2;
	text-transform: capitalize;
	position: relative;
}

.journal__item a .jurnal__date {
	font-size: 15px;
	display: block;
	margin-top: 20px;
}

.journal__item a .journal__title {
	display: inline;
    text-decoration: none;
    background-image: linear-gradient(#3deaa4, #3deaa4);
    background-position: 0% 80%;
    background-repeat: no-repeat;
    background-size: 0% 8px;
    transition: background-size .5s;
    -webkit-transition: background-size .5s;
    -moz-transition: background-size .5s;
    -ms-transition: background-size .5s;
    -o-transition: background-size .5s;
}

.journal__item a:hover .journal__title {
    background-size: 100% 8px;
}

.journal__inner {
	position: relative;
	top: 50%;
	margin-left: 100px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

/* journal pagination start */

.paginations {
	margin-top: 70px;
	text-align: center;
}

.paginations li {
	display: inline-block;
	margin: 0 6px;
	height: 40px;
	line-height: 38px;
	width: 40px;
	text-align: center;
	border-radius: 50%;
	color: #000;
	border: 1px solid #000;
	font-size: 15px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.paginations li:first-child,
.paginations li:last-child {
	width: auto;
	border: 0;
	padding: 0 7px 0 5px;
	text-transform: capitalize;
}

.paginations li:first-child:hover,
.paginations li:last-child:hover {
	color: #000;
	opacity: .5;
}

.paginations li a {
	display: block;
	color: inherit;
}

.paginations li.active,
.paginations li:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
	display: inline-block;
}

.paginations li:first-child a,
.paginations li:last-child a,
.paginations li:hover:first-child,
.paginations li:hover:last-child {
	background-color: transparent;
	font-weight: 500;
}

.paginations li a span {
	font-size: 12px;
	margin: 0 3px;
}

.paginations li a span.ti-plus {
	font-size: 16px;
	position: relative;
	top: 1px;
}

/* journal details start */

.journal__details_header {
	margin-bottom: 50px;
}

.journal__details .journal__title {
	font-family: 'Oswald', sans-serif;
	font-size: 38px;
	display: block;
	font-weight: 700;
	margin-top: 10px;
	line-height: initial;
}

.journal__details .journal__post_date {
	display: block;
	font-weight: 500;
	position: relative;
	padding-left: 50px;
}

.journal__details .journal__post_date::after {
	position: absolute;
	content: "";
	height: 1px;
	width: 30px;
	background-color: #000;
	left: 0;
	bottom: 13px;
}

.journal__details_inner {
	margin-top: 50px;
}

.journal__normal_text {
	font-weight: 500;
	font-size: 16px;
	line-height: 2;
}

.journal__blocked_text {
	margin: 40px 0;
	padding: 25px 0;
	padding-left: 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 2;
	position: relative;
	border-left: 1px solid #aaa;
}

.journal__blocked_text::after,
.journal__blocked_text::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 280px;
	background-color: #aaa;
	top: 0;
	left: 0;
}

.journal__blocked_text::before {
	width: 150px;
	top: auto;
	bottom: 0;
}

/* react journal start */

.react__journal {
	margin-top: 100px;
}

.react__journal h4 {
	font-size: 18px;
	margin-bottom: 20px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.react__journal .react__btn {
	display: inline-block;
	background: transparent;
	height: 45px;
	width: 45px;
	margin: 0 auto;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 17px;
	border: 1px solid #000;
	color: #000;
	border-radius: 50%;
	line-height: 48px;
	cursor: pointer;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.react__journal .react__btn:hover {
	opacity: .5;
}

.react__journal .react__btn.active {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}


/* ==========================================================================
   14. CONTAT WRAPPER CSS
========================================================================== */

.contact__form_heading {
	font-size: 32px;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 40px;
}

.input_field {
	font-weight: 500;
	height: 45px;
	width: 100%;
	margin-bottom: 30px;
	border: 2px solid #000;
	padding: 0 20px;
	border-radius: 2px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

textarea.input_field {
	padding-top: 15px;
	height: 120px;
}

.contact__form_wrapper button.button-default:focus {
	outline: 0;
}

.contact__info {
	margin-bottom: 30px;
}

.contact__info .text__heading_sm {
	font-size: 16px;
	font-family: 'Oswald', sans-serif;
	margin-bottom: 30px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.direct__contact_info {
	margin-bottom: 50px;
}

.direct__contact_info p {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 5px;
	opacity: .7;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.direct__contact_info p:hover {
	opacity: 1;
}

.direct__contact_info p:last-child {
	margin-bottom: 0;
}

.custom-checkbox label::-moz-selection {
	color: #fff;
}

.custom-checkbox label::selection {
	color: #fff;
}

.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	border-color: #000;
	background-color: #000;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.custom-checkbox .custom-control-label::before {
	border-radius: 50%;
}

.custom-control-input:focus~.custom-control-indicator {
    box-shadow: none;
}

.contact__form_services {
	margin-bottom: 25px;
	margin-top: -12px;
}

.contact__form_services .custom-control.custom-checkbox {
	display: inline-block;
	padding: 8px 13px;
	border: 2px solid #000;
	border-radius: 3px;
	margin-right: 15px;
	margin-top: 15px;
	cursor: pointer;
	padding-left: 15px;
	margin-left: 6px;
	font-weight: 500;
}

.contact__form_services .custom-control.custom-checkbox label {
	cursor: pointer;
}

.custom-control-label::after,
.custom-control-label::before {
	width: 1.1rem;
	height: 1.1rem;
}

.custom-control-label::before {
	border: #000 solid 2px;
}

/* ==========================================================================
   15. FOOTER WRAPPER CSS
========================================================================== */

.footer__wrapper {
	padding: 60px 0;
}

.footer__wrapper .copyright__text {
	font-weight: 600;
	color: #555;
}

.footer__wrapper .copyright__text a {
	color: #000;
}

.footer__wrapper .social__links {
	text-align: right;
}

.social__links a {
	display: inline-block;
	color: #000;
	margin: 0 3px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	padding: 0 8px;
}

.social__links a:first-child {
	margin-left: 0;
	padding-left: 0;
}

.social__links a:last-child {
	margin-right: 0;
	padding-right: 0;
}


/* ==========================================================================
   16. DARK MODE CSS
========================================================================== */

body.dark__mode {
	color: #fff;
}

.dark__mode .ajax__work_popup,
.dark__mode .navigation_show,
.dark__mode .input_field,
.dark__mode .custom-control-label::before,
.dark__mode .sidebar__left,
.dark__mode .main__content {
	background-color: #1f2022;
}

.dark__mode .input_field,
.dark__mode .work__grid_info,
.dark__mode .paginations li,
.dark__mode .footer__wrapper .copyright__text a,
.dark__mode .page__hero_title i,
.dark__mode .sub__menu li a,
.dark__mode .social__links a,
.dark__mode .slide-vertical .char::before,
.dark__mode .slide-vertical .char::after,
.dark__mode .slide-horizontal .char::before,
.dark__mode .slide-horizontal .char::after,
.dark__mode .breadcrumb__text,
.dark__mode .title__person {
	color: #fff;
}

.dark__mode .footer__wrapper .copyright__text,
.dark__mode .title__person_info {
	color: #bbb;
}

.dark__mode .journal__details .journal__post_date::after,
.dark__mode .works__item_grid_row .project__count::after,
.dark__mode .expertise__items .divider,
.dark__mode .navigation .nav__label_inner::after,
.dark__mode .navigation_inner::after,
.dark__mode .navigation__toggle:hover span::after,
.dark__mode .navigation__toggle:hover span::before,
.dark__mode .navigation__toggle.navigation__close span:nth-child(2),
.dark__mode .navigation__toggle span::after,
.dark__mode .navigation__toggle span::before,
.dark__mode .color__chooser_toggle::after {
	background-color: #fff;
}

.dark__mode .works__item_grid.overlay .work__grid_info,
.dark__mode .wrapper__alt {
	background-color: #191a1c;
}

.dark__mode .journal__item {
	box-shadow: 0 5px 25px #151515;
}

.dark__mode .navigation__toggle.navigation__close span:nth-child(1),
.dark__mode .navigation__toggle.navigation__close span:nth-child(3),
.dark__mode .navigation__toggle.navigation__close span:nth-child(2)::after,
.dark__mode .navigation__toggle.navigation__close span:nth-child(2)::before {
	background: transparent;
}

.dark__mode .color__chooser_toggle {
	background-color: #000;
}

.dark__mode .main__content_hide {
	opacity: 1;
	filter: blur(0px);
	-webkit-filter: blur(0px);
}

.dark__mode .work__title a {
	background-image: linear-gradient(to bottom, #F94444, #F94444), linear-gradient(to bottom, #fff, #fff);
}


.dark__mode .react__journal .react__btn {
	border: 1px solid #fff;
	color: #fff;
}

.dark__mode .react__journal .react__btn:hover {
	opacity: .5;
}

.dark__mode .paginations li.active,
.dark__mode .paginations li:hover,
.dark__mode .react__journal .react__btn.active {
	border: 1px solid #fff;
	background: #fff;
	color: #000;
}

.dark__mode .paginations li:first-child a,
.dark__mode .paginations li:last-child a,
.dark__mode .paginations li:hover:first-child,
.dark__mode .paginations li:hover:last-child {
	background-color: transparent;
	border: 0;
	color: #fff;
}

.dark__mode .input_field,
.dark__mode .button-default:hover,
.dark__mode .custom-control-label::before,
.dark__mode .contact__form_services .custom-control.custom-checkbox,
.dark__mode .react__journal.react__btn,
.dark__mode .paginations li,
.dark__mode .experience__row.featured {
	border-color: #999;
}

.dark__mode .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.dark__mode .custom-control-input:checked ~ .custom-control-label::before {
	background-color: #fff;
	border-color: #fff;
}

.dark__mode .work__details_info_cards .card__item h6 {
	opacity: .7;
}

