/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Awaiken Technology
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Banner area css
04. Characters area css
05. Design area css
06. Video area css
07. Service area css
08. Our Team area css
09. Testimonial area css
10. Photo Gallery area css
11. Download Game area css
12. Similar Game area css
13. Recent News area css
14. Newsletter area css
15. Footer area css
16. Media Screens
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/Tungsten-Semibold.eot');
    src: url('../fonts/Tungsten-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Tungsten-Semibold.woff2') format('woff2'),
        url('../fonts/Tungsten-Semibold.woff') format('woff'),
        url('../fonts/Tungsten-Semibold.ttf') format('truetype'),
        url('../fonts/Tungsten-Semibold.svg#Tungsten-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/Tungsten-Medium.eot');
    src: url('../fonts/Tungsten-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Tungsten-Medium.woff2') format('woff2'),
        url('../fonts/Tungsten-Medium.woff') format('woff'),
        url('../fonts/Tungsten-Medium.ttf') format('truetype'),
        url('../fonts/Tungsten-Medium.svg#Tungsten-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

body{
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #6b6e73;
}

body.on-side{
	margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

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

a:focus{
	text-decoration: none;
	outline: 0;
}

::-moz-selection{
	background: #414145;
	color: #fff;
}

::selection{
	background: #414145;
	color: #fff;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ecf1f5;
	z-index: 9999;
	text-align: center;
}

.loader{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 120px;
	display: flex;
	flex-flow: column nowrap;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .diamond{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #ff685c;
    -webkit-transform: translateY(0) rotate(45deg) scale(0);
    transform: translateY(0) rotate(45deg) scale(0);
    -webkit-animation: diamonds 1500ms linear infinite;
    animation: diamonds 1500ms linear infinite;
}

.preloader .diamond:nth-child(1) {
    -webkit-animation-delay: -1000ms;
    animation-delay: -1000ms;
}

.preloader .diamond:nth-child(2) {
    -webkit-animation-delay: -2000ms;
    animation-delay: -2000ms;
}

.preloader .diamond:nth-child(3) {
    -webkit-animation-delay: -3000ms;
    animation-delay: -3000ms;
}

.preloader .diamond:nth-child(4) {
    -webkit-animation-delay: -4000ms;
    animation-delay: -4000ms;
}

@-webkit-keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

@keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

.row.no-gutters{
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.btn-custom{
	display: inline-block;
	font-size: 16px;
	color: #fff;
	background: #37b772;
	padding: 13px 29px;
	border-radius: 2px;
	min-width: 140px;
	text-align: center;}

.btn-custom:focus,
.btn-custom:hover{
	color: #37b772;
	background: none;
	border: 1px solid #37b772;
	padding: 12px 28px;
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

.header .navbar{
	padding: 0;
	background: #fff;
	box-shadow: 1px 0px 28px 0px rgba(7, 7, 7, 0.15);
	transition: all 0.3s;
}

.header .navbar-brand img{
	height: 54px;
	transition: all 0.3s;
}

.header .navbar-light .navbar-nav .nav-item{
	position: relative;
	padding: 32px 0;
	transition: all 0.3s;
}

.header .navbar-light .navbar-nav .nav-item ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px;
	padding: 6px 0;
	margin: 0;
	background: #37b772;
}

.header .navbar-light .navbar-nav .nav-item ul li{
	display: block;
	width: 100%;
	padding: 0;
}

.header .sticky-header.navbar-light .navbar-nav .nav-item ul li{
	padding: 0;
}

.header .navbar-light .navbar-nav .nav-item ul li a{
	display: block;
	color: #fff;
	font-size: 14px;
	padding: 8px 16px;
	transition: all 0.3s;
}

.header .navbar-light .navbar-nav .nav-item ul li a:hover{
	background: rgba(255,255,255,0.2);
	color: #fff;
}

.header .navbar-light .navbar-nav .nav-item:hover ul{
	display: block;
}

.header .sticky-header .navbar-brand img{
	height: 44px;
}

.header .sticky-header.navbar-light .navbar-nav .nav-item{
	padding: 17px 0;
}

.header .navbar-light .navbar-nav .nav-link{
	color: #637790;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 14px;
}

.header .navbar-light .navbar-nav .nav-link.download-link{
	background: #37b772;
	color: #fff;
	border-radius: 2px;
	padding: 8px 20px;
	vertical-align: middle;
	margin-left: 10px;
}

.header .navbar-light .navbar-nav .nav-link.download-link:hover{
	background: #05cbfb;
	color: #fff;
}

.header .navbar-light .navbar-nav .nav-link:hover{
	color: #37b772;
}

.header .navbar-light .navbar-nav .nav-link:focus{
	color: #37b772;
}

.header .navbar-light .navbar-nav .nav-link.download-link:focus{
	color: #fff;
}

.header .navbar-light .navbar-nav .nav-item .active.nav-link{
	color: #05cbfb;
}

.header .navbar-light .navbar-nav .nav-item .active.nav-link.download-link{
	color: #fff;
}

.header .navbar-toggle{
	display: none;
	position: absolute;
	right: 15px;
	top: 14px;
	transition: all 0.3s;
}

.header .sticky-header .navbar-toggle{
	top: 10px;
}

#responsive-menu{
	display: none;
	background: rgba(255,255,255,0.9);
    position: relative;
    top: 12px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 15px;
}

.header .sticky-header #responsive-menu{
	background: none;
}

.header .slicknav_menu{
	padding: 0;
	background: none;
}

.header .slicknav_btn{
	padding: 8px;
	border: 1px solid #414145;
	border-radius: 0;
	margin: 0;
	background: none;
}

.header .slicknav_icon-bar{
	box-shadow: none;
	height: 1px;
	margin-top: 1px;
	margin-bottom: 5px;
	background: #414145;
}

.header .slicknav_nav{
	padding: 10px 0;
}

.header .slicknav_nav a{
	color: #637790;
	margin: 0;
	padding: 6px 2px;
}

.header .slicknav_nav a.active{
	color: #ff5f47;
}

.header .slicknav_nav a:hover{
	background: none;
	color: #ff5f47;
}

/************************************/
/*****   03. Banner area css    *****/
/************************************/

.banner{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: #f5f7fa;
	background-size: cover;
	padding: 160px 0 100px;
}

.banner .row{
	position: relative;
	z-index: 1;
}

.banner .header-content h1,
.banner .header-content h2{
	color: #414145;
	font-size: 60px;
	font-weight: 600;
	font-family: 'Tungsten';
	margin-bottom: 0.5em;
}

.banner .header-content p{
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.btn-banner .btn-custom{
	margin-right: 10px;
}

.header-slider-wrapper{
	position: relative;
}

.header-slide{
	padding: 20px 40px;
	text-align: center;
}

.header-slide img{
	box-shadow: 1px 0px 28px 0px rgba(7, 7, 7, 0.15);
}

.header-button-prev,
.header-button-next{
	display: inline-block;
	font-size: 26px;
	background: #37b772;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 100;
}

.header-button-prev:hover,
.header-button-next:hover{
	background: #37b772;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.header-button-prev{
	left: 0;
}

.header-button-next{
	right: 0;
}

/**************************************/
/*****   04. Features area css    *****/
/**************************************/

.features-section{
	padding: 100px 0 50px;
}

.feature-single .icon-box{
	display: inline-block;
	font-size: 70px;
	background: #37b772;
	line-height: 1em;
	margin-bottom: 30px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-single h3{
	font-size: 30px;
	font-family: 'Tungsten';
	color: #414145;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.feature-single p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.feature-single .btn-readmore{
	display: inline-block;
	color: #8d97ad;
	font-size: 14px;
	font-weight: 500;
	padding-bottom: 2px;
	position: relative;
	transition: all 0.3s;
}

.feature-single .btn-readmore:after{
	content: '\f142';
	font-family: Flaticon;
	margin-left: 10px;
}

.feature-single .btn-readmore:before{
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #8d97ad;
	transition: all 0.3s;
}

.feature-single .btn-readmore:hover{
	color: #05cbfb;
}

.feature-single .btn-readmore:hover:before{
	background: #05cbfb;
}

/**************************************/
/*****   05. About us area css    *****/
/**************************************/

.about-us-section{
	padding: 50px 0;
}

.about-image{
	padding-right: 20px;
	margin-top: 36px;
}

.about-content{
	background: #f5f7fa;
	padding: 30px 30px 30px 0;
	position: relative;
}

.about-content:before{
	content: '';
	display: block;
	width: 100px;
	position: absolute;
	left: -100px;
	top: 0;
	bottom: 0;
	background: #f5f7fa;
	z-index: -1;
}

.about-entry h2{
	font-size: 44px;
	font-weight: 600;
	color: #414145;
	font-family: 'Tungsten';
	margin-bottom: 20px;
}

.about-entry p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.about-counter{
	margin-bottom: 30px;
}

.about-counter:after{
	content: '';
	display: block;
	clear: both;
}

.about-counter-single{
	width: 50%;
	float: left;
	padding-right: 20px;
}

.about-counter-single h3{
	font-size: 30px;
	font-weight: 700;
	color: #37b772;
	margin: 0;
}

.about-counter-single p{
	font-size: 18px;
	color: #8d97ad;
	margin: 0;
}

/**************************************/
/*****   06. Services area css    *****/
/**************************************/

.services-section{
	padding: 50px 0;
}

.section-title{
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2{
	font-size: 44px;
	color: #414145;
	font-family: 'Tungsten';
	font-weight: 600;
	margin-bottom: 14px;
}

.section-title p{
	font-size: 14px;
	color: #8d97ad;
	margin: 0;
}

.service-single{
	margin-top: 10px;
	margin-bottom: 30px;
}

.service-single .icon-box{
	display: inline-block;
	font-size: 50px;
	background: #37b772;
	line-height: 1em;
	margin-bottom: 20px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-single h3{
	font-size: 26px;
	font-family: 'Tungsten';
	color: #414145;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.service-single p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.service-single .btn-readmore{
	display: inline-block;
	color: #8d97ad;
	font-size: 14px;
	font-weight: 500;
	padding-bottom: 2px;
	position: relative;
	transition: all 0.3s;
}

.service-single .btn-readmore:after{
	content: '\f142';
	font-family: Flaticon;
	margin-left: 10px;
}

.service-single .btn-readmore:before{
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #8d97ad;
	transition: all 0.3s;
}

.service-single .btn-readmore:hover{
	color: #37b977;
}

.service-single .btn-readmore:hover:before{
	background: #37b977;
}

/*****************************************/
/*****   07. Testimonial area css    *****/
/*****************************************/

.testimonial-section{
	padding: 50px 0 100px;
}

.testimonial-section .section-title{
	text-align: left;
	margin-bottom: 0;
}

.testimonial-section .section-title img{
	margin-bottom: 20px;
}

.testimonial-slider-wrapper{
	margin-top: 20px;
}

.testimonial-slide p{
	font-size: 18px;
	color: #8d97ad;
	font-style: italic;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.testimonial-slide h3{
	font-size: 20px;
	color: #414145;
	font-weight: 700;
}

.recent-article-section{
	padding: 100px 0;
	background: #f5f7fa;
}

.recent-article-section .section-title{
	text-align: left;
}

.article-single{
	text-align: center;
}

.article-single img{
	border: 5px solid #fff;
	height: auto;
	box-shadow: 1px 0px 28px 0px rgba(7, 7, 7, 0.15);
}

.article-single h3{
	font-size: 20px;
	color: #414145;
	line-height: 1.5em;
	font-weight: 600;
	margin: 0;
}

.article-single h3 a{
	color: inherit;
	transition: all 0.3s;
}

.article-single h3 a:hover{
	color: #05cbfb;
}

.faq-section{
	padding: 100px 0;
}

.faq-single{
	margin-bottom: 30px;
}

.faq-single h3{
	font-size: 16px;
	color: #414145;
	font-weight: 600;
	margin-bottom: 14px;
	line-height: 1.5em;
}

.faq-single p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
}

footer.main-footer{
	background: #414145;
}

.mega-footer{
	padding: 60px 0 30px;
}

.footer-title{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 30px;
}

.footer-about p{
	color: #fff;
	font-size: 14px;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}

.footer-social-link ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-link ul li{
	padding: 2px 0;
}

.footer-social-link ul li a{
	display: block;
	color: #fff;
	font-weight: 500;
	transition: all 0.3s;
}

.footer-social-link ul li a:hover{
	color: #37b772;
}

.footer-newsletter p{
	font-size: 14px;
	color: #fff;
}

.newsletter-form{
	background: #fff;
	padding: 4px;
	margin-top: 30px;
}

.newsletter-form .form-group{
	margin: 0;
}

.newsletter-form .form-control{
	display: inline-block;
	width: 70%;
	margin-right: -5px;
	border-radius: 0;
	border: none;
	box-shadow: none;
	outline: 0;
	font-family: inherit;
	font-weight: 500;
	font-size: 14px;
	height: 40px;
}

.newsletter-form .btn-subscribe{
	width: 30%;
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	height: 40px;
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	background: #37b772;
	cursor: pointer;
}

.newsletter-form .btn-subscribe:hover,
.newsletter-form .btn-subscribe:focus{
	background: #414145;
	outline: 0;
	box-shadow: none;
}

.footer-copyright{
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

.footer-menu{
	margin-top: 18px;
	text-align: center;
}

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

.footer-menu ul li{
	display: inline-block;
}

.footer-menu ul li:after{
	content: '|';
	color: #fff;
	font-size: 14px;
	margin-left: 4px;
}

.footer-menu ul li:last-child:after{
	display: none;
}

.footer-menu ul li a{
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
}

.footer-menu ul li a:hover{
	color: #37b772;
}

.footer-copyright-text{
	margin-top: 18px;
}

.footer-copyright-text p{
	margin: 0;
	color: #8d97ad;
	font-size: 14px;
	text-align: right;
}

/* Services Page start */
.page-header-wrapper{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: #f5f7fa;
	background-size: cover;
	padding: 160px 0 60px;
}

.page-header-title{
	text-align: center;
}

.page-header-title h5{
	font-size: 20px;
	font-weight: 500;
	color: #8d97ad;
}

.page-header-title h1,
.page-header-title h2{
	font-family: 'Tungsten';
	font-size: 60px;
	color: #414145;
	font-weight: 600;
	margin-bottom: 16px;
}

.page-header-title p{
	color: #8d97ad;
	max-width: 900px;
	margin: 0 auto;
}

.services-page{
	padding: 100px 0 50px;
}

.services-content p{
	font-size: 16px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.service-features{
	padding: 20px;
	border: 1px solid #e6e9ed;
	box-shadow: 1px 0px 28px 0px rgba(69, 77, 89, 0.15);
}

.service-features .icon-box{
	display: inline-block;
	font-size: 50px;
	background: #37b772;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-features .icon-box img{
    margin-bottom: 15px;
}

.service-features h3{
	font-family: 'Tungsten';
	font-size: 26px;
	color: #414145;
	font-weight: 500;
	margin-bottom: 10px;
}

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

.service-features ul li{
	font-size: 14px;
	color: #8d97ad;
	position: relative;
	padding: 4px 0 4px 26px;
	line-height: 1.7em;
}

.service-features ul li:before{
	content: '\f00c';
	display: block;
	color: #37b772;
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 4px;
}

.service-features h5{
	background: #37b772;
	margin: 10px 0;
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 2px;
}

.btn-service-contact{
	display: inline-block;
	text-align: center;
	color: #8d97ad;
	font-size: 14px;
	position: relative;
	transition: all 0.3s;
}

.btn-service-contact:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	bottom: 0;
	background: #8d97ad;
	transition: all 0.3s;
}

.btn-service-contact:hover{
	color: #37b977;
}

.btn-service-contact:hover:after{
	background: #37b977;
}

.services-main-features{
	padding: 50px 0 100px;
}

.process-step-wrapper{
	padding: 100px 0;
	background: #f5f7fa;
}

.process-step-wrapper .section-title{
	margin-bottom: 60px;
}

.process-slide-list{
	text-align: center;
	margin-bottom: 4%;
}

.process-slide-list .step-item{
	display: inline-block;
	width: 14.28%;
	opacity: 0.6;
	transition: all 0.3s;
	cursor: pointer;
}

.process-slide-list .step-item.active-step{
	opacity: 1;
}

.process-slide-list .step-item .step-icon{
	display: inline-block;
	font-size: 40px;
	background: #37b772;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.process-slide-list .step-item .step{
	display: block;
	font-size: 16px;
	color: #414145;
	text-transform: uppercase;
}

.process-step-slide{
	text-align: center;
}

.process-step-slide h3{
	font-family: 'Tungsten';
	font-size: 40px;
	color: #414145;
	font-weight: 500;
	margin-bottom: 20px;
}

.process-step-slide p{
	font-size: 16px;
	color: #8d97ad;
	margin-bottom: 20px;
}

.step-pagination{
	text-align: center;
	margin-top: 20px;
	display: none;
}

.step-button-next,
.step-button-prev{
	font-size: 20px;
	display: inline-block;
	margin: 0 4px;
	cursor: pointer;
	background: linear-gradient(to right,#05cbfb,#6ff1b5);
	background: -webkit-linear-gradient(to right,#05cbfb,#6ff1b5);
	background: -moz-linear-gradient(to right,#05cbfb,#6ff1b5);
	background: -o-linear-gradient(to right,#05cbfb,#6ff1b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.step-button-next:hover,
.step-button-prev:hover{
	background: #05cbfb;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.step-slide-list{
	text-align: center;
	margin-bottom: 4%;
}

.step-slide-list .step-item{
	display: inline-block;
	width: 14.28%;
	opacity: 0.6;
	transition: all 0.3s;
	cursor: pointer;
}

.step-slide-list .step-item.active-step{
	opacity: 1;
}

.step-slide-list .step-item .step-icon{
	display: inline-block;
	margin-bottom: 10px;
}

.step-slide-list .step-item .step{
	display: block;
	font-size: 16px;
	color: #8d97ad;
	text-transform: uppercase;
}

.step-slide{
	text-align: center;
}

.step-slide h3{
	font-family: 'Tungsten';
	font-size: 40px;
	color: #414145;
	font-weight: 500;
	margin-bottom: 20px;
}

.step-slide p{
	font-size: 16px;
	color: #8d97ad;
	margin-bottom: 20px;
}

.testimonial-inner-page{
	padding: 100px 0 50px;
}

.faq-inner-page{
	padding: 50px 0 100px;
}

.service-contact-us{
	padding: 100px 0;
	background: #f5f7fa;
}

/* Portfolio Page Start */

.portfolio-item-section{
	padding: 100px 0;
}

.portfolio-item{
	text-align: center;
	margin-bottom: 40px;
}

.portfolio-item figure{
	background: #f5f7fa;
	border: 1px solid #d0d3d8;
	padding: 50px 30px 0;
	overflow: hidden;
	margin-bottom: 30px;
}

.portfolio-item figure img{
	box-shadow: 1px 0px 28px 0px rgba(69, 77, 89, 0.32);
	height:auto;
}

.portfolio-item h3{
	font-family: 'Tungsten';
	font-weight: 600;
	font-size: 40px;
	color: #414145;
}

.portfolio-item h3 a{
	color: inherit;
}

.portfolio-item p{
	color: #8d97ad;
	margin: 0;
}

.portfolio-testimonial{
	background: #f5f7fa;
	padding: 100px 0;
}

.get-started-infobar{	
	padding: 100px 0;
}

.get-started-box{
	text-align: center;
}

.get-started-box h2{
	font-family: 'Tungsten';
	font-size: 44px;
	color: #414145;
	margin-bottom: 20px;
}

.portfolio-single-header-wrapper{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: #f5f7fa;
	background-size: cover;
	padding: 160px 0 0;
}

.portfolio-single-header{
	text-align: center;
}

.portfolio-single-header h1,
.portfolio-single-header h2{
	font-family: 'Tungsten';
	font-size: 40px;
	color: #414145;
	font-weight: 600;
	margin-bottom: 16px;
}

.portfolio-single-header p{
	font-size: 14px;
	color: #8d97ad;
	max-width: 900px;
	margin: 0 auto;
}


.portfolio-single-header figure{
	padding-top: 60px;
	margin: 0;
	overflow: hidden;
}

.portfolio-single-header figure img{
	box-shadow: 1px 0px 28px 0px rgba(69, 77, 89, 0.32);
}

.portfolio-single-page{
	padding: 100px 0;
}

.portfolio-single-services h3,
.portfolio-single-content h3{
	font-size: 16px;
	color: #8d97ad;
	font-weight: 600;
	margin-bottom: 14px;
}

.portfolio-single-tags a{
	color: #414145;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.7em;
}

.btn-preview{
	text-align: right;
}

.portfolio-single-content p{
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.portfolio-single-content strong{
	font-weight: 600;
	color: #414145;
}

.testimonial-single{
	background: #f5f7fa;
	padding: 100px 0;
}

.testimonial-single .section-title{
	text-align: left;
	margin: 0;
}

.testimonial-single .section-title h2{
	font-size: 40px;
}

.faq-item-section{
	padding: 100px 0 70px;
}

.bg-gray{
	background: #f5f7fa;
}

/* About us Page Start */

.about-us-content{
	padding: 100px 0 50px;
}

.about-us-title h2{
	font-size: 14px;
	text-transform: uppercase;
	color: #8d97ad;
	font-weight: 500;
	margin-bottom: 20px;
}

.about-us-title p{
	font-size: 26px;
	color: #414145;
	font-weight: 600;
}

.about-us-entry p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.about-features-section{
	padding: 50px 0;
}

.about-page-aboutus{
	padding: 50px 0 100px;
}

.our-mission-section{
	background: #f5f7fa;
	padding: 100px 0;
}

.our-mission p{
	font-size: 30px;
	color: #414145;
	font-weight: 500;
	font-style: italic;
	line-height: 1.7em;
	margin: 0;
}

.about-services-section{
	padding: 100px 0 50px;
}

.how-we-work{
	padding: 50px 0 100px;
}

.how-we-work-slide-list{
	margin-bottom: 60px;
}

.how-we-work-slide-list .step-item{
	width: 14.66%;
	position: relative;
	vertical-align: top;
	display: inline-block;
	margin: 0 1%;
	text-align: center;
	padding: 0 0 10px;
	cursor: pointer;
	opacity: 0.6;
}

.how-we-work-slide-list .step-item:after,
.how-we-work-slide-list .active-step:after{
	content: '';
	display: block;
	width: 40px;
	margin-left: -20px;
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 2px;
	transform: scale(0,1);
	transition: all 0.3s;
	background: #414145;
}

.how-we-work-slide-list .active-step:after{
	transform: scale(1);
}

.how-we-work-slide-list .step-item.active-step{
	opacity: 1;
}

.how-we-work-slide-list .step-item .step-icon{
	font-size: 40px;
	display: inline-block;
	background: #37b772;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.how-we-work-slide-list .step-item .step{
	font-family: 'Tungsten';
	display: block;
	font-size: 22px;
	color: #414145;
	font-weight: 500;
}

.how-we-work-image{
	width: 40%;
	float: left;
	text-align: center;
}

.how-we-work-entry{
	width: 58%;
	float: right;
}

.how-we-work-entry p{
	font-size: 15px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

/* Blog Page start */

.blog-page{
	padding: 100px 0;
}

.post-item{
	background: #f5f7fa;
	padding: 30px;
	margin-bottom: 30px;
}

.post-item figure img{
	height: auto;
	box-shadow: 1px 0px 28px 0px rgba(69, 77, 89, 0.21);
}

.post-item h3{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	margin-top: 20px;
	margin-bottom: 20px;
}

.post-item h3 a{
	color: #414145;
	transition: all 0.3s;
}

.post-item h3 a:hover{
	color: #37b772;
}

.post-item p{
	margin: 0;
	font-size: 14px;
	color: #8d97ad;
}

.post-item p:before{
	content: '\f12d';
	font-family: Flaticon;
	font-weight: 600;
	margin-right: 8px;
}

.sidebar-widget{
	background: #f5f7fa;
	padding: 40px 30px;
	margin-bottom: 30px;
}

.sidebar-widget h3{
	font-size: 18px;
	font-weight: 600;
	color: #414145;
	margin-bottom: 20px;
}

.sidebar-widget ul{
	padding: 0;
	margin: 0;
}

.sidebar-widget ul li{
	list-style: none;
}

.sidebar-widget ul li a{
	display: block;
	position: relative;
	padding: 4px 0 4px 20px;
	font-size: 14px;
	color: #8d97ad;
}
	
.sidebar-widget ul li a:before{
	content: '';
	display: block;
	position: absolute;
	width: 10px;
	left: 0;
	top: 14px;
	height: 1px;
	background: #37b772;
}

.sidebar-widget ul li a:hover{
	color: #37b772;
}

.blog-single-page h1,
.blog-single-page h2{
	font-size: 40px;
}

.blog-single-page .breadcrumbs{
	padding: 0;
	margin: 0;
}

.blog-single-page .breadcrumbs li{
	display: inline-block;
	font-size: 16px;
	color: #8d97ad;
}

.blog-single-page .breadcrumbs li:after{
	content: '/';
	font-size: 14px;
	margin: 0 4px 0 8px;
}

.blog-single-page .breadcrumbs li:last-child:after{
	display: none;
}

.blog-single-page .breadcrumbs li a{
	color: inherit;
}

.blog-single-page .breadcrumbs li a:hover{
	color: #37b772;
}

.post-single-header{
	margin-bottom: 30px;
}

.post-single-category{
	display: inline-block;
}

.post-single-category ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-single-category ul li{
	display: inline-block;
}

.post-single-category a{
	display: inline-block;
	background: #37b772;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 20px;
	border-radius: 20px;
	margin-right: 4px;
}

.post-single-category a:hover{
	background: #37b772;
}

.post-single-header .meta-date{
	display: inline-block;
	font-size: 14px;
	color: #8d97ad;
}

.post-single-header .meta-date:before{
	content: '\f12d';
	font-family: Flaticon;
	font-weight: bold;
	margin-right: 4px;
}

.post-entry p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.privacy-policy-page{
	padding: 100px 0;
}

.stickey-sidebar{
	will-change: min-height;
}

.sidebar-list-box{
	background: #f5f7fa;
	padding: 30px;
	position: relative;
	transform: translate(0, 0);
	transform: translate3d(0, 0, 0);
	will-change: position, transform;
}

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

.sidebar-list-box ul li a{
	font-family: 'Tungsten';
	display: block;
	font-size: 26px;
	font-weight: 500;
	color: #414145;
	padding: 8px 0;
	transition: all 0.3s;
}

.sidebar-list-box ul li a:hover{
	color: #05cbfb;
}

.privacy-content h3{
	font-family: 'Tungsten';
	font-weight: 500;
	font-size: 40px;
	color: #414145;
	margin-bottom: 0.5em;
}

.privacy-content p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.privacy-content ul{
	list-style: circle;
	margin-bottom: 1.7em;
}

.privacy-content ul li{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 10px;
}

.privacy-content h5{
	font-size: 14px;
	font-weight: 600;
	color: #8d97ad;
	margin-bottom: 1.7em;
}

.contactus-section{
	padding: 100px 0;
}

.contact-info-about{
	margin-bottom: 30px;
}

.contact-info-about p{
	font-size: 14px;
    color: #8d97ad;
    line-height: 1.8em;
    margin-bottom: 1.8em;
}

.contact-info-single{
	position: relative;
	margin-bottom: 20px;
}

.contact-info-single .icon-box{
	display: inline-block;
    font-size: 34px;
    background: #37b772;
    line-height: 1em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	position: absolute;
    top: 0;
    left: 0;
}

.contact-info-single p{
	font-size: 16px;
	font-weight: 500;
	color: #414145;	
    padding: 6px 0 6px 48px;
	margin: 0;
}

.contact-social-link{
	margin-top: 40px;	
}

.contact-social-link h3{
	font-size: 16px;
	font-weight: 500;
	color: #414145;
	margin-bottom: 20px;
}

.contact-social-link .contact-social a{
	display: inline-block;
	margin-right: 6px;
}

.contact-form .form-group{
	margin-bottom: 20px;
}

.contact-form .form-control{
	width: 100%;
	color: #8d97ad;
	border: 1px solid #8d97ad;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	height: auto !important;
    padding: 12px 20px;
	box-shadow: none;
	outline: 0;
	resize: none;
}

.contact-form .country-code {
    width: 26%;
    float: left;
}

.contact-form .contact-phone {
    width: 70%;
    float: right;
}

.contact-note p{
	display: block !important;
	text-align: center !important;
}

.contact-note p{
	font-size: 12px;
	color: #8d97ad;
	line-height: 1.8em;
	margin-bottom: 1.8em;
}

.btn-contactform{
	display: inline-block;
    font-size: 16px;
    color: #fff;
	font-family: inherit;
	border: none;
    background: #37b772;
    padding: 13px 29px;
    border-radius: 2px;
    min-width: 140px;
    text-align: center;	
	cursor: pointer;
}

.btn-contactform:hover{
	background: #414145;
}

.radio-group,
.radio-group .wpcf7-list-item{
	color: #8d97ad;
	font-size: 14px;
	margin-left: 0;
	margin-right: 0;
}

.radio-group label{
	margin-bottom: 0;
}

.wpcf7-list-item label input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.wpcf7-list-item-label{
    margin-right: 10px;	
}

.wpcf7-list-item label input[type="radio"] + .wpcf7-list-item-label:before {
	content: '';
	background: none;
	border-radius: 100%;
	border: 1px solid #8d97ad;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: -1px;
	right: 0;
	margin-right: 7px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}

.wpcf7-list-item label input[type="radio"]:checked + .wpcf7-list-item-label:before {
	background-color: #8d97ad;
	box-shadow: inset 0 0 0 3px #fff;
}

.wpcf7-list-item label input[type="radio"]:focus + .wpcf7-list-item-label:before {
	outline: none;
	border-color: #8d97ad;
}

.wpcf7-list-item label input[type="radio"]:disabled + .wpcf7-list-item-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #8d97ad;
	background: #8d97ad;
}

.wpcf7-list-item label input[type="radio"] + .wpcf7-list-item-label:empty:before {
	margin-right: 0;
}

.service-contact-form{
	background: #f5f7fa;
	padding: 100px 0;
}

.page-id-208 .features-section{
	padding: 100px 0  0;
}

.post-entry h3 {
    font-family: 'Tungsten';
    color: #414145;
    margin: 1em 0;
}

div.wpcf7-mail-sent-ok{
	margin: 0 0 20px !important;
    background: #1f9152;
    border: none !important;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px !important;
}

div.wpcf7-validation-errors,
div.wpcf7-spam-blocked{
	margin: 0 0 20px !important;
    background: #de3232;
    border: none !important;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px !important;
}

.page-id-86 .how-we-work-slide-list .step-item{
	width: 10.5%;
}

.page-id-86 .how-we-work-slide-list .step-item .step{
	line-height: 1.2em;
}

.contact-form .wpcf7-acceptance{
	font-size: 14px;
	color: #8d97ad;
}

.contact-form input.accept-checkbox {
    position: relative;
    top: 2px;
    margin-right: 6px;
}

.term-condition-group {
    margin-bottom: 0 !important;
}

.term-condition-group a {
    color: inherit;
    text-decoration: underline;
}

.contact-form .wpcf7-recaptcha > div {
    margin: 0 auto;
}

.portfolio-pagination .screen-reader-text{
	display: none;
}

.portfolio-pagination{
    text-align: center;
}

.portfolio-pagination .nav-links{
	width: 100%;
}

.portfolio-pagination .nav-links a,
.portfolio-pagination .nav-links span{
    display: inline-block;
    padding: 6px 14px;
	background: #414145;
	color: #fff;
	border-radius: 2px;
	margin: 0 2px;
}

.portfolio-pagination .nav-links a:hover{
	background: #37b772;
}

.portfolio-pagination .nav-links span.current{
	background: #37b772;
}

.why-service-box h3{
	margin-bottom: 0;
}

.btn-gradient-bg a{
	background: #37b772;
}

.btn-gradient-bg a:hover{
	background: #414145;
}

.faq-content p{
	margin-bottom: 0;
}

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

.content-list-style ul li{
	position: relative;
	padding-left: 30px;
	margin-bottom: 4px;
}

.content-list-style ul li:before{
	content: '\f00c';
	font-family: FontAwesome;
	color: #37b772;
	position: absolute;
	left: 0;
	top: 0;
}

.hire-process-slider{
    display: none;
}

.process-slide {
    text-align: center;
    position: relative;
}

.process-slide .icon-box {
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 2px solid #37b977;
    border-radius: 50%;
    line-height: 100px;
    margin-bottom: 20px;
}

.process-slide h3 {
    font-size: 15px;
    color: #8d97ad;
    font-weight: 400;
    margin: 0;
    line-height: 1.6em;
}

.hire-process-step .process-slide:after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background: #37b977;
    top: 50px;
    right: -30%;
}

.hire-process-step .row .col-lg-2:last-child .process-slide:after {
    display: none;
}

.process-pagination{
    text-align: center;
    margin-top: 30px;
}

.process-prev, .process-next {
    display: inline-block;
    margin: 0 5px;
    color: #05cbfc;
}

.page-review{
	padding: 100px 0;
}

.portfolio-nav{
	margin-bottom: 50px;
}

.list-inline:after{
	content: '';
	display: block;
	clear: both;
}

.list-inline li{
	float: left;
	width: 30%;
	margin-right: 5%;
}

.list-inline li:nth-of-type(3n + 3){
	margin-right: 0;
}

.review-filter-item{
	background: #f5f7fa;
	padding: 15px 20px;
	text-align: center;
	border: 1px solid #e8eaed;
	position: relative;
}

.review-filter-item:after{
	content: '';
	position: absolute;
	left: -1px;
	right: -1px;
	bottom: -1px;
	height: 4px;
	background: linear-gradient(to right,#05cbfb,#6ff1b5);
	transform: scale(0,1);
	transition: all 0.4s;
}

.active-portfolio .review-filter-item:after{
	transform: scale(1);
}

.review-filter-item .icon-box{
	margin-bottom: 6px;
}

.review-filter-item .ratting{
	color: #f6ad01;
}

.review-filter-item .ratting p {
    margin: 0;
    color: #8d97ad;
    font-size: 16px;
    margin-top: 4px;
}

.review-filter-item .ratting img,
.review-filter-item .ratting span{
	display: inline-block;
	vertical-align: middle;
}

.review-filter-item .ratting span{
	margin-left: 4px;
	color: #414145;
	font-weight: 500;
}

.ref-commenct-box {
    border: 2px solid #f5f7fa;
	background: #fff;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.ref-commenct-star{
	margin-bottom: 10px;
}

.ref-commenct-body p {
    color: #8d97ad;
	font-style: italic;
    line-height: 1.6em;
}

.ref-commenct-author{
	margin-top: 20px;
}

.ref-commenct-author h4, .ref-commenct-author img {
    display: inline-block;
    vertical-align: middle;
}

.ref-commenct-author img {
    border-radius: 50% !important;
    margin-right: 10px;
    height: auto;
    width: 32px;
}

.ref-commenct-author h4 {
    font-size: 16px;
    font-weight: 500;
    color: #414145;
    margin: 0;
}

.page-not-found{
	padding: 160px 0 100px;
	background: #f5f7fa;
	text-align: center;
}

.page-404-box h1{
	font-size: 260px;
	font-family: 'Tungsten';
	color: #414145;
	line-height: 1em;
}

.page-404-box p{
	font-size: 20px;
	color: #8d97ad;
}

.page-404-box a.btn-home{
	display: inline-block;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(to right,#05cbfb,#6ff1b5);
    background: -webkit-linear-gradient(to right,#05cbfb,#6ff1b5);
    background: -moz-linear-gradient(to right,#05cbfb,#6ff1b5);
    background: -o-linear-gradient(to right,#05cbfb,#6ff1b5);
    padding: 13px 29px;
    border-radius: 2px;
    min-width: 140px;
    text-align: center;
}

.page-404-box a.btn-home:hover{
	background: #05cbfb;
}

.engagement-model-section{
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 10%);
}

.engagement-model-section .section-title{
    max-width: 768px;   
    margin: 0 auto 50px;
}

.engagement-model-item{
    border: 1px solid #37b772;
    padding: 40px 30px 20px 30px;
    min-height: 436px;
}

.engagement-model-item .icon-box{
    margin-bottom: 20px;
}

.engagement-model-item h3{
    font-family: 'Tungsten';
    color: #414145;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.engagement-content{
    line-height: 2em;
    color: #8d97ad;
}

.related-service-section{
    padding: 30px 0;
}

.related-service-item{
    text-align: center;
    margin-bottom: 50px;
}

.related-service-item .icon-box{
    margin-bottom: 20px;
}

.related-service-item h3{
    font-size: 16px;
    color: #8d97ad;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.btn-related-service{
    display: inline-block;
    background: #37b772;
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    line-height: 1em;
}

.btn-related-service:hover{
    background: #414145;
    color: #fff;
}

.contact-form .wpcf7-spinner{
	display: block;
	margin: 0 auto;
}


/* Career Page CSS */
.p-margin-none p:last-child{
	margin-bottom: 0;
}

.career-list-main-wrapper article.elementor-post{
	background: #fff;
	padding: 30px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	position: relative;
}

.career-list-main-wrapper article.elementor-post a.elementor-post__read-more{
	display: inline-block;
	background: #37b772;
    padding: 7px 30px 5px;
	border: 1px solid #37b772;
	transition: all .3s;
	position: absolute;
	left: 30px;
	bottom: 30px;
}

.career-list-main-wrapper article.elementor-post a.elementor-post__read-more:hover{
	background: transparent;
	color: #37b772 !important;
	border-color: #37b772;
}

.career-breadcrumbs p#breadcrumbs span a{
	font-weight: 500;
}

.carrer-single-post-content p:last-child,
.carrer-single-post-content ul:last-child{
	margin-bottom: 0;
}

.carrer-single-post-content ul li{
	margin-bottom: 10px;
}

.carrer-single-post-content ul li:last-child{
	margin-bottom: 0;
}

.carrer-single-post-content ul li::marker{
	color: #37b772 !important;
}

.career-form input.elementor-field-textual:focus{
	outline: none !important;
	box-shadow: none !important;
}

.career-form input.elementor-field-textual::placeholder{
	color: #8d97ad !important;
	opacity: 1 !important;
}

.career-form input.elementor-field-textual{
	padding: 11px 20px 9px;
}

.career-form .elementor-field-type-upload{
	border: 1px dashed #000;
    margin-right: 10px;
    margin-left: 10px;
    width: calc(100% - 20px) !important;
	padding-top: 15px;
	padding-bottom: 20px;
	padding-right: calc( 40px/2 ) !important;
	padding-left: calc( 40px/2 ) !important;
}

.career-form button.elementor-button{
	margin-top: 20px;
	cursor: pointer;
}

.career-form .elementor-field-type-upload input[type=file]::-webkit-file-upload-button{
 	background-color: #353535;
	border: none;
	padding: 6px 15px;
	color: #fff;
	cursor: pointer;
}

.career-table-content .elementor-toc__header{
	display: none !important;
}

.career-table-content .elementor-toc__list-wrapper{
	margin-bottom: 0;
}

.career-table-content .elementor-toc__list-wrapper li{
	margin-bottom: 14px !important;	
}

.career-table-content .elementor-toc__list-wrapper li:last-child{
	margin-bottom: 0 !important;	
}