@charset "UTF-8";
/*==============================
** Main Scss
==============================*/
/*====================
** Variable Scss
====================*/
/*basic color*/
/*section background color*/
/*border color*/
/*heading color*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900|Open+Sans:400,600,700");

/*====================
** Mixins Scss
====================*/
/*====================
** Global Scss
====================*/
.slicknav_menu {
	display: none;
}

.boxed-btn {
	display: inline-block;
	padding: 10px;
	text-transform: uppercase;
	border: 2px solid #2a2a2a;
	position: relative;
	font-weight: 600;
	color: #111;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	z-index: 1;
	overflow: hidden;
	width: 180px;
	text-align: center;
}

.boxed-btn:after {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	background: #2a2a2a;
	content: '';
	z-index: -1;
	left: -50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.boxed-btn:before {
	right: -50%;
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	background: #2a2a2a;
	content: '';
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.boxed-btn:hover {
	border-color: #2a2a2a;
	color: #fff;
}

.boxed-btn:hover:after {
	visibility: visible;
	opacity: 1;
	left: 0;
}

.boxed-btn:hover:before {
	visibility: visible;
	opacity: 1;
	right: 0;
	left: auto;
}

.section-title p {
	margin-top: 12px;
}

.section-title.main h2 {
	margin-bottom: 0;
	padding: 0;
	position: relative;
}

.section-title.main h2:after {
	width: 15px;
	height: 15px;
	left: 50%;
	bottom: -23px;
	border: 2px solid #ddd;
	position: absolute;
	background: #2a2a2a;
	content: '';
	-ms-transform: translate(-50%, 0) rotate(135deg);
	/* IE 9 */
	-webkit-transform: translate(-50%, 0) rotate(135deg);
	/* Chrome, Safari, Opera */
	transform: translate(-50%, 0) rotate(135deg);
}

.section-title.main h2:before {
	position: absolute;
	left: 50%;
	bottom: -17px;
	width: 200px;
	height: 3px;
	background: #2a2a2a;
	content: '';
	-ms-transform: translate(-50%, 0);
	/* IE 9 */
	-webkit-transform: translate(-50%, 0);
	/* Chrome, Safari, Opera */
	transform: translate(-50%, 0);
}

.section-title.main p {
	margin-bottom: 0;
	padding-top: 37px;
	padding-bottom: 37px;
}

.section-title.inner h2 {
	margin-bottom: 0;
	padding: 0;
	position: relative;
}

.section-title.inner h2:after {
	width: 15px;
	height: 15px;
	left: 90px;
	bottom: -23px;
	-ms-transform: rotate(135deg);
	/* IE 9 */
	-webkit-transform: rotate(135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(135deg);
	border: 2px solid #ddd;
	position: absolute;
	background: #2a2a2a;
	content: '';
}

.section-title.inner h2:before {
	position: absolute;
	left: 0;
	bottom: -17px;
	width: 200px;
	height: 3px;
	background: #2a2a2a;
	content: '';
}

.section-title.inner p {
	margin-bottom: 0;
	padding-top: 37px;
	padding-bottom: 21px;
}

.about-area .aboutus-pic {
	width: 100%;
	/* height: 436px; */
}

.about-area-info {
	font-size: 20px;
	color: #111;
}

input[type=text],
input[type=email],
input[type=password],
input[type=password],
input[type=tel],
input[type=number] {
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 30px;
}

/*===============================
** Normalize/Reset Scss File
===============================*/
/*====================
** Normalize Scss
====================*/
html {
	font-family: "Open Sans", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	/*  base font size  15px= 1em*/
	margin: 0;
	color: #111;
}

h1 {
	font-size: 48px;
	line-height: 1.0833333333333333;
	margin-bottom: 0.5416666666666666em;
}

h2 {
	font-size: 36px;
	line-height: 1.4444444444444444;
	margin-bottom: 0.7111111111111111em;
}

h3 {
	font-size: 24px;
	line-height: 1.0833333333333333;
	margin-bottom: 1.0833333333333333em;
}

h4 {
	font-size: 21px;
	line-height: 1.2380952380952381;
	margin-bottom: 1.2380952380952381em;
}

h5 {
	font-size: 18px;
	line-height: 1.4444444444444444;
	margin-bottom: 1.4444444444444444em;
}

h6 {
	font-size: 16px;
	line-height: 1.625;
	margin-bottom: 1.625em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #111;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
}

p {
	font-size: 16px;
	color: #111;
	margin: 0 0 1.625em;
	line-height: 1.625;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

a {
	color: #111;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
}

a i {
	padding: 0 2px;
}

img {
	max-width: 100%;
	/* width: 165px; */
	/* line-height: 30px; */
	/* height: 30px; */
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
	outline: none;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
}

/*=========================
** Sections Scss File
=========================*/
/*==============================
** 	Navbar
==============================*/
.nav-area {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	height: 50px;
	line-height: 50px;
}

.nav-area.nav-fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 9;
	background: #111;
}

.nav-area .logo {
	text-transform: uppercase;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.nav-area ul {
	text-align: right;
}

.nav-area ul li {
	padding: 0;
	margin: 0;
	display: inline-block;
	position: relative;
}

.nav-area ul li:before {
	position: absolute;
	right: 0;
	bottom: 20px;
	width: 10px;
	height: 10px;
	content: '';
	border-bottom: 2px solid #ddd;
	border-right: 2px solid #ddd;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.nav-area ul li:after {
	position: absolute;
	left: 0px;
	top: 20px;
	width: 10px;
	height: 10px;
	content: '';
	border-top: 2px solid #ddd;
	border-left: 2px solid #ddd;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.nav-area ul li a {
	padding: 5px 15px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	position: relative;
}

.nav-area ul li a:before {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #ddd;
	border-right: 2px solid #ddd;
	content: '';
	visibility: hidden;
	opacity: 0;
	transition: .5s ease-in;
}

.nav-area ul li a:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #ddd;
	content: '';
	border-left: 2px solid #ddd;
	visibility: hidden;
	opacity: 0;
	transition: .5s ease-in;
}

.nav-area ul li a.active:after {
	visibility: visible;
	opacity: 1;
}

.nav-area ul li a.active:before {
	visibility: visible;
	opacity: 1;
}

.nav-area ul li:hover:after {
	visibility: visible;
	opacity: 1;
	top: 0;
}

.nav-area ul li:hover:before {
	visibility: visible;
	opacity: 1;
	bottom: -4px;
}

/*==============================
** Header Scss
==============================*/
.header-area {
	position: relative;
	display: table;
	width: 100%;
	height: 100vh;
	z-index: 1;
}

.header-area:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
	content: '';
	opacity: .8;
}

.header-area .header-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}

.header-area .header-inner h1 {
	color: #fff;
	margin-bottom: 0;
	font-size: 80px;
	font-weight: 900;
}

.header-area .header-inner h6 {
	color: #fff;
	display: inline-block;
}

.header-area .header-inner .typed-cursor {
	font-size: 25px !important;
	font-weight: 300;
	opacity: 1;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: blink;
	-moz-animation-name: blink;
	-o-animation-name: blink;
	animation-name: blink;
	-webkit-animation-direction: "";
	-moz-animation-direction: "";
	-o-animation-direction: "";
	animation-direction: "";
}

.header-bg {
	background-image: url(../img/banner.jpg);
	background-position: center;
	background-size: cover;
}

.scroll-down {
	display: inline-block;
	height: 35px;
	width: 20px;
	border: 2px solid #fff;
	border-radius: 10px;
	position: absolute;
	left: 50%;
	bottom: 30px;
	-ms-transform: translate(-50%, 0);
	/* IE 9 */
	-webkit-transform: translate(-50%, 0);
	/* Chrome, Safari, Opera */
	transform: translate(-50%, 0);
}

.scroll-down span {
	height: 6px;
	width: 4px;
	border-radius: 50%;
	display: inline-block;
	background-color: #fff;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scrollDown;
	-moz-animation-name: scrollDown;
	-o-animation-name: scrollDown;
	animation-name: scrollDown;
	-webkit-animation-direction: ease-in;
	-moz-animation-direction: ease-in;
	-o-animation-direction: ease-in;
	animation-direction: ease-in;
	padding-top: 5px;
	margin-top: 5px;
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes scrollDown {
	0% {
		opacity: 0.5;
		margin-bottom: 20px;
	}

	50% {
		opacity: 1;
		margin-bottom: 1px;
	}

	100% {
		opacity: 0;
		margin-bottom: 0px;
	}
}

@-moz-keyframes scrollDown {
	0% {
		opacity: 0.5;
		margin-bottom: 20px;
	}

	50% {
		opacity: 1;
		margin-bottom: 1px;
	}

	100% {
		opacity: 0;
		margin-bottom: 0px;
	}
}

@-o-keyframes scrollDown {
	0% {
		opacity: 0.5;
		margin-bottom: 20px;
	}

	50% {
		opacity: 1;
		margin-bottom: 1px;
	}

	100% {
		opacity: 0;
		margin-bottom: 0px;
	}
}

@keyframes scrollDown {
	0% {
		opacity: 0.5;
		margin-bottom: 20px;
	}

	50% {
		opacity: 1;
		margin-bottom: 1px;
	}

	100% {
		opacity: 0;
		margin-bottom: 0px;
	}
}

/*==============================
** About Scss
==============================*/
.about-area {
	padding-top: 67px;
	padding-bottom: 85px;
}

.about-area li {
	display: inline-block;
	padding: 10px 0px;
	width: 45%;
}

/*==============================
** Skill Scss
==============================*/
.skill-section {
	background-color: #eee;
	padding-top: 68px;
	padding-bottom: 68px;
}

#circle-1,
#circle-2,
#circle-3,
#circle-4 {
	text-align: center;
	position: relative;
	display: inline-block;
}

#circle-1 span,
#circle-2 span,
#circle-3 span,
#circle-4 span {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 25px;
	font-weight: 900;
	transform: translate(-50%, -50%);
}

/*====================
** Counter 
====================*/
.counter-section {
	padding-top: 94px;
	padding-bottom: 95px;
	background-color: #eee;
}

.counter-section li {
	display: inline-block;
	width: 24%;
	text-align: center;
}

.counter-section .single-counter-item .icon {
	font-size: 40px;
	padding-bottom: 20px;
}

.counter-section .single-counter-item h4 {
	margin-bottom: 0;
}

.counter-section .single-counter-item .counter-number {
	font-weight: 900;
	font-size: 40px;
	position: relative;
}

.counter-section .single-counter-item .counter-number:after {
	position: absolute;
	left: 50%;
	top: -10px;
	background: #ddd;
	width: 50px;
	height: 2px;
	content: '';
	-ms-transform: translate(-50%, 0);
	/* IE 9 */
	-webkit-transform: translate(-50%, 0);
	/* Chrome, Safari, Opera */
	transform: translate(-50%, 0);
}

/*==========================
** Education and experience
==========================*/
.resome-area {
	padding-top: 66px;
	padding-bottom: 94px;
}

.resome-area .boxed-btn {
	width: 200px;
	margin-right: 0;
	margin-top: 12px;
}

.education-details,
.working-details {
	border-left: 2px solid #111;
	position: relative;
	padding-top: 60px;
	padding-left: 30px;
}

.education-details .icon,
.working-details .icon {
	display: inline-block;
	font-size: 20px;
	border: 1px solid #111;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	transform: rotate(135deg);
	background: #111;
	color: #fff;
	position: absolute;
	left: -21px;
	top: 8px;
}

.education-details .icon i.fa,
.working-details .icon i.fa {
	transform: rotate(-135deg);
	text-align: center;
	line-height: 40px;
}

.education-details .single-education-list,
.working-details .single-education-list {
	padding: 20px;
	box-shadow: 0 0 5px #ddd;
	margin-bottom: 30px;
	border: 1px solid #fff;
	padding-top: 15px;
}

.education-details .single-education-list h4,
.working-details .single-education-list h4 {
	margin-bottom: 3px;
	position: relative;
}

.education-details .single-education-list h4:after,
.working-details .single-education-list h4:after {
	position: absolute;
	left: -59px;
	top: 5px;
	width: 15px;
	height: 15px;
	background: #111;
	content: '';
	transform: rotate(135deg);
}

.education-details .single-education-list .duration,
.working-details .single-education-list .duration {
	font-size: 14px;
	display: block;
	padding-bottom: 20px;
	opacity: .8;
}

.education-details .single-education-list p,
.working-details .single-education-list p {
	margin-bottom: 0;
}

/*==========================
** Education and experience
==========================*/
.service-section {
	background-color: #eee;
	padding-top: 67px;
	padding-bottom: 70px;
}

.service-inner .single-service-box {
	text-align: center;
	padding: 20px;
	border: 1px solid #f1f1f1;
	margin-bottom: 30px;
	background: #fff;
	box-shadow: 0 13px 59px 0 rgba(132, 141, 178, 0.22);
	padding-top: 27px;
	transition: .5s ease-in;
}

.service-inner .single-service-box p {
	margin-bottom: 0;
}

.service-inner .single-service-box .icon {
	font-size: 30px;
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	line-height: 80px;
	color: #111;
	margin-bottom: 10px;
}

.service-inner .single-service-box h4 {
	text-transform: uppercase;
	margin-bottom: 15px;
}

.service-inner .single-service-box:hover {
	box-shadow: 0 0 40px #777;
}

/*====================
** My Team 
====================*/
.team-area {
	padding-top: 67px;
	padding-bottom: 102px;
}

.single-team-box .team-member-thumb {
	border: 1px solid #f1f1f1;
}

.single-team-box .team-member-thumb img {
	display: block;
	margin: 0 auto;
}

.single-team-box .content {
	text-align: center;
}

.single-team-box .content h4 {
	text-transform: uppercase;
	margin-bottom: 2px;
}

.single-team-box .content .prosition {
	font-size: 14px;
}

.single-team-box .content .social-links {
	margin-top: 35px;
}

.single-team-box .content .social-links li {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #2a2a2a;
	background-color: #2a2a2a;
	line-height: 40px;
	-ms-transform: rotate(135deg);
	/* IE 9 */
	-webkit-transform: rotate(135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(135deg);
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.single-team-box .content .social-links li:hover {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

.single-team-box .content .social-links li:hover i {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
	color: #fff;
}

.single-team-box .content .social-links a i {
	-ms-transform: rotate(-135deg);
	/* IE 9 */
	-webkit-transform: rotate(-135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(-135deg);
	color: #fff;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

/*====================
** Portofoio
====================*/
.portfolio-area {
	background-color: #eee;
	padding-top: 67px;
	padding-bottom: 94px;
}

.single-porfolio-item {
	border: 1px solid #f1f1f1;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.single-porfolio-item:after {
	position: absolute;
	content: '';
	left: -50%;
	top: 0;
	width: 50%;
	height: 100%;
	background: #111;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	visibility: hidden;
	opacity: 0;
}

.single-porfolio-item:before {
	position: absolute;
	content: '';
	right: -50%;
	top: 0;
	width: 50%;
	height: 100%;
	background: #111;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	visibility: hidden;
	opacity: 0;
}

.single-porfolio-item.grid-size {
	width: 32%;
	margin: 5px;
}

/*.single-porfolio-item:hover .hover {*/
/*  visibility: visible;*/
/*  opacity: 1; }*/
/*.single-porfolio-item:hover:after {*/
/*  visibility: visible;*/
/*  opacity: .6;*/
/*  left: 0; }*/
/*.single-porfolio-item:hover:before {*/
/*  visibility: visible;*/
/*  opacity: .6;*/
/*  right: 0; }*/
/*.single-porfolio-item .hover {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  visibility: hidden;*/
/*  opacity: 0;*/
/*  -webkit-transition: 0.5s ease-in;*/
/*  -moz-transition: 0.5s ease-in;*/
/*  transition: 0.5s ease-in; }*/


/*.single-porfolio-item .hover .icon {*/
/*  color: #fff;*/
/*  z-index: 1;*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  margin-right: 20px;*/
/*  border: 1px solid #fff;*/
/*  line-height: 40px;*/
/*  text-align: center;*/
/*  background-color: #111;*/
/*  opacity: 1;*/
/*  -ms-transform: rotate(135deg);*/
/*  !* IE 9 *!*/
/*  -webkit-transform: rotate(135deg);*/
/*  !* Chrome, Safari, Opera *!*/
/*  transform: rotate(135deg);*/
/*  -webkit-transition: 0.5s ease-in;*/
/*  -moz-transition: 0.5s ease-in;*/
/*  transition: 0.5s ease-in;*/
/*  cursor: pointer; }*/
/*  .single-porfolio-item .hover .icon:last-child {*/
/*    margin-right: 0; }*/
/*  .single-porfolio-item .hover .icon a {*/
/*    color: #fff; }*/
/*  .single-porfolio-item .hover .icon i {*/
/*    -ms-transform: rotate(-135deg);*/
/*    !* IE 9 *!*/
/*    -webkit-transform: rotate(-135deg);*/
/*    !* Chrome, Safari, Opera *!*/
/*    transform: rotate(-135deg);*/
/*    -webkit-transition: 0.5s ease-in;*/
/*    -moz-transition: 0.5s ease-in;*/
/*    transition: 0.5s ease-in; }*/
/*  .single-porfolio-item .hover .icon:hover {*/
/*    -ms-transform: rotate(0deg);*/
/*    !* IE 9 *!*/
/*    -webkit-transform: rotate(0deg);*/
/*    !* Chrome, Safari, Opera *!*/
/*    transform: rotate(0deg);*/
/*    background-color: #111; }*/
/*    .single-porfolio-item .hover .icon:hover i {*/
/*      -ms-transform: rotate(0deg);*/
/*      !* IE 9 *!*/
/*      -webkit-transform: rotate(0deg);*/
/*      !* Chrome, Safari, Opera *!*/
/*      transform: rotate(0deg); }*/

.porfolio-menu {
	margin-bottom: 40px;
}

.porfolio-menu li {
	display: inline-block;
	padding: 5px 20px;
	cursor: pointer;
	position: relative;
}

.porfolio-menu li:after {
	position: absolute;
	content: '';
	top: 20px;
	left: 0;
	width: 12px;
	height: 12px;
	border-top: 2px solid #111;
	border-left: 2px solid #111;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	visibility: hidden;
	opacity: 0;
}

.porfolio-menu li:before {
	right: 0;
	bottom: 20px;
	width: 12px;
	height: 12px;
	position: absolute;
	content: '';
	border-right: 2px solid #111;
	border-bottom: 2px solid #111;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	visibility: hidden;
	opacity: 0;
}

.porfolio-menu li.active:after {
	visibility: visible;
	opacity: 1;
	top: 0px;
}

.porfolio-menu li.active:before {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.porfolio-menu li:hover:after {
	visibility: visible;
	opacity: 1;
	top: 0;
}

.porfolio-menu li:hover:before {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}


.padding-top-100 {
	padding-top: 100px;
}

.testimonial-section {
	padding-top: 67px;
	background-color: #eee;
}

#testimonial-slider {
	margin-bottom: 58px;
}

#testimonial-slider .testimonial {
	margin: 0 20px 40px;
}

#testimonial-slider .testimonial .clients-thumb {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

#testimonial-slider .testimonial .clients-thumb img {
	border-radius: 50%;
}

#testimonial-slider .testimonial .description {
	font-size: 15px;
	font-style: italic;
	color: #8a8a8a;
	line-height: 23px;
	margin: 0;
}

#testimonial-slider .testimonial .title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #111;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin: 0 0 5px 0;
}

#testimonial-slider .testimonial .post {
	display: block;
	font-size: 14px;
	color: #191919;
}

#testimonial-slider .testimonial .testimonial-content {
	padding: 35px 25px 35px 50px;
	margin-bottom: 35px;
	background: #fff;
	border: 1px solid #f0f0f0;
	position: relative;
}

#testimonial-slider .testimonial .testimonial-content:after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #fff;
	position: absolute;
	bottom: -10px;
	left: 22px;
	transform: rotate(45deg);
}

#testimonial-slider .testimonial .testimonial-content .testimonial-icon {
	width: 50px;
	height: 45px;
	background: #111;
	text-align: center;
	font-size: 22px;
	color: #fff;
	line-height: 42px;
	position: absolute;
	top: 37px;
	left: -19px;
}

#testimonial-slider .testimonial .testimonial-content .testimonial-icon:before {
	content: "";
	border-bottom: 16px solid #080808;
	border-left: 18px solid transparent;
	position: absolute;
	top: -16px;
	left: 1px;
}

/*====================
** Blog
====================*/
.single-blog-post h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
}

ul.post-meta li {
	display: inline-block;
	padding-right: 5px;
	font-size: 14px;
}

ul.post-meta li a {
	font-weight: 600;
}

ul.post-meta {
	margin-bottom: 20px;
}

.single-blog-post p {
	margin-bottom: 0;
}

section.blog-area {
	padding-top: 67px;
	padding-bottom: 96px;
}

/*====================
** Contact 
====================*/
.contact-area {
	background-color: #eee;
	padding-top: 67px;
	padding-bottom: 70px;
}

.single-contact-box {
	text-align: center;
	border: 1px solid #fff;
	background: #fff;
	box-shadow: 0 0 5px #ddd;
	padding-top: 10px;
	padding-bottom: 13px;
	margin-bottom: 30px;
}

.single-contact-box h4 {
	margin-bottom: 10px;
}

.single-contact-box p {
	margin-bottom: 0;
}

.contact-form-wrapper input[type=text] {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	width: 100%;
	margin-bottom: 30px;
}

.contact-form-wrapper input[type=email] {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	width: 100%;
	margin-bottom: 30px;
}

.contact-form-wrapper textarea {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	width: 100%;
	margin-bottom: 30px;
}

.contact-form-wrapper .boxed-btn {
	width: 180px;
	margin-top: 11px;
	background: #fff;
	position: relative;
}

.contact-form-wrapper .boxed-btn:hover {
	background-color: #2A2A2A;
}

/*==================
** preloader 
===================*/
.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 9;
	display: table;
}

.preloader-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.preloader-inner .cssload-box-loading {
	width: 44px;
	height: 44px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.preloader-inner .cssload-box-loading:before {
	content: '';
	width: 44px;
	height: 4px;
	background: black;
	opacity: 0.1;
	position: absolute;
	top: 52px;
	left: 0;
	border-radius: 50%;
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: shadow;
	-moz-animation-name: shadow;
	-o-animation-name: shadow;
	animation-name: shadow;
	-webkit-animation-direction: linear;
	-moz-animation-direction: linear;
	-o-animation-direction: linear;
	animation-direction: linear;
}

.preloader-inner .cssload-box-loading:after {
	content: '';
	width: 44px;
	height: 44px;
	background: black;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 3px;
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: cssload-animate;
	-moz-animation-name: cssload-animate;
	-o-animation-name: cssload-animate;
	animation-name: cssload-animate;
	-webkit-animation-direction: linear;
	-moz-animation-direction: linear;
	-o-animation-direction: linear;
	animation-direction: linear;
}

@-webkit-keyframes cssload-animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		transform: translateY(8px) rotate(22.5deg);
	}

	50% {
		transform: translateY(16px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 35px;
	}

	75% {
		transform: translateY(8px) rotate(67.5deg);
	}

	100% {
		transform: translateY(0) rotate(90deg);
	}
}

@-moz-keyframes cssload-animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		transform: translateY(8px) rotate(22.5deg);
	}

	50% {
		transform: translateY(16px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 35px;
	}

	75% {
		transform: translateY(8px) rotate(67.5deg);
	}

	100% {
		transform: translateY(0) rotate(90deg);
	}
}

@-o-keyframes cssload-animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		transform: translateY(8px) rotate(22.5deg);
	}

	50% {
		transform: translateY(16px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 35px;
	}

	75% {
		transform: translateY(8px) rotate(67.5deg);
	}

	100% {
		transform: translateY(0) rotate(90deg);
	}
}

@keyframes cssload-animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		transform: translateY(8px) rotate(22.5deg);
	}

	50% {
		transform: translateY(16px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 35px;
	}

	75% {
		transform: translateY(8px) rotate(67.5deg);
	}

	100% {
		transform: translateY(0) rotate(90deg);
	}
}

@-webkit-keyframes shadow {

	0%,
	100% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.2, 1);
	}
}

@-moz-keyframes shadow {

	0%,
	100% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.2, 1);
	}
}

@-o-keyframes shadow {

	0%,
	100% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.2, 1);
	}
}

@keyframes shadow {

	0%,
	100% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.2, 1);
	}
}

/*==================
** Footer  
===================*/
.footer-area {
	background-color: #eee;
	padding-top: 25px;
	padding-bottom: 17px;
	font-size: 15px;
}

.social-area {
	margin-bottom: 30px;
}

.social-area li {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #111;
	border: 2px solid #fff;
	-ms-transform: rotate(135deg);
	/* IE 9 */
	-webkit-transform: rotate(135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(135deg);
	margin: 0 5px;
	line-height: 40px;
	cursor: pointer;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.social-area li i {
	-ms-transform: rotate(-135deg);
	/* IE 9 */
	-webkit-transform: rotate(-135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(-135deg);
	color: #fff;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
}

.social-area li:hover {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

.social-area li:hover i {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

.copyright-text p {
	margin-bottom: 0;
}

.go-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 40px;
	height: 40px;
	background: #111;
	color: #fff;
	line-height: 40px;
	text-align: center;
	-ms-transform: rotate(135deg);
	/* IE 9 */
	-webkit-transform: rotate(135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(135deg);
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	cursor: pointer;
	border: 2px solid #fff;
}

.go-top i {
	-ms-transform: rotate(-135deg);
	/* IE 9 */
	-webkit-transform: rotate(-135deg);
	/* Chrome, Safari, Opera */
	transform: rotate(-135deg);
	left: 5;
}

.go-top:hover {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

.go-top:hover i {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);
}

.fa-angle-up:before {
	margin-left: 3px;
}

.go-top:hover .fa-angle-up:before {
	margin-left: 0;
	top: 0;
}

/*# sourceMappingURL=style.css.map */


/*2023.4.23 New Add By:wjh*/

.product-text {
	margin-top: 10px;
}

.img-thumb {
	overflow: hidden;
}

.img-thumb img {
	transition: transform 1s;
	/* width: 400px; */
	/* height: 267px; */
}

.img-thumb img:hover {
	transform: scale(1.1);
}

.post-thumb img {
	width: 400px;
	height: 267px;
}

.portfolio-area .section-title p:nth-child(2) {
	padding-bottom: 0;
	margin-bottom: 0;
}

.portfolio-area .section-title p:nth-child(3) {
	padding-top: 0;
	margin: 0;
}

.portfolio-area {
	padding-bottom: 0;
}

.tb-navigation a {
	margin: 30px 0;
}

/*2023.4.26*/
.footer-area .vx-qrcode,
.footer-area .xcx-qrcode {
	width: 120px;
	float: left;
	color: #111;
	margin: 15px 30px;
}

.contact p {
	font-size: 28px;
	color: #111;
	margin-bottom: .3em;
	font-weight: bold;
}

.contact ul {
	text-align: left;
}

.contact ul>li {
	margin-bottom: 10px;
}

.contact i:before {
	width: 18px;
	height: 18px;
	display: inline-block;
	text-align: center;
}

/* 2023.6.9 */
html{
	scroll-behavior: smooth;
}
.vx-qrcode p,.xcx-qrcode p{
	font-size: 15px;
}
