/*!
// Contents
// ------------------------------------------------>

 1.  Global Styles
 2.  Typography
 3.	 Color
 4.	 Align
 5.	 Grid
 6.	 Blockquotes
 7.	 Background
 8.	 Breadcrumbs
 9.	 Buttons
 10. Forms
 11. Icons
 12. List
 13. Media
 14. Tabs
 15. Accordions
 16. Page Title
 17. Pagination
 18. Alerts
 19. Backtop
 20. Range
 21. Icon Box
 22. Misc
 23. Modals
 24. Animation
 25. Tables
 26. Heading
 27. Loading
 28. Header
 29. Menu
 30. Hero
 31. Team
 32. Testimonial
 33. Portfolio
 34. Feature
 35. Call To Action
 36. Counter
 37. Pricing Tables
 38. Blog
 39. Shop
 40. Contact
 41. Sidebar
 42. Footer
 43. 404
 44. Soon
 45. Maintenance
 46. Clients
 47. Process
 48. Skills
 49. Video
 50. Newsletter
 51. Timeline
 52. Carousel
 53. Divider
 54. Banner
 55. Number
 56. Pie Charts
 57. Side Nav
 58. Landing
 59. Layout Boxed
 60. Layout Bordered
 61. Layout Split

/*------------------------------------*\
    #GLOBAL STYLES
\*------------------------------------*/
/*
WARNING! DO NOT EDIT THIS FILE!

To make it easy to update your theme, you should not edit the styles in this file. Instead use 
the custom.css file to add your styles. You can copy a style from this file and paste it in 
custom.css and it will override the style in this file. You have been warned! :)
*/
body,
html {
	overflow-x: hidden;
}

html {
	font-size: 13px;
}

body {
	background-color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #9b9b9b;
	line-height: 1.5;
	margin: 0;
}

a {
	text-decoration: none;
}

/* // Colors variables */
:root {
	--primary: #001e3e;
	--secondary: #f77f00
}

/* // text class */
.text-primary {
	color: var(--primary) !important;
}

.text-secondary {
	color: var(--secondary) !important;
}

/* // background class */
.bg-secondary {
	background-color: var(--secondary) !important;
}

.bg-primary {
	background-color: var(--primary) !important;
}


.wrapper {
	background-color: #fff;
}

* {
	outline: none;
}

::-moz-selection {
	text-shadow: none;
}

::selection {
	background-color: #418ddf;
	color: #ffffff;
	text-shadow: none;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #418ddf;
}

a:hover {
	color: #148961;
	text-decoration: none;
}

a:focus {
	color: #148961;
	outline: none;
	text-decoration: none;
}

a:active {
	color: #148961;
	outline: none;
	text-decoration: none;
}

textarea {
	resize: none;
}

button.btn {
	margin-bottom: 0;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
	outline: none;
}

.modal-backdrop {
	z-index: 1020;
	background-color: rgba(34, 34, 34, 0.95);
}

.fullscreen {
	height: 100vh !important;
}

/* Custom, iPhone Retina */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {

	.fullscreen {
		height: auto !important;
	}

}

/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
/* Heading Text */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #282828;
	/* font-family: 'Playfair Display', serif; */
	font-weight: 700;
	margin: 0 0 28px;
	line-height: 1;
}

.h1,
h1 {
	font-size: 52px;

	@media (max-width: 600px) {
		font-size: 36px;
	}
}

.h2,
h2 {
	font-size: 42px;
}

.h3,
h3 {
	font-size: 30px;
}

.h4,
h4 {
	font-size: 22px;
}

.h5,
h5 {
	font-size: 20px;
}

.h6,
h6 {
	font-size: 18px;
}

p {
	color: #6f6f6f;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
}

.lead {
	font-size: 16px;
	line-height: 1.8;
}

/* Aligning Text */
.text--left {
	text-align: left !important;
}

.text--right {
	text-align: right !important;
}

.text--center {
	text-align: center !important;
}

.text--just {
	text-align: justify !important;
}

.align--top {
	vertical-align: top;
}

.align--bottom {
	vertical-align: bottom;
}

.align--middle {
	vertical-align: middle;
}

.align--baseline {
	vertical-align: baseline;
}

/* Weight Text */
.bold {
	font-weight: bold;
}

.regular {
	font-weight: normal;
}

.italic {
	font-style: italic;
}

.break-word {
	word-wrap: break-word;
}

.no-wrap {
	white-space: nowrap;
}

/* Text Color */
.text-white {
	color: #ffffff !important;
}

.text-gray {
	color: #f9f9f9 !important;
}

.text-black {
	color: #282828;
}

.text-theme {
	color: #418ddf !important;
}

.text--capitalize {
	text-transform: capitalize !important;
}

.text--uppercase {
	text-transform: uppercase !important;
}

.font-heading {
	font-family: "Poppins", sans-serif;
}

.font-body {
	font-family: "Poppins", sans-serif;
}

.font-18 {
	font-size: 24px;
}

.font-16 {
	font-size: 16px;
}

.font-20 {
	font-size: 20px;
}

.font-40 {
	font-size: 40px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	text-center-xs {
		text-align: center !important;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	text-center-sm {
		text-align: center !important;
	}
}

.higlighted-style1 {
	background-color: #418ddf;
	color: #ffffff;
	padding: 5px 0;
}

.higlighted-style2 {
	background-color: #282828;
	color: #ffffff;
	padding: 5px 0;
}

.higlighted-style3 {
	background-color: #f9f9f9;
	color: #418ddf;
	padding: 5px 0;
}

/*------------------------------------*\
    #COLORS
\*------------------------------------*/
.color-heading {
	color: #282828 !important;
}

.color-theme {
	color: #418ddf !important;
}

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

.color-gray {
	color: #f9f9f9 !important;
}

/*------------------------------------*\
    #Align
\*------------------------------------*/
address,
blockquote,
dd,
dl,
fieldset,
form,
ol,
p,
pre,
table,
ul {
	margin-bottom: 20px;
}

section {
	padding-top: 90px;
	padding-bottom: 90px;
	overflow: hidden;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

/* All margin */
.m-0 {
	margin: 0 !important;
}

.m-xs {
	margin: 10px;
}

.m-sm {
	margin: 20px;
}

.m-md {
	margin: 40px;
}

.m-lg {
	margin: 80px;
}

/* top margin */
.mt-0 {
	margin-top: 0;
}

.mt-xs {
	margin-top: 10px;
}

.mt-10 {
	margin-top: 10px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-90 {
	margin-top: 90px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-150 {
	margin-top: 150px;
}

/* bottom margin */
.mb-0 {
	margin-bottom: 0 !important;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.mb-70 {
	margin-bottom: 70px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mb-150 {
	margin-bottom: 150px !important;
}

/* right margin */
.mr-0 {
	margin-right: 0;
}

.mr-30 {
	margin-right: 30px !important;
}

.mr-50 {
	margin-right: 50px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-150 {
	margin-right: 150px;
}

/* left margin */
.ml-0 {
	margin-left: 0;
}

.ml-xs {
	margin-left: 10px;
}

.ml-sm {
	margin-left: 20px;
}

.ml-md {
	margin-left: 40px;
}

.ml-lg {
	margin-left: 80px;
}

.ml-30 {
	margin-left: 30px !important;
}

.ml-50 {
	margin-left: 50px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-150 {
	margin-left: 150px;
}

/* All padding */
.p-0 {
	padding: 0 !important;
}

.p-xs {
	padding: 10px;
}

.p-sm {
	padding: 20px;
}

.p-md {
	padding: 40px;
}

.p-lg {
	padding: 80px;
}

/* top padding */
.pt-0 {
	padding-top: 0 !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px !important;
}

.pt-80 {
	padding-top: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-100 {
	padding-top: 100px !important;
}

.pt-150 {
	padding-top: 150px !important;
}

/* bottom padding */
.pb-0 {
	padding-bottom: 0 !important;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px !important;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-100 {
	padding-bottom: 100px !important;
}

/* right padding */
.pr-0 {
	padding-right: 0 !important;
}

.pr-15 {
	padding-right: 15px !important;
}

.pr-30 {
	padding-right: 30px !important;
}

.pr-50 {
	padding-right: 50px !important;
}

.pr-60 {
	padding-right: 60px;
}

.pr-100 {
	padding-right: 100px !important;
}

.pr-150 {
	padding-right: 150px;
}

/* left padding */
.pl-0 {
	padding-left: 0 !important;
}

.pl-30 {
	padding-left: 30px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-100 {
	padding-left: 100px !important;
}

.pl-150 {
	padding-left: 150px !important;
}

/* Postions */
.fixed {
	position: fixed;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.static {
	position: static;
}

/* Zindex*/
.zindex-1 {
	z-index: 1;
}

.zindex-2 {
	z-index: 2;
}

.zindex-3 {
	z-index: 3;
}

/* Borders */
.border-all {
	border: 1px solid #418ddf;
}

.border-top {
	border-top: 1px solid #418ddf;
}

.border-bottom {
	border-bottom: 1px solid #418ddf;
}

.border-right {
	border-right: 1px solid #418ddf;
}

.border-left {
	border-left: 1px solid #418ddf;
}

/* Display */
.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.hide {
	display: none;
}

.flex {
	display: flex;
}

@media only screen and (max-width: 767px) {

	section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.text-center-xs {
		text-align: center !important;
	}

	.pull-none-xs {
		float: none !important;
		text-align: center !important;
	}

	.mb-15-xs {
		margin-bottom: 15px;
	}

	.mb-30-xs {
		margin-bottom: 30px !important;
	}

	.mb-50-xs {
		margin-bottom: 50px;
	}

	.mb-60-xs {
		margin-bottom: 60px !important;
	}

	.p-none-xs {
		padding-right: 0;
		padding-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.text-center-sm {
		text-align: center !important;
	}

	.mb-0-sm {
		margin-bottom: 0;
	}

	.mb-15-sm {
		margin-bottom: 15px;
	}

	.mb-30-sm {
		margin-bottom: 30px !important;
	}

	.mb-50-sm {
		margin-bottom: 50px;
	}

	.mb-60-sm {
		margin-bottom: 60px;
	}

	.pb-15-sm {
		padding-bottom: 15px;
	}

	.pb-30-sm {
		padding-bottom: 30px;
	}

	.pb-50-sm {
		padding-bottom: 50px;
	}

	.pb-60-sm {
		padding-bottom: 60px;
	}

	.p-none-sm {
		padding-right: 0;
		padding-left: 0;
	}

	.pull-none-sm {
		float: none !important;
		text-align: center !important;
	}
}

.border-b {
	border-bottom: 1px solid #f9f9f9;
}

.mt--80 {
	margin-top: -80px;
}

/*------------------------------------*\
    #Grid
\*------------------------------------*/
.row-no-padding [class*="col-"] {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-xs-5ths {
	width: 20%;
	float: left;
}

@media (min-width: 768px) {

	.col-sm-5ths {
		width: 20%;
		float: left;
	}
}

@media (min-width: 992px) {

	.col-md-5ths {
		width: 20%;
		float: left;
	}
}

@media (min-width: 1200px) {

	.col-lg-5ths {
		width: 20%;
		float: left;
	}
}

.col-content {
	padding: 120px 100px 110px 120px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.col-content {
		padding: 40px !important;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.col-content {
		padding: 50px !important;
	}
}

/* Postion Helpers */
.pos-fixed {
	position: fixed;
}

.pos-relative {
	position: relative;
}

.pos-absolute {
	position: absolute;
}

.pos-static {
	position: static;
}

.pos-top {
	top: 0;
}

.pos-bottom {
	bottom: 0;
}

.pos-right {
	right: 0;
}

.pos-left {
	left: 0;
}

.pos-vertical-center {
	position: relative;
	top: 50%;
	/* -webkit-transform: perspective(1px) translateY(-50%);
	-moz-transform: perspective(1px) translateY(-50%);
	-o-transform: perspective(1px) translateY(-50%);
	transform: perspective(1px) translateY(-50%); */
}

.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.justify-conetent-center {
	justify-content: center;
}

.height-700 {
	height: 700px !important;
}

.height-500 {
	height: 500px !important;
}

.height-800 {
	height: 800px !important;
}

@media only screen and (min-width: 992px) {

	.hidden-lg,
	.hidden-md {
		display: none;
	}
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.pos-vertical-center {
		-webkit-transform: perspective(1px) translateY(0);
		-moz-transform: perspective(1px) translateY(0);
		-o-transform: perspective(1px) translateY(0);
		transform: perspective(1px) translateY(0);
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.pos-vertical-center {
		-webkit-transform: perspective(1px) translateY(0);
		-moz-transform: perspective(1px) translateY(0);
		-o-transform: perspective(1px) translateY(0);
		transform: perspective(1px) translateY(0);
	}
}

/*------------------------------------*\
    #Blockquotes
\*------------------------------------*/
.blockquote,
blockquot {
	font-size: 20px;
	font-family: 'Playfair Display', serif;
	color: #9b9b9b;
	font-style: italic;
	line-height: 28px;
	font-weight: 500;
	padding: 30px 0 30px 30px;
	position: relative;
}

.quote-author {
	font-family: 'Raleway', sans-serif;
	display: block;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	color: #282828;
	margin-top: 18px;
}

.blockquote-1 {
	border-left: 6px solid #282828;
}

.blockquote-3,
.blockquote-4 {
	padding-right: 30px;
}

.blockquote-2,
.blockquote-3,
.blockquote-4 {
	border-left: none;
}

.blockquote-2:after,
.blockquote-2:before {
	font-family: fontawesome;
	font-size: 16px;
	position: absolute;
	color: #282828;
	line-height: 1.8;
}

.blockquote-2:before {
	content: "\f10d";
	top: 0;
	left: 0;
}

.blockquote-2:after {
	content: "\f10e";
	right: 0;
	bottom: 0;
}

.blockquote-3 {
	color: #418ddf;
	background-color: #f4f4f4;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.blockquote-4 {
	color: #ffffff;
	background-color: #282828;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.blockquote-4 .quote-author {
	color: #ffffff;
}

/*------------------------------------*\
    #BACKGROUNDS
\*------------------------------------*/
.bg-theme {
	background-color: #418ddf !important;
}

.bg-gray {
	background-color: #f9f9f9 !important;
}

.bg-white {
	background-color: #ffffff !important;
}

.bg-dark {
	background-color: #282828 !important;
}

.bg-dark2 {
	background-color: #282828 !important;
}

.bg-dark3 {
	background-color: #3d3c3c !important;
}

/* Background Image */
.bg-section {
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/*background-attachment: fixed;*/
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
}

.bg-overlay:before {
	content: "";
	display: inline-block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.bg-overlay-light:before {
	background-color: #ffffff;
	opacity: 0.8;
}

.bg-overlay-dark:before {
	background-color: rgba(27, 26, 26, 0.75);
}

.bg-overlay-dark2:before {
	background-color: #081d32;
	opacity: 0.8;
}

.bg-overlay-dark3:before {
	background-color: rgba(40, 40, 40, 0.35);
}

.bg-overlay-dark4:before {
	background-color: rgba(40, 40, 40, 0.95);
}

.bg-overlay-dark5:before {
	background-color: rgba(40, 40, 40, 0.9);
}

.bg-overlay-dark6:before {
	background-color: rgba(40, 40, 40, 0.6);
}

.bg-overlay-dark7:before {
	background-color: rgba(40, 40, 40, 0.15);
}

.bg-overlay-dark8:before {
	background-color: rgba(40, 40, 40, 0.75);
}

.bg-overlay-theme:before {
	background-color: rgba(27, 181, 128, 0.25);
}

.bg-overlay-theme2:before {
	background-color: rgba(27, 181, 128, 0.93);
}

.bg-overlay-theme3:before {
	background-color: rgba(27, 181, 128, 0.45);
}

.bg-overlay-theme4:before {
	background-color: rgba(27, 181, 128, 0.75);
}

.bg-overlay-theme5:before {
	background-color: rgba(27, 181, 128, 0.35);
}

.bg-parallex {
	background-attachment: fixed;
}

.bg-overlay-gradient:before {
	opacity: 0.85;
	background-color: rgba(27, 181, 128, 0.8);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(27, 181, 128, 0.8)), to(rgba(12, 109, 176, 0.8)));
	background-image: -webkit-linear-gradient(left, rgba(27, 181, 128, 0.8), rgba(12, 109, 176, 0.8));
	background-image: -moz-linear-gradient(left, rgba(27, 181, 128, 0.8), rgba(12, 109, 176, 0.8));
	background-image: -ms-linear-gradient(left, rgba(27, 181, 128, 0.8), rgba(12, 109, 176, 0.8));
	background-image: -o-linear-gradient(left, rgba(27, 181, 128, 0.8), rgba(12, 109, 176, 0.8));
	background-image: linear-gradient(left, rgba(27, 181, 128, 0.8), rgba(12, 109, 176, 0.8));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(27, 181, 128, 0.8)', endColorStr='rgba(12, 109, 176, 0.8)', gradientType='1');
}

.bg-overlay-gradient2:before {
	background-color: rgba(27, 181, 128, 0.15);
	background-image: -webkit-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: -moz-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: -ms-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: -o-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(27, 181, 128, 0.15)', endColorStr='rgba(27, 181, 128, 0.15)', gradientType='1');
}

/* Background Color Palettes */
.bg-purple {
	color: #ffffff;
	background-color: #cc66cc !important;
}

.bg-sun-flower {
	color: #ffffff;
	background-color: #f1c40f !important;
}

.bg-orange {
	color: #ffffff;
	background-color: #f39c12 !important;
}

.bg-carrot {
	color: #ffffff;
	background-color: #e67e22 !important;
}

.bg-pumpkin {
	color: #ffffff;
	background-color: #d35400 !important;
}

.bg-alizarin {
	color: #ffffff;
	background-color: #e74c3c !important;
}

.bg-pomegranate {
	color: #ffffff;
	background-color: #c0392b !important;
}

.bg-turquoise {
	color: #ffffff;
	background-color: #1abc9c !important;
}

.bg-green-sea {
	color: #ffffff;
	background-color: #16a085 !important;
}

.bg-emerald {
	color: #ffffff;
	background-color: #2ecc71 !important;
}

.bg-nephritis {
	color: #ffffff;
	background-color: #27ae60 !important;
}

.bg-peter-river {
	color: #ffffff;
	background-color: #3498db !important;
}

.bg-belize-hole {
	color: #ffffff;
	background-color: #2980b9 !important;
}

.bg-amethyst {
	color: #ffffff;
	background-color: #9b59b6 !important;
}

.bg-wisteria {
	color: #ffffff;
	background-color: #8e44ad !important;
}

.bg-wet-asphalt {
	color: #ffffff;
	background-color: #34495e !important;
}

.bg-wet-asphalt {
	color: #ffffff;
	background-color: #34495e !important;
}

.bg-midnight-blue {
	color: #ffffff;
	background-color: #2c3e50 !important;
}

.bg-clouds {
	color: #454545;
	background-color: #ecf0f1 !important;
}

.bg-silver {
	color: #ffffff;
	background-color: #bdc3c7 !important;
}

.bg-concrete {
	color: #ffffff;
	background-color: #859596 !important;
}

.bg-asbestos {
	color: #ffffff;
	background-color: #7f8c8d !important;
}

.bg-asbestos {
	color: #ffffff;
	background-color: #7f8c8d !important;
}

.bg-graphite {
	color: #ffffff;
	background-color: #454545 !important;
}

.bg-gray-0 {
	background-color: #EEEEEE !important;
	color: #454545;
}

.bg-gray-1 {
	background-color: #ECECEC !important;
	color: #454545;
}

.bg-gray-2 {
	background-color: #BDC3C7 !important;
	color: #454545;
}

.bg-gray-3 {
	background-color: #DADFE1 !important;
	color: #454545;
}

.bg-gray-5 {
	background-color: #ECF0F1 !important;
	color: #454545;
}

.bg-gray-4 {
	background-color: #F2F1EF !important;
	color: #454545;
}

.bg-gray-6 {
	background-color: #D2D7D3 !important;
	color: #454545;
}

.bg-gray-7 {
	background-color: #E6E6E6 !important;
	color: #454545;
}

.bg-orange-1 {
	background-color: #F9690E !important;
	color: #ffffff;
}

.bg-orange-2 {
	background-color: #D35400 !important;
	color: #ffffff;
}

.bg-orange-3 {
	background-color: #F89406 !important;
	color: #ffffff;
}

.col-img {
	height: 720px;
	padding: 60px;
	overflow: hidden;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.col-img {
		height: auto;
		min-height: 600px;
	}
}

/* Background Video */
.bg-ytvideo {
	position: absolute !important;
	height: 100%;
	width: 100%;
	top: 0;
	z-index: 0 !important;
}

.bg-video {
	width: 100%;
	overflow: hidden;
	behavior: url("/PIE.htc");
	transform: translateZ(0);
	display: block;
	border-radius: 0;
}

.bg-video iframe {
	display: block;
	position: absolute;
	z-index: -2;
}

.bg-video .bg-player {
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: url("polina.jpg") no-repeat;
	min-height: 500px;
}

.bg-video .vidbg {
	min-width: 100%;
	min-height: 100%;
}

.bg-vyoutube {
	z-index: 550;
	text-align: center;
	height: 100%;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

/*------------------------------------*\
    #BREADCRUMB
\*------------------------------------*/
/* Breadcrumb Style 1 */
.breadcrumb {
	background-color: transparent;
	margin-bottom: 0;
	padding: 0;
	border-radius: 0;
	color: #e5e4e4;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	text-transform: capitalize;
}

.breadcrumb>li+li:before,
.breadcrumb>li a {
	color: #e5e4e4;
}

.breadcrumb>.active {
	color: #f9f9f9;
}

.breadcrumb-2>li+li:before {
	content: "\f101";
	font-family: fontawesome;
}

.breadcrumb-3>li+li:before {
	content: "\f105";
	font-family: fontawesome;
}

.breadcrumb>li a:hover {
	color: #418ddf;
}

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.btn {
	font-family: "Montserrat", sans-serif;
	position: relative;
	z-index: 2;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	border-radius: 0;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 42px;
	min-width: 170px;
	padding-left: 20px;
    padding-right: 20px;
}

.btn.active,
.btn:active {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Button Primary */
.btn--primary {
	background-color: #418ddf;
	color: #ffffff;
	border: 2px solid transparent;
}

.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
	background-color: #282828;
	border: 2px solid #282828;
	color: #ffffff;
}

/* Button Secondary*/
.btn--secondary {
	background-color: #f6ae04;
	color: #ffffff;
	border: 2px solid #f6ae04;
}

.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
	background-color: #418ddf;
	color: #ffffff;
	border-color: #418ddf;
}

/* Button White */
.btn--white {
	background-color: #ffffff;
	color: #282828;
	border: 2px solid #ffffff;
}

.btn--white:active,
.btn--white:focus,
.btn--white:hover {
	background-color: #418ddf;
	color: #ffffff;
	border-color: #418ddf;
}

.bg-overlay-theme2 .btn--white:active,
.bg-overlay-theme2 .btn--white:focus,
.bg-overlay-theme2 .btn--white:hover {
	background-color: #282828;
	color: #ffffff;
	border-color: #282828;
}

/* Button Block */
.btn--block {
	width: 100%;
}

.btn--auto {
	width: auto;
}

/* Button Rounded */
.btn--rounded {
	border-radius: 50px;
}

/* Button Link */
.btn--link {
	background-color: transparent;
	border-color: transparent;
}

.btn--link.btn--primary {
	color: #418ddf;
}

.btn--link.btn--primary:active,
.btn--link.btn--primary:focus,
.btn--link.btn--primary:hover {
	color: #282828;
	background-color: transparent;
	border-color: transparent;
}

.btn--link.btn--secondary {
	color: #282828;
}

.btn--link.btn--secondary:active,
.btn--link.btn--secondary:focus,
.btn--link.btn--secondary:hover {
	color: #418ddf;
	background-color: transparent;
	border-color: transparent;
}

/* Button Bordered */
.btn--bordered {
	background-color: transparent;
}

.btn--bordered.btn--primary {
	color: #418ddf;
	border-color: #418ddf;
}

.btn--bordered.btn--primary:active,
.btn--bordered.btn--primary:focus,
.btn--bordered.btn--primary:hover {
	color: #ffffff;
	background-color: #418ddf;
	border-color: #418ddf;
}

.btn--bordered.btn--secondary {
	color: #282828;
	border-color: #282828;
}

.btn--bordered.btn--secondary:active,
.btn--bordered.btn--secondary:focus,
.btn--bordered.btn--secondary:hover {
	color: #ffffff;
	background-color: #282828;
	border-color: #282828;
}

.btn--bordered.btn--white {
	color: #ffffff;
	border-color: #ffffff;
}

.btn--bordered.btn--white:active,
.btn--bordered.btn--white:focus,
.btn--bordered.btn--white:hover {
	color: #418ddf;
	background-color: #ffffff;
	border-color: #ffffff;
}

.btn--white.btn--secondary {
	color: #282828;
	border-color: #ffffff;
	background-color: #ffffff;
}

.btn--white.btn--secondary:active,
.btn--white.btn--secondary:focus,
.btn--white.btn--secondary:hover {
	color: #ffffff;
	background-color: #418ddf;
	border-color: #418ddf;
}

.btn--slide:last-of-type {
	margin-left: -6px;
}

.btn--slide-wide {
	width: 270px;
}

.btn--video {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 51px;
	text-transform: uppercase;
	padding-left: 93px;
}

.btn--video i {
	position: absolute;
	left: 30px;
	top: 0;
	color: #f9f9f9;
	font-size: 48px;
}

.btn--video:hover,
.btn--video:hover i {
	color: #418ddf;
}

/* Buttom Video With Bordered */
.btn--video-bordered {
	width: 68px;
	height: 68px;
	line-height: 65px;
	border-radius: 50%;
	border-radius: 33px;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.btn--video-bordered .btn--video {
	padding-left: 0;
	width: 48px;
	height: 48px;
	color: #f9f9f9;
}

.btn--video-bordered .btn--video i {
	left: 9px;
}

.btn--video-bordered:hover {
	background-color: #ffffff;
}

.btn--video-bordered:hover .btn--video,
.btn--video-bordered:hover .btn--video i {
	color: #418ddf;
}

/* Buttom More */
.btn-more span {
	position: relative;
	padding-right: 7px;
}

.btn-more span:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 8px;
	margin-left: -7px;
	height: 2px;
	background-color: #222222;
}

.btn-more span:after {
	position: absolute;
	content: "";
	left: -4px;
	top: 50%;
	margin-top: -3px;
	width: 2px;
	height: 8px;
	background-color: #222222;
}

.btn-more:hover span:after,
.btn-more:hover span:before {
	background-color: #ffffff;
}

/* Buttom Link */
.btn--link.btn-more {
	color: #418ddf;
	height: 15px;
	line-height: 15px;
}

.btn--link.btn-more:hover {
	color: #282828;
}

.btn--link.btn-more span:after,
.btn--link.btn-more span:before {
	background-color: #418ddf;
}

.btn--link.btn-more:hover span:after,
.btn--link.btn-more:hover span:before {
	background-color: #282828;
}

/* Button Action */
.btn--action {
	line-height: 130px;
	height: 130px;
	border: none;
}

.btn--action span:after,
.btn--action span:before {
	background-color: #ffffff;
}

.btn--action:hover {
	background-color: #418ddf;
	color: #282828;
	border: none;
}

.btn--action:hover span:after,
.btn--action:hover span:before {
	background-color: #282828;
}

/* Button Icon */
.btn--icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 2px;
	background-color: rgba(27, 26, 26, 0.9);
	font-size: 40px;
	display: inline-block;
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.btn--icon-gradient i {
	color: #418ddf;
	background: -webkit-linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	background: linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn--icon:hover {
	background-color: #ffffff;
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	transform: translateY(-4px);
}

.btn--bg-gradient {
	background-color: rgba(27, 26, 26, 0.9);
	background: -webkit-linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	background: linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
}

.btn--bg-gradient i {
	color: #ffffff;
	background: none;
	-webkit-background-clip: inherit;
	-webkit-text-fill-color: inherit;
}

.m-0 {
	margin: 0 !important
}

.m-1 {
	margin: .25rem !important
}

.m-2 {
	margin: .5rem !important
}

.m-3 {
	margin: 1rem !important
}

.m-4 {
	margin: 1.5rem !important
}

.m-5 {
	margin: 3rem !important
}

.m-auto {
	margin: auto !important
}

.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important
}

.mx-1 {
	margin-right: .25rem !important;
	margin-left: .25rem !important
}

.mx-2 {
	margin-right: .5rem !important;
	margin-left: .5rem !important
}

.mx-3 {
	margin-right: 1rem !important;
	margin-left: 1rem !important
}

.mx-4 {
	margin-right: 1.5rem !important;
	margin-left: 1.5rem !important
}

.mx-5 {
	margin-right: 3rem !important;
	margin-left: 3rem !important
}

.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important
}

.my-1 {
	margin-top: .25rem !important;
	margin-bottom: .25rem !important
}

.my-2 {
	margin-top: .5rem !important;
	margin-bottom: .5rem !important
}

.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important
}

.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important
}

.my-5 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important
}

.mt-0 {
	margin-top: 0 !important
}

.mt-1 {
	margin-top: .25rem !important
}

.mt-2 {
	margin-top: .5rem !important
}

.mt-3 {
	margin-top: 1rem !important
}

.mt-4 {
	margin-top: 1.5rem !important
}

.mt-5 {
	margin-top: 3rem !important
}

.mt-auto {
	margin-top: auto !important
}

.me-0 {
	margin-right: 0 !important
}

.me-1 {
	margin-right: .25rem !important
}

.me-2 {
	margin-right: .5rem !important
}

.me-3 {
	margin-right: 1rem !important
}

.me-4 {
	margin-right: 1.5rem !important
}

.me-5 {
	margin-right: 3rem !important
}

.me-auto {
	margin-right: auto !important
}

.mb-0 {
	margin-bottom: 0 !important
}

.mb-1 {
	margin-bottom: .25rem !important
}

.mb-2 {
	margin-bottom: .5rem !important
}

.mb-3 {
	margin-bottom: 1rem !important
}

.mb-4 {
	margin-bottom: 1.5rem !important
}

.mb-5 {
	margin-bottom: 3rem !important
}

.mb-auto {
	margin-bottom: auto !important
}

.ms-0 {
	margin-left: 0 !important
}

.ms-1 {
	margin-left: .25rem !important
}

.ms-2 {
	margin-left: .5rem !important
}

.ms-3 {
	margin-left: 1rem !important
}

.ms-4 {
	margin-left: 1.5rem !important
}

.ms-5 {
	margin-left: 3rem !important
}

.ms-auto {
	margin-left: auto !important
}

.p-0 {
	padding: 0 !important
}

.p-1 {
	padding: .25rem !important
}

.p-2 {
	padding: .5rem !important
}

.p-3 {
	padding: 1rem !important
}

.p-4 {
	padding: 1.5rem !important
}

.p-5 {
	padding: 3rem !important
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important
}

.px-1 {
	padding-right: .25rem !important;
	padding-left: .25rem !important
}

.px-2 {
	padding-right: .5rem !important;
	padding-left: .5rem !important
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important
}

.px-4 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important
}

.px-5 {
	padding-right: 3rem !important;
	padding-left: 3rem !important
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important
}

.py-1 {
	padding-top: .25rem !important;
	padding-bottom: .25rem !important
}

.py-2 {
	padding-top: .5rem !important;
	padding-bottom: .5rem !important
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important
}

.pt-0 {
	padding-top: 0 !important
}

.pt-1 {
	padding-top: .25rem !important
}

.pt-2 {
	padding-top: .5rem !important
}

.pt-3 {
	padding-top: 1rem !important
}

.pt-4 {
	padding-top: 1.5rem !important
}

.pt-5 {
	padding-top: 3rem !important
}

.pe-0 {
	padding-right: 0 !important
}

.pe-1 {
	padding-right: .25rem !important
}

.pe-2 {
	padding-right: .5rem !important
}

.pe-3 {
	padding-right: 1rem !important
}

.pe-4 {
	padding-right: 1.5rem !important
}

.pe-5 {
	padding-right: 3rem !important
}

.pb-0 {
	padding-bottom: 0 !important
}

.pb-1 {
	padding-bottom: .25rem !important
}

.pb-2 {
	padding-bottom: .5rem !important
}

.pb-3 {
	padding-bottom: 1rem !important
}

.pb-4 {
	padding-bottom: 1.5rem !important
}

.pb-5 {
	padding-bottom: 3rem !important
}

.ps-0 {
	padding-left: 0 !important
}

.ps-1 {
	padding-left: .25rem !important
}

.ps-2 {
	padding-left: .5rem !important
}

.ps-3 {
	padding-left: 1rem !important
}

.ps-4 {
	padding-left: 1.5rem !important
}

.ps-5 {
	padding-left: 3rem !important
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.form-control {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 800;
	position: relative;
	border-radius: 7px;
	height: 50px;
	border: 1px solid #dbdbdb;
	margin-bottom: 14px;
}

.form-control:focus {
	border-color: #418ddf;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Placeholder */
.form-control::-webkit-input-placeholder {
	color: #9b9b9b;
}

.form-control:-moz-placeholder {
	color: #9b9b9b;
}

.form-control::-moz-placeholder {
	color: #9b9b9b;
}

.form-control:-ms-input-placeholder {
	color: #9b9b9b;
}

.input-bordered {
	border: 1px solid #e8e6ec;
	border-radius: 7px;
	padding-left: 8px;
	font-size: 11px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	padding-left: 1rem;
	padding-right: 1rem;
	transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

/* Input Checkbox */
.input-checkbox {
	margin-bottom: 5px;
}

.input-checkbox:last-child {
	margin-bottom: 20px;
}

.label-checkbox {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 18px;
	line-height: 18px;
	z-index: 2;
}

.label-checkbox input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.check-indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	background: transparent;
	border: 2px solid #eee;
	border-radius: 5px;
}

.label-checkbox input:checked~.check-indicator {
	background: #418ddf;
}

.check-indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.label-checkbox .check-indicator:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.label-checkbox input:checked~.check-indicator:after {
	display: block;
}

.input-checkbox span {
	display: inline-block;
	position: relative;
	font-size: 13px;
	padding-left: 35px;
	line-height: 25px;
}

.save-checkbox span {
	display: inline-block;
	position: relative;
	font-size: 13px;
	padding-left: 35px;
	line-height: 25px;
}

/* Input Radio */
.input-radio {
	text-align: center;
}

.label-radio {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	cursor: pointer;
	font-size: 18px;
}

.label-radio input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.radio-indicator {
	position: absolute;
	top: 2px;
	left: 50%;
	margin-left: -15px;
	height: 25px;
	width: 25px;
	background: transparent;
	border: 2px solid #eee;
	border-radius: 50%;
}

.label-radio input:checked~.radio-indicator {
	background: #418ddf;
}

.label-radio:hover input:not([disabled]):checked~.radio-indicator,
.label-radio input:checked:focus~.radio-indicator {
	background: #418ddf;
}

.radio-indicator:after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 6px;
	height: 9px;
	width: 9px;
	border-radius: 50%;
	background: #ffffff;
}

.label-radio input:checked~.radio-indicator:after {
	display: block;
}

.input-radio .input-option {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}

/*------------------------------------*\
    #ICONS
\*------------------------------------*/
#icons section {
	padding-top: 60px;
	padding-bottom: 60px;
}

#icons h3 {
	margin-bottom: 0;
}

#icons .fa-hover {
	margin-bottom: 15px;
	font-size: 15px;
}

#icons i {
	margin-right: 10px;
}

/*------------------------------------*\
    #Lists
\*------------------------------------*/
ul.list {
	padding: 0;
	font-size: 13px;
	list-style-type: none;
	color: #7f7f7f;
}

ul.list li {
	font-size: 13px;
	font-weight: 400;
	line-height: 30px;
}

ul.icon-list li i {
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 10px;
	color: #282828;
}

ul.number-list li {
	line-height: 33px;
}

ul.number-list li span {
	font-size: 13px;
	font-weight: 700;
	line-height: 30px;
	margin-right: 15px;
	color: #282828;
}

ul.dot-list li i {
	font-size: 7px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 19px;
	color: #282828;
}

/*------------------------------------*\
    #MEDIA
\*------------------------------------*/
.screen-img {
	position: relative;
	display: block;
	overflow: hidden;
}

.screen-img img {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.screen-img .screen-hover {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 30px;
	opacity: 0;
}

.screen-img .screen-hover a {
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -90px;
	webkit-transition: all 0.4s 0.4s ease-in-out;
	-moz-transition: all 0.4s 0.4s ease-in-out;
	-o-transition: all 0.4s 0.4s ease-in-out;
	transition: all 0.4s 0.4s ease-in-out;
	opacity: 0;
}

/* screen Hover Effect */
.screen-img:hover .screen-hover {
	opacity: 1;
}

.screen-img:hover .screen-hover a {
	opacity: 1;
}

/*------------------------------------*\
    #Tabs
\*------------------------------------*/
.tabs .nav-tabs {
	border: none;
	text-align: center;
}

.tabs .nav-tabs>li {
	float: none;
	display: inline-block;
}

.tabs .nav-tabs>li>a {
	font-family: 'Raleway', sans-serif;
	color: #333333;
	font-size: 13px;
	font-weight: 800;
	text-transform: capitalize;
	border-radius: 0;
	border: none;
	padding-right: 14px;
	padding-left: 14px;
}

.tabs .nav-tabs>li>a:focus,
.tabs .nav-tabs>li>a:hover,
.tabs .nav-tabs>li.active>a,
.tabs .nav-tabs>li.active>a:focus,
.tabs .nav-tabs>li.active>a:hover {
	color: #418ddf;
	background-color: transparent;
	border: none;
}

.tabs .tab-content>.tab-pane {
	padding-top: 27px;
}

.tabs .tab-content>.tab-pane p {
	color: #9b9b9b;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
}

/* Tabs #2*/
.tabs-2.tabs .nav-tabs {
	border-bottom: none;
}

.tabs-2.tabs .nav-tabs>li>a {
	pading-top: 0;
	padding-bottom: 0;
}

.tabs-2.tabs .nav-tabs>li>a i {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 2px;
	background-color: #282828;
	display: block;
	color: #ffffff;
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 20px;
}

.tabs-2.tabs .nav-tabs>li>a:focus,
.tabs-2.tabs .nav-tabs>li>a:hover,
.tabs-2.tabs .nav-tabs>li.active>a,
.tabs-2.tabs .nav-tabs>li.active>a:focus,
.tabs-2.tabs .nav-tabs>li.active>a:hover {
	color: #418ddf;
	background-color: #ffffff;
	border: none;
}

.tabs-2.tabs .nav-tabs>li>a:focus i,
.tabs-2.tabs .nav-tabs>li>a:hover i,
.tabs-2.tabs .nav-tabs>li.active>a i,
.tabs-2.tabs .nav-tabs>li.active>a:focus i,
.tabs-2.tabs .nav-tabs>li.active>a:hover i {
	background-color: #418ddf;
}

/* Tab Vertical */
.tabs-vertical.tabs .nav-tabs {
	border-bottom: none;
	border-right: 1px solid #ededed;
	width: 15%;
	float: left;
}

.tabs-vertical.tabs .nav-tabs>li {
	float: none;
	display: block;
}

.tabs-vertical.tabs .nav-tabs>li>a {
	border-radius: 0;
	border: none;
	padding-right: 20px;
	padding-left: 0;
	margin-right: 0;
}

.tabs-vertical.tabs .nav-tabs>li>a:focus,
.tabs-vertical.tabs .nav-tabs>li>a:hover,
.tabs-vertical.tabs .nav-tabs>li.active>a,
.tabs-vertical.tabs .nav-tabs>li.active>a:focus,
.tabs-vertical.tabs .nav-tabs>li.active>a:hover {
	color: #418ddf;
	background-color: #ffffff;
	border: none;
	border-right: 2px solid #418ddf;
	padding-left: 11px;
}

.tabs-vertical.tabs .tab-content {
	padding-left: 15%;
	text-align: left;
}

.tabs-vertical.tabs .tab-content>.tab-pane {
	padding-left: 60px;
	padding-top: 0;
}

.tabs-vertical.tabs .tab-content>.tab-pane p {
	color: #a5a5a5;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
}

/*------------------------------------*\
    #Accordion
\*------------------------------------*/
/* Accordion Base */
.accordion {
	border-radius: 2px;
	border: 1px solid #eeeeee;
	background-color: #ffffff;
}

.accordion .panel {
	border-bottom-color: rgba(49, 49, 49, 0.1);
	padding: 22px 22px 0;
	margin-bottom: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-border-radius: none;
	-webkit-border-radius: none;
	border-radius: none;
	background-color: transparent;
}

.accordion .panel:last-of-type {
	border-bottom: none;
}

.accordion .panel .panel--heading {
	padding: 0 0 22px;
}

.accordion .panel .panel--heading a {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	color: #418ddf;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	position: relative;
	padding-left: 40px;
	display: block;
}

.accordion .panel .panel--heading a.collapsed {
	color: #282828;
}

.accordion .panel .panel--body {
	padding: 0 0 28px;
	color: #9b9b9b;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
}

/* Accordion Status */
.accordion .panel--heading .accordion-toggle:after {
	position: absolute;
	left: 0;
	top: 0;
	content: "\f068";
	/* symbol for "opening" panels */
	font-family: fontawesome;
	font-size: 11px;
	color: #ffffff;
	background-color: #418ddf;
	border: 1px solid #418ddf;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
}

.accordion .panel--heading .accordion-toggle.collapsed:after {
	content: "\f067";
	/* symbol for "collapsed" panels */
	color: #282828;
	background-color: transparent;
	border: 1px solid #282828;
}

/* Accordion Style #1 */
.accordion.accordion-1 .panel--heading a {
	padding-left: 0;
}

.accordion.accordion-1 .panel--heading .accordion-toggle:after {
	right: 0;
	left: auto;
}

/* Accordion Style #2 */
.accordion.accordion-2 .panel .panel--body {
	padding-left: 40px;
}

/* Accordion Style #3 */
.accordion.accordion-3 {
	border: none;
	background-color: transparent;
}

.accordion.accordion-3 .panel--heading a {
	padding-left: 0;
}

.accordion.accordion-3 .panel--heading .accordion-toggle:after {
	right: 0;
	left: auto;
}

/*------------------------------------*\
    #PAGE-TTILE
\*------------------------------------*/
.page-title {
	padding: 0;
}

.page-title .title {
	padding: 222px 0 82px;
}

.page-title .title--heading {
	margin-bottom: 0;
}

.page-title .title--heading h1 {
	color: #ffffff;
	font-size: 65px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: capitalize;
	margin-bottom: 0;
}

.page-title .title--heading+.title--desc {
	margin-top: 14px;
}

.page-title .title--desc p {
	color: #f9f9f9;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 28px;
}

.page-title .breadcrumb,
.page-title .breadcrumb a {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #e5e4e4;
}

.page-title .breadcrumb .active {
	color: #f9f9f9;
}

.page-title .breadcrumb a:hover {
	color: #418ddf;
}

.breadcrumb-bottom {
	position: absolute;
	bottom: 27px;
	width: 100%;
}

/* Title #1 */
.title-1 {
	position: relative;
}

.title-1 .title--content {
	position: relative;
}

/* Title #3 */
.page-title .title-3 {
	padding-bottom: 50px;
	padding-top: 150px;
}

.title-3 .breadcrumb,
.title-3 .breadcrumb a {
	color: #646464;
}

.title-3 .breadcrumb .active {
	color: #b4b4b4;
}

.title-3 .breadcrumb a:hover {
	color: #418ddf;
}

.title--img {
	margin-bottom: 50px;
}

.page-title-12 .title--heading h1 {
	color: #222222;
	font-size: 31px;
	line-height: 40px;
}

.page-title-12 .title-12 {
	padding-top: 160px;
}

.page-title-12 .breadcrumb,
.page-title-12 .breadcrumb a {
	color: #646464;
	line-height: 40px;
}

.page-title-12 .breadcrumb .active {
	color: #b4b4b4;
}

.page-title-12 hr {
	border-top: 1px solid rgba(34, 34, 34, 0.1);
	margin-bottom: 0;
	margin-top: 55px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.page-title .title--heading h1 {
		font-size: 30px;
	}

	.h2,
	h2 {
		font-size: 32px !important;
	}

	.h4,
	h4 {
		font-size: 18px;
	}

	.page-title .title--desc p {
		font-size: 15px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #PAGINATION
\*------------------------------------*/
.pagination {
	margin: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.pagination>li {
	margin-right: 10px;
	display: inline-block;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-radius: 0;
}

.pagination>li>a,
.pagination>li>span {
	background-color: #646464;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Droid Serif', serif;
	font-size: 18px;
	font-weight: 900;
	border-color: #eee;
	text-transform: uppercase;
	padding: 0;
	width: 51px;
	height: 51px;
	line-height: 51px;
	text-align: center;
}

.pagination>.active>a,
.pagination>li:hover>a {
	background-color: #418ddf !important;
	border-radius: 1px;
	color: #ffffff;
	border-color: #418ddf;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-radius: 0 !important;
}

/*------------------------------------*\
    #ALERT MESSAGE
\*------------------------------------*/
.alerts {
	background-color: #f9f9f9;
	border-radius: 2px;
	padding: 20px;
	margin-bottom: 40px;
}

.alerts .alert-icon {
	width: 46px;
	height: 46px;
	line-height: 46px;
	background-color: #418ddf;
	-moz-border-radius: 2px 1px 1px 2px;
	-webkit-border-radius: 2px 1px 1px 2px;
	border-radius: 2px 1px 1px 2px;
	text-align: center;
	position: absolute;
}

.alerts .alert-icon i {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
}

.alerts .alert-content {
	padding-left: 68px;
}

.alerts .alert-content h4 {
	font-family: 'Raleway', sans-serif;
	color: #418ddf;
	font-size: 15px;
	font-weight: 700;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
	margin-top: -6px;
}

.alerts .alert-content p {
	font-family: 'Open Sans', sans-serif;
	color: #9b9b9b;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 0;
}

.alerts.alert-warning h4 {
	color: #8a6d3b;
}

.alerts.alert-warning .alert-icon {
	background-color: #fcf8e3;
}

.alerts.alert-warning .alert-icon i {
	color: #8a6d3b;
}

.alerts.alert-danger h4 {
	color: #a94442;
}

.alerts.alert-danger .alert-icon {
	background-color: #f2dede;
}

.alerts.alert-danger .alert-icon i {
	color: #a94442;
}

/*------------------------------------*\
    #BACK TO TOP
\*------------------------------------*/
#back-to-top {
	z-index: 9999;
	position: fixed;
	right: 30px;
	bottom: 30px;
	opacity: 0;
}

.backtop {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 2px;
	transition: opacity 0.2s ease-out;
	background-color: rgba(0, 0, 0, 0.4);
	font-size: 20px;
}

#back-to-top.show {
	opacity: 1;
}

#back-to-top:hover {
	background-color: #418ddf;
}

/* Style 2 */
.backtop.style-2 {
	border-radius: 0;
}

/* Style 4*/
.backtop.style-3 {
	border-radius: 5px;
}

/* Style 4*/
.backtop.style-4 {
	border-radius: 50%;
}

.back-top-styles .backtop {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

@media only screen and (max-width: 992px) {

	#back-to-top.show {
		opacity: 0;
	}
}

/*------------------------------------*\
    #Range
\*------------------------------------*/
.range-slider .ui-slider {
	height: 8px;
	background-color: #d7d7d7;
	border-radius: 2px;
	margin-bottom: 20px;
	margin-top: 5px;
}

.range-slider .ui-slider-handle {
	/* Style for "Line" */
	width: 15px;
	height: 15px;
	margin-left: 0;
	background-color: #272930;
	border-radius: 1px;
}

.range-slider .ui-slider-range {
	height: 8px;
	background-color: #418ddf;
	margin-bottom: 20px;
}

.range-slider p {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

.range-slider label {
	color: #f9f9f9;
}

.range-slider input {
	color: #418ddf;
	border: none;
	background-color: transparent;
}

/*------------------------------------*\
    #FEATRUE BOX
\*------------------------------------*/
/* Feature #8 */
.feature-box {
	text-align: center;
	margin-bottom: 0;
}

.feature-box .feature-heading h3 {
	color: #f9f9f9;
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
}

.feature-box .feature-icon {
	position: relative;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #f9f9f9;
	border-radius: 1px;
	color: #ffffff;
	font-size: 28px;
	font-weight: 400;
	text-align: center;
	margin: 0 auto 20px;
	overflow: hidden;
}

.feature-box .feature-icon i {
	position: relative;
	display: block;
	line-height: 60px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i:first-child {
	margin-top: -60px;
}

.feature-box .feature-body p {
	margin-bottom: 0;
}

/* Feature Box #2 */
.fbox-2 .feature-icon {
	float: left;
}

.fbox-2 .feature-body,
.fbox-2 .feature-heading {
	padding-left: 80px;
	text-align: left;
}

/* Feature Box #3 */
.fbox-3 .feature-icon {
	float: right;
}

.fbox-3 .feature-body,
.fbox-3 .feature-heading {
	padding-right: 80px;
	text-align: right;
}

/* Feature Box borderd */
.fbox-bordered .feature-icon {
	background-color: transparent;
	border: 1px solid #f9f9f9;
	color: #f9f9f9;
}

/* Feature Box Circle */
.fbox-circle .feature-icon {
	border-radius: 50%;
}

/* Feature Box Circle  bordered */
.fbox-circle.fb-bordered .feature-icon {
	border-radius: 50%;
	background-color: transparent !important;
	border: 2px solid #f9f9f9;
	color: #f9f9f9;
}

/*------------------------------------*\
    #MISC
\*------------------------------------*/
/* Utility classes table  */
.bs-table th small,
.responsive-utilities th small {
	display: block;
	font-weight: normal;
	color: #999;
}

.responsive-utilities tbody th {
	font-weight: normal;
}

.responsive-utilities td {
	text-align: center;
}

.responsive-utilities td.is-visible {
	color: #468847;
	background-color: #dff0d8 !important;
}

.responsive-utilities td.is-hidden {
	color: #ccc;
	background-color: #f9f9f9 !important;
}

.pallete-item {
	border: 1px solid #eee;
	margin-bottom: 24px;
}

.pallete-color {
	padding: 45px 15px;
	text-align: center;
	text-transform: uppercase;
}

.pallete-color p {
	margin-bottom: 0;
	font-weight: bold;
	color: #ffffff;
}

/*------------------------------------*\
    #MODALS
\*------------------------------------*/
.modal-dialog {
	margin-top: 60px;
}

.modal-content {
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-align: left;
}

.modal-content .modal-title {
	text-transform: capitalize;
	font-family: 'Lora', sans-serif;
}

/*------------------------------------*\
    #Animation
\*------------------------------------*/
@keyframes pulse {
	0% {
		transform: scale(0.95);
		opacity: 0.7;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(0.95);
		opacity: 0.7;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0.7;
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 0.7;
	}
}

/*------------------------------------*\
    #Tables
\*------------------------------------*/
table {
	background-color: #ffffff;
	border: 1px solid #eee;
	border-radius: 0;
	margin-bottom: 0;
}

table thead {
	background-color: #f9f9f9;
}

table thead tr th {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #282828;
	line-height: 30px !important;
	border-bottom-width: 0 !important;
	border-color: #eee;
	padding: 0;
}

table tbody tr td {
	padding: 20px;
	border-color: #eee;
}

table tbody tr td,
table tbody tr td {
	font-size: 13px;
	font-weight: 600;
	line-height: 26px;
	color: #9b9b9b;
}

/*------------------------------------*\
    #SOCIAL
\*------------------------------------*/
.social-icons a {
	margin: 0 5px 5px 0;
	display: inline-block;
	font-size: 20px;
	color: #fff;
	border-radius: 3px;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	position: relative;
}

.social-icons a i {
	color: #fff;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.social-icons a:hover i {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

.social-icons .facebook {
	background-color: #3B5998;
}

.social-icons .delicious {
	background-color: #205CC0;
}

.social-icons .paypal {
	background-color: #00588B;
}

.social-icons .paypal {
	background-color: #00588B;
}

.social-icons .android {
	background-color: #A4C639;
}

.social-icons .google-plus {
	background-color: #DD4B39;
}

.social-icons .wikipedia-w {
	background-color: #333;
}

.social-icons .stumbleupon {
	background-color: #F74425;
}

.social-icons .foursquare {
	background-color: #25A0CA;
}

.social-icons .phone {
	background-color: #444;
}

.social-icons .digg {
	background-color: #191919;
}

.social-icons .spotify {
	background-color: #81B71A;
}

.social-icons .reddit {
	background-color: #C6C6C6;
}

.social-icons .cc {
	background-color: #688527;
}

.social-icons .dribbble {
	background-color: #EA4C89;
}

.social-icons .flickr {
	background-color: #FF0084;
}

.social-icons .google {
	background-color: #DD4B39;
}

.social-icons .linkedin {
	background-color: #0E76A8;
}

.social-icons .vk {
	background-color: #2B587A;
}

.social-icons .rss {
	background-color: #EE802F;
}

.social-icons .skype {
	background-color: #00AFF0;
}

.social-icons .twitter {
	background-color: #00ACEE;
}

.social-icons .youtube {
	background-color: #C4302B;
}

.social-icons .vimeo {
	background-color: #86C9EF;
}

.social-icons .yahoo {
	background-color: #720E9E;
}

.social-icons .envelope-o {
	background-color: #6567A5;
}

.social-icons .apple {
	background-color: #333;
}

.social-icons .myspace {
	background-color: #666;
}

.social-icons .podcast {
	background-color: #E4B21B;
}

.social-icons .cloud {
	background-color: #525557;
}

.social-icons .dropbox {
	background-color: #3D9AE8;
}

.social-icons .github {
	background-color: #171515;
}

.social-icons .play {
	background-color: #DD4B39;
}

.social-icons .soundcloud {
	background-color: #F70;
}

.social-icons .tumblr {
	background-color: #34526F;
}

.social-icons .wordpress {
	background-color: #1E8CBE;
}

.social-icons .yelp {
	background-color: #C41200;
}

.social-icons .scribd {
	background-color: #666;
}

.social-icons .print {
	background-color: #111;
}

.social-icons .acrobat {
	background-color: #D3222A;
}

.social-icons .drupal {
	background-color: #27537A;
}

.social-icons .buffer {
	background-color: #27537A;
}

.social-icons .get-pocket {
	background-color: #EE4056;
}

.social-icons .bitbucket {
	background-color: #0E4984;
}

.social-icons .stack-overflow {
	background-color: #EF8236;
}

.social-icons .hacker-news {
	background-color: #F60;
}

.social-icons .xing {
	background-color: #126567;
}

.social-icons .instagram {
	background-color: #3F729B;
}

.social-icons .quora {
	background-color: #A82400;
}

.social-icons .openid {
	background-color: #E16309;
}

.social-icons .steam {
	background-color: #111;
}

.social-icons .amazon {
	background-color: #E47911;
}

.social-icons .disqus {
	background-color: #E4E7EE;
}

.social-icons .disqus {
	background-color: #E4E7EE;
}

.social-icons .pinterest {
	background-color: #C8232C;
}

/*------------------------------------*\
    #Heading
\*------------------------------------*/
.heading .heading--img {
	margin-bottom: 18px;
}

.heading .heading--subtitle {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 9px;
}

.heading .heading--title {
	font-family: "Poppins", sans-serif;
	color: #282828;
	font-size: 35px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.heading .heading--desc {
	font-family: 'Raleway', sans-serif;
	color: #a5a5a5;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 14px;
	margin-top: 1.2rem;
}

.heading .divider--line+.heading--desc {
	margin-top: 30px;
}

/* Heading #3 */
.heading-3 .divider--line {
	margin-top: 16px;
}

/* Heading #4 */
.heading-4 .heading--desc {
	margin-bottom: 0;
}

/* Heading #5 */
.heading-5 .heading--title {
	font-size: 40px;
	line-height: 45px;
}

/* Heading #6 */
.heading-6 .heading--title {
	font-size: 55px;
	line-height: 55px;
}

/* Heading #7*/
.heading-7 .heading--title {
	font-size: 70px;
	line-height: 1;
}

.heading-7 .heading--desc {
	font-size: 16px;
}

/* Heading #8*/
.heading-8 .heading--title {
	font-size: 40px;
	line-height: 1;
}

/* Heading #10 */
.heading-10 .heading--title {
	font-size: 60px;
	margin-bottom: 40px;
}

.heading-10 .heading--desc {
	font-size: 16px;
	margin-bottom: 0;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.heading-6 .heading--title {
		font-size: 30px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #LOADING-SECTION
\*------------------------------------*/
.preloader {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	z-index: 99999;
	background-color: #ffffff;
	overflow: hidden;
}

.sk-cube-grid {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
}

.spinner {
	margin: -40px 0 0 -40px;
	width: 70px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
}

.spinner>div {
	width: 18px;
	height: 18px;
	background-color: #418ddf;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
.header {
	height: 100px;
}

.header-transparent {
	background-color: transparent;
}

.header-transparent+.mtop-100,
.header-transparent+.page-title {
	position: relative;
	margin-top: -100px;
}

/* Module */
.module {
	display: inline-block;
	position: relative;
}

.module span.title {
	display: none;
}

.module .module-icon {
	margin-right: 25px;
	cursor: pointer;
	line-height: 100px;
}

.module:last-of-type .module-icon {
	margin-right: 0;
}

.module .module-icon i {
	font-size: 14px;
	line-height: 24px;
	color: #4e4e4e;
	font-weight: 400;
}

.header-8 .module-menu .module-icon.menu-icon-double {
	padding-right: 0;
}

.module .menu-icon-double i {
	margin-left: 30px;
}

.header-8 .module-menu .module-icon.menu-icon-double:after {
	right: 30px;
}

.header-8 .module-menu .module-icon.menu-icon-double:hover,
.header-8 .module-menu .module-icon.menu-icon-double:hover i {
	color: #418ddf !important;
}

.header-8 .module-menu .module-icon.menu-icon-double:hover:after {
	background-color: #418ddf !important;
}

.module .module-active .module-icon i {
	color: #418ddf;
}

.module-content {
	width: 0;
	height: 0;
	opacity: 0;
	display: none;
	transition: all 0.35s;
}

.module-fullscreen {
	left: 0;
	top: 0;
	z-index: 99;
	display: block;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background-color: rgb(8 29 50 / 95%);
	position: fixed;
}

.module-fullscreen .container {
	display: none;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.module-active .module-fullscreen {
	opacity: 1;
	visibility: visible;
	height: 100%;
	width: 100%;
}

.module-active .module-fullscreen .container {
	display: block;
}

.module-cancel {
	top: 50px;
	position: absolute;
	left: 50px;
	font-size: 18px;
	color: #ffffff;
	opacity: 0.6;
}

.module-cancel:hover {
	opacity: 1;
	color: #ffffff;
}

.module .module-box {
	position: absolute;
	display: block;
	background-color: #ffffff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
	border: 1px solid #eaeaea;
	right: -50px;
	width: 370px;
	border-radius: 2px;
	padding: 32px;
	z-index: 99;
	-webkit-transform: translateY(10%);
	-moz-transform: translateY(10%);
	transform: translateY(10%);
	height: 0;
}

.module-active .module-box {
	opacity: 1;
	visibility: visible;
	display: block;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	height: inherit;
}

.module .module-hamburger {
	height: 100%;
	width: 370px;
	position: fixed;
	z-index: 1;
	top: 0;
	right: 0;
	opacity: 1;
	visibility: visible;
	display: block;
	overflow-x: hidden;
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
	-webkit-transform: translateX(370px);
	-moz-transform: translateX(370px);
	transform: translateX(370px);
}

.module-active .module-hamburger {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.module-active .module-hamburger::-webkit-scrollbar {
	display: none;
}

.module-active .module-hamburger .module-cancel {
	top: 30px;
	position: absolute;
	right: 30px;
	left: auto;
	font-size: 12px;
	color: #ffffff;
	opacity: 1;
	z-index: 3;
}

/* Module Search */
.module--search-box .form-search {
	margin-bottom: 0;
	border-bottom: 2px solid #eeeeee;
	padding-bottom: 5px;
}

.module--search-box .form-control {
	color: #f9f9f9;
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 50px;
	height: 50px;
	border: none;
	background-color: transparent;
	width: 95%;
	float: left;
	padding: 0;
	margin-bottom: 0;
	text-transform: capitalize;
}

.module--search-box .btn {
	background-color: transparent;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	width: 35px;
	line-height: 57px;
	color: #f9f9f9;
	font-size: 22px;
	font-weight: 400;
	text-align: right;
	margin-left: 0;
	padding: 0;
	min-width: auto;
}

.module--search-box .form-control::-webkit-input-placeholder {
	color: #f9f9f9;
}

.module--search-box .form-control:-moz-placeholder {
	color: #f9f9f9;
}

.module--search-box .form-control::-moz-placeholder {
	color: #9e9e9e;
}

.module--search-box .form-control:-ms-input-placeholder {
	color: #f9f9f9;
}

.module .module-label {
	width: 16px;
	height: 16px;
	line-height: 16px;
	border-radius: 50%;
	background-color: #418ddf;
	color: #ffffff;
	font-size: 10px;
	font-weight: 400;
	text-align: center;
	position: absolute;
	top: 34px;
	left: 8px;
}

/* Module Cart */
.cart-box .cart-overview li {
	border-bottom: 2px solid #f4f4f4;
	margin-bottom: 20px;
	position: relative;
}

.cart-box .cart-overview li:last-child {
	margin-bottom: 0;
}

.cart-box .cart-overview li .cart-cancel {
	font-size: 0;
}

.cart-box .cart-overview li .cart-cancel:after {
	font-family: fontawesome;
	content: "\f00d";
	font-size: 12px;
	position: absolute;
	text-align: center;
	right: 0;
	top: 0;
	width: 19px;
	height: 19px;
	line-height: 19px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	background-color: #ffffff;
	color: #282828;
}

.cart-box .cart-overview li .cart-cancel:hover:after {
	background-color: #418ddf;
	color: #ffffff;
}

.cart-box .cart-overview img {
	width: 49px;
	height: 49px;
	margin-right: 15px;
	position: absolute;
}

.cart-box .cart-overview .product-meta {
	padding-left: 60px;
}

.cart-box .cart-overview h5 {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	font-size: 14px;
	text-transform: capitalize;
	margin-bottom: 0;
	line-height: 28px;
	font-weight: 500;
}

.cart-box .cart-overview p {
	color: #9b9b9b;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	margin-bottom: 0;
}

.cart-total {
	border-bottom: 2px solid #f4f4f4;
	margin-bottom: 20px;
	min-height: 40px;
}

.cart-total .total-desc {
	float: left;
	text-align: left;
}

.cart-total .total-des,
.cart-total .total-price {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.cart-total .total-price {
	float: right;
	text-align: right;
	color: #418ddf;
}

.cart-box .cart-control .btn {
	height: 42px;
	line-height: 40px;
}

/* Module Menu */
.module-menu .logo-container {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 180px;
}

.module-menu .menu-list li {
	margin-bottom: 30px;
}

.module-menu .menu-list li:last-child {
	margin-bottom: 0;
}

.module-menu .menu-list a {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-right: 50px;
}

.module-menu .menu-list li:last-child a {
	margin-right: 0;
}

.module-menu .menu-list a:hover {
	color: #418ddf;
}

.module-menu .menu-social {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
	text-align: center;
}

.module-menu .menu-social a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	margin-right: 23px;
}

.module-menu .menu-social a:last-of-type {
	margin-right: 0;
}

.module-menu .menu-social a:hover {
	color: #418ddf;
}

/* Top Bar */
.top-bar {
	height: 50px;
	background-color: transparent;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
}

.top-bar .top--contact li {
	margin-right: 21px;
}

.top-bar .top--contact li:last-child {
	margin-right: 0;
}

.top-bar .top--contact {
	line-height: 50px;
	color: #3e3e3e;
	font-size: 12px;
	font-weight: 700;
}

.top-bar .top--contact i {
	margin-right: 6px;
}

.top-bar .top--social {
	color: #3e3e3e;
	font-size: 12px;
	font-weight: 700;
	line-height: 50px;
}

.top-bar .top--social a {
	color: #3e3e3e;
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	margin-left: 19px;
}

.top-bar .top--social a:hover {
	color: #418ddf;
}

/* Transparent Header */
.transparent-header .module .module-icon>i {
	color: #ffffff;
}

.transparent-header .search-box {
	top: 100px !important;
}

.static-affix {
	top: 0;
	width: 100%;
	z-index: 10;
}

/* Header #8 */
.header-8 .module-menu .module-icon {
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	padding-right: 14px;
}

.header-8 .module-menu .module-icon:after {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -10px;
	content: "";
	width: 2px;
	height: 20px;
	background-color: #ffffff;
}

.header-8 .affix .module-menu .module-icon {
	color: #222222;
}

.header-8 .affix .module-menu .module-icon:after {
	background-color: #222222;
}

.header-8.header-light .module-menu .module-icon {
	color: #222222;
}

.header-8.header-light .module-menu .module-icon:after {
	background-color: #222222;
}

.header-8.header-light .container-bordered {
	border-bottom-color: rgba(34, 34, 34, 0.1);
}



/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.module .module-box {
		position: relative;
		right: 0;
		width: 100%;
		border: none;
	}

	.module .module-box .btn--bordered.btn--secondary {
		background-color: #ffffff;
		color: #282828;
	}

	.module .module-label {
		top: -3px;
	}

	.module {
		display: block;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.module .module-icon {
		padding-top: 8px;
		padding-left: 10px;
	}

	.module.active i {
		color: #ffffff;
	}

	.module span.title {
		display: inline-block;
		color: #ffffff;
		font-size: 13px;
		font-weight: bold;
		text-transform: uppercase;
	}

	.module .cart-box,
	.search-box {
		display: none;
		padding-right: 10px;
		padding-left: 10px;
	}

	.module .module-content {
		margin-bottom: 10px;
	}

	.cart-box .cart-overview h5 {
		color: #ffffff;
	}

	.module--search-box .form-search {
		margin: 25px;
	}

	.module--search-box .form-control {
		font-size: 14px;
		width: 220px;
		line-height: 30px;
	}

	.module--search-box .btn {
		font-size: 14px;
		line-height: 30px;
	}

	.module-cart.active .cart-box {
		opacity: 1;
		visibility: visible;
		display: block;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
		background-color: #272930;
	}

	.module-cancel {
		top: 30px;
		left: 30px;
	}

	.module .module-icon {
		line-height: 36px !important;
	}

	.module-search .search-icon i {
		border-left: none;
		padding-left: 0;
		padding-right: 5px;
	}

	.module.module-active .cart-box,
	.module.module-active .search-box {
		display: block !important;
	}

	.module-search.module-active .search-box .search-form {
		margin-bottom: 10px;
	}

	.module-search.module-active .search-box .search-form input {
		background-color: #ffffff;
		margin-bottom: 0;
		height: 35px;
		line-height: 35px;
		padding-left: 10px;
	}

	.module-cart.module-active .cart-box {
		background-color: #222222;
		padding: 30px 20px;
		margin-bottom: 10px;
	}

	.module-cart.module-active .cart-box .cart-control {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.module-cart.module-active .cart-box .cart-control .pull-right {
		float: none !important;
	}

	.module .module-label {
		position: relative;
	}

	.header-8 .module-menu .module-icon:after {
		display: none;
	}

	.module-menu.pull-left {
		float: none !important;
	}

	.module-menu .logo-container {
		margin-top: 40px;
		margin-bottom: 50px;
	}

	.module-menu .menu-social {
		bottom: 20px;
	}

	.module-menu .menu-list li {
		display: block;
		margin-bottom: 20px;
	}

	.module-menu .menu-list a {
		margin-right: 0;
	}

	.header-8.header-light .module-menu .module-icon,
	.navbar.navbar--dark .module .module-icon {
		color: #ffffff !important;
	}

	.header-8 .module-fullscreen {
		display: none;
	}

	.header-8 .module-active .module-fullscreen {
		display: block;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.module {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 5px 15px;
	}

	.module .module-icon {
		padding-top: 0;
	}

	.module .module-box {
		position: relative;
		right: 0;
		width: 100%;
		border: none;
	}

	.module .module-box .btn--bordered.btn--secondary {
		background-color: #ffffff;
		color: #282828;
	}

	.module .module-label {
		top: -3px;
		position: relative;
	}

	.module span.title {
		display: inline-block;
		color: #ffffff;
		font-size: 13px;
		font-weight: bold;
		text-transform: uppercase;
	}

	.module .cart-box,
	.search-box {
		display: none;
		padding-right: 10px;
		padding-left: 10px;
	}

	.module .module-content {
		margin-bottom: 10px;
	}

	.cart-box .cart-overview h5 {
		color: #ffffff;
	}

	.module-cart.active .cart-box {
		opacity: 1;
		visibility: visible;
		display: block;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	.module .module-icon {
		line-height: 36px !important;
	}

	.module-search .search-icon i {
		border-left: none;
		padding-left: 0;
		padding-right: 5px;
	}

	.module.module-active .cart-box,
	.module.module-active .search-box {
		display: block !important;
	}

	.module-search.module-active .search-box .search-form {
		margin-bottom: 10px;
	}

	.module-search.module-active .search-box .search-form input {
		background-color: #ffffff;
		margin-bottom: 0;
		height: 35px;
		line-height: 35px;
		padding-left: 10px;
	}

	.module-cart.module-active .cart-box {
		background-color: #222222;
		border: none;
		padding: 30px 20px;
		margin-bottom: 10px;
	}

	.module-cart.module-active .cart-box .cart-control {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.module-cart.module-active .cart-box .cart-control .pull-right {
		float: none !important;
	}

	.header-fixed .navbar.affix .module .module-icon i,
	.header-fixed .navbar.affix .navbar-nav>li>a,
	.module .module-icon i {
		color: #ffffff !important;
	}

	.header-8 .navbar-collapse.collapse {
		display: block !important;
		overflow: hidden;
	}



	.header-8 .navbar-toggle {
		display: none;
	}

	.header-8 .module-menu {
		position: absolute;
		top: 35px;
		right: 15px;
		width: auto;
		color: #ffffff;
		border-bottom: none;
	}

	.header-8 .module-menu .module-icon {
		color: #ffffff !important;
	}

	.menu-popup .logo {
		float: none !important;
	}

	.module-menu .logo-container {
		margin-top: 100px;
		margin-bottom: 130px;
	}

	.header-8 .navbar.navbar--dark .module-menu .module-icon:after,
	.navbar.navbar--dark .navbar-nav>li>.menu-item:hover::before,
	.navbar.navbar--dark .navbar-nav>li.active>.menu-item:before {
		background-color: #ffffff !important;
	}

	.header-8.header-light .module-menu .module-icon,
	.header-8.header-light .module .module-icon i {
		color: #282828 !important;
	}

	.header-8 .module-fullscreen {
		display: none;
	}

	.header-8 .module-active .module-fullscreen {
		display: block;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

	.module-search .search-icon i {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/*------------------------------------*\
    #Menu
\*------------------------------------*/
.header .navbar-collapse {
	padding-right: 0;
	padding-left: 0;
}

.header .navbar {
	margin-bottom: 0;
	border-radius: 0;
	min-height: 100px;
	border: none;
}

.navbar-fixed-bottom,
.navbar-fixed-top {
	position: sticky;
	right: 0;
	left: 0;
	z-index: 9;
}

.header-bordered .navbar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-bordered .navbar.navbar--dark {
	border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}

.header .navbar .logo {
	height: 100px;
	line-height: 100px;
}

.header .navbar .logo img {
	width: 60%;
}

.navbar-nav:not(.nav-pos-right) {
	margin-right: 200px;
}

.nav-bordered-right {
	margin-right: 30px;
}

.nav-item {
	position: relative;
}

.nav-bordered-right+.module:first-of-type:before {
	position: relative;
	margin-left: 12px;
}

.nav-bordered-right+.module:first-of-type:before {
	position: absolute;
	top: 50%;
	margin-top: -13px;
	left: -46px;
	content: "";
	width: 2px;
	height: 26px;
	background-color: #c9c9c9;
}

.affix .nav-bordered-right+.module:first-of-type:before {
	background-color: #c9c9c9;
}

.navbar-nav>li {
	margin-right: 26px;
}

.navbar-nav>li>a {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 100px;
	color: #303030;
	padding: 0;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	background-color: transparent;
	border: none;
}

.navbar-nav>li.active>ul {
	margin-top: 0;
}

.navbar-nav>li>a:focus,
.navbar-nav>li>a:hover {
	background-color: transparent;
	color: #d79803;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-nav>li.has-dropdown>a:after,
li.dropdown-submenu>a:after {
	font-family: fontawesome;
	content: "\f107";
	font-size: 13px;
	margin-left: 6px;
}

.navbar-nav>li>.menu-item:hover::before,
.navbar-nav>li.active>.menu-item:before {
	background-color: #ffffff;
	width: 100%;
}

li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>a:before,
ul.dropdown-menu>li.has-dropdown>a:before {
	font-family: fontawesome;
	content: "\f105";
	font-size: 13px;
	position: absolute;
	right: 25px;
}

/* Menu Levels */
.dropdown-menu {
	background-color: transparent;
	position: relative;
	width: 100%;
	border: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.transparent-header .navbar {
	background-color: transparent;
	height: 101px;
}

.transparent-header .navbar-nav>li.has-dropdown>a {
	color: #ffffff;
}

.transparent-header .navbar-nav li.has-dropdown>a:hover,
.transparent-header .navbar-nav li.has-dropdown.active>a {
	color: #418ddf;
}

/* Header Light */
.header-light {
	background-color: #ffffff;
}

.header-light .navbar .logo-dark {
	display: inline-block;
}

.header-light .navbar .logo-light {
	display: none;
}

.header-light .navbar .module .module-icon i,
.header-light .navbar .navbar-nav>li>a {
	color: #222222;
}

.header-light .navbar .navbar-nav>li>.menu-item:hover::before,
.header-light .navbar .navbar-nav>li.active>.menu-item:before {
	background-color: #222222;
}

/* Header Fixed */
.header-fixed .affix {
	background-color: #ffffff;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
	-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
	position: fixed;
}

.header-fixed:not(.header-light) .navbar .logo-dark {
	display: none;
}

.header-fixed .navbar.affix .logo-dark {
	display: inline-block;
}

.header-fixed .navbar.affix .logo-light {
	display: none;
}

.header-fixed .navbar.affix .module .module-icon i,
.header-fixed .navbar.affix .navbar-nav>li>a {
	color: #222222;
}

.header-fixed .navbar.affix .navbar-nav>li>.menu-item:hover::before,
.header-fixed .navbar.affix .navbar-nav>li.active>.menu-item:before {
	background-color: #222222;
	bottom: 0;
}

/* Header Centered */
.header-centered {
	height: 255px;
}

.header-centered .navbar-collapse {
	padding-right: 260px;
	padding-left: 260px;
}

.header-centered .navbar {
	top: 155px;
}

.header-centered .navbar.affix {
	top: 0;
}

.header-centered .logo-centered {
	padding-top: 50px;
	padding-bottom: 25px;
}

/* Header With Top Bar */
.header-topbar {
	height: 155px;
	position: absolute;
	width: 100%;
	z-index: 9;
}

.header-topbar .navbar {
	top: 46px;
}

.header-topbar .navbar.affix {
	top: 0;
}

/* Header #3 */
.header-3 .navbar-nav {
	margin-right: 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.header-3 .navbar+.module:first-of-type:before {
	position: relative;
	margin-left: 12px;
}

/* Header #5 */
.header-5 .container-fluid {
	padding-right: 0;
}

.header-5 .module {
	position: relative;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.header-5 .module .module-icon {
	margin-left: 25px;
	margin-right: 25px;
}

/* Header #6 */
.header-6 .container-fluid {
	padding-right: 0;
}

.header-6 .navbar {
	min-height: 79px;
}

.header-6 .navbar .logo {
	height: 79px;
	line-height: 79px;
}

.header-6 .module .module-icon {
	line-height: 79px;
}

.header-6 .module .module-label {
	top: 24px;
	right: 17px;
	left: auto;
}

.header-6 .navbar-nav>li {
	margin-right: 0;
}

.header-6 .navbar-nav>li>a {
	padding-right: 32px;
	padding-left: 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	line-height: 79px;
}

.header-6 .navbar-nav>li>.menu-item:before {
	display: none;
}

.header-6 .navbar-nav>li.active,
.header-6 .navbar-nav>li:hover {
	background-color: rgba(34, 34, 34, 0.5);
}

.header-6 .module {
	position: relative;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.header-6 .module .module-icon {
	margin-left: 32px;
	margin-right: 32px;
}

.header-6.header-bordered .affix.navbar {
	border-bottom: none;
}

.header-6 .affix .navbar-nav>li.active,
.header-6 .affix .navbar-nav>li:hover {
	background-color: #282828;
}

.header-6 .affix .navbar-nav>li.active>a,
.header-6 .affix .navbar-nav>li:hover>a {
	color: #ffffff;
}

/* Header Centered */
.header-7 {
	height: 305px;
}

.header-7 .navbar {
	top: 205px;
}

.header-7 .navbar.affix {
	top: 0;
}

/* Header #13 */
.header-13 .navbar-header>.logo {
	position: absolute;
	left: 50%;
	margin-left: -51px;
}

/* Header #10 */
.header-10 .nav-bordered-right+.module:first-of-type:before {
	background-color: #6689a3;
}

/* Header #16 */
.header-16 .navbar {
	top: 30px;
}

.header-16 .navbar.affix {
	top: 0;
}

/* Header #17 */
.header-centered.header-17 {
	height: 265px;
}

.header-centered.header-17 .navbar {
	top: 165px;
}

.header-17 .navbar.affix {
	top: 0;
}

/* Header Half */
.header-half .navbar-nav>li>.menu-item:before {
	bottom: 36px;
}

/* Container Bordered */
.container-bordered {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	height: 100px;
}

/* Navbar Dark */
.header-transparent.header-light .navbar.affix {
	background-color: transparent;
}

.inner-header {
	position: initial;
	background-color: #f9f9f9;
}

.navbar.navbar--dark .logo-dark {
	display: inline-block !important;
}

.navbar.navbar--dark .logo-light {
	display: none;
}

.navbar.navbar--dark .module .module-icon,
.navbar.navbar--dark .module .module-icon i,
.navbar.navbar--dark .navbar-nav>li>a {
	color: #222222;
}

.header-8 .navbar.navbar--dark .module-menu .module-icon:after,
.navbar.navbar--dark .navbar-nav>li>.menu-item:hover::before,
.navbar.navbar--dark .navbar-nav>li.active>.menu-item:before {
	background-color: #222222;
}

/* Header Split */
.header-split .logo-dark {
	display: none;
}

.header-split .logo-light {
	display: inline-block;
}

.header-split .module .module-icon i,
.header-split .navbar-nav>li>a {
	color: #222222;
}

.header-split .navbar-nav>li>.menu-item:hover::before,
.header-split .navbar-nav>li.active>.menu-item:before {
	background-color: #222222;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.header-5 .module .module-icon,
	.header-6 .module .module-icon {
		margin-left: 0;
		margin-right: 0;
	}

	.header-6 .module .module-label {
		top: 0;
		right: 0;
	}

	.header-centered .logo-centered {
		display: none;
	}

	.header-7,
	.header-centered.header-17 {
		height: 120px;
	}

	.header-7 .navbar {
		top: 30px;
	}

	.header-centered.header-17 .navbar {
		top: 0;
	}

	.header-centered .navbar-collapse {
		padding: 0;
		background-color: #282828;
	}

	.header-13 .navbar-header>.logo {
		position: relative;
		left: 0;
		margin-left: 0;
	}

	.header-13 #navbar-collapse-2 {
		display: none;
	}

	.header-16 .navbar {
		top: 0;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.header-13 .navbar-header>.logo {
		position: relative;
		left: 0;
		margin-left: 0;
	}

	.header-centered .logo-centered {
		display: none;
	}

	.header-centered.header-17 {
		height: 100px;
	}

	.header-centered.header-17 .navbar {
		top: 0;
	}

	.header-centered .navbar-collapse {
		padding-right: 0;
		padding-left: 0;
	}

	.header-centered.header-17 .module {
		display: inline-block;
	}

	.header-16 .navbar {
		top: 0;
		background-color: #ffffff;
	}

	.header-7 {
		height: 130px;
	}

	.header-7 .navbar {
		top: 30px;
	}
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 479px) {

	.mega-dropdown-menu ul {
		list-style: none;
		margin-left: -10px;
	}

	.mega-dropdown-menu ul li a {
		line-height: 28px;
		padding: 0;
	}

	.mega-dropdown-menu ul li a i {
		margin-right: 8px;
	}
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.header .container {
		padding-right: 0;
		padding-left: 0;
	}

	.uploadFile-container {
		display: flex;
		flex-flow: column;
	}

	.uploadFile-container>div {
		flex: auto;
		width: 100%;
	}

	.pasteUrl-entry {
		margin-left: 0;
	}

	.navbar-nav {
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.navbar-toggler {
		border-color: #76797a;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 5px;
		margin-top: 35px;
		float: right;
	}

	.affix .navbar-toggle,
	.header-light .navbar-toggle {
		border-color: #282828;
	}

	.navbar-toggle .icon-bar {
		background-color: #333;
	}
	.navbar-toggle {
		position: relative;
		float: right;
		padding: 9px 10px;
		margin-top: 26px;
		margin-right: 15px;
		margin-bottom: 8px;
		background-color: transparent;
		background-image: none;
		border: 1px solid transparent;
		border-radius: 4px;
	}

	.affix .navbar-toggle .icon-bar,
	.header-light .navbar-toggle .icon-bar {
		background-color: #282828;
	}

	.container>.navbar-header {
		margin-left: 0;
		padding-right: 10px;
		padding-left: 10px;
	}

	.container .navbar-collapse,
	.container-bordered .navbar-collapse,
	.container-fluid .navbar-collapse {
		width: 100%;
		background-color: #282828;
		margin-right: 0;
		margin-left: 0;
	}

	.navbar-nav>li {
		height: auto !important;
		margin-right: 0;
	}

	.navbar-nav>li.pull-left {
		float: none !important;
	}

	.navbar-nav li a {
		line-height: 36px;
		color: #ffffff;
		padding-right: 0;
		padding-left: 10px;
		padding-top: 0;
	}

	.navbar-nav>li>.menu-item:before {
		display: none;
	}

	ul ul {
		list-style: none;
	}

	ul.dropdown-menu li a,
	ul.mega-menu,
	ul.mega-menu li ul li a {
		background-color: transparent;
		position: relative;
		padding: 0;
	}

	.navbar-nav>li.has-dropdown>a:after,
	li.dropdown-submenu>a:after {
		font-family: fontawesome;
		content: "\f105";
		font-size: 13px;
		position: absolute;
		right: 10px;
	}

	.navbar-nav>li.has-dropdown.open>a,
	.navbar-nav>li.has-dropdown.open>a:focus,
	.navbar-nav>li.has-dropdown.open>a:hover {
		background-color: transparent;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	li.dropdown-submenu.open>ul>li>a {
		padding-left: 50px !important;
	}

	.navbar-nav>li.has-dropdown.open>a:after,
	.navbar-nav>li.has-dropdown.open>a:focus:after,
	.navbar-nav>li.has-dropdown.open>a:hover:after,
	li.dropdown-submenu.open>a:after,
	li.dropdown-submenu.open>a:focus:after,
	li.dropdown-submenu.open>a:hover:after {
		font-family: fontawesome;
		content: "\f107";
		font-size: 13px;
		position: absolute;
		right: 10px;
	}

	li.dropdown-submenu>a:after,
	li.dropdown-submenu.open>a:focus:after,
	li.dropdown-submenu.open>a:hover:after {
		right: 10px;
	}

	.dropdown-menu>li>a:focus,
	.dropdown-menu>li>a:hover,
	.mega-menu li a:focus,
	.mega-menu li a:hover,
	.nav>li>a:focus,
	.nav>li>a:hover {
		background-color: transparent;
	}

	.dropdown-menu>li>a,
	.mega-menu>li>a {
		color: #ffffff;
	}

	.mega-menu ul {
		list-style: none;
		padding-left: 25px;
	}

	.mega-menu ul li {
		padding-top: 5px;
	}

	.dropdown-menu>li>a:focus,
	.dropdown-menu>li>a:hover,
	.mega-menu li a:focus,
	.mega-menu li a:hover {
		color: #ffffff;
	}

	ul.mega-menu {
		list-style: none;
		display: none;
	}

	.dropdown-submenu.open>.mega-menu,
	.has-dropdown.open>.mega-menu {
		display: block;
	}

	.dropdown-submenu.open>.mega-menu ul {
		padding-left: 50px;
	}

	.header-fixed .navbar.affix .module .module-icon i,
	.header-fixed .navbar.affix .navbar-nav>li>a {
		color: #ffffff;
	}

	.mega-dropdown-menu .container a[href='#'] {
		color: #418ddf;
		cursor: default;
		margin-left: 10px;
		padding: 0;
		font-weight: 700;
		text-transform: capitalize;
	}

	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>a:before,
	ul.dropdown-menu>li.has-dropdown>a:before {
		display: none;
	}

	.navbar.navbar--dark .module .module-icon i,
	.navbar.navbar--dark .navbar-nav>li>a {
		color: #ffffff;
	}

	.navbar-nav:not(.nav-pos-right) {
		margin-right: 0;
	}

	.mega-dropdown-menu li ul li a i {
		margin-right: 8px;
	}

	.header-3 .navbar-nav {
		margin-right: 0;
		border-right: none;
	}

	.header-light .navbar .module .module-icon i,
	.header-light .navbar .navbar-nav>li>a {
		color: #ffffff;
	}

	.container-fluid>.navbar-collapse,
	.container-fluid>.navbar-header,
	.container>.navbar-collapse,
	.container>.navbar-header {
		margin-right: 0;
		margin-left: 0;
	}

	.header-5 .container-fluid {
		padding-right: 15px;
	}

	.header-6 .navbar-nav>li>a {
		padding-right: 0;
		padding-left: 10px;
		border-left: none;
		line-height: 36px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.header .container {
		padding-right: 0;
		padding-left: 0;
	}

	.navbar-header {
		float: none !important;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.header .navbar .logo {
		float: left;
	}

	.navbar-toggle {
		border-color: #ffffff;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		margin-top: 35px;
		display: block;
	}

	.affix .navbar-toggle,
	.header-light .navbar-toggle {
		border-color: #282828;
	}

	.navbar-toggle .icon-bar {
		background-color: #ffffff;
	}

	.affix .navbar-toggle .icon-bar,
	.header-light .navbar-toggle .icon-bar {
		background-color: #282828;
	}

	.navbar-fixed-top .navbar-collapse {
		overflow: scroll !important;
	}

	.navbar-collapse.collapse {
		display: none !important;
	}

	.collapse.in {
		display: block !important;
	}

	.navbar-nav {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

	.navbar-nav>li {
		float: none;
	}

	.container>.navbar-collapse {
		width: 100%;
		background-color: #282828;
		margin-right: 0;
	}

	.navbar-nav>li {
		height: auto !important;
		margin-right: 0;
	}

	.navbar-nav>li.pull-left {
		float: none !important;
	}

	.navbar-nav>li>a {
		line-height: 36px !important;
		color: #ffffff !important;
		padding-right: 0;
		padding-left: 0;
		padding-top: 0;
	}

	.dropdown-menu>li>a,
	.mega-menu a {
		padding-top: 0;
	}

	.navbar-nav>li:after {
		display: none;
	}

	.navbar-nav>li.active {
		border-bottom: none;
	}

	.navbar-nav>li.has-dropdown>a:after,
	.navbar-nav>li.has-dropdown>a:after,
	li.dropdown-submenu>a:after {
		font-family: fontawesome;
		content: "\f105";
		font-size: 13px;
		position: absolute;
		right: 0;
	}

	.navbar-nav>li.has-dropdown.open>a,
	.navbar-nav>li.has-dropdown.open>a:focus,
	.navbar-nav>li.has-dropdown.open>a:hover {
		background-color: transparent;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.mega-menu>li>a,
	li a:hover,
	li.dropdown-submenu.open>a,
	li.open>a:focus {
		color: #ffffff;
	}

	li.dropdown-submenu.open>ul>li>a {
		padding-left: 50px !important;
	}

	.navbar-nav>li.has-dropdown.open>a:after,
	.navbar-nav>li.has-dropdown.open>a:focus:after,
	.navbar-nav>li.has-dropdown.open>a:hover:after,
	li.dropdown-submenu.open>a:after,
	li.dropdown-submenu.open>a:focus:after,
	li.dropdown-submenu.open>a:hover:after {
		font-family: fontawesome;
		content: "\f107";
		font-size: 13px;
		position: absolute;
		right: 0;
	}

	li.dropdown-submenu>a:after,
	li.dropdown-submenu.open>a:focus:after,
	li.dropdown-submenu.open>a:hover:after {
		right: 10px;
	}

	.dropdown-menu>li>a:focus,
	.dropdown-menu>li>a:hover,
	.nav>li>a:focus,
	.nav>li>a:hover {
		background-color: transparent;
	}

	.dropdown-menu>li>a,
	.mega-dropdown-menu .container a,
	.mega-menu a {
		color: #ffffff;
	}

	.dropdown-menu>li>a:focus,
	.dropdown-menu>li>a:hover {
		color: #ffffff;
	}

	.mega-menu ul {
		list-style: none;
		padding-left: 0;
	}

	.mega-menu ul li {
		padding-top: 5px;
	}

	.mega-menu ul ul {
		padding-left: 0;
	}

	.dropdown-menu>li>a:focus,
	.dropdown-menu>li>a:hover,
	.mega-menu li a:focus,
	.mega-menu li a:hover {
		color: #ffffff;
	}

	ul.mega-menu {
		list-style: none;
		display: none;
	}

	.mega-dropdown-menu .container ul {
		list-style: none;
		padding-left: 5px;
	}

	.mega-dropdown-menu .container ul li {
		line-height: 25px;
	}

	.mega-dropdown-menu .container ul i {
		margin-right: 5px;
	}

	.dropdown-submenu.open>.mega-menu,
	.has-dropdown.open>.mega-menu {
		display: block;
		padding-left: 25px;
	}

	.dropdown-submenu.open>.mega-menu ul {
		padding-left: 25px;
	}

	.navbar-nav>li>.menu-item:before,
	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>a:before,
	ul.dropdown-menu>li.has-dropdown>a:before {
		display: none;
	}

	.mega-dropdown-menu .container a[href='#'] {
		color: #418ddf;
		cursor: default;
		margin-left: 10px;
		padding: 0;
		font-weight: 700;
		text-transform: capitalize;
	}

	.header-6 .navbar-nav>li>a {
		border-left: none;
		padding: 0;
	}

	.header-6 .module {
		border-left: none;
	}

	.header-6 .module .module-icon,
	.header-5 .module .module-icon {
		margin-left: 0;
		margin-right: 0;
	}

	.header-6 .module .module-label {
		top: 0;
		right: 0;
	}
}

.contact {

	p,
	.form-label {
		color: #2a2a2a;
		font-weight: 600;
	}
	sum.reqd{
		color: #e10101;
	}
	i {
		color: #008fdf;
		font-size: 16px;
	}

	.bi-star-fill {
		font-size: 8px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width: 991px) {

	.navbar.navbar--dark .module .module-icon i,
	.navbar.navbar--dark .navbar-nav>li>a {
		color: #ffffff;
	}

	.container .navbar-collapse,
	.container-bordered .navbar-collapse,
	.container-fluid .navbar-collapse {
		width: 100%;
		background-color: #194b7e;
		margin-right: 0;
		margin-left: 0;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

	.navbar-nav>li {
		margin-right: 16px;
	}
}

@media only screen and (min-width: 992px) {

	/* Menu with Dropdown */
	.navbar-nav>li.has-dropdown>ul.dropdown-menu,
	.navbar-nav>li.has-dropdown>ul.mega-menu,
	li.dropdown-submenu>ul.mega-menu {
		background-color: #ffffff;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		transition: all 0.4s ease;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-o-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transform-origin: 0 0 0;
		-ms-transform-origin: 0 0 0;
		-o-transform-origin: 0 0 0;
		transform-origin: 0 0 0;
		opacity: 0;
		position: absolute;
		left: 0;
		right: auto;
		-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
		-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
		box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		display: block;
	}

	.navbar-nav>li.has-dropdown>ul.dropdown-menu {
		width: max-content;
		min-width: 190px;
		padding: 13px 0;
		background-color: #ffffff;
	}

	.navbar-nav>li.has-dropdown>ul.mega-menu,
	li.dropdown-submenu>ul.mega-menu {
		width: 385px !important;
	}

	li.dropdown-submenu:hover>ul.mega-menu,
	li.has-dropdown:hover>ul.dropdown-menu,
	li.has-dropdown:hover>ul.mega-menu {
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-o-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
		z-index: 100;
		display: block;
	}

	ul.dropdown-menu>li,
	ul.mega-menu>li {
		padding-right: 0;
		height: 40px;
		line-height: 40px;
		position: relative;
		vertical-align: top;
	}

	ul.mega-menu>li {
		border-right: 1px solid #eaeaea;
	}

	ul.mega-menu>li:last-child {
		border-right: none;
	}

	ul.mega-menu>li {
		width: 190px !important;
		height: auto;
		overflow: hidden;
		display: inline-block;
	}

	ul.mega-menu>li>ul {
		width: 190px;
		list-style: none;
		background-color: #ffffff;
		padding-left: 0;
		position: relative !important;
		left: auto !important;
	}

	ul.mega-menu li ul li {
		height: 40px;
		line-height: 40px;
		padding: 0;
	}

	ul.dropdown-menu li a,
	ul.mega-menu li ul li a {
		line-height: 40px;
		color: #7f7f7f;
		padding: 0;
		border-bottom: 1px solid #f3f3f3;
		display: block;
		font-size: 13px;
		font-weight: 400;
		-o-transition: all 0.35s;
		-moz-transition: all 0.35s;
		-webkit-transition: all 0.35s;
		transition: all 0.35s;
		text-transform: capitalize;
		margin: 0 25px;
	}

	ul.mega-menu li ul li span {
		color: #418ddf;
		padding: 0;
		display: block;
		font-size: 13px;
		line-height: 39px;
		text-transform: uppercase;
		font-weight: 700;
	}

	ul.dropdown-menu li:last-child>a {
		border-bottom: none;
	}

	ul.dropdown-menu li>a:active,
	ul.dropdown-menu li>a:focus,
	ul.dropdown-menu li>a:hover,
	ul.mega-menu li a:active,
	ul.mega-menu li a:focus,
	ul.mega-menu li a:hover {
		background-color: transparent;
		color: #d79803;
		padding: 0px;
	}

	ul.dropdown-menu.left {
		left: -185px !important;
		margin-left: 0 !important;
	}

	ul.mega-menu.left {
		left: -410px !important;
	}

	/* Menu Level #2 */
	li.dropdown-submenu>ul.mega-menu,
	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu>ul.dropdown-menu {
		background-color: #ffffff;
		padding: 25px 0;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-o-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transform-origin: 0 0 0;
		-ms-transform-origin: 0 0 0;
		-o-transform-origin: 0 0 0;
		transform-origin: 0 0 0;
		opacity: 0;
		display: block;
		position: absolute;
		left: 100%;
		right: auto;
		top: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		margin: -1px 0 0;
		z-index: 1001;
	}

	li.has-dropdown>ul.dropdown-menu>li.dropdown-submenu:hover>ul.dropdown-menu {
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
		z-index: 1001;
		margin-top: -1px;
		margin-left: 0;
		padding: 13px 0;
		-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
		-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
		box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
	}

	li.dropdown-submenu.pull-left>ul.dropdown-menu {
		left: auto;
		right: 0;
		margin-right: 0;
	}

	/* Menu Level #3 */
	li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu {
		background-color: #ffffff;
		float: none;
		position: absolute;
		border-radius: 0;
		left: 100%;
		right: auto;
		top: 0;
		margin: -1px 0 0;
		z-index: 1;
		border: 1px solid #eaeaea;
		padding: 13px 0;
	}

	li.dropdown-submenu>ul.dropdown-menu>li.has-dropdown>ul.dropdown-menu.left {
		left: -185px !important;
	}

	/* Mega Menu Content */
	.mega-dropdown {
		position: static !important;
	}

	.mega-dropdown-menu {
		padding: 20px 0 !important;
		width: 100% !important;
		background-color: #ffffff !important;
		border: none !important;
		margin-top: -23px;
	}

	.mega-dropdown-menu .container {
		background-color: #ffffff;
	}

	.mega-dropdown-menu .container div[class*='col-'] {
		padding-left: 0;
		padding-right: 0;
	}

	.mega-dropdown-menu li ul {
		padding: 0;
		margin: 0;
	}

	.mega-dropdown-menu li ul li {
		list-style: none;
	}

	.mega-dropdown-menu li ul li a {
		padding: 0;
		border-bottom: none;
	}

	.mega-dropdown-menu li ul li a:hover {
		padding: 0 0 0 12px;
	}

	.mega-dropdown-menu li ul li a i {
		margin-right: 8px;
	}

	.mega-dropdown-menu .container div[class*='col-']>a {
		border-bottom: none;
		padding-left: 0;
		font-size: 14px;
	}

	.mega-dropdown-menu .container a[href='#'] {
		color: #418ddf;
		cursor: default;
		font-weight: 600;
	}
}

/*------------------------------------*\
    #Hamburger
\*------------------------------------*/
/* Hamburger Panel */
.hamburger-panel {
	padding: 50px 30px;
	text-align: center;
}

.hamburger-panel .list-links {
	margin-bottom: 0;
	padding: 45px 30px;
}

.hamburger-panel .list-links a {
	font-size: 14px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 0;
	position: relative;
	display: block;
}

.hamburger-panel .list-links a:hover {
	color: #418ddf;
}

.hamburger-panel .social-share {
	padding: 0 30px;
	margin-bottom: 49px;
}

.hamburger-panel .social-share a {
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 1px;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	background-color: transparent;
	margin-right: 5px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.hamburger-panel .social-share a:hover {
	color: #ffffff !important;
}

.hamburger-panel .social-share a.share-facebook:hover {
	background-color: #3B5998;
}

.hamburger-panel .social-share a.share-twitter:hover {
	background-color: #00ACEE;
}

.hamburger-panel .social-share a.share-pinterest:hover {
	background-color: #C8232C;
}

.hamburger-panel .social-share a.share-google-plus:hover {
	background-color: #DD4B39;
}

.hamburger-panel .social-share a.share-dribbble:hover {
	background-color: #EA4C89;
}

.hamburger-panel .copywright {
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	color: #9b9b9b;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
	.header .navbar .logo img {
		width: 50%;
	}

	.hamburger-panel .list-links {
		padding: 25px;
	}

	.hamburger-panel {
		padding: 30px;
	}

	.hamburger-panel .list-links a {
		line-height: 35px;
	}

	.hamburger-panel .copywright span {
		display: block;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.hamburger-panel .logo {
		float: none !important;
		height: 50px !important;
		line-height: 50px !important;
	}

	.hamburger-panel .list-links {
		padding: 25px;
	}
}

/*------------------------------------*\
    #Hero
\*------------------------------------*/
.header-transparent+.slider {
	margin-top: 0px;
}

.slider {
	min-height: 700px;
	padding-top: 0;
	padding-bottom: 0;
	background-image: url(../images/sliders/slide-bg/slider-bg.jpg);
	position: relative;
}

.slider::before {
	content: "";
	width: 150px;
	height: 150px;
	border: 12px solid #00000026;
	position: absolute;
	top: -46px;
	left: -56px;
	border-radius: 100%;
}

.slider::after {
	content: "";
	width: 150px;
	height: 150px;
	border: 12px solid #00000026;
	position: absolute;
	bottom: -50px;
	right: -56px;
	border-radius: 100%;
}

.slider .slide--item {
	height: 700px;
}

.slider-content-area {
	width: 515px;
	max-width: 100%;
}

.slider-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 17rem;
	align-items: center;
}

.slider-content h3 {
	font-weight: 300;
	font-size: 40px;
	color: #052767;
	margin: 0;
}

.slider-content h1 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 70px;
	color: #052767;
}

.slider-content h1 .light {
	font-weight: 200;
	font-size: 77px;
}

.slider-content h1 .bolder {
	font-weight: 900;
	font-size: 77px;
}

.sevive-box {
	display: flex;
	align-items: center;
}

.order-button a {
	background-color: #f6ae04;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 28px;
	display: inline-block;
	margin-left: 12px;
	height: auto;
	width: auto;
	line-height: normal;
}

.order-button a:hover {
	background-color: #182a54;
	color: #fff;
}

.slider-service-area {}

.slider-service-area h4 {
	font-size: 22px;
	font-family: "Montserrat", sans-serif;
	margin: 0;
	color: #182a54;
	font-weight: 800;
}

.slider-service-area p {
	font-size: 16px;
	color: #182a54;
	text-transform: lowercase;
	font-weight: 600;
}

.slider-service-area ul {
	list-style: none;
	position: relative;
	color: #182a54;
	font-weight: 600;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 0;
}

.slider-service-area ul::before {
	content: "";
	background-color: #babbbb;
	width: 25px;
	height: 100%;
	position: absolute;
	left: 0;
	border-radius: 12px;
}

.slider-service-area ul::after {
	content: "";
	border-right: 1px solid #ccc;
	height: 100%;
	position: absolute;
	top: 0;
}

.slider-service-area ul li {
	margin-left: 22px;
	background-color: #babbbb;
	padding: 6px 20px;
}

.slider-service-area ul li:first-child::before {
	content: "1";
	position: absolute;
	left: 10px;
}

.slider-service-area ul li:nth-child(2)::before {
	content: "2";
	position: absolute;
	left: 8px;
}

.slider-service-area ul li:nth-child(3)::before {
	content: "3";
	position: absolute;
	left: 8px;
}


.slider-image-area {
	width: 535px;
	position: relative;
}

.slider-image-area img {
	width: 100%;
}

.slider-image-area::after {
	content: "";
	background-color: #f4a303;
	height: 7px;
	width: 260px;
	border-radius: 12px;
	position: absolute;
	bottom: 18px;
	right: -65px;
	z-index: -1;
}

.slider-tag {
	position: absolute;
	top: 35%;
	left: 35px;
	background-color: #1375dc;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	padding: 25px 9px;
	border-radius: 100%;
	width: 140px;
	height: 140px;
	box-shadow: 35px 0px 36px #00000087;
}

.slider-tag span {
	font-weight: 900;
	font-size: 44px;
	display: block;
	line-height: 39px;
}

.slider .slide--subheadline {
	color: #f9f9f9;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 0;
	text-transform: capitalize;
}

.slider .slide--headline {
	color: #ffffff;
	font-family: 'Playfair Display', serif;
	font-size: 85px;
	font-weight: 900;
	line-height: 85px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.slider .slide--headline.extend {
	line-height: 1.2;
}

.slider .slide--bio {
	color: #f9f9f9;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 40px;
}

/* Slider Small */
.slider-small {
	height: 600px;
}

.slider-small .slide--item {
	height: 600px;
}

.slider-small .slide--headline {
	font-size: 67px;
	line-height: 1;
}

.slider-small .slide--bio,
.slider-small .slide--subheadline {
	font-size: 16px;
}

.slider-theme .slide--headline {
	font-size: 165px;
	line-height: 1;
	text-transform: capitalize;
}

.slider .slide--icons a {
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 40px;
	text-align: center;
	border-radius: 2px;
	background-color: rgba(27, 26, 26, 0.9);
	margin-right: 25px;
	display: inline-block;
}

.slider .slide--icons a i {
	color: #418ddf;
}

.slider .slide--icons.slider-icons-gradient a i {
	color: #418ddf;
	background: -webkit-linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	background: linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.slider .slide--icons a:hover {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	transform: translateY(-6px);
}

.slide-icons a:last-of-type {
	margin-right: 0;
}

.slide--icons.slide--icons-gradient a {
	background-color: rgba(27, 26, 26, 0.9);
	background: -webkit-linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	background: linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
}

.slide--icons.slide--icons-gradient a i {
	color: #ffffff;
	background: none;
	-webkit-background-clip: inherit;
	-webkit-text-fill-color: inherit;
}

@media (min-width: 1440px) {
	.slider-image-area {
		width: 580px;
		position: relative;
	}

	.slider-content h1 {
		font-size: 80px;
	}

	.slider-content h1 .light {
		font-size: 85px;
	}

	.slider-content h1 .bolder {
		font-size: 85px;
	}
}

/* Slider Portfolio */
.slider-portfolio .slide--container {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 80px 60px;
}

.slider-portfolio .slide--subheadline {
	font-size: 13px;
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
}

.slider-portfolio .slide--headline {
	font-size: 30px;
	color: #282828;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	line-height: 30px;
}

.slider-portfolio .slide--action a {
	color: #418ddf;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
}

.slider-portfolio .slide--action a i {
	margin-right: 8px;
}

/* Slider Shop */
.slider-shop .slide--headline {
	font-size: 55px;
	line-height: 60px;
}

.slider-shop .slide--subheadline {
	color: #f9f9f9;
}

/* Slider Dark */
.slider-dark .slide--headline {
	color: #282828;
	font-size: 80px;
}

.slider-dark .slide--bio {
	color: #616161;
	font-size: 17px;
}

/* Revoultion slide Arrows */
.rs-arrows.tparrows.ares {
	background-color: transparent;
	border-radius: 0;
	border: 5px solid transparent;
	height: 70px;
	width: 130px;
	transition: border 0.3s ease;
}

.rs-arrows.tparrows.ares:hover {
	border-color: rgba(27, 26, 26, 0.5);
}

.rs-arrows.ares.tparrows:before {
	font-family: fontawesome;
	font-size: 25px;
	color: #ffffff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: rgba(27, 26, 26, 0.5);
}

.rs-arrows.ares.tparrows:hover:before {
	background-color: #ffffff;
}

.rs-arrows.ares.tparrows.tp-leftarrow:before {
	content: "\f104";
}

.rs-arrows.ares.tparrows.tp-rightarrow:before {
	content: "\f105";
	position: absolute;
	right: 0;
}

.rs-arrows.ares .tp-title-wrap {
	min-width: 60px;
	min-height: 60px;
	line-height: 1;
	border-radius: 0 !important;
	background-color: #ffffff;
}

.rs-arrows.ares.tparrows.tp-leftarrow .tp-title-wrap {
	margin-left: 60px;
}

.rs-arrows.ares.tparrows.tp-rightarrow .tp-title-wrap {
	margin-right: 60px;
}

.rs-arrows.ares .tp-title-wrap .tp-arr-imgholder {
	width: 60px;
	height: 60px;
	top: 0;
	left: 0;
	margin-left: 0;
	margin-right: 0;
}

.slider-rs-dark .rs-arrows.ares.tparrows:before {
	color: #333333;
}

.slider-rs-dark .rs-dots .tp-bullet {
	background-color: #3d3c3c;
}

#slider3 .rs-arrows.tparrows.ares {
	width: 60px;
}

#slider3 .rs-arrows.tparrows.ares:hover {
	border-color: transparent;
}

/* Revoultion Slide Overlay */
.slide-overlay-dark .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: rgba(27, 26, 26, 0.25);
}

.slide-overlay-black .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: rgba(27, 26, 26, 0.75);
}

.slide-overlay-black2 .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: rgba(27, 26, 26, 0.85);
}

.slide-overlay-white .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: rgba(27, 26, 26, 0.1);
}

.slide-overlay-gradient .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: #418ddf;
	background-image: -webkit-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: -moz-linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	background-image: linear-gradient(to top, rgba(27, 181, 128, 0.8) 0%, rgba(12, 109, 176, 0.8) 100%);
	opacity: 0.8;
}

.slide-overlay-gradient2 .slotholder:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	background-color: #418ddf;
	background-image: -webkit-linear-gradient(180deg, #418ddf 0%, #0c6db0 100%);
	background-image: -moz-linear-gradient(180deg, #418ddf 0%, #0c6db0 100%);
	background-image: linear-gradient(180deg, #418ddf 0%, #0c6db0 100%);
	opacity: 0.85;
}

a.next-section {
	position: absolute;
	left: 50%;
	bottom: 0;
	display: inline-block;
	color: #ffffff;
	font-size: 13px;
	font-weight: 400;
	margin-left: -50px;
}

a.next-section:focus,
a.next-section:hover {
	color: acolor-white;
	font-weight: bold;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.slider .slide--headline {
		font-size: 30px;
		line-height: 1.2;
	}

	.slider .slide--bio {
		font-size: 14px;
		line-height: 1.5;
		padding: 0 10px;
	}

	.slider,
	.slider .slide--item {}
	.slider-content-area {
		width: auto;
		max-width: 100%;
		padding: 22px 18px;
	}
	.slider-content h1 {
		font-weight: 600;
		text-transform: uppercase;
		font-size: 40px;
		color: #052767;
	}
	.slider-content h1 .light {
		font-weight: 200;
		font-size: 40px;
	}
	.slider-content h1 .bolder {
		font-weight: 900;
		font-size: 40px;
	}
	.sevive-box {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 12px;
	}
	

	.rs-arrows.tparrows.ares {
		display: none;
	}

	.slide-action .btn {
		width: 120px;
		font-size: 12px;
	}

	.slider-navs .owl-controls .owl-nav [class*=owl-] {
		width: 30px !important;
	}

	.slide-action .btn--slide-wide {
		width: 220px;
	}

	.slider-portfolio .slide--container {
		padding: 30px 20px;
	}

	.slider-portfolio .slide--headline {
		font-size: 25px !important;
	}

	.slide-action .btn.btn--icon {
		height: 60px;
		font-size: 30px;
		line-height: 60px;
	}

	#sliderApp .slide-holder {
		display: none;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.slider {
		height: 600px;
	}

	.slider-navs .owl-controls .owl-nav [class*=owl-] {
		width: 30px !important;
	}

	.slider .slide--headline {
		font-size: 55px;
	}

	.slider-portfolio .slide--headline {
		font-size: 25px !important;
	}

	.slider-rs8 .slide--headline {
		font-size: 40px;
		line-height: 55px;
	}

	.slider-rs8 .slide--bio {
		line-height: 22px;
		font-size: 12px;
	}

	.rs-arrows.tparrows.ares {
		display: none;
	}
	
}

/*------------------------------------*\
    #Team
\*------------------------------------*/
.team .container-fluid [class*="col-"] {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.member {
	text-align: center;
	overflow: hidden;
}

.member .member-img {
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
}

.member .member-img img {
	max-width: 100%;
	height: auto;
}

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

.member .member-overlay .member-social {
	border-radius: 2px;
	background-color: rgba(34, 34, 34, 0.95);
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.member .member-img:hover .member-overlay .member-social {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.member .member-overlay .member-social a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin-right: 20px;
}

.member .member-overlay .member-social a:last-child {
	margin-right: 0;
}

.member .member-overlay .member-social a:hover {
	color: #418ddf;
}

.member .member-info h5 {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 14px;
}

.member .member-info h6 {
	font-family: 'Raleway', sans-serif;
	color: #9b9b9b;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
}

.member .member-info p {
	color: #9b9b9b;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
}

.member .divider--line {
	margin-top: 16px;
	margin-bottom: 20px;
}

.member .divider--line:after {
	width: 20px;
	background-color: #eee;
}

.member .member-data {
	position: absolute;
	top: 150px;
	left: 0;
	text-align: center;
	width: 100%;
}

.member .member-social-links {
	margin-top: 25px;
}

.member .member-data h5,
.member .member-data h6 {
	color: #ffffff;
}

.team-overlay .member .member-img {
	margin-bottom: 0;
}

.img-block img {
	max-width: 100%;
}

.img-block .rounded {
	border-radius: 12px;
}

/* Team Boxed */
.team-shadow .member {
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 2px;
	background-color: #ffffff;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.team-shadow .member:hover {
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}

.team-boxed .member {
	background-color: #ffffff;
}

.team-boxed .member:hover {
	background-color: #f9f9f9;
}

.team-boxed .member .member-info {
	padding-bottom: 40px;
}

.team-boxed .member .member-social {
	margin-top: 30px;
}

.team-boxed .member .member-social a {
	color: #282828;
	font-size: 14px;
	margin-right: 24px;
	line-height: 1;
}

.team-boxed .member .member-social a:last-of-type {
	margin-right: 0;
}

.team-boxed .member .member-social a:hover {
	color: #418ddf;
}

.team-dark .member,
.team-dark .member:hover {
	background-color: #1b1b1b;
}

.team-dark .member .member-info h5,
.team-dark .member .member-social a {
	color: #ffffff;
}

.team-dark .member .member-social a:hover {
	color: #418ddf;
}

.team-5 .member .member-social {
	margin-top: 0;
}

.team-5 .member .member-data {
	top: auto;
	bottom: 30px;
}

.team-5 .member .member-social a {
	color: #ffffff;
}

.team-5 .member:hover .member-overlay .member-social {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* Custom, iPhone Retina */
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.member .member-info h5 {
		font-size: 17px;
	}

	.team-5 .member {
		margin-bottom: 30px;
	}
}

/*------------------------------------*\
    #Testimonial
\*------------------------------------*/
.testimonial-panel {
	text-align: center;
}

.testimonial-panel .testimonial--icon {
	position: relative;
	height: 26px;
	background: url("../images/testimonial/icon.png") no-repeat center;
	margin-bottom: 30px;
}

.testimonial-panel .testimonial--body {
	margin-bottom: 20px;
}

.testimonial-panel .testimonial--body p {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 500;
	font-style: italic;
	line-height: 25px;
	margin-bottom: 0;
}

.testimonial-panel .testimonial--meta {
	position: relative;
	text-align: left;
}

.testimonial-panel .testimonial--meta h4 {
	color: #282828;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.testimonial-panel .testimonial--meta p {
	color: #418ddf;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
}

.testimonial-panel .testimonial--meta-img {
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-right: 20px;
	overflow: hidden;
	border-radius: 50%;
}

/* Testimonial Boxed */
.testimonial-boxed .testimonial-panel {
	padding: 50px 0;
	margin: 30px;
}

.testimonial-boxed .center .testimonial-panel {
	-moz-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	border-radius: 2px;
	background-color: #ffffff;
}

.testimonial-boxed .testimonial-panel .testimonial--body {
	position: relative;
	padding-bottom: 17px;
	margin-bottom: 22px;
	padding-right: 33px;
	padding-left: 33px;
}

.testimonial-boxed .testimonial-panel .testimonial--body:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 2px;
	background-color: #eeeeee;
}

.testimonial-boxed .testimonial-panel .testimonial--meta-content {
	padding-left: 100px;
}

.testimonial-boxed .testimonial-panel .testimonial--meta-img {
	position: absolute;
	top: 0;
	left: 40px;
}

.testimonial-boxed .testimonial-panel .testimonial--icon {
	margin-bottom: 20px;
}

.testimonial-boxed .owl-item {
	padding-bottom: 3px;
}

.testimonial-boxed .carousel-dots .owl-controls {
	margin-top: 14px;
}

/* Testimonial Wide */
.testimonial-wide .testimonial-panel .testimonial--body {
	padding: 0;
}

.testimonial-wide .testimonial-panel .testimonial--meta {
	text-align: center;
}

.testimonial-wide .testimonial-panel .testimonial--meta-img {
	margin: 45px auto 20px;
}

.testimonial-wide .testimonial-panel .testimonial--body p {
	color: #373636;
	/* font-family: 'Playfair Display', serif; */
	font-size: 18px;
	font-style: normal;
	line-height: 26px;
}

/* Testimonial 3 */
.testimonial-3 .center .testimonial-panel {
	background-color: #222222;
	-moz-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
}

.testimonial-3 .testimonial-panel .testimonial--meta h4 {
	color: #fffefe;
}

.testimonial-3 .testimonial-panel .testimonial--meta p {
	color: #418ddf;
}

.testimonial-3 .testimonial-panel .testimonial--icon {
	background: url("../images/testimonial/icon2.png") no-repeat center;
}

/* Testimonial 4 */
.testimonial-4 .center .testimonial-panel {
	-webkit-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	box-shadow: 0 1px 73px rgba(40, 40, 40, 0.12);
	background-color: #ffffff;
}

.testimonial-4 .testimonial-panel .testimonial--body p {
	color: #f9f9f9;
}

.testimonial-4 .testimonial-panel .testimonial--meta h4 {
	color: #ffffff;
}

.testimonial-4 .testimonial-panel .testimonial--meta p {
	color: #222222;
}

.testimonial-4 .testimonial-panel .testimonial--icon {
	background: url("../images/testimonial/icon3.png") no-repeat center;
}

.testimonial-4 .center .testimonial-panel .testimonial--icon {
	background: url("../images/testimonial/icon4.png") no-repeat center;
}

.testimonial-4 .center .testimonial-panel .testimonial--body p {
	color: #9b9b9b;
}

.testimonial-4 .center .testimonial-panel .testimonial--meta h4 {
	color: #282828;
}

.testimonial-4 .center .testimonial-panel .testimonial--meta p {
	color: #418ddf;
}

.testimonial-4 .divider--line:after {
	background-color: #f9f9f9;
}

/* testimonial #6 */
.testimonial-6 .testimonial-panel .testimonial--body p {
	color: #f9f9f9;
}

.testimonial-6 .testimonial-panel .testimonial--meta h4 {
	color: #f9f9f9;
}

.testimonial-6 .testimonial-panel .testimonial--meta p {
	color: #9b9b9b;
}

.testimonial-6 .testimonial-panel .testimonial--icon {
	background: url("../images/testimonial/icon3.png") no-repeat center;
}

/* Testimonial #7 */
.testimonial-7 .testimonial-panel .testimonial--body p {
	color: #f9f9f9;
}

.testimonial-7 .testimonial-panel .testimonial--meta h4 {
	color: #f9f9f9;
}

.testimonial-7 .testimonial-panel .testimonial--meta p {
	color: #222222;
}

.testimonial-7 .testimonial-panel .testimonial--icon {
	background: url("../images/testimonial/icon3.png") no-repeat center;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.testimonial-1 .testimonial-panel .testimonial--body {
		padding: 0 20px;
	}

	.testimonial-panel .testimonial--body p {
		font-size: 15px;
		line-height: 1.6;
	}

	.testimonial-boxed .testimonial-panel {
		margin: 10px;
	}

	.testimonial-boxed .center .testimonial-panel {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		background-color: transparent;
	}

	.testimonial-boxed .testimonial-panel .testimonial--meta-img {
		position: relative;
		margin-right: auto;
		margin-left: auto;
		left: auto;
	}

	.testimonial-boxed .testimonial-panel .testimonial--meta-content {
		padding-left: 0;
		text-align: center;
		margin-top: 15px;
	}

	.testimonial-4 .center .testimonial-panel .testimonial--body p,
	.testimonial-4 .center .testimonial-panel .testimonial--meta h4,
	.testimonial-4 .center .testimonial-panel .testimonial--meta p {
		color: #ffffff;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.testimonial {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.testimonial-boxed .testimonial-panel {
		padding: 0;
		margin: 0;
	}

	.testimonial-boxed .center .testimonial-panel {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		background-color: transparent;
	}

	.testimonial-boxed .testimonial-panel .testimonial--meta-img {
		position: relative;
		margin-right: auto;
		margin-left: auto;
		left: auto;
	}

	.testimonial-boxed .testimonial-panel .testimonial--meta-content {
		padding-left: 0;
		text-align: center;
		margin-top: 15px;
	}

	.testimonial-4 .center .testimonial-panel .testimonial--body p,
	.testimonial-4 .center .testimonial-panel .testimonial--meta h4,
	.testimonial-4 .center .testimonial-panel .testimonial--meta p {
		color: #ffffff;
	}
}

/*------------------------------------*\
    #Portfolio
\*------------------------------------*/
/* Portfolio Filter */
.portfolio-filter {
	text-align: center;
	margin-bottom: 36px;
}

.portfolio-filter li a {
	color: #333333;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	margin-right: 29px;
	text-transform: capitalize;
}

.portfolio-filter li:last-child a {
	margin-right: 0;
}

.portfolio-filter li a.active-filter,
.portfolio-filter li a:hover {
	color: #418ddf;
}

/* Portfolio Item */
.portfolio-item .portfolio--img {
	position: relative;
}

.portfolio-item .portfolio--img img {
	max-width: 100%;
	height: auto;
}

.portfolio-item .portfolio--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
}

.portfolio-item .portfolio--hover .portfolio--action {
	width: 100%;
	height: 100%;
	background-color: rgba(40, 40, 40, 0.95);
	text-align: center;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.portfolio-item:hover .portfolio--hover .portfolio--action {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.portfolio-item .portfolio--title h4 {
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.portfolio-item .portfolio--title h4 a {
	color: #ffffff;
}

.portfolio-item .portfolio--title h4 a:hover {
	color: #418ddf;
}

.portfolio-item .portfolio--cat a {
	color: #418ddf;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

.portfolio-item .portfolio--cat a:hover {
	color: #418ddf;
}

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

.portfolio--zoom {
	margin-bottom: 30px;
}

.portfolio--zoom a {
	display: inline-block;
	position: relative;
}

.portfolio--zoom a:before {
	position: absolute;
	content: "";
	left: -10px;
	top: 0;
	width: 20px;
	height: 1px;
	background-color: #418ddf;
}

.portfolio--zoom a:after {
	position: absolute;
	content: "";
	left: 0;
	top: -10px;
	width: 1px;
	height: 20px;
	background-color: #418ddf;
}

/* Portfolio Gallery */
.portfolio-gallery .col-md-5ths {
	padding: 0;
}

.col-md-5ths.portfolio-item .portfolio--title h4 {
	font-size: 15px;
}

/* Portfolio Grid */
.portfolio-grid .portfolio-item {
	margin-bottom: 30px;
}

.portfolio-grid .portfolio-item .portfolio--hover {
	padding: 0;
}

.portfolio-grid.portfolio-wide .portfolio-item {
	margin-bottom: 0;
}

/* Portfolio Standard */
.portfolio-standard .portfolio-item {
	margin-bottom: 45px;
}

.portfolio-standard .portfolio-item .portfolio--img {
	margin-bottom: 21px;
}

.portfolio-standard .portfolio-item .portfolio--hover {
	padding: 0;
}

.portfolio-standard .portfolio-item .portfolio--title h4 a {
	color: #282828;
}

.portfolio-standard .portfolio-item .portfolio--title h4 a:hover {
	color: #418ddf;
}

.portfolio-standard .portfolio-item .portfolio--cat a {
	color: #616161;
}

/* Portfolio Spaced */
.portfolio-spaced .portfolio-item {
	margin-bottom: 30px;
}

/* Portfolio Single */
.portfolio-single .portfolio--img img {
	max-width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.portfolio-single .portfolio--title h3 {
	color: #222222;
	font-size: 35px;
	font-weight: 900;
	line-height: 1;
	font-style: italic;
	margin-bottom: 30px;
	padding-bottom: 23px;
	position: relative;
}

.portfolio-single .portfolio--title h3:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #418ddf;
}

.portfolio-single .portfolio--content {
	padding-bottom: 10px;
	text-align: left;
}

.portfolio-single .portfolio--content p {
	color: #9b9b9b;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

.portfolio-single .portfolio--list,
.portfolio-single .portfolio--share {
	margin-bottom: 30px;
	padding: 30px;
	background-color: #f9f9f9;
}

.portfolio-single .portfolio--list ul li {
	font-size: 14px;
	font-weight: 400;
	line-height: 29px;
	color: #9e9e9e;
}

.portfolio-single .portfolio--list ul li span {
	color: #222222;
	font-weight: 700;
}

.portfolio-single .portfolio--share span {
	color: #222222;
	font-size: 13px;
	font-weight: 800;
	line-height: 30px;
	text-transform: uppercase;
	margin-right: 30px;
}

.portfolio-single .portfolio--share a {
	color: #5d5d5d;
	font-size: 14px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 20px;
}

.portfolio-single .portfolio--share a:last-of-type {
	margin-right: 0;
}

.portfolio-single .portfolio--share a:hover {
	color: #418ddf;
}

.portfolio--prev-next {
	position: relative;
	height: 50px;
	border-radius: 2px;
	background-color: #f9f9f9;
	padding: 30px;
	min-height: 110px;
}

.portfolio--prev-next:after {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -14px;
	color: #616161;
	font-family: fontawesome;
	content: "\f009";
	font-size: 23px;
	font-weight: 400;
	line-height: 28px;
}

.portfolio--prev-next .portfolio--next,
.portfolio--prev-next .portfolio--prev {
	position: relative;
}

.portfolio--prev-next .portfolio--icon {
	position: absolute;
	top: 0;
	width: 49px;
	height: 49px;
	line-height: 49px;
	text-align: center;
	border-radius: 2px;
	background-color: #222222;
}

.portfolio--prev-next .portfolio--icon a {
	text-align: center;
	display: block;
	color: #ffffff;
	font-size: 25px;
	font-weight: 400;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.portfolio--prev-next .portfolio--icon a:hover {
	background-color: #418ddf;
	color: #ffffff;
}

.portfolio--prev-next .portfolio--bio p {
	color: #b8b8b8;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 6px;
}

.portfolio--prev-next .portfolio--bio a {
	color: #282828;
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
}

.portfolio--prev-next .portfolio--bio a:hover {
	color: #418ddf;
}

.portfolio--prev-next .portfolio--prev .portfolio--icon {
	left: 0;
}

.portfolio--prev-next .portfolio--prev .portfolio--bio {
	padding-left: 65px;
}

.portfolio--prev-next .portfolio--next .portfolio--icon {
	right: 0;
}

.portfolio--prev-next .portfolio--next .portfolio--bio {
	padding-right: 65px;
	text-align: right;
}

/* Portfolio Carousel */
.portfolio--carousel .owl-controls .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #ffffff;
	margin-top: -30px;
	color: #999999;
	font-size: 0;
	font-weight: 400;
	text-align: center;
	padding: 0;
	border-radius: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.portfolio--carousel .owl-controls .owl-nav [class*=owl-]:hover {
	color: #ffffff;
	background-color: #418ddf;
}

.portfolio--carousel:hover .owl-controls .owl-nav [class*=owl-] {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.portfolio--carousel .owl-controls .owl-nav .owl-prev {
	left: 30px;
}

.portfolio--carousel .owl-controls .owl-nav .owl-prev:before {
	font-family: fontawesome;
	content: "\f104";
	font-size: 25px;
}

.portfolio--carousel .owl-controls .owl-nav .owl-next {
	right: 30px;
}

.portfolio--carousel .owl-controls .owl-nav .owl-next:before {
	font-family: fontawesome;
	content: "\f105";
	font-size: 25px;
}

.portfolio--single-masonry {
	column-count: 3;
	column-gap: 30px;
}

.portfolio--single-masonry-2col {
	column-count: 2;
	column-gap: 30px;
}

/* Portfolio Slider */
.portfolio--slider {
	padding: 30px 30px 20px 0;
}

.portfolio--slider .portfolio-item .portfolio--hover {
	padding: 200px;
}

.portfolio--slider .owl-controls {
	margin-top: 0;
}

.portfolio--slider .owl-controls .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin-top: -30px;
	color: #999999;
	font-size: 0;
	font-weight: 400;
	text-align: center;
	background-color: #ffffff;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.portfolio--slider .owl-controls .owl-nav [class*=owl-]:hover {
	color: #ffffff;
	background-color: #418ddf;
}

.portfolio--slider .owl-controls .owl-nav .owl-prev {
	left: 30px;
}

.portfolio--slider .owl-controls .owl-nav .owl-prev:before {
	font-family: fontawesome;
	content: "\f104";
	font-size: 25px;
}

.portfolio--slider .owl-controls .owl-nav .owl-next {
	right: 60px;
}

.portfolio--slider .owl-controls .owl-nav .owl-next:before {
	font-family: fontawesome;
	content: "\f105";
	font-size: 25px;
}

.portfolio--slider .owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.portfolio--slider .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #ffffff;
}

.portfolio--slider .owl-dots .owl-dot.active span,
.portfolio--slider .owl-dots .owl-dot:hover span {
	background: #ffffff;
}

/* Portfolio Parallax */
.portfolio-parallax .portfolio-item .portfolio--img {
	min-height: 800px;
	background-attachment: fixed;
}

.portfolio-parallax .portfolio-item .portfolio--content {
	padding-top: 136px;
	padding-bottom: 136px;
}

.portfolio-parallax .portfolio-item .portfolio--title h4 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 16px;
	text-transform: capitalize;
}

.portfolio-parallax .portfolio-item .portfolio--title h4 a {
	color: #282828;
}

.portfolio-parallax .portfolio-item .portfolio--cat {
	margin-bottom: 15px;
	color: #9b9b9b;
}

.portfolio-parallax .portfolio-item .portfolio--cat a {
	color: #9b9b9b;
}

.portfolio-parallax .portfolio-item .portfolio--cat a:hover,
.portfolio-parallax .portfolio-item .portfolio--title h4 a:hover {
	color: #418ddf;
}

.portfolio-parallax .portfolio-item a.portfolio--more {
	color: #418ddf;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.portfolio-parallax .portfolio-item a.portfolio--more i {
	margin-right: 6px;
}

.portfolio-hover-2 .portfolio-item .portfolio--hover .portfolio--action {
	background-color: rgba(27, 181, 128, 0.8);
	background-image: -webkit-linear-gradient(180deg, rgba(27, 26, 26, 0.22) 0%, rgba(11, 123, 84, 0.22) 0%, rgba(11, 123, 84, 0.22) 29%, rgba(11, 123, 84, 0.8) 76%, rgba(11, 123, 84, 0.8) 100%);
	background-image: -moz-linear-gradient(180deg, rgba(27, 26, 26, 0.22) 0%, rgba(11, 123, 84, 0.22) 0%, rgba(11, 123, 84, 0.22) 29%, rgba(11, 123, 84, 0.8) 76%, rgba(11, 123, 84, 0.8) 100%);
	background-image: -o-linear-gradient(180deg, rgba(27, 26, 26, 0.22) 0%, rgba(11, 123, 84, 0.22) 0%, rgba(11, 123, 84, 0.22) 29%, rgba(11, 123, 84, 0.8) 76%, rgba(11, 123, 84, 0.8) 100%);
	background-image: linear-gradient(180deg, rgba(27, 26, 26, 0.22) 0%, rgba(11, 123, 84, 0.22) 0%, rgba(11, 123, 84, 0.22) 29%, rgba(11, 123, 84, 0.8) 76%, rgba(11, 123, 84, 0.8) 100%);
}

.portfolio-hover-2 .portfolio--zoom a:after,
.portfolio-hover-2 .portfolio--zoom a:before {
	background-color: #ffffff;
}

.portfolio-hover-2 .portfolio--zoom a:hover:after,
.portfolio-hover-2 .portfolio--zoom a:hover:before {
	background-color: #282828;
}

.portfolio-hover-2 .portfolio-item .portfolio--cat a {
	color: #ffffff;
}

.portfolio-hover-2 .portfolio-item .portfolio--cat a:hover,
.portfolio-hover-2 .portfolio-item .portfolio--title h4 a:hover {
	color: #282828;
}

.portfolio-up {
	margin-top: -98px;
}

.portfolio-up .portfolio-filter {
	text-align: left;
}

.portfolio-up .portfolio-filter li a {
	color: #ffffff;
}

.portfolio-up .portfolio-filter li a.active-filter,
.portfolio-up .portfolio-filter li a:hover {
	color: #418ddf;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.portfolio-filter li a {
		margin-right: 10px;
	}

	.portfolio-item .portfolio--img img {
		width: 100%;
	}

	.portfolio-single .portfolio--share span {
		display: block;
	}

	.portfolio--prev-next {
		height: auto;
	}

	.portfolio--prev-next .portfolio--bio {
		display: none;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.portfolio-item .portfolio--img img {
		width: 100%;
	}
}

/*------------------------------------*\
    #Features
\*------------------------------------*/
.feature-panel {
	position: relative;
	background-color: #f1f1f1;
	padding: 36px 22px;
	margin: 14px 0;
	min-height: 95%;
}

.feature-panel .feature--icon {
	color: #418ddf;
	font-size: 40px;
	line-height: 1;
	margin-bottom: 23px;
}

.feature-panel .feature--icon i {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: inline-block;
	background-color: #fff;
	padding: 24px;
	border-radius: 100%;
	width: 80px;
    height: 80px;
    font-size: 30px;
}
.feature-panel .feature--icon .icon {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: inline-block;
	background-color: #fff;
    padding: 16px;
    border-radius: 100%;
	width: 88px;
	height: 88px;
}
.feature-panel .feature--icon .icon img{
	height: 100%;
}

.feature-panel .feature--icon:hover i {
	-webkit-animation: pulse 0.9s infinite;
	-moz-animation: pulse 0.9s infinite;
	-ms-animation: pulse 0.9s infinite;
	-o-animation: pulse 0.9s infinite;
	animation: pulse 0.9s infinite;
}

.feature-panel .feature--content h3 {
	font-family: 'Raleway', sans-serif;
	color: #222222;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 19px;
	text-transform: capitalize;
}

.feature-panel .feature--content p {
	color: #2a2a2a;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 22px;
}

.feature-gradient .feature--icon i {
	color: #418ddf;
	background: -webkit-linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	background: linear-gradient(150deg, #1da4cb 0%, #1da4cb 2%, #1dcb84 27%, #7bcb1d 58%, #efd631 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-left .feature-panel .feature--icon {
	position: absolute;
	left: 0;
	top: 0;
	margin-bottom: 0;
}

.feature-left .feature-panel .feature--content {
	padding-left: 68px;
}

.feature-left.feature-left-img .feature-panel .feature--content {
	padding-left: 100px;
}

.feature-heading .feature-panel h6 {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 13px;
}

.feature-heading .feature-panel h3 {
	color: #282828;
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 900;
	line-height: 29px;
	position: relative;
	padding-bottom: 20px;
}

.feature-heading .feature-panel h3:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 36px;
	height: 2px;
	background-color: #418ddf;
}

.feature-heading .feature-panel .feature--icon {
	top: 26px;
}

.feature-heading .feature-panel .feature--content p {
	padding-right: 0;
	padding-left: 0;
}

.feature-more .feature-panel .feature--icon {
	color: #282828;
}

.feature-more .feature-panel .feature--content p {
	padding-right: 0;
	padding-left: 0;
}

.feature-more .feature-panel .feature--content .read-more {
	color: #333333;
	font-family: 'Raleway', sans-serif;
	font-size: 0;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 24px;
}

.feature-more .feature-panel .feature--content .read-more i {
	font-size: 13px;
	margin-right: 6px;
	line-height: 1;
}

.feature-more .feature-panel:hover .feature--content .read-more {
	font-size: 13px;
	color: #418ddf;
}

.feature-dark .feature-panel .feature--content .read-more,
.feature-dark .feature-panel .feature--content h3,
.feature-dark .feature-panel .feature--icon {
	color: #ffffff;
}

/* feature left circle  */
.feature-left-circle .feature-panel .feature--content {
	padding-left: 100px;
}

.feature-left-circle .feature--content h6 {
	color: #418ddf;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
}

.feature-left-circle .feature--content h3 {
	font-size: 26px;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 29px;
}

.feature-left-circle .feature--content p {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	padding: 0;
}

.feature-left-circle .feature--icon {
	width: 74px;
	height: 74px;
	line-height: 74px;
	text-align: center;
	border-radius: 50%;
	border: 2px solid rgba(155, 155, 155, 0.2);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.feature-left-circle .feature--icon:hover {
	background: #418ddf;
	border-color: #418ddf;
	color: #ffffff;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.feature-panel {
		margin-bottom: 20px;
	}

	.feature-panel .feature--icon {
		margin-bottom: 10px;
	}

	.feature-heading .feature-panel h3 {
		font-size: 22px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.feature-panel {
		margin-bottom: 20px;
	}

	.feature-left .feature-panel .feature--content,
	.feature-left.feature-left-img .feature-panel .feature--content {
		padding-left: 0;
		text-align: center;
	}

	.feature-left .feature-panel .feature--icon {
		position: relative;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
		margin-bottom: 20px;
		top: auto;
	}

	.feature-heading .feature-panel h3 {
		font-size: 21px;
	}

	.feature-heading .feature-panel h3:after {
		left: 50%;
		margin-left: -18px;
	}
}

/*------------------------------------*\
    #what-do
\*------------------------------------*/
.what-do {
	background-image: url(../images/background/bg1.jpg);
	padding: 10px 0;
}

.align-items-center {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.widget-image img {
	max-width: 100%;
}

/* .choose-us-section {} */

.choose-us-imge {
	position: relative;
}
.choose-us-imge img{
	width: 120%;
}

.choose-us-imge .application {
	position: absolute;
	top: 0;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 0 23px #3333334f;
	padding: 20px 20px 20px 36px;
}

.choose-us-imge .application::before {
	content: "";
	background-color: #12bb2c;
	width: 3px;
	height: 65%;
	position: absolute;
	top: 0px;
	left: 18px;
	margin: 14px 0;
	border-radius: 10px;
}

.choose-us-imge .application h4 {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.choose-us-imge .application p {
	margin: 0;
}

.choose-us-imge .submission {
	position: absolute;
	bottom: 0;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 0 23px #3333334f;
	padding: 22px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 300px;
}

.profile-image {
	display: flex;
	align-items: center;
}

.client-profile {
	width: 36px;
	height: 36px;
	margin: -3px;
	border: 2px solid #fff;
}

.client-profile img {
	width: 100%;
}

.profile-num {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-left: 10px;
}

.submt {
	position: relative;
	color: #333;
	font-size: 20px;
	padding-left: 15px;
}

.submt::before {
	content: "";
	background-color: #f77f00;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 8px;
}

.choose-us-imge .new-employee {
	position: absolute;
	right: -22%;
    top: 42%;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 0 23px #3333334f;
	padding: 18px 24px;
}

.choose-us-imge .new-employee i {
	font-size: 32px;
	color: #1375dc;
	margin-bottom: 12px;
}

.choose-us-imge .new-employee p {
	margin: 0;
	font-size: 16px;
}

.emply-nub {
	font-size: 32px;
	font-weight: 800;
	color: #333;
}

.choose-us_points {
	display: flex;
}

.choose-us_points .icon {
	background-color: #1375dc;
	width: 65px;
	height: 65px;
	padding: 15px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	margin-right: 12px;
}

.choose-us_points .icon img {
	width: 100%;
}

.choose-us_points .detail {
	width: 90%;
}

.choose-us_points .detail h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

@media (max-width: 1440px) {
	.choose-us-imge img {
		width: 100%;
	}

	.choose-us-imge .new-employee {
		right: -20%;
	}
}

.video-count {
	position: relative;
}

.video-count::before {
	content: "";
	background-image: url(../images/background/section-shape.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 155px;
	min-height: 155px;
	position: absolute;
	left: 16%;
	bottom: 0;
}

.section-bg {
	background-color: #f77f00;
	position: relative;
	border-radius: 14px;
}

.video-box {
	width: 100%;
	height: 340px;
	border-radius: 12px;
	overflow: hidden;
	margin-top: -30px;
	margin-bottom: -30px;
	margin-left: 30px;
}

.counter-box {
	margin-left: 14px;
}

.work-with {
	background-image: url(../images/background/city-bg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 26%;
}

.client-logo {
	background-color: #eee;
	border-radius: 10px;
	padding: 28px 20px;
	margin: 12px 0;
	text-align: center;
}

.client-logo img {
	width: 80%;
}

/*------------------------------------*\
    #Call To Action
\*------------------------------------*/
.cta {
	padding: 59px 0;
}

.cta h3 {
	font-family: 'Playfair Display', serif;
	font-size: 35px;
	font-weight: 900;
	font-style: italic;
	line-height: 50px;
	margin-bottom: 0;
	color: #ffffff;
}

.cta p {
	color: #f9f9f9;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 26px;
	margin-bottom: 40px;
}

/* CTA #3 */
.cta-3 {
	padding: 60px 0;
}

.cta-3 h3 {
	color: #282828;
}

/* CTA #4 */
.cta-4 {
	padding: 80px 0;
}

.cta-4 h3 {
	margin-bottom: 20px;
	font-size: 55px;
}

/* CTA #5 */
.cta-5 .btn-hover {
	position: relative;
	display: inline-block;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.cta-5 .btn-hover img {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

.cta-5 .btn-hover::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.cta-5 .btn-hover:hover::before {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
}



/* CTA #6 */
.cta-6 {
	padding: 200px 0;
}

.cta-6 h3 {
	margin-bottom: 20px;
	font-size: 55px;
	line-height: 65px;
}

/* CTA #7 */
.cta-7 {
	padding: 150px 0;
}

.cta-7 p {
	margin-bottom: 22px;
}

.cta-7 h3 {
	margin-bottom: 33px;
	font-size: 55px;
	line-height: 65px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.cta,
	.cta .text-right {
		text-align: center;
	}

	.cta h3 {
		font-size: 31px;
		line-height: 45px;
		margin-bottom: 30px;
	}

	.cta-5 .btn-hover {
		margin-right: 0 !important;
	}

	.cta-7 {
		padding: 50px 0;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.cta h3 {
		text-align: center;
		margin-bottom: 30px;
	}

	.cta .text-right {
		text-align: center !important;
	}

	.cta-7 {
		padding: 90px 0;
	}
}

/*------------------------------------*\
    #Counters
\*------------------------------------*/
.counter {
	padding-top: 110px;
	padding-bottom: 110px;
}


.count-box .count-num span {
	font-family: "Poppins", sans-serif;
	color: #fff;
	font-size: 68px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.count-title {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.count-box p {
	color: #fff;
}

.count-desc {
	font-size: 15px;
	font-weight: 400;
	font-style: italic;
	line-height: 24px;
	padding-top: 9px;
	margin-bottom: 0;
}

.counter-theme .count-title,
.counter-theme .counting {
	color: #ffffff;
}

.counter-dark .count-title,
.counter-dark .counting {
	color: #ffffff;
}

.counter-box .count-box {
	padding: 19px;
}

.counter-box .count-box.b-right {
	border-right: 1px solid #fff;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.counter {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.count-box {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #PRICING-SECTION
\*------------------------------------*/
.pricing-panel {
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.1);
	border-radius: 2px;
	background-color: #ffffff;
	padding: 40px;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	position: relative;
}

.pricing-panel:hover {
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}

.pricing-active:before {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -145px;
	content: "";
	width: 290px;
	height: 3px;
	background: #418ddf;
}

.pricing-panel .pricing--heading {
	border-radius: 2px;
	background-color: #f5f5f5;
	padding: 20px 27px 27px 36px;
}

.pricing-panel .pricing--heading h4 {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 33px;
	color: #282828;
	text-transform: uppercase;
}

.pricing-panel .pricing--heading p {
	font-family: 'Playfair Display', serif;
	color: #418ddf;
	font-size: 70px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
}

.pricing-panel .pricing--heading span.currency {
	font-size: 28px;
}

.pricing-panel .pricing--heading span.time {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	color: #616161;
	font-weight: 500;
}

.pricing-panel .pricing--heading .pricing--desc {
	color: #a5a5a5;
	font-size: 13px;
	font-weight: 400;
	line-height: 21px;
}

.pricing-panel .pricing--body {
	font-family: 'Raleway', sans-serif;
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 500;
	line-height: 40px;
	text-transform: capitalize;
}

.pricing-panel .pricing--body .pricing--list {
	padding: 40px 50px 40px 0;
	margin-bottom: 0;
}

.pricing-panel .pricing--heading.bg-theme h4 {
	color: #282828;
}

.pricing-panel .pricing--heading.bg-theme .pricing--desc,
.pricing-panel .pricing--heading.bg-theme p {
	color: #ffffff;
}

.pricing-bordered .pricing-panel {
	padding: 40px 0 0;
}

.pricing-bordered .pricing-panel .pricing--heading {
	margin: 0 40px 40px;
}

.pricing-bordered .pricing-panel .pricing--body {
	padding: 0 40px 40px;
	border-top: 1px solid #eeeeee;
}

.pricing-separated .pricing-panel .pricing--heading {
	background-color: transparent;
	padding: 0;
}

.pricing-separated .pricing-panel .pricing--heading h4 {
	background-color: #f9f9f9;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.pricing-separated .pricing-panel .pricing--heading-bg {
	background-color: #f9f9f9;
	padding: 40px 20px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.price-table {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.pricing-panel {
		padding: 20px;
	}

	.pricing-panel .pricing--heading p {
		font-size: 50px;
	}

	.pricing-separated .pricing-panel .pricing--heading-bg {
		padding: 30px 15px;
	}

	.pricing-active:before {
		left: 0;
		margin-left: 0;
		width: 100%;
	}
}

/*------------------------------------*\
    #BLOG-SECTION
\*------------------------------------*/
.blog-entry {
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 2px;
	background-color: #ffffff;
	margin-bottom: 30px;
}

.blog-entry .entry--img {
	overflow: hidden;
}

.blog-entry .entry--img img {
	max-width: 100%;
	height: auto;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.blog-entry:hover .entry--img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-entry .entry--content {
	padding: 30px;
	position: relative;
}

.blog-entry .entry--format {
	position: absolute;
	left: 30px;
	top: -40px;
	width: 49px;
	height: 49px;
	line-height: 49px;
	text-align: center;
	border-radius: 2px;
	background-color: #282828;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	opacity: 0;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.blog-entry:hover .entry--format {
	opacity: 1;
}

.blog-entry .entry--meta {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 26px;
	margin-bottom: 5px;
}

.blog-entry .entry--meta .entry--cat a {
	color: #418ddf;
}

.blog-entry .entry--title {
	margin-bottom: 18px;
}

.blog-entry .entry--title h4 {
	color: #282828;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 0;
}

.blog-entry .entry--title h4 a {
	color: #282828;
}

.blog-entry .entry--title h4 a:hover {
	color: #418ddf;
}

.blog-entry .entry--bio {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 2px solid #eeeeee;
}

.blog-entry .entry--more {
	overflow: hidden;
}

.blog-entry .entry--date {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	float: left;
}

.blog-entry .entry--more a {
	color: #333333;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	overflow: hidden;
	float: right;
	text-align: right;
}

.blog-entry .entry--more a i {
	margin-right: 6px;
	-webkit-transform: translateX(38px);
	-moz-transform: translateX(38px);
	transform: translateX(38px);
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
}

.blog-entry .entry--more a span {
	display: inline-block;
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
}

.blog-entry:hover .entry--more a {
	color: #418ddf;
}

.blog-entry:hover .entry--more a i,
.blog-entry:hover .entry--more a span {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

/* Blog Minimal */
.blog-minimal .blog-entry .entry--format {
	top: -25px;
}

/* Blog Standard */
.blog-standard .blog-entry .entry--title h4 {
	font-size: 22px;
}

.blog-standard .blog-entry .entry--content {
	padding: 40px 45px 40px 40px;
	position: relative;
}

.blog-standard .blog-entry .entry--format {
	position: absolute;
	left: 40px;
	top: 40px;
	opacity: 1;
}

.blog-standard .blog-entry .entry--meta {
	line-height: 1;
}

.blog-standard .blog-entry .entry--bio {
	border-bottom: none;
	padding-bottom: 0;
}

.blog-standard .blog-entry .entry--more a {
	float: none;
	text-align: left;
}

.blog-standard .blog-entry .entry--more a i,
.blog-standard .blog-entry .entry--more a span {
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

/* Blog Carousel */
.blog-carousel .blog-entry {
	margin: 5px 5px 27px;
}

/* Blog Masonry */
.blog-masonry-col {
	column-count: 3;
	column-gap: 30px;
}

.blog-masonry .blog-entry .entry--img img,
.blog-masonry .blog-entry .entry--more a i,
.blog-masonry .blog-entry .entry--more a span {
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

/* Blog Single */
.blog-single .col-md-10 {
	padding-right: 50px;
	padding-left: 50px;
}

.blog-single .blog-entry .entry--img img {
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.blog-single .blog-entry .entry--content {
	padding: 40px 45px 40px 45px;
	position: relative;
}

.blog-single .blog-entry .entry--format {
	position: absolute;
	left: 40px;
	top: 40px;
	opacity: 1;
}

.blog-single .blog-entry .entry--meta {
	line-height: 1;
}

.blog-single .blog-entry .entry--title h4 {
	font-size: 22px;
	font-weight: 700;
}

.blog-single .blog-entry .entry--bio {
	padding-bottom: 0;
}

.entry--share .share--title {
	color: #222222;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 0;
	margin-right: 16px;
}

.entry--share a {
	color: #5d5d5d;
	font-size: 14px;
	margin-right: 22px;
	line-height: 1;
}

.entry--share a:last-child {
	margin-right: 0;
}

.entry--share a:hover {
	color: #418ddf;
}

.entry-prev-next {
	position: relative;
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 2px;
	background-color: #ffffff;
	padding: 40px;
	margin-bottom: 40px;
	min-height: 140px;
}

.entry-prev-next:after {
	position: absolute;
	width: 2px;
	height: 48px;
	content: "";
	background-color: #eeeeee;
	left: 50%;
	top: 46px;
}

.entry-next,
.entry-prev {
	width: 50%;
	float: left;
}

.entry-prev-next .entry-prev {
	padding-right: 15px;
}

.entry-prev-next .entry-next {
	padding-left: 15px;
	text-align: right;
}

.entry-next-content,
.entry-prev-content {
	position: relative;
}

.entry-prev-next .entry-prev img {
	position: absolute;
	left: 0;
	top: 0;
}

.entry-prev-next .entry-next img {
	position: absolute;
	right: 0;
	top: 0;
}

.entry-prev-next .entry-prev .entry-desc {
	position: relative;
	margin-left: 65px;
}

.entry-prev-next .entry-next .entry-desc {
	position: relative;
	margin-right: 65px;
}

.entry-prev-next a {
	font-size: 14px;
	font-weight: 700;
	color: #282828;
	margin-top: 13px;
}

.entry-prev-next p {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.entry-widget {
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 2px;
	background-color: #ffffff;
	margin-bottom: 40px;
	padding: 40px;
}

.entry-widget .entry-widget-title {
	position: relative;
	margin-bottom: 30px;
	border-bottom: 2px solid #eeeeee;
}

.entry-widget .entry-widget-title h4 {
	font-family: 'Raleway', sans-serif;
	color: #222222;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 0;
	padding-bottom: 20px;
}

.entry-widget .entry-widget-title h4:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 118px;
	height: 2px;
	background-color: #418ddf;
}

.entry-widget .entry-widget-content {
	position: relative;
}

.entry-bio img {
	position: absolute;
	left: 0;
	top: 0;
}

.entry-bio .entry-bio-desc {
	padding-left: 120px;
}

.entry-bio .entry-bio-desc p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 8px;
}

.entry-bio .entry-bio-desc a {
	color: #5d5d5d;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	margin-right: 25px;
}

.entry-bio .entry-bio-desc a:last-child {
	margin-right: 0;
}

.entry-bio .entry-bio-desc a:hover,
.entry-meta a:hover,
.entry-next:hover a,
.entry-prev:hover a,
.entry-related .entry:hover .entry-title h5,
.entry-share a:hover {
	color: #418ddf;
}

.entry-related .entry--img {
	margin-bottom: 20px;
}

.entry-related .entry--img img {
	max-width: 100%;
	height: auto;
}

.entry-related .entry-title {
	margin-left: 0;
}

.entry-related .entry--title h5 {
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	color: #282828;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 10px;
}

.entry-related .entry--title a {
	color: #282828;
}

.entry-related .entry--title a:hover {
	color: #418ddf;
}

.entry-related .entry--meta {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

ul.comments-list {
	width: 100%;
	list-style: none;
	overflow: hidden;
	padding-left: 0;
	margin-bottom: 0;
}

ul.comments-list li {
	position: relative;
	border-bottom: 2px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

ul.comments-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

ul.comments-list .comment-body .avatar {
	position: absolute;
	left: 0;
	top: 0;
}

ul.comments-list .comment-body .comment {
	padding-left: 90px;
}

ul.comments-list .comment-body .comment h6 {
	font-size: 14px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #282828;
	line-height: 27px;
}

ul.comments-list .comment-body .comment .date {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
}

ul.comments-list .comment-body .comment p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 0;
}

ul.comments-list .comment-body .comment a.reply {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #418ddf;
	line-height: 1;
	margin-top: 16px;
	display: inline-block;
}

ul.comments-list .comment a.reply:hover {
	color: #282828;
}

ul.comments-list ul.comment-children {
	list-style: none;
	margin: 20px 0 0 90px;
	padding-top: 30px;
	padding-left: 0;
	border-top: 2px solid #eeeeee;
}

ul.comments-list ul.comment-children .comment-body .comment {
	padding-left: 90px;
}

ul.comments-list ul.comment-children li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

ul.comments-list ul.comment-children ul .comment-body .comment {
	padding-left: 90px;
}

.entry-widget.comments-form .entry-widget-title h4 {
	margin-bottom: 60px;
}

.comments-form .form-control {
	margin-bottom: 30px;
}

.blog-carousel .carousel-dots .owl-controls {
	margin-top: 25px;
}

.blog-carousel.blog-minimal .owl-stage-outer {
	padding-top: 42px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.blog-single .blog-entry .entry--format,
	.blog-standard .blog-entry .entry--format {
		left: 0;
		top: 0;
	}

	.blog-single .blog-entry .entry--content,
	.blog-standard .blog-entry .entry--content {
		padding: 0 0 0 60px;
	}

	.blog-single .blog-entry .entry--meta,
	.blog-standard .blog-entry .entry--meta {
		line-height: 1.9;
	}

	.blog-masonry-col {
		column-count: 1;
	}

	ul.comments-list ul.comment-children {
		margin: 20px 0 0;
	}

	.blog-entry {
		padding: 20px;
	}

	.blog-entry .entry--content {
		padding: 0;
		margin-top: 15px;
	}

	.blog-single .blog-entry .entry--title h4,
	.blog-standard .blog-entry .entry--title h4 {
		font-size: 17px;
		line-height: 1.7;
	}

	.entry--share .text-right {
		text-align: left;
	}

	.entry--share .share--title {
		display: block;
		margin-bottom: 15px;
	}

	.entry-next,
	.entry-prev {
		width: 100%;
		float: none;
		margin-bottom: 0;
	}

	.entry-next {
		margin-bottom: 0;
	}

	.entry-prev {
		margin-bottom: 30px;
	}

	.entry-prev-next {
		padding: 10px;
	}

	.entry-prev-next:after {
		display: none;
	}

	.entry-prev-next a {
		font-size: 13px;
	}

	.entry-prev-next .entry-prev {
		padding-right: 0;
	}

	.entry-widget {
		padding: 20px;
	}

	.entry-bio .entry-bio-desc p,
	.entry-bio img {
		position: relative;
		margin-bottom: 15px;
	}

	.entry-bio .entry-bio-desc {
		padding-left: 0;
	}

	.entry-related .entry {
		margin-bottom: 30px;
	}

	.entry-related .entry:last-of-type {
		margin-bottom: 0;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.entry-related img {
		width: 100%;
	}

	.blog-standard .blog-entry .entry--title h4 {
		font-size: 20px;
		line-height: 1.2;
	}

	.blog-masonry-col {
		column-count: 2;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

	.entry-related img {
		width: 100%;
	}
}

/*------------------------------------*\
    #Shop
\*------------------------------------*/
/* Shop Cart */
.cart-table {
	margin-bottom: 50px;
}

.cart-table .table {
	background-color: #ffffff;
	border: 1px solid #eee;
	border-radius: 0;
	margin-bottom: 0;
}

.cart-table thead {
	background-color: #f9f9f9;
}

.cart-table thead tr th {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	color: #282828;
	line-height: 55px !important;
	border-bottom-width: 0 !important;
	border-color: #eee;
	padding: 0;
}

.cart-table tbody tr td {
	padding: 20px;
	border-color: #eee;
}

.cart-table tbody tr td.cart-product-price,
.cart-table tbody tr td.cart-product-total {
	font-size: 13px;
	font-weight: 700;
	line-height: 26px;
	color: #9b9b9b;
}

.cart-table tbody tr td.cart-product-quantity .product-quantity {
	line-height: 1px;
}

td.cart-product-quantity .product-quantity input {
	width: 30px;
	height: 25px;
	border: 1px solid #eee;
	border-radius: 2px;
	text-align: center;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	margin-right: 5px;
}

td.cart-product-quantity .product-quantity i {
	width: 25px;
	height: 25px;
	line-height: 25px;
	border: 1px solid #eee;
	border-radius: 1px;
	color: #418ddf;
	margin-right: 5px;
	font-size: 10px;
}

.cart-table tbody tr td.cart-product-price,
.cart-table tbody tr td.cart-product-total,
td.cart-product-quantity {
	text-align: center;
}

.cart-table .cart-product-action td {
	padding: 30px 20px;
}

.cart-table .cart-product-action form {
	margin-bottom: 0;
}

.cart-table .cart-product-action .form-control {
	color: #9b9b9b;
	font-size: 12px;
	font-weight: 400;
	padding: 0 15px;
	width: 250px;
	height: 42px;
	line-height: 25px;
	margin-bottom: 0;
	background-color: transparent;
	border: 1px solid #eee;
	border-radius: 0;
	font-style: italic;
	text-transform: capitalize;
}

.cart-table .cart-product-action .btn {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	margin-left: 10px;
	line-height: 39px;
	height: 42px;
	width: auto;
	text-align: center;
	padding-right: 16px;
	padding-left: 16px;
	border-radius: 1px;
}

.cart-product-img {
	float: left;
	padding-right: 20px;
}

.cart-product-name h6 {
	color: #282828;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 27px;
	text-transform: capitalize;
}

.cart-product-remove {
	float: right;
	width: 19px;
	height: 19px;
	line-height: 19px;
	font-size: 9px;
	background-color: #000;
	border-radius: 1px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
}

.cart-product-remove:hover {
	background-color: #418ddf;
}

.cart-shiping,
.cart-total-amount {
	background-color: white;
	border: 1px solid #eee;
	border-radius: 1px;
	padding: 30px 20px;
}

.cart-shiping h6,
.cart-total-amount h6 {
	color: #282828;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
}

.cart-total-amount ul li {
	font-family: 'Raleway', sans-serif;
	color: #418ddf;
	font-size: 13px;
	font-weight: 700;
	line-height: 36px;
	text-transform: uppercase;
}

.cart-total-amount ul li span {
	color: #959595;
	font-size: 13px;
	font-weight: 400;
	line-height: 36px;
}

.cart-shiping .form-control {
	background-color: transparent;
	border: 1px solid #eee;
	font-size: 12px;
	color: #959595;
	font-weight: 400;
	padding: 0 15px;
	height: 42px;
	line-height: 42px;
	margin-bottom: 20px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-transform: capitalize;
}

.cart-shiping .form-control::-webkit-input-placeholder {
	color: #959595;
}

.cart-shiping .form-control:-moz-placeholder {
	color: #959595;
}

.cart-shiping .form-control::-moz-placeholder {
	color: #959595;
}

.cart-shiping .form-control:-ms-input-placeholder {
	color: #959595;
}

.cart-shiping .col-xs-12 {
	position: relative;
}

.cart-shiping i {
	position: absolute;
	font-size: 13px;
	right: 25px;
	top: 12px;
	z-index: 1;
	pointer-events: none;
	cursor: pointer;
	color: #b8b8b8;
}

.cart-shiping .btn {
	line-height: 39px;
	height: 42px;
	font-size: 13px;
	width: auto;
	padding: 0 17px;
	border-radius: 0;
	font-weight: 700;
	text-transform: uppercase;
}

.cart-shiping .btn:hover {
	color: #ffffff;
	background: #282828;
}

/* Product Item */
.product-item {
	margin-bottom: 50px;
	text-align: center;
}

.product--img {
	position: relative;
	margin-bottom: 30px;
}

.product--img img {
	max-width: 100%;
	height: auto;
}

.product--img .product--hover {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -85px;
	width: 170px;
	height: 51px;
}

.product--img .product--hover .product--action a {
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-color: #222222;
	text-align: center;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 51px;
	text-transform: uppercase;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	display: block;
}

.product--img .product--hover .product--action a:hover {
	background-color: #418ddf;
}

.product--content .product--cat {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-style: italic;
	line-height: 1;
	margin-bottom: 12px;
}

.product--content .product--cat a {
	color: #3d3c3c;
}

.product--content .product--cat a:hover {
	color: #418ddf;
}

.product--content .product--title h3 {
	margin-bottom: 0;
}

.product--content .product--title a {
	color: #282828;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	display: block;
}

.product--content .product--title a:hover {
	color: #418ddf;
}

.product--content .product--price {
	color: #9b9b9b;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Droid Serif', serif;
	line-height: 1;
}

.product--img:hover .product--hover .product--action a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* Shop Options */
.shop-options {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 2px;
	margin-bottom: 30px;
	height: 70px;
	border: 1px solid #eeeeee;
}

.shop-options .product-options2 span,
.shop-options .product-view-mode span {
	color: #222;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin-right: 10px;
}

.shop-options .product-options2 .product-sort {
	position: relative;
	margin-right: 30px;
}

.shop-options .product-options2 .product-sort i {
	position: absolute;
	font-size: 14px;
	right: 10px;
	top: 10px;
	z-index: 1;
	pointer-events: none;
	cursor: pointer;
	color: #9b9b9b;
}

.shop-options .product-options2 select {
	height: 30px;
	line-height: 30px;
	width: 134px;
	border: 1px solid #eeeeee;
	background-color: rgba(246, 246, 247, 0);
	border-radius: 1px;
	color: #9b9b9b;
	font-size: 12px;
	font-weight: 400;
	padding-left: 10px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.shop-options .product-view-mode {
	line-height: 30px;
}

.shop-options .product-view-mode a i {
	background-color: transparent;
	border: 1px solid #eee;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	margin-left: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.shop-options .product-view-mode a:first-of-type i {
	margin-left: 0;
}

.shop-options .product-view-mode a.active i,
.shop-options .product-view-mode a:hover i {
	color: #418ddf;
}

.product-list {
	width: 100%;
	text-align: left;
	min-height: 340px;
	margin-bottom: 0;
}

.product-list .product--img {
	float: left;
	width: 33%;
}

.product-list .product--content {
	padding-left: 300px;
}

/* Shop Single */
.shop-product .product-title h3 {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.shop-product .product-price {
	colo: #9b9b9b;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 25px;
}

.shop-product .product-rating {
	margin-right: 30px;
}

.shop-product .product-rating i {
	color: #418ddf;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
}

.shop-product .product-review span {
	color: #9b9b9b;
	font-size: 13px;
	line-height: 1;
	font-weight: 400;
}

.shop-product .product-review span a {
	color: #9b9b9b;
}

.shop-product .product-review span a:hover {
	color: #418ddf;
}

.shop-product .product-desc p {
	color: #959595;
	font-size: 13px;
	line-height: 22px;
	margin-bottom: 25px;
}

.shop-product hr {
	opacity: 0.7;
	border-top: 1px solid #e5e4e4;
	margin-top: 0;
	margin-bottom: 30px;
}

.shop-product .product-details h5 {
	color: #282828;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
	position: relative;
}

.shop-product .product-details ul li {
	line-height: 26px;
	color: #418ddf;
	font-size: 13px;
	font-weight: 400;
	text-transform: capitalize;
}

.shop-product .product-details ul li span {
	color: #9b9b9b;
	font-size: 13px;
	font-weight: 400;
}

.shop-product .product-quantity {
	line-height: 49px;
}

.shop-product .product-quantity .qua {
	color: #282828;
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	margin-right: 10px;
}

.shop-product .product-quantity a i {
	width: 25px;
	height: 25px;
	font-size: 10px;
	line-height: 25px;
	border: 1px solid #eee;
	border-radius: 1px;
	color: #418ddf;
	text-align: center;
}

.shop-product .product-quantity input {
	width: 30px;
	height: 25px;
	border: 1px solid #eee;
	border-radius: 1px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	text-align: center;
	background-color: transparent;
}

.shop-product .product-cta {
	padding-bottom: 30px;
}

.shop-product .product-cta .btn {
	margin-left: 20px;
	width: 134px;
	height: 42px;
	line-height: 41px;
	border-radius: 0;
	text-transform: uppercase;
}

.shop-product .product-share {
	margin-bottom: 70px;
}

.shop-product .product-share h5 {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
	position: relative;
	text-transform: capitalize;
}

.shop-product .product-share a {
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 1px 2px 2px 1px;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	background-color: #418ddf;
	margin-right: 3px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.shop-product .product-share a {
	background-color: #418ddf;
}

.shop-product .product-share a.share-facebook:hover {
	background-color: #3B5998;
}

.shop-product .product-share a.share-twitter:hover {
	background-color: #00ACEE;
}

.shop-product .product-share a.share-google-plus:hover {
	background-color: #DD4B39;
}

.shop-product .product-share a.share-linkedin:hover {
	background-color: #0E76A8;
}

.product-tabs {
	background-color: #ffffff;
	border: 1px solid #eee;
	border-radius: 1px;
	color: #9b9b9b;
	font-size: 13px;
	font-weight: 500;
	line-height: 22px;
	font-style: italic;
	margin-bottom: 50px;
}

.product-tabs .nav-tabs {
	background-color: #f9f9f9;
}

.product-tabs .nav-tabs>li {
	margin-bottom: -1px;
}

.product-tabs .nav-tabs>li>a {
	color: #282828 !important;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	text-transform: capitalize;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 0 20px;
	border-right: 1px solid #eeeeee;
	margin-right: 0;
	line-height: 60px;
	height: 60px;
}

.product-tabs .nav-tabs>li:last-child>a {
	border-right: none;
}

.product-tabs .nav-tabs>li>a:focus,
.product-tabs .nav-tabs>li>a:hover {
	background-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
	border-bottom-color: transparent;
	color: #418ddf !important;
}

.product-tabs .nav-tabs>li.active>a,
.product-tabs .nav-tabs>li.active>a:focus,
.product-tabs .nav-tabs>li.active>a:hover {
	color: #418ddf !important;
	border: none;
	border-right: 1px solid #eee;
	background-color: #ffffff;
}

.product-tabs .tab-content {
	padding: 20px;
}

.product-tabs .tab-content h5 {
	font-size: 13px;
}

.product-review li {
	background-color: #f9f9f9;
	padding: 20px;
	margin-bottom: 30px;
}

.product-review li h6 {
	margin-bottom: 0;
	text-transform: uppercase;
	font-size: 13px;
}

.product-review li .review-date {
	margin-bottom: 0;
}

.product-review li .product-rating {
	color: #418ddf;
	margin-bottom: 10px;
}

.product-review li .product-comment p {
	margin-bottom: 0;
}

.form-review .form-control {
	margin-bottom: 30px;
}

.shop-product .product-related-title {
	position: relative;
	border-bottom: 2px solid #eee;
	margin-bottom: 30px;
}

.shop-product .product-related-title h5 {
	color: #222222;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	position: relative;
	margin-bottom: 0;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.shop-product .product-related-title h5:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 119px;
	height: 2px;
	background-color: #418ddf;
}

.shop-product .product-related .divider--line {
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 20px;
}

.product-num h2 {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 35px;
	text-transform: capitalize;
	color: #222222;
	margin-bottom: 0;
}

.product-options {
	margin-bottom: 50px;
}

.product-options .product-select {
	position: relative;
}

.product-options .product-select i {
	position: absolute;
	font-size: 14px;
	right: 25px;
	top: 12px;
	z-index: 1;
	pointer-events: none;
	cursor: pointer;
	color: #9b9b9b;
}

.product-options select {
	width: 230px;
	height: 35px;
	border: 1px solid #eeeeee;
	border-radius: 1px;
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 35px;
	padding-left: 10px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Shop Masonary */
.shop-filter {
	text-align: center;
	margin-bottom: 36px;
}

.shop-filter li a {
	color: #333333;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	margin-right: 29px;
	text-transform: capitalize;
}

.shop-filter li:last-child a {
	margin-right: 0;
}

.shop-filter li a.active-filter,
.shop-filter li a:hover {
	color: #418ddf;
}

/* shop Item */
.shop-item .shop--img {
	position: relative;
}

.shop-item .shop--img img {
	max-width: 100%;
	height: auto;
}

.shop-item .shop--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.shop-item .shop--hover .shop--action {
	width: 100%;
	height: 100%;
	background-color: rgba(40, 40, 40, 0.95);
	text-align: center;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.shop-item:hover .shop--hover .shop--action {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.shop-item .shop--price {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 30px;
}

.shop-item .shop--title h4 {
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 35px;
	text-transform: capitalize;
}

.shop-item .shop--title h4 a {
	color: #ffffff;
}

.shop-item .shop--title h4 a:hover {
	color: #418ddf;
}

.shop-item .shop--cat .btn:hover {
	background-color: #ffffff;
	color: #418ddf;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.cart-product-img {
		float: none;
	}

	.cart-table .cart-product-action form {
		margin-bottom: 30px;
	}

	.cart-product-action .text-right {
		text-align: left !important;
	}

	.cart-table .cart-product-action .form-control {
		display: inline-block;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #CONTACT-PAGE
\*------------------------------------*/

.address-section {
	background-image: url(../images/background/city-bg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: 20%;
}

.contact--info h3 {
	color: #222222;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
}

.contact--info p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 6px;
}

.contact--info p:last-of-type {
	margin-bottom: 16px;
}

a.link--styled {
	color: #418ddf;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 4px;
}

.contact-form .form-control {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 49px;
	text-transform: uppercase;
	border: none;
	border-bottom: 2px solid #eee;
	background: transparent;
	padding-left: 0;
	margin-bottom: 30px;
	position: relative;
}

.contact-form .form-control:focus {
	border-bottom-color: #418ddf;
}

.form-container {
	padding: 50px 35px;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.06);
	border-radius: 1px;
	background-color: #ffffff;
	min-height: 305px;
}

.form-container p {
	color: #418ddf;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	padding-top: 50px;
}



.contact-panel {

	border-radius: 1px;
	background-color: #f1f1f1;
	text-align: center;
	padding: 50px 28px;
	margin-bottom: 5px;
}

.contact-panel i {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 30px;
	color: #418ddf;
	display: block;
}

.contact-panel h3 {
	color: #222222;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 24px;
}

.contact-panel p {
	color: #9b9b9b;
	font-family: Raleway;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 30px;
}

.contact-panel .contact-action {
	color: #418ddf;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.contact-panel:hover .contact-action {
	color: #282828;
}

.contact-panel.contact-minimal {
	box-shadow: none;
	border-radius: 0;
	background-color: #ffffff;
	text-align: center;
	padding: 0;
	margin-bottom: 0;
}

.contact-panel.contact-minimal p {
	margin-bottom: 17px;
}

.form-box{
	min-height: 1px;
    padding: 36px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}
.form-sec-title{
	font-size: 22px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

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

	.form-container p {
		padding-top: 0;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

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

	.form-container p {
		padding-top: 0;
	}
}

/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.call-area .custom-container {
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	border-radius: 200px;
  }
  
  .call-wrap {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
  }
  .call-wrap .call-icon {
	position: absolute;
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
  }
  .call-wrap .call-icon img{
  }
  .call-wrap .content-wrap {
	padding: 100px 0 50px 0;
	text-align: center;
  }
  .call-wrap .content-wrap .title {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 35px;
  }
  @media only screen and (max-width: 767px) {
	.call-wrap .content-wrap .title {
	  font-size: 36px;
	}
  }
  .call-wrap .content-wrap .btn-groups {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 55px;
  }
  .call-wrap .content-wrap .mt-primary-btn {
	background-color: #000;
  }
  .call-wrap .content-wrap .video-btn {
	color: #fff;
	font-size: 25px;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .call-wrap .content-wrap .video-btn:hover {
	background-color: #fff;
	color: var(--mt-color-heading-primary);
  }
  .call-wrap .content-wrap .video-btn i {
	margin-left: 5px;
  }
  
  /* !END: Theme Sponsor CSS */


/*------------------------------------*\
	#Widgets
\*------------------------------------*/
.sidebar {
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 2px;
	background-color: #ffffff;
	padding: 40px;
}

.widget {
	margin-bottom: 50px;
}

.widget:last-of-type {
	margin-bottom: 0;
}

/* Widget */
.widget .widget--title {
	position: relative;
	border-bottom: 2px solid #eee;
	margin-bottom: 30px;
}

.widget .widget--title h5 {
	font-family: 'Raleway', sans-serif;
	color: #222222;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 0;
	padding-bottom: 20px;
	position: relative;
}

.widget .widget--title h5:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: #46a0ff;
}

.widget .divider--line {
	margin-right: 0;
	margin-left: 0;
}

/* Category Widget */
.widget-categories ul li {
	border-bottom: 1px solid #eeeeee;
}

.widget-categories ul li:last-child {
	border-bottom: none;
}

.widget-categories ul li a {
	color: #333333;
	font-size: 13px;
	font-weight: 600;
	line-height: normal;
	position: relative;
	display: block;
	padding: 12px 14px 12px 0;
}

.widget-categories ul li a:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "\f178";
	color: #333333;
	font-family: fontawesome;
	font-size: 11px;
	font-weight: 400;
	line-height: 40px;
}

.widget-categories ul li a:hover,
.widget-categories ul li a:hover:after {
	color: #418ddf;
}

.widget-categories ul li a span {
	margin-left: 5px;
	color: #418ddf;
}

/* Sidebar Faq */
.sidebar-faq {}

.sidebar-faq ul li:last-child {
	border-bottom: none;
}

.sidebar-faq ul li {
	color: #333333;
	font-size: 13px;
	font-weight: 600;
	line-height: normal;
	position: relative;
	display: block;
	padding: 12px 14px 12px 0;
	border-bottom: 1px solid #eeeeee;
	position: relative;
}

.sidebar-faq ul li:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "\f178";
	color: #333333;
	font-family: fontawesome;
	font-size: 11px;
	font-weight: 400;
	line-height: 40px;
}

.sidebar-faq ul li:hover,
.sidebar-faq ul li:hover:after {
	color: #418ddf;
	cursor: pointer;
}

.sidebar-readmore {
	background-color: #fff;
	color: #418ddf;
	border: 2px solid #418ddf;
	border-radius: 50px;
	text-transform: capitalize;
	height: 45px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	display: block;
	padding: 5px 20px;
	line-height: 30px;
}

.sidebar-readmore:hover {
	color: #ffffff;
	background-color: #418ddf;
	border-color: #418ddf;
}

/* Tags Widget */
.widget-tags ul {
	margin-bottom: 0;
	margin-left: 0;
}

.widget-tags ul li {
	padding-left: 0;
	padding-right: 0;
}

.widget-tags a {
	display: inline-block;
	border: 1px solid rgba(34, 34, 34, 0.07);
	background-color: #ffffff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: #9b9b9b;
	margin-right: 10px;
	margin-bottom: 10px;
	text-transform: capitalize;
	padding: 9px 10px;
}

.widget-tags a:hover {
	background-color: #418ddf;
	color: #ffffff;
	border-color: #418ddf;
}

/* Recent Widegt */
.widget-recent-posts .entry {
	position: relative;
	margin-bottom: 24px;
	min-height: 50px;
}

.widget-recent-posts .entry:last-of-type {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.widget-recent-posts img {
	position: absolute;
	left: 0;
	top: 0;
	width: 49px;
	height: 49px;
	text-align: center;
	padding: 4px;
}

.widget-recent-posts .entry .entry-desc {
	position: relative;
	margin-left: 60px;
}

.widget-recent-posts .entry .entry-title {
	margin-bottom: 5px;
}

.widget-recent-posts .entry .entry-title a {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
}

.widget-recent-posts .entry .entry-title a:hover {
	color: #418ddf;
}

.widget-recent-posts .entry .entry-desc .entry-meta a {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #616161;
	text-transform: uppercase;
}

/* Search Widget */
.widget-search .form-search {
	border: 1px solid rgba(34, 34, 34, 0.07);
	background-color: rgba(255, 255, 255, 0);
}

.widget-search .form-search .form-control {
	border: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #9e9e9e;
	font-size: 13px;
	font-weight: 400;
	line-height: 49px;
	height: 49px;
	text-transform: capitalize;
	padding-left: 15px;
}

.widget-search .form-search .btn {
	background-color: transparent;
	color: #418ddf;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	width: 35px;
	height: 49px;
	line-height: 29px;
	text-align: center;
	font-size: 14px;
	margin-left: 0;
	padding: 0;
}

/* Best Products */
.widget-best-product .best-product .product-img {
	width: 49px;
	height: 49px;
	text-align: center;
	padding: 4px;
}

.widget-best-product .best-product .product-bio {
	padding-top: 0;
}

.widget-best-product .best-product .product-bio .product-price {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 600;
	line-height: 23px;
}

.widget-best-product .best-product a {
	text-transform: uppercase;
}

/* fiter product */
.ui-slider {
	position: relative;
	text-align: left;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: 0.7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -0.2em;
	margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: 0.8em;
	height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -0.3em;
	margin-left: 0;
	margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

.widget-filter .ui-slider {
	height: 4px;
	background-color: rgba(34, 34, 34, 0.06);
	border-radius: 0;
	margin-bottom: 20px;
	margin-top: 5px;
}

.widget-filter .ui-slider-handle {
	/* Style for "Line" */
	width: 9px;
	height: 9px;
	margin-left: 0;
	background-color: #222222;
	border-radius: 0;
}

.widget-filter .ui-slider-range {
	height: 4px;
	background-color: #418ddf;
	margin-bottom: 20px;
}

.widget-filter p {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 19px;
}

.widget-filter label {
	color: #9b9b9b;
}

.widget-filter input {
	color: #418ddf;
	border: none;
	background-color: transparent;
}

.widget-filter .btn {
	width: 108px;
}

/* ADS widget */
.ads-widget img {
	max-width: 100%;
	height: auto;
}

/* Recent Product Widegt */
.widget-recent-products .product {
	position: relative;
	margin-bottom: 24px;
	min-height: 70px;
}

.widget-recent-products .product:last-of-type {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.widget-recent-products .product img {
	position: absolute;
	left: 0;
	top: 0;
}

.widget-recent-products .product .product-desc {
	position: relative;
	margin-left: 65px;
	border-bottom: 1px solid #f4f4f4;
	padding-bottom: 18px;
}

.widget-recent-products .product:last-of-type .product-desc {
	border-bottom: none;
	padding-bottom: 0;
}

.widget-recent-products .product .product-title {
	margin-bottom: 5px;
}

.widget-recent-products .product .product-title a {
	color: #282828;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
}

.widget-recent-products .product .product-title a:hover {
	color: #418ddf;
}

.widget-recent-products .product .product-desc .product-meta {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
}

/* Info Widget */
.widget-info {
	background-color: #418ddf;
	padding: 50px 36px;
	text-align: center;
}

.widget-info .info--title {
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 13px;
	margin-bottom: 28px;
	position: relative;
}

.widget-info .info--title:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -20px;
	width: 40px;
	height: 2px;
	background-color: #ffffff;
	content: "";
}

.widget-info .info--content {
	color: #f9f9f9;
	font-size: 15px;
	font-weight: 500;
	line-height: 23px;
	font-style: italic;
	margin-bottom: 23px;
}

/* Widget Instagram */
.widget-instagram a {
	width: 79px;
	height: 79px;
	float: left;
	display: inline-block;
	margin: 2px;
	position: relative;
}

.widget-instagram a img {
	max-width: 100%;
	height: auto;
}

.widget-instagram .insta-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 3px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.widget-instagram .insta-hover i {
	display: block;
	border-radius: 1px;
	background-color: rgba(27, 181, 128, 0.95);
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
	line-height: 74px;
	text-align: center;
}

.widget-instagram a:hover .insta-hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

footer .widget-instagram a {
	width: 60px;
	height: 60px;
}

footer .widget-instagram .insta-hover i {
	line-height: 54px;
}

/* Widget Twitter  */
.widget-tweets ul li:before {
	content: "\f099";
	font-family: fontawesome;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #418ddf;
	width: 14px;
	height: 12px;
	float: left;
	margin-right: 10px;
}

.widget-tweets ul li p.tweet {
	color: #9b9b9b;
	font-weight: 600;
	font-size: 13px;
	line-height: 22px;
	margin-bottom: 5px;
}

.widget-tweets ul li a {
	color: #418ddf;
	font-weight: 400;
}

.widget-tweets ul li a:hover {
	color: #418ddf;
}

.widget-tweets ul li .timePosted {
	color: #9b9b9b;
	font-size: 11px;
	font-weight: 400;
	line-height: 20px;
}

.widget-tweets ul li:last-child .timePosted {
	margin-bottom: 0;
}

.widget-tweets ul li .timePosted a {
	color: #9b9b9b;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.sidebar {
		margin-bottom: 30px;
		padding: 30px;
	}

	.widget {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.widget-recent .entry .entry-desc {
		margin-left: 70px;
	}
}

/*------------------------------------*\
    #Footer
\*------------------------------------*/
.footer {
	background-image: url(../images/background/ft-bg.jpg);
	padding-top: 0;
	padding-bottom: 0;
}

.footer-logo-area {
	text-align: center;
	margin-bottom: 80px;
}

.footer-logo-area p {
	margin-top: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}

/* Footer Widgets */
.footer-widget {
	padding-top: 90px;
	padding-bottom: 77px;
}

.footer-widget .footer--widget-title {
	margin-bottom: 32px;
}

.footer-widget .footer--widget-title h5 {
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-widget .footer--widget-title .title-line {
	background-color: #fd8d14;
	height: 3px;
	width: 30px;
}

.footer-links ul {
	padding-left: 0;
	list-style: none;
}

.footer-links ul li {
	line-height: 30px;
	font-size: 15px;
	color: #fff;
	font-weight: 300;
}

.footer-links ul li a {
	color: #fff;
}

.footer-links ul li i {
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-right: 10px;
	color: #fff;
}

.footer-widget .footer--widget-content p {
	color: #eef0f1;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 16px;
}

.footer-widget .footer--widget-about ul li {
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	color: #eef0f1;
}

.footer-widget .footer--widget-about ul li span {
	color: #ffffff;
	font-weight: 700;
}

.footer-widget .footer--widget-about .social a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	margin-right: 24px;
}

.footer-widget .footer--widget-about .social a:hover {
	color: #418ddf;
}

.footer--widget-recent .entry {
	margin-bottom: 27px;
	position: relative;
}

.footer--widget-recent .entry--img {
	position: absolute;
	top: 0;
	left: 0;
}

.footer--widget-recent .entry--content {
	padding-left: 65px;
}

.footer--widget-recent .entry:last-of-type {
	margin-bottom: 0;
}

.footer--widget-recent .entry--meta {
	color: #a0a4a7;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 26px;
}

.footer--widget-recent .entry--title a {
	color: #cecece;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}

.footer--widget-recent .entry--title a:hover {
	color: #418ddf;
}

.footer--widget-newsletter form {
	height: 42px;
	border-radius: 2px;
	background-color: #134478;
	margin-bottom: 25px;
}

.footer--widget-newsletter .form-control {
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
	line-height: 42px;
	width: 85%;
	height: 42px;
	float: left;
	margin-bottom: 0;
	padding-left: 15px;
}

.footer--widget-newsletter button {
	background-color: transparent;
	border: none;
	line-height: 42px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 400;
	width: 15%;
}

.footer--widget-newsletter button i {
	position: relative;
	line-height: 41px;
	overflow: hidden;
	transition: all 0.35s;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
}

.footer--widget-newsletter button:hover i {
	transform: translateX(4px);
}

.footer--widget-newsletter .form-control::-webkit-input-placeholder {
	color: #cadcef;
}

.footer--widget-newsletter .form-control:-moz-placeholder {
	color: #cadcef;
}

.footer--widget-newsletter .form-control::-moz-placeholder {
	color: #cadcef;
}

.footer--widget-newsletter .form-control:-ms-input-placeholder {
	color: #cadcef;
}

/* Footer Bar */
.divider--footer {
	border-top: 1px solid rgba(71, 71, 71, 0.25);
	margin: 0 0 20px;
}

.footer--bar {
	padding-bottom: 20px;
}

.footer--copyright {
	color: #adb7c1;
	font-size: 13px;
	font-weight: 400;
	line-height: 43px;
}

.footer--links ul {
	margin-left: 0;
}

.footer--links li {
	padding-left: 0;
	padding-right: 0;
}

.footer--links li a {
	color: #adb7c1;
	font-size: 13px;
	font-weight: 400;
	line-height: 43px;
	text-transform: capitalize;
	margin-right: 26px;
	position: relative;
}

.footer--links li a:hover {
	color: #418ddf;
}

.footer--links li:last-child a {
	margin-right: 0;
}

.footer--logo img {
	width: 50px;
}

footer .widget-instagram a {
	width: 80px;
	height: 80px;
}

footer .widget-instagram .insta-hover i {
	line-height: 74px;
}

/* Footer #4 */
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.footer-widget {
		padding-top: 60px;
		padding-bottom: 0;
	}

	.footer--widget {
		margin-bottom: 30px;
	}

	.footer--copyright {
		text-align: center;
	}

	.footer--copyright,
	.footer-widget .footer--widget-title h5 {
		margin-bottom: 15px;
	}

	.footer--bar {
		text-align: center;
	}

	.pull-right {
		float: none !important;
	}

	.footer--widget-recent .entry {
		margin-bottom: 10px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.footer-widget .footer--widget-title h5 {
		margin-bottom: 15px;
	}

	.footer--widget-recent .entry {
		margin-bottom: 10px;
	}

	.footer--widget {
		margin-bottom: 20px;
	}

	.footer-widget {
		padding-bottom: 40px;
	}

	.footer--links li a {
		margin-right: 16px;
	}
}

/*------------------------------------*\
    Service Page
\*------------------------------------*/

.heading-title {
	text-transform: uppercase;
}

.inner-slider {
	background-image: url(../images/banners/service-banner.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	min-height: 300px;
	position: relative;
	z-index: 6;
	display: flex;
	align-items: center;

	@media (max-width: 600px) {
		min-height: 200px;
	}
}

.inner-slider::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	z-index: 0;

}

.content-card {
	position: relative;
	z-index: 2;
	text-align: center;
}

.service-card {
	position: relative;
	text-align: center;

	.icon {
		background-color: #1375dc;
		width: 65px;
		height: 65px;
		padding: 15px;
		border-radius: 100%;
		display: flex;
		align-items: center;
		margin-right: 12px;
		margin: 0 auto;
	}

	.lead {
		color: #282828;
		font-weight: 700;
		margin-top: 1.5rem;
		margin-bottom: 1rem;
	}

	img {
		max-width: 100%;
	}
}


.servixer-section {
	padding-top: 65px;
}

.servixer-card {
	border: solid 2px #fff;
	text-align: center;
	padding: 0 25px;
	min-height: 264px;

	.icon {
		width: 120px;
		height: 120px;
		padding: 15px;
		border-radius: 100%;
		display: flex;
		align-items: center;
		margin-right: 12px;
		margin: 0 auto;
		margin-top: -64px;


		img {
			margin: 0 auto;
			width: 80%;
		}
	}

	h3 {
		margin-top: 3rem;
	}
}




/*------------------------------------*\
    #404
\*------------------------------------*/
.page-404 h3 {
	color: #222222;
	font-family: 'Playfair Display', serif;
	font-size: 280px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
}

.page-404 p {
	color: #a5a5a5;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

	.page-404 {
		padding-top: 150px !important;
		padding-bottom: 150px !important;
	}

	.page-404 h3 {
		font-size: 150px;
	}

	.page-404 .btn {
		width: 125px;
	}

	.page-404.fullscreen {
		height: auto !important;
	}
}

/*------------------------------------*\
    #SOON
\*------------------------------------*/
.page-soon {
	padding-top: 140px;
	padding-bottom: 140px;
}

.page-soon h3 {
	color: #282828;
	font-size: 85px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 38px;
}

.page-soon p {
	color: #a5a5a5;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 70px;
}

.count-down {
	padding-top: 110px;
	padding-bottom: 110px;
}

/* jQuery Countdown styles 2.0.0. */
.countdown-rtl {
	direction: rtl;
}

.countdown-section {
	display: block;
	float: left;
	text-align: center;
	position: relative;
	height: auto;
	margin-right: 26px;
	width: 18%;
	padding: 0 23px;
}

.countdown-section:last-of-type {
	margin-right: 0;
}

.countdown-amount {
	font-family: 'Droid Serif', serif;
	color: #ffffff;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0;
}

.countdown-period {
	display: block;
	color: #f4f4f4;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
	text-align: center;
}

.countdown-boxed .countdown-section {
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.15);
	padding: 23px;
}

.countdown-dark .countdown-amount {
	color: #282828;
}

.countdown-dark .countdown-period {
	color: #616161;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 480px) {

	.countdown-section {
		width: 40%;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.page-soon h3 {
		font-size: 45px;
		margin-top: 100px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

	.countdown-section {
		width: 16%;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.countdown-amount {
		font-size: 50px;
	}

	.page-soon h3 {
		font-size: 45px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.countdown-section {
		width: 17%;
	}

	.countdown-amount {
		font-size: 60px;
	}
}

@media only screen and (max-width: 991px) {

	.page-soon {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}
}

/*------------------------------------*\
    #MAINTENANCE
\*------------------------------------*/
.page-maintenance {
	padding-top: 150px;
	padding-bottom: 150px;
}

.page-maintenance h3 {
	color: #282828;
	font-size: 85px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
}

.page-maintenance p {
	color: #a5a5a5;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 50px;
}

.maintenance-fullscreen.skills .progress-bar {
	background-color: #222222;
}

.maintenance-fullscreen.skills .progress-title .value {
	color: #f4f4f4;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.page-maintenance {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}

	.page-maintenance h3 {
		font-size: 45px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.page-maintenance {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}
}

/*------------------------------------*\
    #Client
\*------------------------------------*/
.clients {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #f4f4f4;
}

.clients h3 {
	font-size: 22px;
	margin: 0;
	border-right: 1px solid #ccc;
	height: 100%;
	margin-right: 25px;
}

.clients .client {
	-moz-transition: all 0.35s;
	-webkit-transition: all 0.35s;
	-ms-transition: all 0.35s;
	transition: all 0.35s;
}

.clients .client:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	transform: translateY(-5px);
	cursor: pointer;
}

.clients .client img {
	max-width: 100%;
	width: auto !important;
	filter: grayscale(100%);
}

.clients .clients-1 {
	padding-top: 80px;
	padding-bottom: 80px;
}

/* Client #2 */
.clients-2 .client {
	position: relative;
	padding: 30px;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	background-color: #ffffff;
}

.clients-carousel [class*="col-"] {
	max-height: 72px;
}

.clients-2 .row-clients .client:last-child:before {
	display: none;
}

.clients-2 .row-clients:last-child .client:after {
	display: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.client img,
	.clients-2 .client {
		margin-bottom: 20px;
	}

	.clients {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.clients h3 {
		font-size: 22px;
		margin: 0;
		border-right: none;
		border-bottom: 1px solid #ccc;
		height: 100%;
		margin-right: 0;
		padding-bottom: 12px;
		text-align: center;
	}
	.home-about-us .about-left-content .skill-container {
		margin-bottom: 40px;
		margin-right: 40px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.clients {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*------------------------------------*\
    #Work Process
\*------------------------------------*/
.process .process-panel {
	position: relative;
}

.process .process-panel:after {
	background: url(../images/process/divider.png) no-repeat top left;
	width: 29px;
	height: 4px;
	top: 63px;
	right: -30px;
	position: absolute;
	content: "";
}

.process .process-panel:last-of-type:after {
	display: none;
}

.process-panel .process-img {
	position: relative;
	margin: 0 auto 28px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
}

.process-panel .process-img img {
	width: 130px;
	height: 130px;
	border-radius: 50%;
}

.process-panel .process-img .process-overlay {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -65px;
	width: 100%;
	height: 100%;
	line-height: 80px;
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	color: #ffffff;
	background-color: rgba(34, 34, 34, 0.6);
	border-radius: 50%;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	padding: 15px;
}

.process-panel .process-img .process-overlay span:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 15px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: rgba(255, 255, 255, 0.7) solid 2px;
	z-index: 3;
}

.process-panel .process-img .process-overlay.active,
.process-panel:hover .process-img .process-overlay {
	background-color: rgba(27, 181, 128, 0.6);
}

.process-panel .process-img .process-overlay i {
	line-height: inherit;
}

.process-panel .process-content h3 {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.process-panel .process-content {
	position: relative;
}

.process-panel .process-content span {
	color: #418ddf;
}

.process-panel .process-content p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 0;
	padding: 0 30px;
}

.process-divider {
	position: absolute;
	top: 50%;
	right: -30px;
}

.process-divider .divider--line .divider:after,
.process-divider .divider--line .divider:before {
	background-color: #9b9b9b;
}

.process-panel .process-icon {
	margin-bottom: 30px;
}

/* Process #3 */
.process-3 .process-panel .process-img .process-overlay {
	background-color: #282828;
}

.process-3 .process-panel .process-img .process-overlay:hover {
	background-color: #418ddf;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.process .process-panel {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.process .process-panel {
		margin-bottom: 30px;
	}
}


/*------------------------------------*\
    #Jet image
\*------------------------------------*/
/* The Magic */
.jetimage {
	display: flex;
	justify-content: center;
	position: relative;
	height: 500px;
  }
  
.jetimage .item {
	flex: 0 0 12%;
	position: relative;
	overflow: hidden;
	transition: 0.5s;
	border: 2px solid #fff;
	/* margin: calc(4px / 2); */
  }
  .jetimage .item:first-child{
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
  }
  .jetimage .item:last-child{
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
  }
  
  .jetimage .photo {
	height: 100%;
	width: 100%;
  }
  
  .jetimage .item .photo img {
	-o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}
  
.jetimage .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 8;
	opacity: 0.2;
	transition: 1s;
	background-color: rgba(0,0,0,.5);
  }
  
  .jetimage .title {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 8;
	padding: 2rem;
	transform: scale(0) translateY(2rem);
	transition: transform 0.1s 0.2s, opacity 0.1s 0.4s;
	opacity: 0;
  }
  .jetimage .main-title {
	color: #f0f0f0;
	transition: 0.5s;
	font-size: 26px;
    font-weight: 600;
	margin-bottom: 12px;
  }
  
  .jetimage .description {
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	padding-right: 1rem;
	color: #fff;
  }
.jetimage .btn{
	padding: 0 20px;
    height: 36px;
    line-height: 33px;
    min-width: 115px;
}
  /*
  ANIMATIONS
  */
 
.jetimage .item.active {
	flex: 1;
}
  
.jetimage .item.active .overlay {
	background-image: linear-gradient( top,	rgb(2, 2, 2),	rgba(47, 46, 46, 0) 30%);	opacity: 1;
	transition: 0.8s;
}

.jetimage .item.active .title {
	transform: scale(2);
	transform: scale(1) translateY(0);
	opacity: 1;
}

.jetimage .item.active img {
	filter: blur(0);
}

@media screen and (max-width: 575px) {
	.jetimage {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.jetimage .item:first-child {
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 0;
	}
	.jetimage .item:last-child {
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}


/*------------------------------------*\
    #Skills
\*------------------------------------*/
.skills .progressbar {
	margin-bottom: 37px;
}

.skills .progressbar:last-of-type {
	margin-bottom: 0;
}

.skills .progress {
	height: 6px;
	background-color: #eeeeee;
	border-radius: 2px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	width: 100%;
	margin-bottom: 0;
}

.skills .progress-bar {
	height: 6px;
	background-color: #418ddf;
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 0;
}

.skills .progress-title {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 8px;
}

.skills .progress-title .title {
	color: #282828;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.skills .progress-title .value {
	float: right;
	color: #9b9b9b;
	font-size: 12px;
	font-weight: 600;
	line-height: 28px;
	text-transform: uppercase;
	padding-top: 0;
}

/* Skill #2 */
.progressbar.progress-gradient .progress-bar {
	background-color: #418ddf;
	background-image: -webkit-gradient(linear, left top, right top, from(#418ddf), to(#0c6db0));
	background-image: -webkit-linear-gradient(left, #418ddf, #0c6db0);
	background-image: -moz-linear-gradient(left, #418ddf, #0c6db0);
	background-image: -ms-linear-gradient(left, #418ddf, #0c6db0);
	background-image: -o-linear-gradient(left, #418ddf, #0c6db0);
	background-image: linear-gradient(left, #418ddf, #0c6db0);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#418ddf', endColorStr='#0c6db0', gradientType='1');
}

/*------------------------------------*\
	#Video
\*------------------------------------*/
.video--content .video--player:hover {
	background-color: #418ddf;
}

.video--content .video--button .popup-video {
	width: 75px;
	height: 75px;
	line-height: 65px;
	color: #242424;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	position: relative;
	padding: 13px;
	background-color: #fff;
	border-radius: 100%;
	position: relative;
}

.video--content .video--button .popup-video::before {
	content: "";
	width: 116%;
	height: 116%;
	border: 8px solid #ffffff33;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 100%;
	margin: -6px;
}

.video--content .video--button .popup-video i {
	font-size: 48px;
	/* position: absolute;
	left: 10px;
	top: 10px; */
}

.video--content .video--button .popup-video:hover {
	color: #418ddf;
}

.video--content .video--player-bordered {
	font-size: 32px;
	border: 2px solid #eeeeee;
}

.video--content .video--player-bordered:hover {
	border-color: #418ddf;
}

.video--content .video--player-theme {
	font-size: 32px;
	border: 2px solid #418ddf;
}

.video--content .video--player-bordered a,
.video--content .video--player-theme a {
	line-height: 75px;
}

/* Button #1 */
.video-button-1 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.video-button-1 .video--content {
	width: 540px;
	height: 363px;
}

.video-button-1 .heading {
	margin-top: -8px;
}

.video-button-1 .heading .heading--title {
	font-size: 40px;
	line-height: 44px;
}

.video-button-1 p {
	color: #f4f4f4;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-style: italic;
	line-height: 24px;
	margin-bottom: 37px;
}

.video-overlay {
	align-items: center;
	padding: 10px;
	height: 100%;
	display: flex;
	justify-content: center;
}

.video-button-1 .video--button {
	width: 100%;
	height: 100%;
	border: 4px solid #ffffff;
	background-color: rgba(40, 40, 40, 0.4);
	text-align: center;
}

/* Button #4 */
.video-button-4 {
	text-align: center;
	padding-top: 190px;
	padding-bottom: 190px;
}

.video-button-4 .video--content p {
	color: #f4f4f4;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	margin-bottom: 25px;
}

.video-button-4 .video--content h3 {
	color: #ffffff;
	font-size: 55px;
	font-weight: 900;
	font-style: italic;
	line-height: 55px;
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.choose-us-imge .new-employee {
        right: 0;
		display: none;
    }
	.video-cel{
		width: 100%;
	}
	.video-cel .video-box {
		width: 83%;
		height: 300px;
		border-radius: 12px;
		overflow: hidden;
		margin-top: -50px;
		margin-bottom: 16px;
		margin-left: auto;
		margin-right: auto;
	}
}


/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.video-button-1 .video--content {
		width: 100%;
		margin-bottom: 30px;
	}

	.video-button-1 .heading .heading--title {
		font-size: 32px;
	}

	.video-button-4 {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.video-button-1 .video--content {
		width: 100%;
		margin-bottom: 30px;
	}

	.video-button-1 .heading .heading--title {
		font-size: 26px;
		line-height: 35px;
	}

	.video-button-1 p {
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 19px;
	}

	.video-button-1 {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.video-button-4 {
		padding-top: 90px;
		padding-bottom: 90px;
	}
}

/*------------------------------------*\
    #Timeline
\*------------------------------------*/
.timeline {
	position: relative;
}

.timeline:before {
	position: absolute;
	content: "";
	background-color: #cecece;
	width: 2px;
	height: 100%;
	top: -20px;
	left: 97px;
}

.timeline:after {
	position: absolute;
	content: "";
	background-color: #cecece;
	width: 2px;
	height: 20px;
	bottom: 0;
	left: 97px;
}

.timeline--item {
	position: relative;
	margin-bottom: 65px;
}

.timeline--item:last-child {
	margin-bottom: 0;
}

.timeline--item .timeline--item-date {
	color: #418ddf;
	font-size: 25px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	position: absolute;
	top: 0;
	left: 0;
}

.timeline--item .timeline--item-content {
	padding-left: 118px;
}

.timeline--item .timeline--item-content h3 {
	color: #282828;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
	position: relative;
}

.timeline--item .timeline--item-content h3:before {
	position: absolute;
	width: 30px;
	height: 25px;
	line-height: 25px;
	top: 0;
	left: -42px;
	color: #282828;
	font-size: 16px;
	font-weight: 400;
	background: #ffffff;
	content: "\f017";
	font-family: fontawesome;
}

.timeline--item .timeline--item-content p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 0;
}

/*------------------------------------*\
    #Carousel
\*------------------------------------*/
.carousel-dots .owl-controls {
	margin-top: 50px;
}

.carousel-dots .owl-controls .owl-dots .owl-dot span {
	height: 11px;
	width: 11px;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid rgba(100, 100, 100, 0.5);
	margin: 0 4px;
}

.carousel-dots .owl-controls .owl-dots .owl-dot.active span {
	background-color: #646464;
	border-color: #646464;
}

.carousel-dots.carousel-white .owl-controls .owl-dots .owl-dot span {
	border-color: rgba(255, 255, 255, 0.5);
}

.carousel-dots.carousel-white .owl-controls .owl-dots .owl-dot.active span {
	background-color: #ffffff;
	border-color: #ffffff;
}

.carousel-navs .owl-controls .owl-nav {
	position: relative;
}

.carousel-navs .owl-controls .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	height: 60px;
	line-height: 60px;
	color: #282828;
	font-size: 0;
	font-weight: 400;
	text-align: center;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	margin-top: -250px;
}

.carousel-navs .owl-controls .owl-nav [class*=owl-]:hover {
	color: #418ddf;
	background-color: transparent;
}

.carousel-navs .owl-controls .owl-nav .owl-prev {
	left: 0;
}

.carousel-navs .owl-controls .owl-nav .owl-prev:before {
	font-family: 'Linearicons-Free';
	content: "\e875";
	font-size: 40px;
}

.carousel-navs .owl-controls .owl-nav .owl-next {
	right: 0;
}

.carousel-navs .owl-controls .owl-nav .owl-next:before {
	font-family: 'Linearicons-Free';
	content: "\e876";
	font-size: 40px;
}

.carousel-navs .owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.carousel-navs .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #ffffff;
}

.carousel-navs .owl-dots .owl-dot.active span,
.carousel-navs .owl-dots .owl-dot:hover span {
	background: #ffffff;
}

/**/
.slider-dots .owl-controls {
	margin-top: 0;
}

.slider-dots .owl-controls .owl-dots {
	position: absolute;
	bottom: 30px;
	width: 100%;
}

.slider-dots .owl-controls .owl-dots .owl-dot span {
	height: 11px;
	width: 11px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid rgba(0, 0, 0, 0.6);
	margin: 0 4px;
}

.slider-dots .owl-controls .owl-dots .owl-dot.active span {
	-moz-box-shadow: 0 0 0 2px #3d3c3c;
	-webkit-box-shadow: 0 0 0 2px #3d3c3c;
	box-shadow: 0 0 0 2px #ffffff;
}

.slider-navs .owl-controls .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	height: 60px;
	width: 60px;
	line-height: 60px;
	margin-top: -30px;
	color: #ffffff;
	font-size: 0;
	font-weight: 400;
	background-color: rgba(27, 26, 26, 0.5);
	text-align: center;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.slider-navs .owl-controls .owl-nav [class*=owl-]:hover {
	color: #999999;
	background-color: #ffffff;
}

.slider-navs .owl-controls .owl-nav .owl-prev {
	left: 30px;
}

.slider-navs .owl-controls .owl-nav .owl-next:before,
.slider-navs .owl-controls .owl-nav .owl-prev:before {
	font-family: fontawesome;
	font-size: 25px;
}

.slider-navs .owl-controls .owl-nav .owl-prev:before {
	content: "\f104";
}

.slider-navs .owl-controls .owl-nav .owl-next {
	right: 30px;
}

.slider-navs .owl-controls .owl-nav .owl-next:before {
	content: "\f105";
}

.slider-navs .owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.slider-navs .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #ffffff;
}

.slider-navs .owl-dots .owl-dot.active span,
.slider-navs .owl-dots .owl-dot:hover span {
	background: #ffffff;
}

.slider-navs.slider-shop .owl-controls .owl-dots .owl-dot span {
	background-color: #3d3c3c;
	border: 2px solid #ffffff;
}

.slider-navs.slider-shop .owl-controls .owl-dots .owl-dot.active span {
	-moz-box-shadow: 0 0 0 2px #3d3c3c;
	-webkit-box-shadow: 0 0 0 2px #3d3c3c;
	box-shadow: 0 0 0 2px #3d3c3c;
}

.slider-theme.slider-navs .owl-controls .owl-nav [class*=owl-]:hover {
	color: #282828;
}

.slider-theme.slider-dots .owl-controls .owl-dots .owl-dot span {
	border-color: #418ddf;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.carousel-dots .owl-controls {
		margin-top: 20px;
	}

	.slider-navs .owl-controls .owl-nav .owl-prev {
		left: 0;
	}

	.slider-navs .owl-controls .owl-nav .owl-next {
		right: 0;
	}

	.slider-navs .owl-controls .owl-nav .owl-next:before,
	.slider-navs .owl-controls .owl-nav .owl-prev:before {
		font-size: 20px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.slider-navs .owl-controls .owl-nav .owl-next:before,
	.slider-navs .owl-controls .owl-nav .owl-prev:before {
		font-size: 30px;
	}
}

/*------------------------------------*\
    #Divider
\*------------------------------------*/
.divider--line {
	position: relative;
	height: 2px;
}

.divider--line:after {
	position: absolute;
	content: "";
	height: 2px;
	width: 40px;
	background-color: #f77f00;
	bottom: 0;
	left: 0;
	margin: 0 auto;
}

.divider--center:after {
	left: 50%;
	margin-left: -20px;
}

.divider--medium:after {
	width: 70px;
}

.divider--center.divider--medium:after {
	margin-left: -35px;
}

.divider--line.divider--white:after {
	background-color: #ffffff;
}

.divider--line.divider--gray:after {
	background-color: #9b9b9b;
}

.section-bordered {
	border-bottom: 1px solid #f0f0f0;
}

.divider--section {
	border-top: 1px solid #f0f0f0;
	margin-top: 0;
	margin-bottom: 0;
}

/*------------------------------------*\
    #Banners
\*------------------------------------*/
/* Banner #1 */
.banner-panel {
	padding: 110px 70px;
	width: 33.33333333%;
	float: left;
}

.banner-panel h6 {
	color: #616161;
	font-family: "Droid Serif";
	font-size: 14px;
	font-style: italic;
	line-height: 1;
	margin-bottom: 13px;
}

.banner-panel h3 {
	color: #282828;
	font-size: 23px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 30px;
}

.banner-panel p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 26px;
}

.banner-panel a {
	color: #418ddf;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 4px;
	text-transform: uppercase;
	position: relative;
}

.banner-panel a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 22px;
	height: 2px;
	background-color: #418ddf;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.banner-panel:hover a:after {
	width: 100%;
}

/* Banner Sale */
.banner-sale {
	min-height: 430px;
	padding-top: 100px;
	text-align: center;
}

.banner-sale h6 {
	color: #f9f9f9;
	font-size: 35px;
	font-weight: 900;
	font-style: italic;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 20px;
}

.banner-sale h6:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	margin-left: -20px;
	width: 40px;
	height: 2px;
	background-color: #418ddf;
}

.banner-sale h3 {
	color: #ffffff;
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 900;
	line-height: 70px;
	text-transform: uppercase;
	margin-bottom: 50px;
}

/* Banner More */
.banner-more {
	min-height: 430px;
	padding-top: 60px;
	padding-left: 50px;
}

.banner-more .banner--content {
	max-width: 250px;
}

.banner-more h6 {
	color: #616161;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 0;
}

.banner-more h3 {
	color: #222222;
	font-family: "Playfair Display";
	font-size: 25px;
	font-weight: 900;
	line-height: 30px;
	text-transform: capitalize;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 25px;
}

.banner-more h3:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #418ddf;
}

/* Info Box */
.info-box .col-img,
.info-box-small {
	height: 670px;
}

.info-box .btn:hover {
	background-color: #282828;
	border-color: #282828;
}

.info-box h3 {
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	font-style: italic;
	line-height: 44px;
}

.info-box p {
	color: #f4f4f4;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 40px;
}

.info-box .video--player .popup-video {
	width: 180px;
	height: 68px;
	line-height: 65px;
	border-radius: 33px;
	background-color: rgba(34, 34, 34, 0.8);
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	position: relative;
	padding-left: 50px;
}

.info-box .video--player .popup-video i {
	font-size: 48px;
	position: absolute;
	left: 10px;
	top: 10px;
}

.info-box .video--player .popup-video:hover {
	background-color: #418ddf;
}

.info-box-small {
	padding: 100px 50px;
}

.info-box-small h6 {
	height: 13px;
	color: #f4f4f4;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 12px;
}

.info-box-small h3 {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	line-height: 29px;
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.info-box-small h3:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 36px;
	height: 2px;
	background-color: #f4f4f4;
}

.info-box-small p {
	color: #f4f4f4;
	font-family: Raleway;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 25px;
}

.info-box-small .btn--white:hover {
	background-color: #418ddf;
	color: #ffffff;
	border-color: #418ddf;
}

.info-box-bar,
.info-box-bar .col-img {
	height: 450px;
}

.info-box-bar .info-box-small {
	position: relative;
	padding-left: 150px;
}

.info-box-bar .info-box-small .info-box-step {
	position: absolute;
	top: 130px;
	left: 50px;
	color: rgba(255, 255, 255, 0.3);
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	font-style: italic;
	line-height: 29px;
}

.info-box-bar-dark .info-box-small {
	padding: 110px 0 110px 112px;
}

.info-box-bar-dark .info-box-small .info-box-step {
	color: #cecece;
	left: 14px;
}

.info-box-bar-dark .info-box-small h6 {
	color: #418ddf;
}

.info-box-bar-dark .info-box-small h3 {
	color: #282828;
}

.info-box-bar-dark .info-box-small p {
	color: #9b9b9b;
}

.info-box-bar-dark .info-box-small h3:before {
	background-color: #418ddf;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.banner-panel {
		width: 100%;
		padding: 50px;
	}

	.info-box h3 {
		font-size: 30px;
	}

	.info-box-bar,
	.info-box-small {
		height: auto;
	}

	.info-box-small h3 {
		font-size: 24px;
	}

	.info-box-bar .info-box-small .info-box-step {
		top: 60px;
		left: 20px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.banner-panel {
		padding: 50px;
	}

	.info-box-bar-dark .info-box-small {
		padding: 50px 0 30px 60px;
	}

	.info-box-bar-dark .info-box-small .info-box-step {
		left: 0;
		top: 50px;
		font-size: 40px;
	}

	.info-box-small h3 {
		font-size: 16px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.info-box .col-img {
		height: 600px;
	}

	.info-box-small {
		height: auto;
	}

	.info-box-small {
		padding: 60px 50px;
	}
}

/*------------------------------------*\
    #Number Process
\*------------------------------------*/
.number-panel {
	position: relative;
}

.number-panel .number--img {
	margin-bottom: 30px;
}

.number-panel .number--img img {
	max-width: 100%;
	height: auto;
}

.number-panel .number--content h6 {
	color: #418ddf;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-style: italic;
	line-height: 1;
	margin-bottom: 14px;
	position: relative;
	z-index: 2;
}

.number-panel .number--content h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: #282828;
	margin-bottom: 21px;
}

.number-panel .number--content p {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 0;
}

.number-panel .number--content a {
	color: #418ddf;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 4px;
	text-transform: uppercase;
	position: relative;
	margin-top: 26px;
	display: inline-block;
}

.number-panel .number--content a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 22px;
	height: 2px;
	background-color: #418ddf;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.number-panel:hover .number--content a:after {
	width: 100%;
}

.number-panel .num {
	position: absolute;
	left: 0;
	top: -32px;
	color: #efefef;
	font-size: 65px;
	font-weight: 600;
	line-height: 1;
}

/* Number #1 */
.number-1 .number-panel .number--content h3 span {
	color: #418ddf;
	position: relative;
	padding-bottom: 3px;
}

.number-1 .number-panel .number--content h3 span:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #dd543d;
}

/* Number #2 */
.number-2 .number-panel .number--content h3 {
	margin-bottom: 15px;
}

/* Number #3 */
.number-3 .number-panel .num {
	left: auto;
	right: 0;
	top: -5px;
}

/* Number White */
.number-white .number-panel {
	padding: 76px 50px 57px;
}

.number-white .number-panel .number--content h6 {
	color: #f9f9f9;
}

.number-white .number-panel .number--content h3 {
	color: #ffffff;
	position: relative;
	padding-bottom: 16px;
}

.number-white .number-panel .number--content h3:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background-color: #ffffff;
}

.number-white .number-panel .number--content p {
	color: #ffffff;
}

.number-white .number-panel .number--content a {
	color: #ffffff;
}

.number-white .number-panel .number--content a:after {
	background-color: #ffffff;
}

.number-white .number-panel .num {
	position: absolute;
	left: 49px;
	top: 31px;
	color: rgba(239, 239, 239, 0.05);
	font-size: 65px;
	font-weight: 700;
	line-height: 1;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.number-panel {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.number-white .number-panel {
		padding: 20px;
	}
}

/*------------------------------------*\
    #Workflow
\*------------------------------------*/
.workflow .tab-pane {
	min-height: 597px;
}

.workflow .tab-pane .col-img {
	height: 597px;
}

.workflow .tab-pane .col-content {
	padding: 100px !important;
	height: 597px;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.16);
	border-radius: 0 2px 2px 0;
	background-color: #ffffff;
}

.workflow .tab-pane .col-content h4 {
	font-size: 35px;
	font-weight: 700;
	font-style: italic;
	line-height: 40px;
	margin-bottom: 40px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.workflow .tab-pane .col-content {
		padding: 30px !important;
		height: auto;
	}

	.workflow .tab-pane .pr-0 {
		padding-right: 15px !important;
	}

	.workflow .tab-pane .pl-0 {
		padding-left: 15px !important;
	}

	.workflow .tab-pane .col-img {
		height: auto;
		min-height: 300px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.workflow {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.workflow .tab-pane .col-content {
		padding: 50px !important;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.workflow {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.workflow .tab-pane .col-content {
		padding: 70px !important;
	}
}

/*------------------------------------*\
    #Pie Charts
\*------------------------------------*/
.pie-chart .rounded-skill .prcentage {
	width: 144px;
	height: 144px;
	line-height: 144px;
	position: absolute;
	text-align: center;
	border-radius: 50%;
	border: 3px solid #ebebeb;
	margin: 11px;
	display: inline-block;
}

.pie-chart .rounded-skill span {
	color: #418ddf;
	font-weight: 600;
	line-height: inherit;
	text-transform: uppercase;
}

.pie-chart .rounded-skill .prcent {
	font-size: 43px;
}

.pie-chart .rounded-skill .symbol {
	font-size: 23px;
}

.pie-chart .skill-name h6 {
	color: #282828;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-top: 20px;
	margin-bottom: 0;
}

.pie-chart .rounded-skill .rounded--icon {
	width: 144px;
	height: 144px;
	line-height: 144px;
	position: absolute;
	text-align: center;
	border-radius: 50%;
	border: 3px solid #ebebeb;
	margin: 11px;
	display: inline-block;
	color: #418ddf;
	font-size: 40px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.pie-chart {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #Side Nav
\*------------------------------------*/
/* Header Fixed Left */
.header-fixed-side {
	width: 270px;
	position: fixed;
	border-radius: 0;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #ffffff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-align: center;
}

.header-fixed-side .header--panel {
	width: 100%;
	height: 100%;
}

.header-fixed-side .navbar-header {
	float: none;
}

.header-fixed-side .header--panel-logo {
	width: 100%;
	display: block;
	text-align: center;
	padding: 30px 30px 30px 0;
	margin-bottom: 80px;
}

.header-fixed-side .header--panel .navbar-nav {
	margin-bottom: 0;
	padding: 30px;
	margin: 0;
	float: none;
}

.header-fixed-side .header--panel .navbar-nav>li {
	margin-right: 0;
	float: none;
	text-align: left;
	border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}

.header-fixed-side .header--panel .navbar-nav>li:last-child {
	border-bottom: none;
}

.header-fixed-side .navbar-nav a {
	font-size: 13px;
	font-weight: 800;
	font-family: 'Raleway', sans-serif;
	line-height: 39px;
	text-transform: uppercase;
	color: #333333;
	margin-bottom: 0;
	position: relative;
}

.header-fixed-side .header--panel .navbar-nav li:last-child a {
	margin-bottom: 0;
}

.header-fixed-side .header--panel .navbar-nav a:hover {
	color: #418ddf;
}

.header--panel-footer {
	position: absolute;
	bottom: 30px;
	width: 100%;
	padding-left: 45px;
}

.header-fixed-side .header--panel .header--panel-social {
	margin-bottom: 40px;
}

.header-fixed-side .header--panel .header--panel-social a {
	line-height: 24px;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	text-align: left;
	display: inline-block;
	margin-right: 24px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	float: left;
}

.header-fixed-side .header--panel .header--panel-social a:last-of-type {
	margin-right: 0;
}

.header-fixed-side .header--panel .header--panel-social a.share-facebook:hover {
	color: #3B5998;
}

.header-fixed-side .header--panel .header--panel-social a.share-twitter:hover {
	color: #00ACEE;
}

.header-fixed-side .header--panel .header--panel-social a.share-instagram:hover {
	color: #9b6954;
}

.header-fixed-side .header--panel .header--panel-social a.share-linkedin:hover {
	color: #0E76A8;
}

.header-fixed-side .header--panel .header--panel-copyright {
	text-align: left;
	font-size: 13px;
	font-weight: 400;
	color: #9b9b9b;
}

.side-header .wrapper {
	margin: 0 0 0 270px !important;
	width: auto !important;
}

.side-header .wrapper .container {
	width: auto !important;
}

/* Header Fixed White */
.header-fixed-white .header--panel .header--panel-copyright,
.header-fixed-white .header--panel .header--panel-social a,
.header-fixed-white .navbar-nav a {
	color: #ffffff;
}

.header-fixed-white .header--panel .navbar-nav>li {
	border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.header-fixed-white .header--panel .header--panel-social a:hover,
.header-fixed-white .navbar-nav a:hover {
	color: #282828 !important;
}

.header-fixed-white.bg-dark .header--panel .header--panel-social a:hover,
.header-fixed-white.bg-dark .navbar-nav a:hover {
	color: #418ddf !important;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 991px) {

	.header-fixed-side {
		width: 100%;
		position: relative;
	}

	.side-header .wrapper {
		margin: 0 !important;
	}

	.header-fixed-side .header--panel-logo {
		padding: 0 0 0 15px;
		margin-bottom: 0;
		float: left;
		width: auto;
	}

	.header--panel-footer {
		display: none;
	}

	.header-fixed-side .container>.navbar-collapse {
		margin-left: 0;
		background-color: #ffffff;
		border-top: 1px solid #f7f7f7;
	}

	.header-fixed-side .header--panel .header--panel-social a {
		color: #646464;
	}

	.header-fixed-side .navbar-nav a {
		color: #333333 !important;
	}

	.header-fixed-side .header--panel .navbar-nav a:hover {
		color: #418ddf !important;
	}
}

/*------------------------------------*\
    #Services
\*------------------------------------*/
.service-panel {
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.service-panel:hover {
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	transform: translateY(-4px);
}

.service-panel img {
	max-width: 100%;
	height: auto;
	margin-bottom: 40px;
}

.service-panel h3 {
	color: #222222;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 25px;
}

.service-panel p {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	padding: 0 17px;
	text-transform: capitalize;
}

.service-panel .link-more {
	color: #333333;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
}

.service-panel .link-more i {
	margin-right: 6px;
	opacity: 0;
}

.service-panel:hover .link-more {
	color: #418ddf;
}

.service-panel:hover .link-more i {
	opacity: 1;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.service-panel {
		margin-bottom: 30px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #Landing Page / Promo Page
\*------------------------------------*/
.landing-hero {
	height: 100vh;
	padding-top: 200px;
}

.landing-hero h6 {
	color: #f9f9f9;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
}

.landing-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 85px;
	font-weight: 900;
	line-height: 90px;
	font-style: italic;
	margin-bottom: 15px;
}

.landing-hero p {
	font-family: 'Raleway', sans-serif;
	color: #f9f9f9;
	font-size: 17px;
	font-weight: 700;
	line-height: 27px;
	padding: 0 30px;
}

.landing-demos .portfolio-filter li a {
	font-weight: 700;
	margin-right: 20px;
}

.landing-demos .portfolio-item {
	margin-bottom: 50px;
}

.landing-demos .portfolio-title h4 {
	font-family: 'Raleway', sans-serif;
	color: #282828;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 0;
}

.landing-demos .portfolio-title:hover h4 {
	color: #418ddf;
}

.landing-demos .portfolio-img {
	-moz-box-shadow: 0 0 36px 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 36px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 36px 4px rgba(0, 0, 0, 0.1);
	background-color: #c0c0c0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

.landing-demos .portfolio-img img {
	max-width: 100%;
	height: auto;
}

.landing-demos .portfolio-item:hover .portfolio-img {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}

.landing-demos .portfolio-item:hover img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.landing-demos .portfolio-bio {
	padding-top: 23px;
}

/* Landing Action*/
.wrapper-parallax {
	margin-bottom: 600px;
	position: relative;
	z-index: 50;
}

.footer-parallax {
	width: 100%;
	position: fixed;
	z-index: -1;
	bottom: 0;
	left: 0;
	height: 600px;
}

.landing-action {
	padding-top: 200px;
}

.landing-action img {
	margin-bottom: 50px;
}

.landing-action h2 {
	font-size: 65px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 50px;
}

.landing-featues {
	padding-bottom: 50px;
}

.landing-featues .feature-box {
	margin-bottom: 50px;
}

@keyframes animatedBackground {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 0;
	}
}

.bg-animate {
	background-position: 0 0;
	background-repeat: repeat-x;
	animation: animatedBackground 1s linear infinite;
}

.landing-carousel {
	margin-top: -90px;
}

.landing-carousel .owl-item .carousel-item {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.landing-carousel .owl-item.center .carousel-item {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.landing-carousel .carousel-navs .owl-controls .owl-nav [class*=owl-] {
	height: 35px;
	line-height: 35px;
	color: #999999;
	margin-top: -250px;
}

.carousel-navs .owl-controls .owl-nav .owl-prev:before,
.landing-carousel .carousel-navs .owl-controls .owl-nav .owl-next:before {
	font-size: 35px;
}

.landing-carousel .carousel-navs .owl-controls .owl-nav .owl-prev {
	left: 275px;
}

.landing-carousel .carousel-navs .owl-controls .owl-nav .owl-next {
	right: 275px;
}

/* Landing Features */
.landing-feature .feature-panel {
	margin-bottom: 50px;
}

.landing-feature .feature-panel .feature--content h3 {
	font-size: 18px;
}

/*--------------------------------------------------------------
>>> Home about section  
----------------------------------------------------------------*/
.home-about-us {
	padding-top: 110px;
	position: relative;
	z-index: 1;
}

.home-about-us .container {
	position: relative;
}

@media screen and (max-width: 767px) {
	.home-about-us {
		padding-top: 80px;
	}
}

.home-about-us .pattern-overlay {
	background-image: url(assets/img/educator-img3.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 17% auto;
	opacity: 0.3;
}

.home-about-us .about-left-content {
	margin-right: 35px;
}

@media screen and (max-width: 991px) {
	.home-about-us .about-left-content {
		margin-right: 0;
		margin-bottom: 40px;
	}
}

.home-about-us .about-left-content .figure-round-border {
	text-align: center;
}

.home-about-us .about-left-content .figure-round-border img {
	margin-bottom: 35px;
	border-radius: 25px;
	width: 100%;
}

.home-about-us .about-left-content .skill-container {
	margin-bottom: 40px;
}

.home-about-us .about-left-content .skill-container .skill-wrapper {
	margin-bottom: 30px;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .skill-titile {
	margin-bottom: 0;
	color: #0a1459;
	font-weight: 500;
	font-size: 15px;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .progress-wrapper {
	padding-top: 10px;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .progress-wrapper .progress-bar-wrap {
	background-color: #f8f8f8;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .progress-wrapper .ab-progress-bar {
	background-color: #41246D;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .progress-wrapper .progress-indecator-inner .percent {
	background-color: transparent;
	color: black;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	font-weight: 700;
}

.home-about-us .about-left-content .skill-container .skill-wrapper .progress-wrapper .progress-indecator-inner .percent:before {
	content: none;
}

.home-about-us .about-left-content .regarding-us {
	display: flex;
	margin-bottom: 25px;
}

@media screen and (max-width: 575px) {
	.home-about-us .about-left-content .regarding-us {
		display: block;
	}
}

.home-about-us .about-left-content .regarding-us .left-content {
	padding-right: 30px;
}

.home-about-us .about-left-content .regarding-us .right-content {
	padding-left: 30px;
}

.home-about-us .about-left-content .regarding-us .qulifaction-content {
	border-width: 0 0 0 1px;
	border-style: solid;
	border-color: rgba(217, 217, 217, 0.47);
	width: 50%;
}

.home-about-us .about-left-content .regarding-us .qulifaction-content:first-child {
	border-width: 0;
}

@media screen and (max-width: 575px) {
	.home-about-us .about-left-content .regarding-us .qulifaction-content {
		width: 100%;
		padding: 10px;
		border-width: 1px 0 0 0;
	}
}

.home-about-us .about-left-content .regarding-us .qulifaction-content .qualification-tag {
	display: flex;
	align-items: center;
	padding-bottom: 5px;
}

.home-about-us .about-left-content .regarding-us .qulifaction-content .qualification-tag .qualifaction-icon {
	margin-right: 15px;
}

.home-about-us .about-left-content .regarding-us .qulifaction-content .qualification-tag .qualifaction-icon i {
	font-size: 35px;
	font-weight: 400;
	color: #F24080;
}

.home-about-us .about-left-content .regarding-us .qulifaction-content .qualification-tag .qualifaction-title h5 {
	margin-bottom: 0;
}

.home-about-us .about-right-content {
	margin-left: 34px;
}

.home-about-us .about-right-content .about-desc {
	margin-bottom: 35px;
}

.home-about-us .about-right-content .figure-round-border {
	text-align: center;
}

.home-about-us .about-right-content .figure-round-border img {
	width: 100%;
}

.figure-round-border img {
	border-radius: 25px;
}

.progress-title {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	padding: 0;
	margin: 0;
}

.progress-indecator-inner {
	position: absolute;
	top: -30px;
}

.progress-wrapper .ab-progress {
	position: relative;
}

.progress-wrapper .progress-bar {
	background-color: #24436d !important;
}

.progress-wrapper .progress {
	height: 3px !important;
}

@media screen and (max-width: 991px) {
	.home-about-us .about-right-content {
		margin-left: 0;
		margin-top: 40px;
	}
}

/*------------------------------------*\
    #About
\*------------------------------------*/
.about-1 .testimonial-boxed .testimonial-panel {
	padding: 42px 0;
	margin: 0;
}

.about-1 .testimonial-boxed .testimonial-panel:hover {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: transparent;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.about-1 .testimonial-boxed {
		margin: 30px auto;
	}

	.about .text-right {
		text-align: center;
		margin-top: 30px !important;
	}

	.about {
		text-align: center;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.about-1 .testimonial {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.about-1 .testimonial-boxed {
		margin: 30px auto;
	}
}

/*------------------------------------*\
    #Trust
\*------------------------------------*/
.trust-area {
	background-color: #001F3E;
}

.trust-area h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
}

.trust-area h2 strong {
	color: #f9c764;
}

/*------------------------------------*\
    #Covers
\*------------------------------------*/
.cover-3 .testimonial-wide .testimonial-panel .testimonial--body p {
	font-size: 35px;
	font-weight: 700;
}

.cover-3 .testimonial-wide .testimonial-panel .testimonial--body {
	padding: 0;
}

.cover-5 h3 {
	font-size: 70px;
	font-weight: 900;
	font-style: italic;
	line-height: 82px;
	margin-bottom: 30px;
}

.cover-5 p {
	font-size: 16px;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 40px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

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

	.cover-3 .testimonial-wide .testimonial-panel .testimonial--body p {
		font-size: 20px;
		line-height: 28px;
	}
}

/* Small Devices, Tablets */
/*------------------------------------*\
    #SCREENSHOTS
\*------------------------------------*/
.screenshot .heading {
	margin-bottom: 115px;
}

.screenshot .carousel-dots .owl-controls {
	margin-top: 100px;
}

.device-mockup {
	background: url("../images/demo/app/holder.png") no-repeat center;
	background-size: contain;
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: -56px;
	width: 254px;
	height: 475px;
	margin-left: -128px;
}

.screenshot .owl-item:not(.center) {
	padding-bottom: 30px;
	padding-top: 0;
}

.screenshot .owl-item:not(.center) .screenshot-item {
	box-shadow: 0 2px 30px rgba(40, 40, 40, 0.2);
	background-color: #474747;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

	.device-mockup {
		display: none;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.screenshot .owl-item .screenshot-item {
		padding: 0 70px;
	}
}

/*------------------------------------*\
	#Event
\*------------------------------------*/
.calendar .calendar--heading {
	margin-bottom: 50px;
}

.calendar .calendar--heading .calendar--icon {
	background: #418ddf;
	color: #ffffff;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 2px;
	margin-bottom: 30px;
	font-size: 40px;
	text-align: center;
}

.calendar .calendar--heading h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.calendar .calendar--heading p {
	color: #9b9b9b;
	font-size: 13px;
	font-weight: 400;
}

.calendar .calendar--heading .divider--line:after {
	width: 70px;
}

.calendar .calendar--date {
	margin-bottom: 40px;
}

.calendar .calendar--date h6 {
	font-family: 'Raleway', sans-serif;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.calendar .calendar--date p {
	color: #9b9b9b;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
}

/* Custom, iPhone Retina */
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.calendar .calendar--heading h2 {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.calendar .calendar--heading p {
		margin-bottom: 10px;
	}

	.calendar .calendar--heading {
		margin-bottom: 30px;
	}
}

/*------------------------------------*\
    #Restaurant
\*------------------------------------*/
/* Restaurant Menu #1 */
.rest-1 .resturant-specials {
	padding: 100px 0;
}

.rest-1 .resturant-specials .panel-dish {
	overflow: hidden;
	padding: 0 100px;
}

.rest-1 .resturant-specials .panel-dish h4 {
	font-size: 22px;
	font-weight: 900;
	font-style: italic;
	line-height: 29px;
	margin-bottom: 10px;
}

.rest-1 .resturant-specials .panel-dish p {
	color: #9b9b9b;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 0;
}

.rest-1 .resturant-specials .panel-dish .dish-divider {
	background: url("../images/background/divider.png") no-repeat center;
	width: 100%;
	height: 3px;
	margin-top: 20px;
	margin-bottom: 25px;
}

@media (max-width: 767px) {

	.rest-1 .panel-dish {
		text-align: center;
	}

	.rest-1 .panel-dish .btn {
		text-align: center;
		margin: 10px auto;
	}
}

/* Restaurant Menu #2 */
.rest-2 .menu-content {
	box-shadow: 0 1px 73px rgba(40, 40, 40, 0.1);
	background-color: #ffffff;
}

.rest-2 .panel-dish {
	height: 400px;
}

.rest-2 .panel-dish .dish-details {
	padding: 60px 30px 0 30px;
}

.rest-2 .panel-dish .dish-details h6 {
	color: #418ddf;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.rest-2 .panel-dish .dish-details h3 {
	font-size: 26px;
	font-weight: 900;
	font-style: italic;
	line-height: 29px;
}

.rest-2 .panel-dish .dish-details .dish-divider {
	background: url("../images/background/divider2.png") no-repeat center;
	width: 100%;
	height: 3px;
	margin-top: 20px;
	margin-bottom: 25px;
}

.rest-2 .panel-dish img {
	max-width: inherit;
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.rest-2 .panel-dish .dish-details p {
	font-size: 14px;
	margin-bottom: 0;
}

/*------------------------------------*\
    #BOXED LAYOUT
\*------------------------------------*/
.page-boxed {
	background: url(../images/background/patterns/wood-dark.jpg);
}

@media only screen and (min-width: 1200px) {

	.page-boxed .wrapper {
		width: 1170px;
		margin: auto;
		-moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	}

	.page-boxed .wrapper .container {
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media only screen and (max-width: 1200px) {

	.page-boxed .wrapper {
		width: auto;
		margin: auto;
		overflow-x: hidden;
	}
}

.page-boxed .header-fixed .affix {
	background-color: transparent;
}

.page-boxed .header-fixed .affix .container {
	background-color: #ffffff;
}

.page-boxed .col-content {
	padding: 90px;
}

.page-boxed .header-fixed .affix {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}

.page-boxed .header-bordered .navbar {
	border-bottom: none;
}

/* To active Boxed Layout */
/*------------------------------------*\
    #Layout Bordered
\*------------------------------------*/
.body-bordered .bordered--line {
	position: fixed;
	display: block;
	background: #ffffff;
	z-index: 999999;
}

.body-bordered .bordered--line-top,
.body-bordered .bordered--line-bottom {
	height: 20px;
	left: 0;
	right: 0;
}

.body-bordered .bordered--line-right,
.body-bordered .bordered--line-left {
	width: 20px;
	top: 0;
	bottom: 0;
}

.body-bordered .bordered--line-top {
	top: 0;
}

.body-bordered .bordered--line-bottom {
	bottom: 0;
}

.body-bordered .bordered--line-right {
	right: 0;
}

.body-bordered .bordered--line-left {
	left: 0;
}

.body-bordered .navbar-fixed-top {
	top: 20px;
}

.body-bordered .navbar-fixed-top.affix {
	top: 0;
}

/* To active bordered Version */
/*------------------------------------*\
    #Layout Split
\*------------------------------------*/
.nav-split {
	position: fixed;
	top: 50%;
	right: 30px;
	padding: 10px;
	z-index: 99;
	margin-bottom: 0;
	list-style: none;
	border-radius: 14px;
	border: 2px solid rgba(100, 100, 100, 0.1);
	background-color: #ffffff;
}

.nav-split li a {
	width: 9px;
	height: 9px;
	border: 2px solid rgba(100, 100, 100, 0.5);
	background-color: rgba(100, 100, 100, 0);
	font-size: 0;
	border-radius: 50%;
	display: block;
	margin-bottom: 13px;
}

.nav-split li a:hover,
.nav-split li.active a {
	background-color: #646464;
	border-color: #646464;
}

.nav-split li:last-child a {
	margin-bottom: 0;
}

/* Automotive page ===========================================================
=============================================*/
.transcription {
	padding-bottom: 60px;
	padding-top: 60px;
}

.transcription .row {
	display: flex;
	align-items: center;
}

.transcription .img img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.transcription .transcription-detail {
	padding: 30px 0 60px 10px;
}

.transcription .markeeting-details .transcription-detail {
	padding-right: 10px;
	padding-left: 0;
}

.transcription .transcription-detail .head h3 {
	text-transform: capitalize;
	font-size: 30px;
	font-weight: 700;
}

/* .transcription .transcription-detail .order-btn a {
	background-color: #418EE0;
	color: #fff;
	padding: 6px 22px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
} */

.offer-section {
	padding-top: 30px;
	padding-bottom: 30px;
}

.offer-section .offer-bg {
	width: 100%;
	background: url(../images/offer-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.offer-section .offer-bg .row {
	align-items: center;
	display: flex;
}

.offer-section .offer-bg .img {
	text-align: center;
}

.offer-section .offer-bg .detail {
	padding: 0px 30px 0 0px;
}

.offer-section .offer-bg .detail h2 {
	color: #fff !important;
}

.offer-section .offer-bg .detail p {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
}

.combine {
	padding-bottom: 60px;
	padding-top: 60px;
}

.combine .img img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.combine .combine-tech {
	padding-bottom: 60px;
}

.combine .row {
	display: flex;
	align-items: center;
}

/* .combine .combine-detail .order-btn a {
	background-color: #418EE0;
	color: #fff;
	padding: 6px 22px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
} */

.head .heading--title {
	font-size: 30px;
	font-family: "Poppins", sans-serif;
	color: #282828;
	font-weight: 700;
	line-height: 35px;
	margin-bottom: 22px;
	text-transform: capitalize;
}

/* outsourcing page ================================================================
================================================ */
.outsourcing .heading {
	text-align: center;
}

.outsourcing .heading .divider--line:after {
	width: 130px;
	left: 45%;
}

.outsourcing .heading .heading--title {
	margin-bottom: 12px;
}

.outsourcing .details .icon {
	background-color: #1375dc;
	width: 65px;
	height: 65px;
	padding: 15px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	margin-right: 12px;
	margin: auto;
}

.outsourcing .details {
	margin-top: 30px;
}

.outsourcing .details .icon img {
	width: 100%;
}

.outsourcing .details .out-box-detail {
	text-align: center;
}

.outsourcing .details .out-box-detail h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 15px 0;
}

.outsourcing .services-add {
	margin-top: 50px;
}

/* .out-services */
.out-services {
	background-color: #001e3e;
}

.out-services .heading {
	text-align: center;
}

.out-services .heading .heading--title {
	color: #fff;
}

.out-services .heading .divider--line:after {
	width: 130px;
	left: 45%;
	background-color: #fff;
}

.out-services .heading .heading--desc {
	color: #fff;
}

.out-services .service-detail {
	margin-top: 90px;
}

.out-services .service-detail .service-box {
	padding: 20px 10px;
	border: 2px solid #26405B;
}

.out-services .service-detail .service-box .icon {
	width: 100px;
	height: 100px;
	padding: 15px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	margin-right: 12px;
	margin: auto;
	background-color: #fff;
	position: relative;
	margin-top: -70px;
	justify-content: center;
}

.out-services .service-detail .service-box .icon img {
	width: 85%;
}

.out-services .service-detail .service-box .heading {
	margin-top: 40px;
}

.out-services .service-detail .service-box .heading .heading--title {
	font-size: 30px;
}

.out-services .service-detail .service-box .detail-text p {
	text-align: center;
	color: #fff;
}

/* calling-section */
.calling-section {
	padding-bottom: 40px;
}

.calling-section .row {
	display: flex;
	align-items: center;
}

.calling-section .heading .heading--title {
	font-size: 30px;
	text-transform: capitalize;
}

.calling-section .suport-details {
	padding-left: 20px;
}

.calling-section .suport-details .skill-container .skill-titile {
	margin-bottom: 0;
	color: #0a1459;
	font-weight: 500;
	font-size: 15px;
}

.calling-section .suport-details .skill-container .skill-wrapper .progress-wrapper {
	padding-top: 10px;
}

.calling-section .suport-details .skill-container .skill-wrapper {
	margin-bottom: 30px;
}

.calling-section .suport-details .skill-container .skill-wrapper .progress-indecator-inner span {
	color: #000;
}

.support-client {
	padding-top: 0;
}

.support-client .suport-details {
	padding-left: 0px;
	padding-right: 60px;
}

.support-client .suport-details .contact-btn {
	margin-top: 40px;
}

/* .support-client .suport-details .contact-btn a {
	background-color: #008fdf;
	color: #fff;
	padding: 8px 30px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
} */

/* livecall */
.livecall {
	padding-bottom: 0;
}

.livecall .livecall-data {
	background-color: #006080;
	border-radius: 15px;
}

.livecall .livecall-data .row {
	display: flex;
	align-items: center;
}

.livecall .livecall-data .heading .heading--title {
	color: #fff;
	text-transform: capitalize;
}

.livecall .livecall-data .text {
	padding-right: 50px;
}

.livecall .livecall-data .text p {
	color: #fff;
}
/* Health care Page =======================================
============================ */
.health-care{
	padding-top: 190px;
	padding-bottom: 0;
	background: linear-gradient(150deg, #42A1B5 6%, #1A5F86 80%, #033769 100%);
}
.health-care .row{
	align-items: center;
	display: flex;
}
.health-care .health-data h1{
	color: #fff;
	font-size: 48px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.health-care .health-data .tagline{
	margin-bottom: 22px;
}
.health-care .health-data .tagline strong{
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}
.health-care .health-data p{
	font-size: 16px;
	color: #fff;
	font-weight: 300;
}
.health-care .health-data .get-btn{
	margin-top: 35px;
}
.health-care .health-data .get-btn a{
	background-color: #F67F00;
    /* padding: 10px 20px;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
	text-transform: uppercase; */
}
/* Medi transcript  section*/
.medi-transcript .heading{
	text-align: center;
}

.medi-transcript .medi-services .servics-box .icon{
	width: 70px;
	height: 70px;
	background-color:#114E91;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.medi-transcript .medi-services .servics-box .icon img{
	width: 100%;
}
.medi-transcript .medi-services{
	margin-top: 30px;
}
.medi-transcript .medi-services .servics-box {
	border: 1px solid #ccc;
	margin: 15px 0;
	border-radius: 10px;
	padding: 16px;
}
.medi-transcript .medi-services .servics-box a{
	display: flex;
	align-items: center;
}
.medi-transcript .medi-services .servics-box .servics-name{
	margin-left: 14px;
	width: 75%;
}
.medi-transcript .medi-services .servics-box .servics-name strong{
	font-size: 18px;
	color: #000;
}
/* .needs */
.needs{
	padding-top: 0;
}
.needs .services-need-box{
	background-color: #faa111;
	border-radius: 20px;
	padding: 10px;
}
.needs .services-need-box .row{
	align-items: center;
	display: flex;
}
.needs .services-need-box .details{
	padding-right: 50px;
}
.needs .services-need-box .details .heading .heading--title{
	color: #fff;
	line-height: 40px;
	font-size: 32px;
}
.needs .services-need-box .details p{
	font-size: 16px;
	color: #fff;
}
.needs .services-need-box .details .order-btn a{
	background-color: #30577E;
	/* padding: 8px 20px;
	border-radius: 30px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500; */
}
/* benifits */
.benifits .row{
	display: flex;
	align-items: center;
}
.benifits .heading .heading--title{
	text-transform: capitalize;
}
.benifits .row .img img{
	border-radius: 10px;
}
.benifits .row .text p{
	font-size: 15px;
}
.benifits .row  .order-btn{
	margin-top: 30px;
}
/* .benifits .row  .order-btn a{
	background-color: #418ee0 ;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 25px;
	border-radius: 30px;
} */
.benifits .beni-row-2, .benifits .beni-row-3{
	margin-top: 80px;
}
/* Duties */
.duties .detail .duties-details .duty .icon span{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #1D5288;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.duties .detail .duties-details{
	margin-top: 40px;
}
.duties .detail .duties-details .duty{
	display: flex;
}
.duties .detail .duties-details .duty .text{
	margin-left: 20px;
}
.duties .detail .duties-details .duty .text strong{
	color: #000;
	font-size: 20px;
}
.duties .heading .divider--line:after{
	left: 0;
}
.duties .heading .heading--title{
	text-transform: capitalize;
}

/* Jobs */
.career-section {
    padding: 150px 0
}

.career-section .accordion-box .accordion {
    box-shadow: 0 20px 80px rgba(0, 0, 0, .1);
    border-radius: 10px;
}
.accordion-box{
	padding: 0;
}
.accordion-box .accordion {
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.accordion-box .accordion .acc-btn {
    position: relative;
    
}
.accordion-box .accordion .acc-btn h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
	margin: 0;
}
.accordion-box .accordion .acc-btn .accordion-toggle{
	position: relative;
	display: block;
	color: #333;
	padding: 19px 40px 19px 40px;
    cursor: pointer;
}
.accordion-box .accordion .acc-btn .accordion-toggle:after {
    position: absolute;
    right: 40px;
    top: 20px;
    content: "\f068";
    font-family: fontawesome;
    font-size: 11px;
    color: #ffffff;
    background-color: #418ddf;
    border: 1px solid #418ddf;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 50px;
}
.accordion-box .accordion .acc-btn .accordion-toggle.collapsed:after {
    content: "\f067";
    color: #282828;
    background-color: transparent;
    border: none;
}
.accordion-box .accordion .acc-content .inner-box {
    position: relative;
    padding: 10px 50px 40px 40px;
}
.career-section .accordion-box .accordion .acc-content {
    padding-top: 0;
}
.career-section .accordion-box .acc-content .list-style-one {
    margin-top: 20px;
    margin-bottom: 25px;
}
.list-style-one li {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 25px;
    color: #222;
    font-weight: 500;
    padding-left: 27px;
    margin-bottom: 12px;
}
.list-style-one li:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/check-mark.svg);
    background-size: 100%;
    width: 18px;
    height: 18px;
    left: 0;
    top: 4px;
}
.career-section .accordion-box .acc-content h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 20px;
}
.career-section .accordion-box .accordion {
    box-shadow: 0 20px 80px rgba(0,0,0,.1);
    border-radius: 10px
}

.career-section .accordion-box .acc-content h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 20px
}

.career-section .accordion-box .acc-content .list-style-one {
    margin-top: 20px;
    margin-bottom: 25px;
	padding: 0;
}

.career-section .accordion-box .accordion .acc-content {
    padding-top: 0
}

.career-sidebar {
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 20px 80px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 32px 40px 40px
}

.career-sidebar h3 {
    display: block;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 22px
}

.career-sidebar .form-inner .form-group {
    position: relative;
    margin-bottom: 20px
}

.career-sidebar .form-inner .form-group:last-child {
    margin-bottom: 0
}

.career-sidebar .form-inner .form-group input[type=email],.career-sidebar .form-inner .form-group input[type=text],.career-sidebar .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 16px;
    color: #6e6e6e;
    padding: 10px 20px;
    transition: all .5s ease
}

.career-sidebar .form-inner .form-group textarea {
    height: 130px;
    resize: none
}

.career-sidebar .form-inner .form-group .theme-btn-one {
    padding: 13px 40px
}

.career-section .accordion-box .accordion .acc-btn.active .icon-box:before {
    color: #fff
}
.address-book{
	padding: 0;
    list-style: none;
    line-height: 32px;
    font-size: 14px;
    color: #464646;
}
.address-book a{
	color: #464646;
}
.address-book .fa{
	margin-right: 8px;
}


/* Our partners */
.our-partners .heading{
	text-align: center;
}
.our-partners .heading p{
	color: #000;
}

.our-partners .partner{
	display: flex;
	align-items: center;
	margin: 35px 0;
}
.our-partners .partner .img{
	width: 28%;
}
.our-partners .partner .img img{
	height: 250px;
	object-fit: cover;
}
.our-partners .partner .text{
	width: 50%;
	padding: 0 20px;
	height: 250px;
	background-color: #F5F5F5;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.our-partners .partner .text h4{
	font-size: 20px;
}
.our-partners .partner .text p{
	color: #000;
}
.our-partners .partner .skills{
	width: 22%;
	height: 250px;
	background-color: #E8E8E8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 12px;
}
.our-partners .partner .skills h4{
	margin-bottom: 10px;
	padding-left: 20px;
}
.our-partners .partner .skills span{
	color: #000;
}
/* court */
.court{
	background-color: #f2f6f7;
	padding-top: 175px;
	padding-bottom: 20px;
	width: 100%;
	background: url(../images/slider-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.court .row{
	display: flex;
	align-items: center;
}
.court-reporting .heading{
	text-align: center;
}
.court-reporting  .certificate .heading{
	text-align: left;
}
.court-reporting .court-detail .col-lg-8{
	margin: auto;
}
.court-reporting .court-detail .certificate{
	background-color: #F1F1F1;
	padding: 30px 0 30px 45px;;
	border-radius: 15px;
	margin-top: 35px;
}
.court-reporting .court-detail .certificate .row{
	display: flex;
	align-items: center;
}
/* report-network */
.report-network{
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background:  linear-gradient(to bottom, rgb(12 49 91 / 48%), rgb(12 49 91 / 60%)), url(../images/reporting-court.jpg),url(../images/reporting-court.jpg);
}
.report-network .heading{
	text-align: center;
}
.report-network .heading .heading--title{
	color: #fff;
}
.report-network .detail{
	text-align: center;
}
.report-network .detail p{
	color: #fff;
}
.report-network .detail  .contact-btn a{
	background-color: #F2641A;
}
/* services-section */
.services-section{
	background: linear-gradient(180deg, #072C56 6%, #031E3B 80%, #031E3B 100%);
}
.services-section .divider--line:after{
	left: 0;
}
.services-section  .heading .heading--title{
	color: #fff;
}
.services-section  .heading .heading--desc{
	color: #d3d0d0;
}
.services-section .services-details .service-box .icon{
	width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
	flex: auto;
}
.services-section .services-details{
	padding-right: 23px;
}
.services-section .services-details .service-box .icon img{
	filter: invert(1);
	width: 85%;
}
.services-section .services-details .service-box{
	display: flex;
	margin: 5px 0;
}
.services-section .services-details .service-box .text{
	margin-left: 15px;
}
.services-section .services-details .service-box .text strong{
	color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.services-section .services-details .service-box .text p{
	color: #d3d0d0;
}
/* why-court-support */
.why-court-support .heading{
	text-align: center;
}
.why-court-support .support-boxes{
	margin-top: 50px;
}
.why-court-support .support-boxes .box{
	padding:30px;
	background: #F1F1F1;
}
.why-court-support .support-boxes .box .icon{
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}
.why-court-support .support-boxes .box .icon img{
	width: 55%;
}
.why-court-support .support-boxes .box .detail{
	text-align: center;
	margin-top: 20px;
}
.why-court-support .support-boxes .box .detail h3{
	font-size: 18px;
    font-weight: 600;
	margin-bottom: 20px;
}
@media(max-width:500px){
	.transcription .row,.combine .row,.calling-section .row{
		display: block !important;
	}
	.transcription .transcription-detail{
		padding: 10px 0 !important;
	}
	.markeeting-details{
		margin: 20px 0 !important;
	}
	.markeeting-details .row{
		display: flex !important;
		flex-direction: column-reverse;
	}
	.offer-section .offer-bg .row{
		flex-direction:  column-reverse;
	}
	.offer-section .offer-bg .detail {
		padding: 40px 15px 40px 13px !important;
	}
	.experts-details .row{
		display: flex !important;
		flex-direction: column-reverse;
	}
	.out-services .service-detail .service-box{
		margin-bottom: 65px !important;
	}
	.livecall .livecall-data .row{
		flex-direction: column-reverse;
	}
	.livecall .livecall-data{
		padding: 0 15px !important;
	}
	.livecall .livecall-data .text{
		padding-right: 0 !important;
		padding: 20px 0 !important;
	}
	.customer-suport-img{
		margin-top: 20px;
	}
	.combine-detail .head .heading--title{
		font-size: 24px;
	}
	.outsourcing .heading .heading--title {
		font-size: 28px;
	}
	.outsourcing .heading .divider--line:after {
		left: 32%;
	}
	.support-client .suport-details{
		padding-right: 0;
	}
	/* Our PArtners */
	.our-partners .partner{
		display: block;
	}
	.our-partners .partner .img{
		width: 100%;
		
	}
	.our-partners .partner .text,.our-partners .partner .skills{
		width: 100%;
		height: auto;
		padding: 12px;
	}
	.our-partners .partner-2{
		display: flex;
		flex-direction: column-reverse;
	}
	.our-partners .heading .heading--title{
		font-size: 25px;
	}
	.our-partners .divider--line:after {
		left: 40%;
	}
	.health-care .row{
		display: block;
	}
	.medi-transcript .heading .divider--line:after {
		left: 36%;
	}
	.needs .services-need-box .row {
		flex-direction: column-reverse;
		display: flex;
	}
	.needs .services-need-box .details{
		padding-right: 0;
	}
	.benifits .row{
		display: block;
	}
	.benifits .text{
		padding: 0 !important;
	}
	.benifits .beni-row-2 .row{
		display: flex;
		flex-direction: column-reverse;
	}
	.out-services{
		padding-bottom: 0;
	}
	.court-reporting .court-detail .certificate .row{
		display:block; 
    }
	.court-reporting .court-detail .certificate{
		padding: 30px 10px 30px 10px;
	}
	.benifits .heading .heading--title{
		font-size: 30px;
		margin-top: 10px;
	}
	.why-court-support .support-boxes .box{
		margin: 15px 0;
	}
	.divider--line:after{
		left: 42%;
	}
	.court .row{
		display: block;
	}
}
@media (min-width:501px) and (max-width:768px) {
	.transcription .row,.combine .row{
		display: block !important;
	}
	.transcription .transcription-detail{
		padding: 10px 0 !important;
	}
	.markeeting-details{
		margin: 20px 0 !important;
	}
	.markeeting-details .row{
		display: flex !important;
		flex-direction: column-reverse;
	}
	.offer-section .offer-bg .detail {
		padding: 40px 15px 40px 13px !important;
	}
	.experts-details .row{
		display: flex !important;
		flex-direction: column-reverse;
	}
	.livecall .livecall-data .row{
		flex-direction: column-reverse;
	}
	.out-services .service-detail .service-box{
		margin-bottom: 65px !important;
	}
	.livecall .livecall-data{
		padding: 0 15px !important;
	}
	.livecall .livecall-data .text{
		padding-right: 0 !important;
		padding: 20px 0 !important;
	}
	.customer-suport-img{
		margin-top: 20px;
	}
	.outsourcing .row{
		display: flex;
		flex-wrap: wrap;
	}
	.outsourcing .row .col-md-6{
		width: 50%;
	}
	.calling-section .col-lg-6{
		width: 50% !important;
	}
	.our-partners .partner{
		display: block;
	}
	.our-partners .partner .img{
		width: 100%;
		
	}
	.our-partners .partner .text,.our-partners .partner .skills{
		width: 100%;
		height: auto;
		padding: 12px;
	}
	.our-partners .partner-2{
		display: flex;
		flex-direction: column-reverse;
	}
	.our-partners .heading .heading--title{
		font-size: 25px;
	}
	.our-partners .divider--line:after {
		left: 40%;
	}
	.health-care{
		padding-bottom: 20px;
	}
	.health-care .row .col-lg-8{
		width: 60%;
	}
	.health-care .row .col-lg-4{
		width: 40%;
	}
	.medi-transcript .medi-services .row{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.medi-transcript .medi-services .col-md-6{
		width: 50%;
	}
	.needs .services-need-box .row{
		flex-direction: column-reverse;
	}
	.needs .services-need-box .details {
		padding-right: 30px;
	}
	.benifits .row{
		align-items: flex-start;
	}
	.benifits .row .col-lg-5{
		width: 45%;
	}
	.benifits .row .col-lg-7{
		width: 55%;
	}
	.out-services{
		padding-bottom: 0;
	}
	.why-court-support .support-boxes .box{
		margin: 15px 0;
	}
}
@media (min-width:769px) and (max-width:991px){
	.our-partners .partner{
		display: block;
	}
	.our-partners .partner .img{
		width: 100%;
		
	}
	.our-partners .partner .text,.our-partners .partner .skills{
		width: 100%;
		height: auto;
		padding: 12px;
	}
	.our-partners .partner-2{
		display: flex;
		flex-direction: column-reverse;
	}
	.our-partners .heading .heading--title{
		font-size: 25px;
	}
	.our-partners .divider--line:after {
		left: 40%;
	}
	.health-care{
		padding-bottom: 20px;
	}
	.health-care .row .col-lg-8{
		width: 60%;
	}
	.health-care .row .col-lg-4{
		width: 40%;
	}
	.medi-transcript .medi-services .row{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.medi-transcript .medi-services .col-md-6{
		width: 50%;
	}
	.needs .services-need-box .row{
		flex-direction: column-reverse;
	}
	.needs .services-need-box .details {
		padding-right: 30px;
	}
	.benifits .row{
		align-items: flex-start;
	}
	.benifits .row .col-lg-5{
		width: 45%;
	}
	.benifits .row .col-lg-7{
		width: 55%;
	}
	.out-services{
		padding-bottom: 0;
	}
}
@media (min-width:992px) and (max-width:1024px) {
	.out-services .service-detail .service-box .heading .heading--title{
		font-size: 25px !important;
	}
	.calling-section .col-lg-6, .livecall-data .col-lg-6,.transcription-detail .col-lg-6,.markeeting-details .col-lg-6, .combine .col-lg-6{
		width: 50% !important;
	}
	.our-partners .partner .skills,.our-partners .partner .text,.our-partners .partner .img img {
		height: 285px;
	}
	.health-care{
		padding-bottom: 20px;
	}
	.health-care .row .col-lg-8{
		width: 60%;
	}
	.health-care .row .col-lg-4{
		width: 40%;
	}
	.needs .services-need-box .col-lg-5{
		width: 40%;
	}
	.needs .services-need-box .col-lg-7{
		width: 60%;
	}
	.needs .services-need-box{
		padding: 15px 0;
	}
	.benifits .row .col-lg-5{
		width: 45%;
	}
	.benifits .row .col-lg-7{
		width: 55%;
	}
	.duties .row{
		display: flex;
	}
	.duties .col-lg-8{
		width: 70%;
	}
	.duties .col-lg-4{
		width: 30%;
	}
}