@charset "utf-8";
/**
*** Table Of Contents
**/
/*
** Template colors
*

Accent Colors:
1: var(--colorMain)
2: var(--colorMain2)
3: var(--colorMain3)
4: var(--colorMain4)

Light section (.ls) colors:
Text color in light section: #808080
Background color for light section and font color in dark section: #ffffff
Color for headings in light section and for background in dark section (.ds): var(--darkgreyColor)
Background color for light muted section (grey - .ls.ms): #f2f2f2
Background color for dark muted section (.ds.ms): var(--darkColor)
Border colors for elements in light section (and .bordered elements): rgba(76, 76, 76, 0.1), rgba(0, 0, 0, 0.1)
Background color for elements in light section (.hero-bg): #f7f6fb

Dark section (.ds) colors: 
Text color in dark section: #9a9a9a
Border colors for elements in dark section: #454545
Background color for elements in dark section (.hero-bg): rgba(255, 255, 255, 0.05)

Color section (.cs) colors: 
Background color for elements in color section: rgba(255, 255, 255, 0.1)
Border color for elements in color section: rgba(255, 255, 255, 0.15)


1. Common tags styles
2. Styled lists
3. Overrides for default Bootstrap components
4. jQuery plugins styles
  - owl
  - flexslider
  - photoswipe
  - piechart
  - timetable
  - totop
  - countdown
5. Bootstrap Addons helpers styles for sections and elements
  - horizontal
  - vertical
  - sections
  - media_items
  - buttons
6. Light background sections (.ls) styles
7. Dark background sections (.ds) styles
8. Color background sections (.cs) styles
9. Bootstrap Addons utility styles
  - layout
  - colors
  - spacing
10. Shortcodes styles
  - icon-box
  - special-heading
  - number-card
  - price_table
  - quote-item
  - items-masonry
11. Widgets styles
  - search_mailchimp
  - nav_cat_arch_meta_pages
  - calendar
  - rss
  - tag_cloud
  - flickr
  - instagram
  - access_press
  - twitter
  - post_slider
  - post_tabs
  - post_2cols
12. Social icons styles
13. WordPress styles
14. Menu styles
15. Header styles
16. Side header styles
17. Intro section styles
18. Common sub-pages styles
19. Template specific sections styles
*/
:root {
	--accent-color-1: var(--colorMain);
}

:root {
	--accent-color-2: var(--colorMain2);
}

:root {
	--accent-color-3: var(--colorMain3);
}

/*
** General Styles for HTML tags
*/
html {
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}

::-moz-selection {
	background-color: var(--colorMain);
	color: #fff;
}

::selection {
	background-color: var(--colorMain);
	color: #fff;
}

::-moz-selection {
	background-color: var(--colorMain);
	color: #fff;
}

body {
	background-color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	overflow: visible;
	overflow-x: hidden;
	overflow-y: scroll;
	position: relative;
}

@media (max-width: 1199px) {
	body.overflow-hidden-lg {
		overflow: hidden;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-feature-settings: "lnum" 1;
	        font-feature-settings: "lnum" 1;
	font-variant-numeric: lining-nums;
	font-weight: bold;
	letter-spacing: 0.03em;
	line-height: 1.4;
	margin-bottom: 0.65em;
	margin-top: 0.65em;
	word-break: break-word;
}

h1 {
	font-size: 60px;
	margin-bottom: 0.2em;
	margin-top: 0.8em;
}

h2 {
	font-size: 50px;
	margin-bottom: 0.25em;
	margin-top: 0.65em;
}

h3 {
	font-size: 40px;
	margin-bottom: 0.5em;
	margin-top: 0.9em;
}

h4 {
	font-size: 30px;
	margin-bottom: 0.6em;
	margin-top: 1.3em;
}

h5 {
	font-size: 24px;
	margin-bottom: 0.9em;
	margin-top: 1.8em;
}

h6 {
	font-size: 20px;
	margin-bottom: 1.2em;
	margin-top: 2.2em;
}

@media (max-width: 575px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	h3 {
		font-size: 1.4rem;
	}

	h4 {
		font-size: 1.3rem;
	}

	h5 {
		font-size: 1.2rem;
	}

	h6 {
		font-size: 1.1rem;
	}
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}

p {
	margin-bottom: 1.2em;
}

ul:last-child,
ol:last-child,
p:last-child {
	margin-bottom: 0;
}

p:last-child:after {
	clear: both;
	content: "";
	display: block;
}

img,
figure {
	height: auto;
	max-width: 100%;
}

figcaption {
	font-size: 0.95em;
	line-height: 1.4;
	padding: 10px 0 7px;
}

figcaption p {
	margin-bottom: 0;
}

b,
strong {
	font-weight: 700;
}

label {
	color: var(--darkgreyColor);
}

a {
	color: #4c4c4c;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

a:hover {
	color: var(--colorMain);
	text-decoration: none;
	-webkit-transition: all 0.15s linear 0s;
	transition: all 0.15s linear 0s;
}

blockquote {
	border-left: 0;
	font-size: 20px;
	font-style: italic;
	line-height: 30px;
	margin: 40px 0;
	padding: .4em 0 .4em 90px;
	position: relative;
}

@media (max-width: 768px) {
	blockquote {
		padding: .4em 0 .4em 70px;
	}
}

@media (max-width: 576px) {
	blockquote {
		padding: .4em 0 .4em 0;
	}
}

blockquote:before {
	background: var(--colorMain);
	background: -webkit-gradient(left top, right top, color-stop(0%, var(--colorMainRgba1)), color-stop(100%, var(--colorMain3Rgba1)));
	background: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	border: 0;
	border-radius: 50%;
	color: #fff;
	content: "‘‘";
	font-family: "Rasa", serif;
	font-size: 80px;
	height: 60px;
	left: 0;
	line-height: 90px;
	position: absolute;
	text-align: center;
	text-indent: -15px;
	top: 0;
	width: 60px;
}

@media (max-width: 576px) {
	blockquote:before {
		display: none;
	}
}

blockquote header,
blockquote footer {
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.4em;
	line-height: 1.2;
	text-transform: uppercase;
}

blockquote header {
	margin-bottom: 30px;
}

@media (max-width: 576px) {
	blockquote header {
		margin-bottom: 20px;
	}
}

blockquote footer {
	margin-top: 30px;
}

@media (max-width: 576px) {
	blockquote footer {
		margin-top: 20px;
	}
}

blockquote .media {
	margin: 15px 0;
}

blockquote .media img {
	border-radius: 50%;
	max-width: 60px;
}

blockquote h3,
blockquote h4,
blockquote .text-small {
	font-style: normal;
}

blockquote.wp-block-quote:before {
	display: inline-block;
	position: static;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
	outline: medium none;
	text-decoration: none;
}

a > img {
	-webkit-transition: all 0.15s ease-in-out 0s;
	transition: all 0.15s ease-in-out 0s;
}

a:hover > img {
	opacity: 0.8;
}

a.btn:active,
a.button:active,
button:active,
input[type="submit"]:active {
	position: relative;
	top: 0 !important;
}

hr {
	border-color: rgba(76, 76, 76, 0.1);
	margin-bottom: 30px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 30px;
}

iframe {
	border: none;
	max-width: 100%;
}

table {
	margin: 10px 0;
	max-width: 100%;
	width: 100%;
}

table td,
table th {
	border: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 1.42857143;
	padding: 13px 8px;
	vertical-align: top;
}

table th {
	color: var(--darkgreyColor);
	font-weight: normal;
	vertical-align: middle;
}

canvas {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

pre {
	background-color: rgba(150, 150, 150, 0.05);
	line-height: 1.5;
	padding: 0.5em 1em;
}

p.big {
	font-size: 20px;
	line-height: 1.5em;
}

.media h3 {
	text-transform: uppercase;
}

.media .dropcap {
	margin-right: 0;
}

.small-text {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.small-text.extra-letter-spacing {
		letter-spacing: 1em;
	}
}

ul,
ol {
	padding-left: 1.15rem;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

.list-bordered {
	list-style: none;
	overflow: hidden;
	padding: 0;
}

.list-bordered li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	border-top: 1px solid rgba(76, 76, 76, 0.1);
	padding-bottom: 15px;
	padding-top: 14px;
}

.list-bordered li + li {
	border-top: none;
}

.list-bordered.no-top-border > li:first-child {
	border-top: none;
}

.list-bordered.no-bottom-border > li:last-child {
	border-bottom: none;
}

.list1 ol,
ol.list1 {
	counter-reset: li;
	list-style: none outside none;
	margin-bottom: 0;
	padding: 0;
}

.list1 ol li,
ol.list1 li {
	color: #4c4c4c;
	font-size: 16px;
	line-height: 30px;
	padding: 4px 0 4px 30px;
	position: relative;
}

.list1 ol li:after,
ol.list1 li:after {
	color: var(--colorMain3);
	content: counter(li, decimal-leading-zero) ".";
	counter-increment: li;
	font-weight: 500;
	left: 2px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
}

.ds .list1 ol li,
.ds
ol.list1 li {
	color: #fff;
}

.list1 ul,
ul.list1 {
	list-style: none;
	margin-bottom: 20px;
	padding-left: 10px;
}

.list1 ul li,
ul.list1 li {
	color: #4c4c4c;
	font-size: 16px;
	line-height: 30px;
	padding: 5px 0 5px 5px;
	position: relative;
}

.ds .list1 ul li,
.ds
ul.list1 li {
	color: #fff;
}

.list1 ul li:before,
ul.list1 li:before {
	color: var(--colorMain3);
	content: "\f111";
	font-family: "FontAwesome";
	font-size: 5px;
	left: -10px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
}

/*
** Bootstrap Overrides
*/
/* bootstrap breadcrumbs*/
.breadcrumb {
	background-color: transparent;
	border-radius: 0;
	color: inherit;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.4em;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.breadcrumb > li {
	display: inline-block;
	float: none;
	padding: 0;
}

.breadcrumb .breadcrumb-item {
	color: #fff;
}

.breadcrumb .breadcrumb-item a {
	color: #fff;
}

.breadcrumb .breadcrumb-item a:hover {
	opacity: 0.6;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
	padding-left: 0;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	display: inline-block;
}

@media (min-width: 992px) {
	.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
		padding: 0 20px;
	}
}

.text-center .breadcrumb {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

@media (min-width: 992px) {
	.text-lg-right .breadcrumb {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}
}

.breadcrumb > .active {
	color: inherit;
	opacity: 0.9;
}

.breadcrumb-item + .breadcrumb-item::before {
	color: inherit;
	padding: 0 11px;
}

/* forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select,
.form-control {
	background-color: transparent;
	border: 1px solid rgba(76, 76, 76, 0.1);
	border-radius: 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	color: var(--darkColor);
	font-size: 12px;
	height: 60px;
	letter-spacing: 0.2em;
	padding-bottom: 9px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 9px;
	width: 100%;
}

input[disabled] {
	cursor: not-allowed;
	opacity: .4;
}

[type="submit"],
button {
	cursor: pointer;
}

[type="submit"],
[type="reset"],
button {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.ds [type="submit"]:not([class]),
.cs [type="submit"]:not([class]),
.ds
[type="reset"]:not([class]),
.cs
[type="reset"]:not([class]),
.ds
button:not([class]),
.cs
button:not([class]) {
	border-color: #fff;
	color: #fff;
}

[type="reset"] {
	color: inherit;
}

textarea,
textarea.form-control {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	height: auto;
	padding-top: 20px;
}

.form-group {
	position: relative;
}

[class*='col-'] > .form-group {
	margin-bottom: 0;
}

[class*='col-'] > .form-group + .form-group {
	margin-top: 10px;
}

.field-select {
	position: relative;
}

.has-placeholder label {
	display: none;
}

/* select styling */
select[multiple] {
	height: auto;
}

select {
	color: #808080;
	text-transform: uppercase !important;
}

select option,
.form-control option {
	background-color: #fff;
	color: #808080;
	text-transform: uppercase !important;
}

.form-control-unstyled {
	background-color: transparent;
	border: none;
}

.form-control,
.form-control:focus {
	box-shadow: none;
}

.form-control.invalid {
	box-shadow: 0 0 0 2px var(--colorMain);
}

.form-control:focus {
	background-color: transparent;
	border-color: rgba(38, 38, 38, 0.1);
}

.form-control:-moz-placeholder {
	color: #808080;
	opacity: 1;
	text-transform: uppercase;
}

.form-control::-moz-placeholder {
	color: #808080;
	font-style: normal;
	opacity: 1;
	text-transform: uppercase;
}

.form-control:-ms-input-placeholder {
	color: #808080;
	font-style: normal;
	text-transform: uppercase;
}

.form-control::-webkit-input-placeholder {
	color: #808080;
	font-style: normal;
	text-transform: uppercase;
}

.form-control:focus:-moz-placeholder {
	color: transparent;
}

.form-control:focus::-moz-placeholder {
	color: transparent;
}

.form-control:focus:-ms-input-placeholder {
	color: transparent;
}

.form-control:focus::-webkit-input-placeholder {
	color: transparent;
}

/*icons for forms */
form .has-placeholder label + [class*="fa-"] {
	color: var(--colorMain);
	top: 22px !important;
}

form .has-placeholder label + [class*="fa-"] + input,
form .has-placeholder label + [class*="fa-"] + textarea {
	padding-left: 60px;
}

form label + [class*="fa-"] {
	font-size: 16px;
	left: 28px;
	position: absolute;
	text-align: center;
	top: 60px;
	width: 1em;
}

form .field-select [class*="fa-"] {
	color: var(--colorMain);
	font-size: 16px;
	left: 28px;
	position: absolute;
	text-align: center;
	top: 22px;
	width: 1em;
}

form label + [class*="fa-"] + .form-control {
	padding-left: 60px;
}

form .field-select [class*="fa-"] + .select_container select {
	padding-left: 60px;
}

.select_container,
.select_container:after,
.select_container select {
	-webkit-transition: all ease .3s;
	transition: all ease .3s;
}

/* Select styling */
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}

.select_container {
	position: relative;
}

aside .select_container,
.page_footer .select_container,
.footer-fullwidth .select_container {
	margin: 0 auto;
	max-width: 370px;
}

.select_container select {
	cursor: pointer;
	width: 100%;
}

.select_container select option {
	color: #4c4c4c !important;
}

.select_container::before {
	color: var(--colorMain);
	content: "\f107";
	cursor: pointer;
	display: block;
	font-family: "FontAwesome";
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 40px;
	z-index: 1;
}

.select_container::after {
	bottom: 0;
	color: #808080;
	content: "";
	cursor: pointer;
	display: block;
	font-family: "FontAwesome";
	left: 0;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 30px;
	z-index: 1;
}

label {
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
}

.checkbox label,
.radio label {
	font-weight: inherit;
}

.checkbox label[for],
.radio label[for] {
	color: #808080;
	cursor: pointer;
	font-weight: inherit;
	text-transform: none;
}

label[for] {
	cursor: pointer;
}

.checkbox label[for] + input[type=checkbox],
.checkbox label[for] + input[type=radio],
.radio label[for] + input[type=checkbox],
.radio label[for] + input[type=radio] {
	left: 20px;
}

.checkbox .form-check,
.radio .form-check {
	padding: 0;
}

.field-checkbox {
	margin-top: 25px;
}

input[type=checkbox],
input[type=radio] {
	margin-top: 8px;
}

.form-wrapper.hero-bg,
.form-wrapper.muted-bg,
.form-wrapper.cs,
.form-wrapper.ds,
.form-wrapper.ls {
	padding: 35px;
}

.has-error .form-control {
	border-color: var(--colorMain);
}

.has-error label,
.has-error .help-block {
	color: var(--colorMain);
}

/*styled checkbox */
.checkbox input[type="checkbox"] {
	display: none;
}

.checkbox label + input[type="checkbox"],
.checkbox label > input[type="checkbox"] {
	display: inline-block;
}

input[type="checkbox"] + label {
	padding-left: 0;
}

input[type="checkbox"] + label > a {
	color: var(--darkgreyColor);
}

input[type="checkbox"] + label:before {
	border: 1px solid rgba(76, 76, 76, 0.1);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	content: "";
	display: inline-block;
	font-family: "FontAwesome";
	font-size: 15px;
	height: 16px;
	line-height: 14px;
	margin: 1px 10px 4px 0;
	padding-right: 0.1em;
	text-align: center;
	vertical-align: middle;
	width: 16px;
}

input[type="checkbox"]:checked + label:before {
	color: var(--darkgreyColor);
	content: "\f00c";
}

input[type="checkbox"]:disabled + label:before {
	background-color: rgba(76, 76, 76, 0.1);
}

/*styled radio*/
.radio input[type="radio"] {
	display: none;
}

.radio label + input[type="radio"],
.radio label > input[type="radio"] {
	display: inline-block;
}

input[type="radio"] + label {
	padding-left: 0;
}

input[type="radio"] + label > a {
	color: #999;
}

input[type="radio"] + label:before {
	border: 2px solid rgba(76, 76, 76, 0.1);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 16px;
	margin-bottom: 2px;
	margin-right: 10px;
	vertical-align: middle;
	width: 16px;
}

input[type="radio"]:checked + label:before {
	background-clip: content-box;
	background-color: var(--darkgreyColor);
	padding: 3px;
}

input[type="radio"]:disabled + label:before {
	background-color: rgba(76, 76, 76, 0.1);
}

/* carousel */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
	display: block;
}

.carousel-indicators li {
	border-radius: 50%;
	height: 10px;
	max-width: 10px;
}

/*progress bars*/
p + .progress {
	margin-top: -12px;
}

.progress {
	background-color: #f4f4f5;
	border: none;
	border-radius: 5px;
	box-shadow: none;
	color: #4c4c4c;
	height: 4px;
	margin-bottom: 18px;
	overflow: visible;
	position: relative;
}

.progress:last-child {
	margin-bottom: 10px;
}

.progress-bar {
	background-color: var(--colorMain);
	box-shadow: none;
	color: inherit;
	height: 5px;
}

.progress-bar span {
	color: #4c4c4c;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	position: absolute;
	right: 0;
	top: -28px;
}

.progress-title {
	color: #808080;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.4;
	margin-bottom: 23px !important;
	padding-right: 40px;
	text-transform: uppercase;
}

.progress-level {
	float: right;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	top: 4px;
}

.progress-bar-success {
	background-color: #32b9c2;
}

.progress-bar-info {
	background-color: #3197d4;
}

.progress-bar-warning {
	background-color: #f7b432;
}

.progress-bar-danger {
	background-color: #fb4f1b;
}

.alert {
	border-radius: 0;
	border-width: 0 0 0 4px;
	margin-bottom: 40px;
	padding: 30px;
}

.media {
	margin-top: 16px;
}

.media .media-object {
	max-width: 100px;
}

/* bootstrap tabs*/
.nav-tabs {
	border-bottom: none;
}

.nav-tabs .nav-link {
	background-color: #f7f6fb;
	border: 0;
	border-radius: 5px 5px 0 0;
	margin-right: 1px;
	text-align: center;
}

@media (min-width: 1680px) {
	.nav-tabs .nav-link {
		min-width: 250px;
		padding: 30px 30px;
	}
}

.nav-tabs .nav-link:hover {
	opacity: 0.9;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background-color: var(--colorMain3) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	border-color: var(--colorMain3);
	color: #fff;
}

@media (max-width: 992px) {
	.nav-item,
	.nav-link {
		display: block;
		max-width: 100%;
		width: 100% !important;
	}

	.nav-tabs {
		border-radius: 5px 5px 0 0;
		margin: 0 -2px;
		overflow: hidden;
	}

	.nav-link {
		border-radius: 0 !important;
	}
}

.nav-link {
	color: var(--colorMain3);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	padding: 15px 28px;
	text-transform: uppercase;
}

.small-tabs .nav-link {
	padding: 10px 15px;
}

.tab-content {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	padding: 20px 20px;
}

@media (min-width: 1680px) {
	.tab-content {
		padding: 50px 55px;
	}
}

@media (min-width: 768px) {
	.tab-content {
		padding: 40px 40px;
	}
}

.tab-content strong {
	color: #4c4c4c;
}

.tab-pane .media img {
	max-width: 40%;
}

.tab-pane .media img:first-child {
	margin-right: 10px;
}

.tab-pane .media h3,
.tab-pane .media h4,
.tab-pane .media h5 {
	font-weight: 900;
}

/* bootstrap collapse*/
[data-toggle="collapse"] {
	display: inline-block;
	margin-bottom: 0;
	padding-right: 20px;
	position: relative;
}

[data-toggle="collapse"]:before {
	content: "\f078";
	font-family: "FontAwesome";
	font-size: 10px;
	left: 0;
	position: absolute;
	top: 15px;
}

[data-toggle="collapse"].collapsed {
	margin-bottom: 19px;
}

[data-toggle="collapse"].collapsed:before {
	content: "\f054";
}

[role="tablist"] .card {
	background: none;
	border: none;
	border-radius: 0;
}

[role="tablist"] .card-header {
	background: none;
	border: none;
	padding: 0;
}

[role="tablist"] .card-header a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	padding: 5px 0px 5px 35px;
	position: relative;
}

[role="tablist"] .card-header a:before {
	bottom: 0;
	color: var(--colorMain3);
	content: "";
	font-family: inherit;
	font-size: 26px;
	font-weight: 300;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
	width: 24px;
}

[role="tablist"] .card-header a:before {
	background: none;
	bottom: auto;
	content: "-";
	height: 30px;
	line-height: 30px;
	top: 1px;
	vertical-align: middle;
}

[role="tablist"] .card-header a:hover {
	color: inherit;
	opacity: 0.7;
}

[role="tablist"] .card-header a.collapsed:before {
	content: "+";
}

[role="tablist"] .card-body {
	padding: 0 35px 20px;
}

[role="tablist"] .media img {
	max-width: 80px;
}

/* bootstrap dropdown menu */
.dropdown-menu {
	background-color: #fff;
	border: none;
	border-radius: 0;
	border-top: 3px solid var(--colorMain);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	font-size: inherit;
	line-height: 1.5;
	margin-top: 0;
	padding: 40px;
	z-index: 1001;
}

.dropdown-menu > a {
	display: block;
	white-space: nowrap;
}

.dropdown-menu > a > img {
	max-width: none;
}

.dropdown-menu > a + a {
	margin-top: 1.5em;
}

.dropdown .dropdown-menu label,
.dropdown .dropdown-menu h3,
.dropdown .dropdown-menu h4 {
	color: var(--darkgreyColor);
}

.dropdown.show .dropdown-menu input {
	border: 1px solid rgba(76, 76, 76, 0.1);
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
	background-color: transparent;
	color: var(--darkgreyColor);
}

.dropdwon-menu-title {
	padding: 10px 30px;
}

@media (min-width: 1300px) {
	.container {
		max-width: 1200px;
	}
}

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

.modal-backdrop.show {
	background-color: var(--colorMain);
	opacity: 0.7;
}

.modal-content {
	border-radius: 1px;
}

.modal-content [class*="col-"]:last-child {
	margin-bottom: 0;
}

/* bootstrap buttons */
.btn {
	border-radius: 6px;
	border-width: 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	letter-spacing: 0;
	line-height: 1.6em;
	margin-bottom: 10px;
	overflow: hidden;
	padding: 2px;
	position: relative;
	text-transform: uppercase;
}

.btn span,
.btn input {
	border: 0;
	border-radius: 4px;
	display: block;
	height: 100%;
	padding: 18px 15px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: 100%;
}

.btn.round,
.btn.rounded {
	line-height: 1;
	padding: 23px;
}

.btn.small-btn {
	max-width: 180px;
	min-width: 140px;
}

.btn.small-btn span {
	padding: 9px 15px;
	white-space: normal;
	word-break: break-all;
}

/* media elements */
.media > img {
	display: block;
}

.media-body h3,
.media-body h4 {
	line-height: 1;
	margin-bottom: 0.2em;
	margin-top: 0.3em;
}

* + .media-body,
.media-body + * {
	margin-left: 20px;
}

td .media-body {
	width: auto;
}

.embed-responsive-3by2 {
	background-color: #000;
	height: 0;
	padding-bottom: 66.666%;
}

.embed-placeholder:after {
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	content: "\f04b";
	font-family: "FontAwesome";
	font-size: 14px;
	height: 60px;
	left: 50%;
	line-height: 56px;
	margin-left: -30px;
	margin-top: -30px;
	position: absolute;
	text-align: center;
	top: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 60px;
}

.embed-placeholder:hover:after {
	opacity: 0.4;
}

.embed-placeholder.icon2:after {
	background-color: #fff;
	content: "";
	-webkit-mask: url("../img/icon-play.png") no-repeat center/contain;
}

@media (max-width: 767px) {
	.side-video .embed-placeholder.icon2:after {
		display: none;
	}
}

.alert {
	border-radius: 0;
	border-width: 0 0 0 4px;
	margin-bottom: 40px;
	padding: 30px;
}

.mark,
mark {
	background-color: transparent;
}

button.close {
	min-width: 0;
}

/* small in headings */
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
	color: inherit;
	font-weight: 300;
}

/* labels */
.label-success {
	background-color: #32b9c2;
	color: #fff;
}

.label-info {
	background-color: #3197d4;
	color: #fff;
}

.label-warning {
	background-color: #f7b432;
	color: #fff;
}

.label-danger {
	background-color: #fb4f1b;
	color: #fff;
}

/*
**plugins
*/
/* Owl carousel v 2.1.6 styles */
/* Owl Carousel - Core */
.owl-carousel {
	display: none;
	position: relative;
	-webkit-tap-color-main-color: transparent;
	touch-action: manipulation;
	width: 100%;
	z-index: 1;
}

.owl-carousel .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel.owl-shadow .owl-stage {
	padding-bottom: 5px;
}

.owl-carousel.owl-shadow .owl-stage-outer {
	margin-bottom: -5px;
}

.owl-carousel .owl-stage:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.owl-carousel .owl-stage-outer {
	margin-left: -10px;
	margin-right: -10px;
	overflow: hidden;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	float: left;
	min-height: 1px;
	position: relative;
	-webkit-tap-color-main-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item .box-shadow {
	height: 100%;
}

.owl-carousel .owl-item img {
	-webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	display: block;
	opacity: 0;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	display: none;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.owl-carousel .owl-dots {
	line-height: 1;
	-webkit-tap-color-main-color: transparent;
	text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
	*display: inline;
	display: inline-block;
	zoom: 1;
}

.owl-carousel .owl-dots .owl-dot span {
	-webkit-backface-visibility: visible;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	display: block;
	height: 8px;
	margin: 5px 12px;
	opacity: 0.5;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	width: 8px;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
	border-color: #fff;
	opacity: 1;
}

.owl-carousel .owl-nav {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.owl-carousel .owl-nav > div {
	display: inline-block;
	opacity: 0.5;
	right: 10px;
	text-transform: uppercase;
}

.owl-carousel .owl-nav > div.disabled {
	cursor: default;
	opacity: 0.2;
}

.owl-carousel .owl-nav > div.disabled:hover {
	cursor: default;
	opacity: 0.2;
}

.owl-carousel .owl-nav > div:hover {
	opacity: 0.3;
}

@media (min-width: 768px) {
	.owl-carousel .owl-nav > div i {
		font-size: 34px;
	}
}

.owl-carousel .owl-nav > div:first-child {
	left: 10px;
	right: auto;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	        animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	        animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	        transform-style: preserve-3d;
}

/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	background: #000;
	height: 100%;
	position: relative;
}

.owl-carousel .owl-video-play-icon {
	-webkit-backface-visibility: hidden;
	background: url("../img/owl.video.play.png") no-repeat;
	cursor: pointer;
	height: 80px;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	position: absolute;
	top: 50%;
	-webkit-transition: -webkit-transform 100ms ease;
	transition: -webkit-transform 100ms ease;
	transition: transform 100ms ease;
	transition: transform 100ms ease, -webkit-transform 100ms ease;
	width: 80px;
	z-index: 1;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	    -ms-transform: scale(1.3, 1.3);
	        transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 1;
}

/*
THEMES
Owl Default Theme
*/
.owl-theme:hover .owl-nav {
	opacity: 1;
}

.owl-theme .owl-nav {
	left: 0;
	opacity: 1;
	position: absolute;
	right: 0;
	-webkit-tap-color-main-color: transparent;
	text-align: center;
	top: 50%;
}

.owl-theme .owl-nav > div {
	position: absolute;
	right: 10px;
	text-align: center;
}

.owl-theme .owl-nav .disabled {
	cursor: default;
	opacity: 0.5;
}

.owl-theme .owl-dots {
	margin-top: 40px;
}

.item-media .owl-theme .owl-dots {
	bottom: 20px;
	left: 0;
	margin: 0;
	position: absolute;
	right: 0;
}

/* .owl-center theme */
.owl-center .owl-nav {
	bottom: 0;
	margin-top: 0;
	opacity: 1;
	position: static;
	top: 0;
}

.owl-center .owl-nav > div {
	background-color: var(--darkgreyColorRgba06);
	bottom: 0;
	height: auto;
	margin: 0;
	right: -15px;
	top: 0;
	width: 50px;
}

.owl-center .owl-nav > div:first-child {
	left: -15px;
	right: auto;
}

.owl-center .owl-nav > div:first-child:after {
	left: 13px;
}

.owl-center .owl-nav > div:after {
	color: #fff;
	font-size: 20px;
	left: 17px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
}

/*theme with nav at the top right corner*/
.top-right-nav .owl-nav {
	position: absolute;
	right: 0;
	text-align: right;
	top: -60px;
}

.top-right-nav .owl-nav > div {
	background: transparent;
	min-width: 2em;
}

.top-right-nav .owl-nav > div:first-child {
	left: auto;
	right: 3em;
}

.top-right-nav .owl-nav > div i {
	font-size: 1em;
}

/*theme with text nav*/
.owl-text-nav .owl-nav {
	display: none;
	-webkit-tap-color-main-color: transparent;
	text-align: center;
}

@media (min-width: 1560px) {
	.owl-text-nav .owl-nav {
		display: block;
		left: -13vw;
		position: absolute;
		right: -13vw;
		top: 50%;
	}
}

@media (min-width: 1800px) {
	.owl-text-nav .owl-nav {
		left: -15vw;
		right: -15vw;
	}
}

.owl-text-nav .owl-nav > div {
	margin-top: -30px;
	position: absolute;
	right: 10px;
	text-align: center;
}

.owl-text-nav .owl-nav > div > span {
	display: block;
	font-weight: 900;
	line-height: 1;
}

@media (min-width: 1560px) {
	.owl-text-nav .owl-nav > div > span {
		font-size: 38px;
		line-height: 1;
		max-width: 5em;
	}
}

.small-gallery-carousel a {
	display: block;
	overflow: hidden;
}

.small-gallery-carousel a img {
	opacity: 0.4;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.small-gallery-carousel a:hover img {
	opacity: 0.2;
	-webkit-transform: scale(1.2, 1.2);
	    -ms-transform: scale(1.2, 1.2);
	        transform: scale(1.2, 1.2);
}

.small-gallery-carousel .owl-nav > div {
	opacity: 1;
}

@media (min-width: 768px) {
	.small-gallery-carousel .owl-nav > div {
		margin-top: -8px;
		right: 100px;
	}

	.small-gallery-carousel .owl-nav > div:first-child {
		left: 100px;
	}
}

.small-gallery-carousel .owl-nav > div i {
	font-size: 20px;
}

/* owl images fix */
.owl-carousel .owl-item {
	opacity: 0;
	-webkit-transition: opacity 0.2s ease 0.1s;
	transition: opacity 0.2s ease 0.1s;
}

.owl-carousel .owl-item.active {
	opacity: 1;
}

.owl-center .owl-item {
	opacity: 1;
}

.owl-carousel.items-center .owl-stage {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
}

/*
** Flexslider
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* FlexSlider Necessary Styles */
.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides > li {
	-webkit-backface-visibility: hidden;
	display: none;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
	display: block;
	width: 100%;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
	clear: both;
	content: "\0020";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */
.no-js .slides > li:first-child {
	display: block;
}

/* FlexSlider Default Theme */
.flexslider {
	margin: 0 0;
	position: relative;
	zoom: 1;
}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

.loading .flex-viewport {
	max-height: 300px;
}

.flexslider .slides {
	zoom: 1;
}

/* Direction Nav */
.flex-direction-nav {
	*height: 0;
}

.flex-direction-nav a {
	color: transparent;
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 40px;
	margin: -20px 0 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-align: center;
	text-decoration: none;
	top: 50%;
	width: 40px;
	z-index: 10;
}

.flex-direction-nav .flex-prev {
	left: 40px;
}

.flex-direction-nav .flex-next {
	right: 40px;
	text-align: right;
}

.flexslider:hover .flex-prev {
	opacity: 0.7;
}

.flexslider:hover .flex-next {
	opacity: 0.7;
}

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
	opacity: 1;
}

.flex-direction-nav .flex-disabled {
	cursor: default;
	filter: alpha(opacity=0);
	opacity: 0;
}

.flex-direction-nav a:before {
	color: #fff;
	content: "\f104";
	font-family: "FontAwesome";
	font-size: 20px;
	left: 12px;
	position: absolute;
	top: 5px;
}

.flex-direction-nav a.flex-next:before {
	content: "\f105";
	left: 14px;
}

/* Pause/Play */
.flex-pauseplay a {
	bottom: 5px;
	color: #000;
	cursor: pointer;
	display: block;
	height: 20px;
	left: 10px;
	opacity: 0.8;
	overflow: hidden;
	position: absolute;
	width: 20px;
	z-index: 10;
}

.flex-pauseplay a:before {
	content: "\f01d";
	display: inline-block;
	font-family: "FontAwesome";
	font-size: 20px;
}

.flex-pauseplay a:hover {
	opacity: 1;
}

.flex-pauseplay a.flex-play:before {
	content: "\f01d";
}

/* Control Nav */
.flex-control-nav {
	bottom: 20px;
	color: transparent;
	font-size: 0;
	line-height: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 10;
}

.flex-control-nav li {
	*display: inline;
	display: inline-block;
	padding: 0 14px;
	text-align: center;
	zoom: 1;
}

.flex-control-paging li a {
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	height: 8px;
	opacity: 0.5;
	width: 8px;
}

.ds .flex-control-paging li a,
.cs .flex-control-paging li a {
	border-color: #fff;
}

.flex-control-paging li a:hover {
	background-color: #fff;
	border-color: #fff;
	opacity: 1;
}

.flex-control-paging li a.flex-active {
	background-color: #fff;
	border-color: #fff;
	opacity: 1;
}

.flex-control-thumbs {
	margin: 1px -1px;
	overflow: hidden;
	position: static;
}

.flex-control-thumbs li {
	float: left;
	margin: 0 0 1px;
	padding: 0 0 0 1px;
	width: 25%;
}

.flex-control-thumbs img {
	cursor: pointer;
	display: block;
	opacity: .7;
	width: 100%;
}

.flex-control-thumbs img:hover {
	opacity: 1;
}

.flex-control-thumbs .flex-active {
	cursor: default;
	opacity: 1;
}

/* custom nav for flex slider*/
.flex-custom-nav {
	bottom: 38px;
	left: 0;
	line-height: 1;
	position: absolute;
	right: 0;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 3;
}

.flex-custom-nav .flex-control-nav {
	display: inline-block;
	position: static;
	width: auto;
}

.flex-custom-nav .flex-custom-link {
	bottom: 7px;
	color: var(--darkgreyColor);
	font-size: 12px;
	margin: 0 8px;
	position: relative;
}

.ds .flex-custom-nav .flex-custom-link,
.cs .flex-custom-nav .flex-custom-link {
	color: #fff;
}

.flex-custom-nav .flex-custom-link:hover {
	color: var(--colorMain);
}

.page_slider:hover .flex-custom-nav {
	opacity: 1;
}

/* Helpdesk plugin */
.wordpress-helpdesk .widget,
.tax-faq_topics .widget {
	margin-bottom: 52px;
}

.wordpress-helpdesk .widgettitle,
.tax-faq_topics .widgettitle {
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-column,
.tax-faq_topics .wordpress-helpdesk-faq-column {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .form-control,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .form-control {
	border-color: rgba(76, 76, 76, 0.1);
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	color: #808080;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	padding: 6px 12px 6px 30px;
	text-transform: uppercase;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .form-control.wordpress-helpdesk-faq-searchterm,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .form-control.wordpress-helpdesk-faq-searchterm {
	background: transparent;
	height: 60px;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit {
	background: var(--colorMain3);
	border: 0;
	border-radius: 0 5px 5px 0;
	color: #fff;
	font-size: 20px;
	height: 60px;
	line-height: 20px;
	margin: 0;
	opacity: 1;
	outline: 0;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 60px;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit:hover,
.wordpress-helpdesk .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit:focus,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit:hover,
.tax-faq_topics .wordpress-helpdesk-faq-searchform-wrap .wordpress-helpdesk-faq-searchform .searchform-submit:focus {
	color: rgba(255, 255, 255, 0.8);
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed,
.tax-faq_topics .wordpress-helpdesk-faq-boxed {
	background: #f7f6fb;
	border: 0;
	border-radius: 5px;
	margin-bottom: 30px;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed .icon-wrap,
.tax-faq_topics .wordpress-helpdesk-faq-boxed .icon-wrap {
	border: 10px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.05);
	display: inline-block;
	height: 120px;
	width: 120px;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed .icon-wrap .icon-inner,
.tax-faq_topics .wordpress-helpdesk-faq-boxed .icon-wrap .icon-inner {
	background: #fff;
	border-radius: 50%;
	height: 100%;
	position: relative;
	width: 100%;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed i,
.tax-faq_topics .wordpress-helpdesk-faq-boxed i {
	color: var(--colorMain5);
	font-size: 50px !important;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed i.grad-1,
.tax-faq_topics .wordpress-helpdesk-faq-boxed i.grad-1 {
	background: -webkit-linear-gradient(left, var(--colorMain5) 0%, var(--colorMain6) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMain5)), to(var(--colorMain6)));
	background: linear-gradient(to right, var(--colorMain5) 0%, var(--colorMain6) 100%);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed i.grad-2,
.tax-faq_topics .wordpress-helpdesk-faq-boxed i.grad-2 {
	background: -webkit-linear-gradient(left, var(--colorMain) 0%, var(--colorMain3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMain)), to(var(--colorMain3)));
	background: linear-gradient(to right, var(--colorMain) 0%, var(--colorMain3) 100%);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed .wordpress-helpdesk-faq-boxed-title,
.tax-faq_topics .wordpress-helpdesk-faq-boxed .wordpress-helpdesk-faq-boxed-title {
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 300;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed .wordpress-helpdesk-faq-boxed-count,
.tax-faq_topics .wordpress-helpdesk-faq-boxed .wordpress-helpdesk-faq-boxed-count {
	color: #808080;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 300;
}

.wordpress-helpdesk .wordpress-helpdesk-faq-boxed:hover .wordpress-helpdesk-faq-boxed-title,
.tax-faq_topics .wordpress-helpdesk-faq-boxed:hover .wordpress-helpdesk-faq-boxed-title {
	opacity: 0.6;
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-row > * {
	padding-left: 15px;
	padding-right: 15px;
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq {
	margin-bottom: 30px;
}

@media (min-width: 1440px) {
	.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq {
		padding-left: 40px;
		position: relative;
	}

	.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-title:before {
		color: var(--colorMain);
		content: "\f24d";
		font-family: FontAwesome;
		font-size: 28px;
		left: 0;
		position: absolute;
		top: 6px;
	}
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-title {
	font-weight: 300;
	padding: 10px 0 15px;
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-title i {
	display: none;
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-divider {
	display: none;
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-link a {
	color: var(--colorMain3);
}

.tax-faq_topics .wordpress-helpdesk .wordpress-helpdesk-faq .wordpress-helpdesk-faq-link a:hover {
	opacity: 0.7;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper {
	margin-top: 15px;
}

.wordpress-helpdesk-my-tickets label {
	display: inline-block;
	font-size: 0;
	font-weight: 400 !important;
	line-height: 0;
	margin-bottom: 20px;
	width: 100%;
}

.wordpress-helpdesk-my-tickets label .select_container {
	color: #808080 !important;
	font-size: 16px !important;
	line-height: 1;
}

.wordpress-helpdesk-my-tickets label .select_container > select {
	border-radius: 5px;
	font-size: 12px;
}

.wordpress-helpdesk-my-tickets table.dataTable.no-footer {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
}

.wordpress-helpdesk-my-tickets table.dataTable thead th,
.wordpress-helpdesk-my-tickets table.dataTable thead td {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	padding: 12px 18px;
}

.wordpress-helpdesk-my-tickets table.dataTable thead th,
.wordpress-helpdesk-my-tickets table.dataTable tfoot th {
	font-weight: 400;
}

.wordpress-helpdesk-my-tickets table.dataTable tbody th,
.wordpress-helpdesk-my-tickets table.dataTable tbody td {
	padding: 17px 14px;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_filter input {
	border-radius: 5px;
	font-size: 12px;
	height: 60px;
	letter-spacing: 0.2em;
	margin-left: 0;
	text-transform: uppercase;
}

.wordpress-helpdesk-my-tickets .wordpress-helpdesk-my-tickets-header {
	background-color: #f7f6fb;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_info {
	clear: both;
	float: left;
	padding-top: 1.5em;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate {
	float: right;
	padding-top: 1em;
	text-align: right;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button {
	display: inline-block;
	line-height: inherit;
	margin-bottom: 7px;
	margin-left: 0;
	margin-right: 4px;
	min-width: 3em;
	padding: 0.5em 1.2em;
	text-align: center;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button,
.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: transparent !important;
	border: 2px solid rgba(76, 76, 76, 0.1);
	border-radius: 5px !important;
	color: #808080 !important;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.current {
	border: 2px solid var(--colorMain3);
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button:focus,
.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button:active {
	border: 2px solid var(--colorMain3);
	box-shadow: none !important;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.next {
	font-size: 0;
	height: 50px;
	line-height: 45px;
	width: 50px;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.previous:before,
.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.next:before {
	content: "\f104";
	font-family: FontAwesome;
	font-size: 18px;
}

.wordpress-helpdesk-my-tickets .dataTables_wrapper .dataTables_paginate .paginate_button.next:before {
	content: "\f105";
}

/* Helpdesk widgets */
.wordpress-helpdesk-sidebar .widget-first .widgettitle {
	margin-top: 15px;
}

.wordpress-helpdesk-faq-list li,
.widget_faq_topics li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	list-style: none;
	margin-bottom: 0.2em;
	padding: 8px 0 8px 0;
}

.wordpress-helpdesk-faq-list li i,
.widget_faq_topics li i {
	color: var(--colorMain);
	font-size: 16px;
	margin-right: 18px;
}

.wordpress-helpdesk-faq-list li,
.widget_faq_topics li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	list-style: none;
	margin-bottom: 0;
	padding: 9px 0 9px 0;
}

/* Helpdesk single page */
.single-page-article .wordpress-helpdesk .dataTables_length label {
	display: inline-block;
	font-weight: 700;
	margin-bottom: 5px;
	max-width: 100%;
}

.single-ticket .wordpress-helpdesk-single-title {
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 25px;
	margin-top: 15px;
}

.single-ticket .wordpress-helpdesk-single-description-title {
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 30px;
}

.single-ticket .wordpress-helpdesk-ticket-attachments-title {
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 0;
}

.single-ticket .wordpress-helpdesk-agent-box,
.single-ticket .wordpress-helpdesk-reporter-box {
	color: #4c4c4c;
	font-size: 12px;
}

.single-ticket .wordpress-helpdesk-agent-box .wordpress-helpdesk-col-sm-3,
.single-ticket .wordpress-helpdesk-agent-box .wordpress-helpdesk-col-sm-9,
.single-ticket .wordpress-helpdesk-reporter-box .wordpress-helpdesk-col-sm-3,
.single-ticket .wordpress-helpdesk-reporter-box .wordpress-helpdesk-col-sm-9 {
	padding-left: 15px;
	padding-right: 15px;
}

.single-ticket .wordpress-helpdesk-agent-box .wordpress-helpdesk-agent-box-title,
.single-ticket .wordpress-helpdesk-agent-box .wordpress-helpdesk-reporter-box-title,
.single-ticket .wordpress-helpdesk-reporter-box .wordpress-helpdesk-agent-box-title,
.single-ticket .wordpress-helpdesk-reporter-box .wordpress-helpdesk-reporter-box-title {
	font-size: 20px;
	margin-bottom: 0.5em;
	margin-top: 0;
}

.wordpress-helpdesk-comments .comment-form p.form-submit {
	margin-bottom: 0;
	margin-top: 34px;
}

.wordpress-helpdesk-comments .comment-form p.form-submit .btn {
	color: #fff !important;
}

.wordpress-helpdesk-comments .comment-form p.form-submit .btn span {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: uppercase;
}

.wordpress-helpdesk-comments .comment-form p.form-submit .btn:hover,
.wordpress-helpdesk-comments .comment-form p.form-submit .btn:focus {
	color: #4c4c4c;
}

.wordpress-helpdesk-comments .wp-editor-wrap {
	position: relative;
	width: 100%;
}

.wordpress-helpdesk-comments .comments-area {
	margin-top: 30px;
}

.wordpress-helpdesk-comments .comments-area .quicktags-toolbar .ed_button {
	display: inline-block;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: auto;
}

.wordpress-helpdesk-comments .comments-area .quicktags-toolbar .ed_button:hover {
	background-color: var(--colorMain);
}

.wordpress-helpdesk input,
.wordpress-helpdesk button,
.wordpress-helpdesk select,
.wordpress-helpdesk textarea {
	-webkit-appearance: auto;
	font-size: 16px;
	line-height: 1.2;
}

/*
**photoswipe
* http://photoswipe.com/
*
*/
/* pswp = photoswipe */
.pswp {
	/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: hidden;
	position: absolute;
	-webkit-text-size-adjust: 100%;
	top: 0;
	touch-action: none;
	width: 100%;
	z-index: 1500;
}

.pswp * {
	box-sizing: border-box;
}

.pswp img {
	max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
	/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
	opacity: 0.001;
	/* for open/close transition */
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	will-change: opacity;
}

.pswp--open {
	display: block;
}

.pswp--zoom-allowed .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--dragging .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
	-webkit-backface-visibility: hidden;
	background: #000;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	width: 100%;
	will-change: opacity;
}

.pswp__scroll-wrap {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
}

.pswp__container,
.pswp__zoom-wrap {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	touch-action: none;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

.pswp__zoom-wrap {
	position: absolute;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	/* for open/close transition */
	-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	width: 100%;
}

.pswp__bg {
	/* for open/close transition */
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	will-change: opacity;
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
	-webkit-transition: none;
	transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
	-webkit-backface-visibility: hidden;
}

.pswp__item {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.pswp__img {
	height: auto;
	left: 0;
	position: absolute;
	top: 0;
	width: auto;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
	-webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
	background: #222;
}

.pswp--ie .pswp__img {
	height: auto !important;
	left: 0;
	top: 0;
	width: 100% !important;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
	color: #ccc;
	font-size: 14px;
	left: 0;
	line-height: 16px;
	margin-top: -8px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
}

.pswp__error-msg a {
	color: #ccc;
	text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
	-webkit-appearance: none;
	background: none;
	border: 0;
	box-shadow: none;
	cursor: pointer;
	display: block;
	float: right;
	height: 44px;
	margin: 0;
	opacity: 0.75;
	overflow: visible;
	padding: 0;
	position: relative;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	width: 44px;
}

.pswp__button:focus,
.pswp__button:hover {
	opacity: 1;
}

.pswp__button:active {
	opacity: 0.9;
	outline: none;
}

.pswp__button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
	opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	background: url(../img/photoswipe/default-skin.png) 0 0 no-repeat;
	background-size: 264px 88px;
	height: 44px;
	width: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
	/* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
	.pswp--svg .pswp__button,
	.pswp--svg .pswp__button--arrow--left:before,
	.pswp--svg .pswp__button--arrow--right:before {
		background-image: url(../img/photoswipe/default-skin.svg);
	}

	.pswp--svg .pswp__button--arrow--left,
	.pswp--svg .pswp__button--arrow--right {
		background: none;
	}
}

.pswp__button--close {
	background-position: 0 -44px;
}

.pswp__button--share {
	background-position: -44px -44px;
}

.pswp__button--fs {
	display: none;
}

.pswp--supports-fs .pswp__button--fs {
	display: block;
}

.pswp--fs .pswp__button--fs {
	background-position: -44px 0;
}

.pswp__button--zoom {
	background-position: -88px 0;
	display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
	display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
	background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
	visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
	background: none;
	height: 100px;
	margin-top: -50px;
	position: absolute;
	top: 50%;
	width: 70px;
}

.pswp__button--arrow--left {
	left: 0;
}

.pswp__button--arrow--right {
	right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	height: 30px;
	position: absolute;
	top: 35px;
	width: 32px;
}

.pswp__button--arrow--left:before {
	background-position: -138px -44px;
	left: 6px;
}

.pswp__button--arrow--right:before {
	background-position: -94px -44px;
	right: 6px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

.pswp__share-modal {
	-webkit-backface-visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	padding: 10px;
	position: absolute;
	top: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	width: 100%;
	will-change: opacity;
	z-index: 1600;
}

.pswp__share-modal--hidden {
	display: none;
}

.pswp__share-tooltip {
	-webkit-backface-visibility: hidden;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	display: block;
	position: absolute;
	right: 44px;
	top: 56px;
	-webkit-transform: translateY(6px);
	    -ms-transform: translateY(6px);
	        transform: translateY(6px);
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
	width: auto;
	will-change: transform;
	z-index: 1620;
}

.pswp__share-tooltip a {
	color: #000;
	display: block;
	font-size: 14px;
	line-height: 18px;
	padding: 8px 12px;
	text-decoration: none;
}

.pswp__share-tooltip a:hover {
	color: #000;
	text-decoration: none;
}

.pswp__share-tooltip a:first-child {
	/* round corners on the first/last list item */
	border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
	border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
	opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
	padding: 16px 12px;
}

a.pswp__share--facebook:before {
	border: 6px solid rgba(0, 0, 0, 0);
	border-bottom-color: #fff;
	content: "";
	display: block;
	height: 0;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: -12px;
	width: 0;
}

a.pswp__share--facebook:hover {
	background: #3e5c9a;
	color: #fff;
}

a.pswp__share--facebook:hover:before {
	border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
	background: #55acee;
	color: #fff;
}

a.pswp__share--pinterest:hover {
	background: #ccc;
	color: #ce272d;
}

a.pswp__share--download:hover {
	background: #ddd;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
	color: #fff;
	font-size: 13px;
	height: 44px;
	left: 0;
	line-height: 44px;
	opacity: 0.75;
	padding: 0 10px;
	position: absolute;
	top: 0;
}

/*
	
	4. Caption

 */
.pswp__caption {
	bottom: 0;
	left: 0;
	min-height: 44px;
	position: absolute;
	width: 100%;
}

.pswp__caption small {
	color: #bbb;
	font-size: 11px;
}

.pswp__caption__center {
	color: #ccc;
	font-size: 13px;
	line-height: 20px;
	margin: 0 auto;
	max-width: 420px;
	padding: 10px;
	text-align: left;
}

.pswp__caption--empty {
	display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
	visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
	direction: ltr;
	height: 44px;
	left: 50%;
	margin-left: -22px;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	width: 44px;
	will-change: opacity;
}

.pswp__preloader__icn {
	height: 20px;
	margin: 12px;
	width: 20px;
}

.pswp__preloader--active {
	opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
	/* We use .gif in browsers that don't support CSS animation */
	background: url(../img/photoswipe/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
	opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
	-webkit-animation: clockwise 500ms linear infinite;
	        animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
	-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
	        animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
	background: none;
	height: 14px;
	left: 15px;
	margin: 0;
	opacity: 0.75;
	position: absolute;
	top: 15px;
	width: 14px;
}

.pswp--css_animation .pswp__preloader__cut {
	height: 14px;
	overflow: hidden;
	/*
      The idea of animating inner circle is based on Polymer ("material") loading indicator
       by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
	position: relative;
	width: 7px;
}

.pswp--css_animation .pswp__preloader__donut {
	background: none;
	border: 2px solid #fff;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	height: 14px;
	left: 0;
	margin: 0;
	position: absolute;
	top: 0;
	width: 14px;
}

@media screen and (max-width: 1024px) {
	.pswp__preloader {
		float: right;
		left: auto;
		margin: 0;
		position: relative;
		top: auto;
	}
}

@-webkit-keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@-webkit-keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(-140deg);
		        transform: rotate(-140deg);
	}

	100% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
}

@keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(-140deg);
		        transform: rotate(-140deg);
	}

	100% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
}

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
	-webkit-font-smoothing: auto;
	opacity: 1;
	visibility: visible;
	z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
	height: 44px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	-webkit-backface-visibility: hidden;
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	will-change: opacity;
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
	background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
	background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
	opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
	opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
	/* Force paint & create composition layer for controls. */
	opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
	display: none;
}

.pswp__element--disabled {
	display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
	background: none;
}

.pswp__zoom-wrap .embed-responsive {
	margin: auto;
	max-width: 90%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media (min-width: 1200px) {
	.pswp__zoom-wrap .embed-responsive {
		max-width: 50%;
	}
}

/*
** Easy pieChart
*/
.chart {
	display: inline-block;
	margin-bottom: 10px;
	min-height: 150px;
	min-width: 150px;
	position: relative;
	text-align: center;
}

.chart .chart-meta {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 100%;
}

.chart .chart-meta h4 {
	color: #4c4c4c;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	margin-top: 0;
	text-transform: uppercase;
}

.percent {
	color: #4c4c4c;
	display: inline-block;
	font-size: 50px;
	font-weight: 500;
	z-index: 2;
}

.percent:after {
	content: "%";
}

.angular {
	margin-top: 100px;
}

.angular .chart {
	margin-top: 0;
}

/* 
** Time Table 
*/
#timetable span {
	display: block;
}

#timetable th,
#timetable td {
	font-weight: normal;
	padding: 25px 5px;
	text-align: center;
	vertical-align: middle;
}

#timetable thead {
	color: #fff;
}

#timetable thead th {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-width: 0 1px;
}

#timetable tbody th,
#timetable tbody td {
	border: 1px solid rgba(76, 76, 76, 0.1);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#timetable tbody .current {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
}

#timetable tbody .current a {
	color: #fff;
}

/* 
** toTop
*/
#toTop {
	background-color: var(--colorMain);
	bottom: 0;
	color: transparent;
	display: none;
	font-size: 0;
	height: 60px;
	opacity: 0.7;
	overflow: hidden;
	position: fixed;
	right: 0;
	text-decoration: none;
	width: 60px;
	z-index: 1000;
}

#toTop:after {
	bottom: 0;
	color: #fff;
	content: "\f106";
	display: block;
	font-family: "FontAwesome";
	font-size: 16px;
	left: 0;
	line-height: 60px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

#toTopHover,
#toTop:hover {
	bottom: 3px;
	opacity: 1;
}

#toTop:hover:after {
	color: #fff;
}

#toTop:active,
#toTop:focus {
	outline: medium none;
}

.modal-open #toTop {
	visibility: hidden;
}

/* Countdown */
#comingsoon-countdown {
	text-align: center;
}

#comingsoon-countdown:before,
#comingsoon-countdown:after {
	clear: both;
	content: " ";
	display: table;
}

.countdown-rtl {
	direction: rtl;
}

.countdown-row {
	clear: both;
	display: table;
	margin: auto;
	padding: 20px 0;
	text-align: center;
}

.countdown-section {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	display: table-cell;
	padding: 10px 30px 20px;
	text-align: center;
}

.countdown-section:first-child {
	border-left-width: 0;
}

.countdown-amount {
	color: var(--colorMain);
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
}

.countdown-period {
	color: var(--darkgreyColor);
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	min-width: 11em;
	text-transform: uppercase;
}

.countdown-descr {
	display: block;
}

@media (max-width: 767px) {
	.countdown-section {
		padding: 20px 8px 0;
	}

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

	.countdown-period {
		letter-spacing: 0.1em;
		min-width: 4em;
	}
}

/* sidebar scroll plugin */
.scroll-wrapper {
	height: 100%;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.scroll-wrapper > .scroll-content {
	border: none;
	box-sizing: content-box;
	height: auto;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	overflow: scroll;
	padding: 0;
	position: relative;
	top: 0;
	width: auto;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
	height: 0;
	width: 0;
}

.scroll-wrapper.scroll--rtl {
	direction: rtl;
}

.scroll-element {
	box-sizing: content-box;
	display: none;
}

.scroll-element div {
	box-sizing: content-box;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
	cursor: default;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
	display: block;
}

.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
	display: block;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track {
	display: none;
}

.scrollbar-macosx > .scroll-element .scroll-bar {
	background-color: rgba(127, 127, 127, 0.4);
	border-radius: 1px;
	display: block;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
	bottom: 0;
	height: 0;
	left: 0;
	min-width: 100%;
	overflow: visible;
	width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
	height: 100%;
	min-height: 100%;
	right: 0;
	top: 0;
	width: 0;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
	height: 7px;
	min-width: 10px;
	top: -9px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
	left: -9px;
	min-height: 10px;
	width: 7px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
	left: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
	left: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
	top: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
	top: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
	left: -11px;
}

.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
	top: -11px;
}

.firefox-on-macos {
	overflow: scroll !important;
}

.firefox-on-macos.scroll-wrapper > .scroll-content {
	overflow: auto;
}

/*
** Bootstrap Addons
*/
/*
** Horizontal padding (gutters) for columns and rows
*/
/* columns
.c - columns
px-* - horizontal padding value
*/
.c-gutter-100 [class*="col-"],
.row.c-gutter-100 > [class*="col-"] {
	padding-left: 50px;
	padding-right: 50px;
}

.c-gutter-80 [class*="col-"],
.row.c-gutter-80 > [class*="col-"] {
	padding-left: 40px;
	padding-right: 40px;
}

.c-gutter-60 [class*="col-"],
.row.c-gutter-60 > [class*="col-"] {
	padding-left: 30px;
	padding-right: 30px;
}

.c-gutter-50 [class*="col-"],
.row.c-gutter-50 > [class*="col-"] {
	padding-left: 25px;
	padding-right: 25px;
}

.c-gutter-40 [class*="col-"],
.row.c-gutter-40 > [class*="col-"] {
	padding-left: 20px;
	padding-right: 20px;
}

.c-gutter-30 [class*="col-"],
.row.c-gutter-30 > [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.c-gutter-25 [class*="col-"],
.row.c-gutter-25 > [class*="col-"] {
	padding-left: 13px;
	padding-right: 12px;
}

.c-gutter-20 [class*="col-"],
.row.c-gutter-20 > [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.c-gutter-15 [class*="col-"],
.row.c-gutter-15 > [class*="col-"] {
	padding-left: 8px;
	padding-right: 7px;
}

.c-gutter-10 [class*="col-"],
.row.c-gutter-10 > [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}

.c-gutter-5 [class*="col-"],
.row.c-gutter-5 > [class*="col-"] {
	padding-left: 3px;
	padding-right: 2px;
}

.c-gutter-2 [class*="col-"],
.row.c-gutter-2 > [class*="col-"] {
	padding-left: 1px;
	padding-right: 1px;
}

.c-gutter-1 [class*="col-"],
.row.c-gutter-1 > [class*="col-"] {
	padding-left: 1px;
	padding-right: 0;
}

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

/* rows */
.c-gutter-100 .row,
div.row.c-gutter-100 {
	margin-left: -50px;
	margin-right: -50px;
}

.c-gutter-80 .row,
div.row.c-gutter-80 {
	margin-left: -40px;
	margin-right: -40px;
}

.c-gutter-60 .row,
div.row.c-gutter-60 {
	margin-left: -30px;
	margin-right: -30px;
}

.c-gutter-50 .row,
div.row.c-gutter-50 {
	margin-left: -25px;
	margin-right: -25px;
}

.c-gutter-40 .row,
div.row.c-gutter-40 {
	margin-left: -20px;
	margin-right: -20px;
}

.c-gutter-30 .row,
div.row.c-gutter-30 {
	margin-left: -15px;
	margin-right: -15px;
}

.c-gutter-25 .row,
div.row.c-gutter-25 {
	margin-left: -13px;
	margin-right: -12px;
}

.c-gutter-20 .row,
div.row.c-gutter-20 {
	margin-left: -10px;
	margin-right: -10px;
}

.c-gutter-15 .row,
div.row.c-gutter-15 {
	margin-left: -8px;
	margin-right: -7px;
}

.c-gutter-10 .row,
div.row.c-gutter-10 {
	margin-left: -5px;
	margin-right: -5px;
}

.c-gutter-5 .row,
div.row.c-gutter-5 {
	margin-left: -3px;
	margin-right: -2px;
}

.c-gutter-2 .row,
div.row.c-gutter-2 {
	margin-left: -1px;
	margin-right: -1px;
}

.c-gutter-1 .row,
div.row.c-gutter-1 {
	margin-left: -1px;
	margin-right: 0;
}

.c-gutter-0 .row,
div.row.c-gutter-0 {
	margin-left: 0;
	margin-right: 0;
}

/* containers */
.container-px-0 [class*='container'] {
	padding-left: 0;
	padding-right: 0;
}

.container-px-1 [class*='container'] {
	padding-left: 1px;
	padding-right: 1px;
}

.container-px-2 [class*='container'] {
	padding-left: 2px;
	padding-right: 2px;
}

.container-px-5 [class*='container'] {
	padding-left: 5px;
	padding-right: 5px;
}

.container-px-10 [class*='container'] {
	padding-left: 10px;
	padding-right: 10px;
}

.container-px-20 [class*='container'] {
	padding-left: 20px;
	padding-right: 20px;
}

.container-px-30 [class*='container'] {
	padding-left: 30px;
	padding-right: 30px;
}

.container-px-60 [class*='container'] {
	padding-left: 60px;
	padding-right: 60px;
}

/*
** Vertical margins and padding for sections and columns
*/
/* Vertical padding for sections
.s - section
pt-* - padding top value
pb-* - padding bottom value
py-* - same value for top and for bottom padding
*/
.s-pt-0 > [class*='container'] {
	padding-top: 0;
}

.s-pt-1 > [class*='container'] {
	padding-top: 1px;
}

.s-pt-2 > [class*='container'] {
	padding-top: 2px;
}

.s-pt-3 > [class*='container'] {
	padding-top: 3px;
}

.s-pt-5 > [class*='container'] {
	padding-top: 5px;
}

.s-pt-10 > [class*='container'] {
	padding-top: 10px;
}

.s-pt-15 > [class*='container'] {
	padding-top: 15px;
}

.s-pt-20 > [class*='container'] {
	padding-top: 20px;
}

.s-pt-25 > [class*='container'] {
	padding-top: 25px;
}

.s-pt-30 > [class*='container'] {
	padding-top: 30px;
}

.s-pt-35 > [class*='container'] {
	padding-top: 35px;
}

.s-pt-40 > [class*='container'] {
	padding-top: 40px;
}

.s-pt-45 > [class*='container'] {
	padding-top: 45px;
}

.s-pt-50 > [class*='container'] {
	padding-top: 50px;
}

.s-pt-55 > [class*='container'] {
	padding-top: 55px;
}

.s-pt-60 > [class*='container'] {
	padding-top: 60px;
}

.s-pt-70 > [class*='container'] {
	padding-top: 70px;
}

.s-pt-75 > [class*='container'] {
	padding-top: 75px;
}

.s-pt-80 > [class*='container'] {
	padding-top: 80px;
}

.s-pt-90 > [class*='container'] {
	padding-top: 90px;
}

.s-pt-95 > [class*='container'] {
	padding-top: 95px;
}

.s-pt-100 > [class*='container'] {
	padding-top: 100px;
}

.s-pt-120 > [class*='container'] {
	padding-top: 120px;
}

.s-pt-130 > [class*='container'] {
	padding-top: 130px;
}

.s-pt-140 > [class*='container'] {
	padding-top: 140px;
}

.s-pt-145 > [class*='container'] {
	padding-top: 145px;
}

.s-pt-150 > [class*='container'] {
	padding-top: 150px;
}

.s-pt-160 > [class*='container'] {
	padding-top: 160px;
}

.s-pt-180 > [class*='container'] {
	padding-top: 180px;
}

.s-pt-200 > [class*='container'] {
	padding-top: 200px;
}

.s-pb-0 > [class*='container'] {
	padding-bottom: 0;
}

.s-pb-1 > [class*='container'] {
	padding-bottom: 1px;
}

.s-pb-2 > [class*='container'] {
	padding-bottom: 2px;
}

.s-pb-3 > [class*='container'] {
	padding-bottom: 3px;
}

.s-pb-5 > [class*='container'] {
	padding-bottom: 5px;
}

.s-pb-10 > [class*='container'] {
	padding-bottom: 10px;
}

.s-pb-15 > [class*='container'] {
	padding-bottom: 15px;
}

.s-pb-20 > [class*='container'] {
	padding-bottom: 20px;
}

.s-pb-25 > [class*='container'] {
	padding-bottom: 25px;
}

.s-pb-30 > [class*='container'] {
	padding-bottom: 30px;
}

.s-pb-35 > [class*='container'] {
	padding-bottom: 35px;
}

.s-pb-40 > [class*='container'] {
	padding-bottom: 40px;
}

.s-pb-45 > [class*='container'] {
	padding-bottom: 45px;
}

.s-pb-50 > [class*='container'] {
	padding-bottom: 50px;
}

.s-pb-55 > [class*='container'] {
	padding-bottom: 55px;
}

.s-pb-60 > [class*='container'] {
	padding-bottom: 60px;
}

.s-pb-70 > [class*='container'] {
	padding-bottom: 70px;
}

.s-pb-75 > [class*='container'] {
	padding-bottom: 75px;
}

.s-pb-80 > [class*='container'] {
	padding-bottom: 80px;
}

.s-pb-90 > [class*='container'] {
	padding-bottom: 90px;
}

.s-pb-95 > [class*='container'] {
	padding-bottom: 95px;
}

.s-pb-100 > [class*='container'] {
	padding-bottom: 100px;
}

.s-pb-120 > [class*='container'] {
	padding-bottom: 120px;
}

.s-pb-130 > [class*='container'] {
	padding-bottom: 130px;
}

.s-pb-140 > [class*='container'] {
	padding-bottom: 140px;
}

.s-pb-145 > [class*='container'] {
	padding-bottom: 145px;
}

.s-pb-150 > [class*='container'] {
	padding-bottom: 150px;
}

.s-pb-160 > [class*='container'] {
	padding-bottom: 160px;
}

.s-pb-180 > [class*='container'] {
	padding-bottom: 180px;
}

.s-pb-200 > [class*='container'] {
	padding-bottom: 200px;
}

.s-py-0 > [class*='container'] {
	padding-bottom: 0;
	padding-top: 0;
}

.s-py-1 > [class*='container'] {
	padding-bottom: 1px;
	padding-top: 1px;
}

.s-py-2 > [class*='container'] {
	padding-bottom: 2px;
	padding-top: 2px;
}

.s-py-3 > [class*='container'] {
	padding-bottom: 3px;
	padding-top: 3px;
}

.s-py-5 > [class*='container'] {
	padding-bottom: 5px;
	padding-top: 5px;
}

.s-py-10 > [class*='container'] {
	padding-bottom: 10px;
	padding-top: 10px;
}

.s-py-15 > [class*='container'] {
	padding-bottom: 15px;
	padding-top: 15px;
}

.s-py-20 > [class*='container'] {
	padding-bottom: 20px;
	padding-top: 20px;
}

.s-py-25 > [class*='container'] {
	padding-bottom: 25px;
	padding-top: 25px;
}

.s-py-30 > [class*='container'] {
	padding-bottom: 30px;
	padding-top: 30px;
}

.s-py-35 > [class*='container'] {
	padding-bottom: 35px;
	padding-top: 35px;
}

.s-py-40 > [class*='container'] {
	padding-bottom: 40px;
	padding-top: 40px;
}

.s-py-45 > [class*='container'] {
	padding-bottom: 45px;
	padding-top: 45px;
}

.s-py-50 > [class*='container'] {
	padding-bottom: 50px;
	padding-top: 50px;
}

.s-py-55 > [class*='container'] {
	padding-bottom: 55px;
	padding-top: 55px;
}

.s-py-60 > [class*='container'] {
	padding-bottom: 60px;
	padding-top: 60px;
}

.s-py-70 > [class*='container'] {
	padding-bottom: 70px;
	padding-top: 70px;
}

.s-py-75 > [class*='container'] {
	padding-bottom: 75px;
	padding-top: 75px;
}

.s-py-80 > [class*='container'] {
	padding-bottom: 80px;
	padding-top: 80px;
}

.s-py-90 > [class*='container'] {
	padding-bottom: 90px;
	padding-top: 90px;
}

.s-py-95 > [class*='container'] {
	padding-bottom: 95px;
	padding-top: 95px;
}

.s-py-100 > [class*='container'] {
	padding-bottom: 100px;
	padding-top: 100px;
}

.s-py-120 > [class*='container'] {
	padding-bottom: 120px;
	padding-top: 120px;
}

.s-py-130 > [class*='container'] {
	padding-bottom: 130px;
	padding-top: 130px;
}

.s-py-140 > [class*='container'] {
	padding-bottom: 140px;
	padding-top: 140px;
}

.s-py-145 > [class*='container'] {
	padding-bottom: 145px;
	padding-top: 145px;
}

.s-py-150 > [class*='container'] {
	padding-bottom: 150px;
	padding-top: 150px;
}

.s-py-160 > [class*='container'] {
	padding-bottom: 160px;
	padding-top: 160px;
}

.s-py-180 > [class*='container'] {
	padding-bottom: 180px;
	padding-top: 180px;
}

.s-py-200 > [class*='container'] {
	padding-bottom: 200px;
	padding-top: 200px;
}

@media (min-width: 576px) {
	.s-pt-sm-0 > [class*='container'] {
		padding-top: 0;
	}

	.s-pt-sm-1 > [class*='container'] {
		padding-top: 1px;
	}

	.s-pt-sm-2 > [class*='container'] {
		padding-top: 2px;
	}

	.s-pt-sm-3 > [class*='container'] {
		padding-top: 3px;
	}

	.s-pt-sm-5 > [class*='container'] {
		padding-top: 5px;
	}

	.s-pt-sm-10 > [class*='container'] {
		padding-top: 10px;
	}

	.s-pt-sm-15 > [class*='container'] {
		padding-top: 15px;
	}

	.s-pt-sm-20 > [class*='container'] {
		padding-top: 20px;
	}

	.s-pt-sm-25 > [class*='container'] {
		padding-top: 25px;
	}

	.s-pt-sm-30 > [class*='container'] {
		padding-top: 30px;
	}

	.s-pt-sm-35 > [class*='container'] {
		padding-top: 35px;
	}

	.s-pt-sm-40 > [class*='container'] {
		padding-top: 40px;
	}

	.s-pt-sm-45 > [class*='container'] {
		padding-top: 45px;
	}

	.s-pt-sm-50 > [class*='container'] {
		padding-top: 50px;
	}

	.s-pt-sm-55 > [class*='container'] {
		padding-top: 55px;
	}

	.s-pt-sm-60 > [class*='container'] {
		padding-top: 60px;
	}

	.s-pt-sm-70 > [class*='container'] {
		padding-top: 70px;
	}

	.s-pt-sm-75 > [class*='container'] {
		padding-top: 75px;
	}

	.s-pt-sm-80 > [class*='container'] {
		padding-top: 80px;
	}

	.s-pt-sm-90 > [class*='container'] {
		padding-top: 90px;
	}

	.s-pt-sm-95 > [class*='container'] {
		padding-top: 95px;
	}

	.s-pt-sm-100 > [class*='container'] {
		padding-top: 100px;
	}

	.s-pt-sm-120 > [class*='container'] {
		padding-top: 120px;
	}

	.s-pt-sm-130 > [class*='container'] {
		padding-top: 130px;
	}

	.s-pt-sm-140 > [class*='container'] {
		padding-top: 140px;
	}

	.s-pt-sm-145 > [class*='container'] {
		padding-top: 145px;
	}

	.s-pt-sm-150 > [class*='container'] {
		padding-top: 150px;
	}

	.s-pt-sm-160 > [class*='container'] {
		padding-top: 160px;
	}

	.s-pt-sm-180 > [class*='container'] {
		padding-top: 180px;
	}

	.s-pt-sm-200 > [class*='container'] {
		padding-top: 200px;
	}

	.s-pb-sm-0 > [class*='container'] {
		padding-bottom: 0;
	}

	.s-pb-sm-1 > [class*='container'] {
		padding-bottom: 1px;
	}

	.s-pb-sm-2 > [class*='container'] {
		padding-bottom: 2px;
	}

	.s-pb-sm-3 > [class*='container'] {
		padding-bottom: 3px;
	}

	.s-pb-sm-5 > [class*='container'] {
		padding-bottom: 5px;
	}

	.s-pb-sm-10 > [class*='container'] {
		padding-bottom: 10px;
	}

	.s-pb-sm-15 > [class*='container'] {
		padding-bottom: 15px;
	}

	.s-pb-sm-20 > [class*='container'] {
		padding-bottom: 20px;
	}

	.s-pb-sm-25 > [class*='container'] {
		padding-bottom: 25px;
	}

	.s-pb-sm-30 > [class*='container'] {
		padding-bottom: 30px;
	}

	.s-pb-sm-35 > [class*='container'] {
		padding-bottom: 35px;
	}

	.s-pb-sm-40 > [class*='container'] {
		padding-bottom: 40px;
	}

	.s-pb-sm-45 > [class*='container'] {
		padding-bottom: 45px;
	}

	.s-pb-sm-50 > [class*='container'] {
		padding-bottom: 50px;
	}

	.s-pb-sm-55 > [class*='container'] {
		padding-bottom: 55px;
	}

	.s-pb-sm-60 > [class*='container'] {
		padding-bottom: 60px;
	}

	.s-pb-sm-70 > [class*='container'] {
		padding-bottom: 70px;
	}

	.s-pb-sm-75 > [class*='container'] {
		padding-bottom: 75px;
	}

	.s-pb-sm-80 > [class*='container'] {
		padding-bottom: 80px;
	}

	.s-pb-sm-90 > [class*='container'] {
		padding-bottom: 90px;
	}

	.s-pb-sm-95 > [class*='container'] {
		padding-bottom: 95px;
	}

	.s-pb-sm-100 > [class*='container'] {
		padding-bottom: 100px;
	}

	.s-pb-sm-120 > [class*='container'] {
		padding-bottom: 120px;
	}

	.s-pb-sm-130 > [class*='container'] {
		padding-bottom: 130px;
	}

	.s-pb-sm-140 > [class*='container'] {
		padding-bottom: 140px;
	}

	.s-pb-sm-145 > [class*='container'] {
		padding-bottom: 145px;
	}

	.s-pb-sm-150 > [class*='container'] {
		padding-bottom: 150px;
	}

	.s-pb-sm-160 > [class*='container'] {
		padding-bottom: 160px;
	}

	.s-pb-sm-180 > [class*='container'] {
		padding-bottom: 180px;
	}

	.s-pb-sm-200 > [class*='container'] {
		padding-bottom: 200px;
	}

	.s-py-sm-0 > [class*='container'] {
		padding-bottom: 0;
		padding-top: 0;
	}

	.s-py-sm-1 > [class*='container'] {
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.s-py-sm-2 > [class*='container'] {
		padding-bottom: 2px;
		padding-top: 2px;
	}

	.s-py-sm-3 > [class*='container'] {
		padding-bottom: 3px;
		padding-top: 3px;
	}

	.s-py-sm-5 > [class*='container'] {
		padding-bottom: 5px;
		padding-top: 5px;
	}

	.s-py-sm-10 > [class*='container'] {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.s-py-sm-15 > [class*='container'] {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.s-py-sm-20 > [class*='container'] {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.s-py-sm-25 > [class*='container'] {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.s-py-sm-30 > [class*='container'] {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.s-py-sm-35 > [class*='container'] {
		padding-bottom: 35px;
		padding-top: 35px;
	}

	.s-py-sm-40 > [class*='container'] {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.s-py-sm-45 > [class*='container'] {
		padding-bottom: 45px;
		padding-top: 45px;
	}

	.s-py-sm-50 > [class*='container'] {
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.s-py-sm-55 > [class*='container'] {
		padding-bottom: 55px;
		padding-top: 55px;
	}

	.s-py-sm-60 > [class*='container'] {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.s-py-sm-70 > [class*='container'] {
		padding-bottom: 70px;
		padding-top: 70px;
	}

	.s-py-sm-75 > [class*='container'] {
		padding-bottom: 75px;
		padding-top: 75px;
	}

	.s-py-sm-80 > [class*='container'] {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.s-py-sm-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.s-py-sm-95 > [class*='container'] {
		padding-bottom: 95px;
		padding-top: 95px;
	}

	.s-py-sm-100 > [class*='container'] {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.s-py-sm-120 > [class*='container'] {
		padding-bottom: 120px;
		padding-top: 120px;
	}

	.s-py-sm-130 > [class*='container'] {
		padding-bottom: 130px;
		padding-top: 130px;
	}

	.s-py-sm-140 > [class*='container'] {
		padding-bottom: 140px;
		padding-top: 140px;
	}

	.s-py-sm-145 > [class*='container'] {
		padding-bottom: 145px;
		padding-top: 145px;
	}

	.s-py-sm-150 > [class*='container'] {
		padding-bottom: 150px;
		padding-top: 150px;
	}

	.s-py-sm-160 > [class*='container'] {
		padding-bottom: 160px;
		padding-top: 160px;
	}

	.s-py-sm-180 > [class*='container'] {
		padding-bottom: 180px;
		padding-top: 180px;
	}

	.s-py-sm-200 > [class*='container'] {
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

@media (min-width: 768px) {
	.s-pt-md-0 > [class*='container'] {
		padding-top: 0;
	}

	.s-pt-md-1 > [class*='container'] {
		padding-top: 1px;
	}

	.s-pt-md-2 > [class*='container'] {
		padding-top: 2px;
	}

	.s-pt-md-3 > [class*='container'] {
		padding-top: 3px;
	}

	.s-pt-md-5 > [class*='container'] {
		padding-top: 5px;
	}

	.s-pt-md-10 > [class*='container'] {
		padding-top: 10px;
	}

	.s-pt-md-15 > [class*='container'] {
		padding-top: 15px;
	}

	.s-pt-md-20 > [class*='container'] {
		padding-top: 20px;
	}

	.s-pt-md-25 > [class*='container'] {
		padding-top: 25px;
	}

	.s-pt-md-30 > [class*='container'] {
		padding-top: 30px;
	}

	.s-pt-md-35 > [class*='container'] {
		padding-top: 35px;
	}

	.s-pt-md-40 > [class*='container'] {
		padding-top: 40px;
	}

	.s-pt-md-45 > [class*='container'] {
		padding-top: 45px;
	}

	.s-pt-md-50 > [class*='container'] {
		padding-top: 50px;
	}

	.s-pt-md-55 > [class*='container'] {
		padding-top: 55px;
	}

	.s-pt-md-60 > [class*='container'] {
		padding-top: 60px;
	}

	.s-pt-md-70 > [class*='container'] {
		padding-top: 70px;
	}

	.s-pt-md-75 > [class*='container'] {
		padding-top: 75px;
	}

	.s-pt-md-80 > [class*='container'] {
		padding-top: 80px;
	}

	.s-pt-md-90 > [class*='container'] {
		padding-top: 90px;
	}

	.s-pt-md-95 > [class*='container'] {
		padding-top: 95px;
	}

	.s-pt-md-100 > [class*='container'] {
		padding-top: 100px;
	}

	.s-pt-md-120 > [class*='container'] {
		padding-top: 120px;
	}

	.s-pt-md-130 > [class*='container'] {
		padding-top: 130px;
	}

	.s-pt-md-140 > [class*='container'] {
		padding-top: 140px;
	}

	.s-pt-md-145 > [class*='container'] {
		padding-top: 145px;
	}

	.s-pt-md-150 > [class*='container'] {
		padding-top: 150px;
	}

	.s-pt-md-160 > [class*='container'] {
		padding-top: 160px;
	}

	.s-pt-md-180 > [class*='container'] {
		padding-top: 180px;
	}

	.s-pt-md-200 > [class*='container'] {
		padding-top: 200px;
	}

	.s-pb-md-0 > [class*='container'] {
		padding-bottom: 0;
	}

	.s-pb-md-1 > [class*='container'] {
		padding-bottom: 1px;
	}

	.s-pb-md-2 > [class*='container'] {
		padding-bottom: 2px;
	}

	.s-pb-md-3 > [class*='container'] {
		padding-bottom: 3px;
	}

	.s-pb-md-5 > [class*='container'] {
		padding-bottom: 5px;
	}

	.s-pb-md-10 > [class*='container'] {
		padding-bottom: 10px;
	}

	.s-pb-md-15 > [class*='container'] {
		padding-bottom: 15px;
	}

	.s-pb-md-20 > [class*='container'] {
		padding-bottom: 20px;
	}

	.s-pb-md-25 > [class*='container'] {
		padding-bottom: 25px;
	}

	.s-pb-md-30 > [class*='container'] {
		padding-bottom: 30px;
	}

	.s-pb-md-35 > [class*='container'] {
		padding-bottom: 35px;
	}

	.s-pb-md-40 > [class*='container'] {
		padding-bottom: 40px;
	}

	.s-pb-md-45 > [class*='container'] {
		padding-bottom: 45px;
	}

	.s-pb-md-50 > [class*='container'] {
		padding-bottom: 50px;
	}

	.s-pb-md-55 > [class*='container'] {
		padding-bottom: 55px;
	}

	.s-pb-md-60 > [class*='container'] {
		padding-bottom: 60px;
	}

	.s-pb-md-70 > [class*='container'] {
		padding-bottom: 70px;
	}

	.s-pb-md-75 > [class*='container'] {
		padding-bottom: 75px;
	}

	.s-pb-md-80 > [class*='container'] {
		padding-bottom: 80px;
	}

	.s-pb-md-90 > [class*='container'] {
		padding-bottom: 90px;
	}

	.s-pb-md-95 > [class*='container'] {
		padding-bottom: 95px;
	}

	.s-pb-md-100 > [class*='container'] {
		padding-bottom: 100px;
	}

	.s-pb-md-120 > [class*='container'] {
		padding-bottom: 120px;
	}

	.s-pb-md-130 > [class*='container'] {
		padding-bottom: 130px;
	}

	.s-pb-md-140 > [class*='container'] {
		padding-bottom: 140px;
	}

	.s-pb-md-145 > [class*='container'] {
		padding-bottom: 145px;
	}

	.s-pb-md-150 > [class*='container'] {
		padding-bottom: 150px;
	}

	.s-pb-md-160 > [class*='container'] {
		padding-bottom: 160px;
	}

	.s-pb-md-180 > [class*='container'] {
		padding-bottom: 180px;
	}

	.s-pb-md-200 > [class*='container'] {
		padding-bottom: 200px;
	}

	.s-py-md-0 > [class*='container'] {
		padding-bottom: 0;
		padding-top: 0;
	}

	.s-py-md-1 > [class*='container'] {
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.s-py-md-2 > [class*='container'] {
		padding-bottom: 2px;
		padding-top: 2px;
	}

	.s-py-md-3 > [class*='container'] {
		padding-bottom: 3px;
		padding-top: 3px;
	}

	.s-py-md-5 > [class*='container'] {
		padding-bottom: 5px;
		padding-top: 5px;
	}

	.s-py-md-10 > [class*='container'] {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.s-py-md-15 > [class*='container'] {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.s-py-md-20 > [class*='container'] {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.s-py-md-25 > [class*='container'] {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.s-py-md-30 > [class*='container'] {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.s-py-md-35 > [class*='container'] {
		padding-bottom: 35px;
		padding-top: 35px;
	}

	.s-py-md-40 > [class*='container'] {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.s-py-md-45 > [class*='container'] {
		padding-bottom: 45px;
		padding-top: 45px;
	}

	.s-py-md-50 > [class*='container'] {
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.s-py-md-55 > [class*='container'] {
		padding-bottom: 55px;
		padding-top: 55px;
	}

	.s-py-md-60 > [class*='container'] {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.s-py-md-70 > [class*='container'] {
		padding-bottom: 70px;
		padding-top: 70px;
	}

	.s-py-md-75 > [class*='container'] {
		padding-bottom: 75px;
		padding-top: 75px;
	}

	.s-py-md-80 > [class*='container'] {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.s-py-md-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.s-py-md-95 > [class*='container'] {
		padding-bottom: 95px;
		padding-top: 95px;
	}

	.s-py-md-100 > [class*='container'] {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.s-py-md-120 > [class*='container'] {
		padding-bottom: 120px;
		padding-top: 120px;
	}

	.s-py-md-130 > [class*='container'] {
		padding-bottom: 130px;
		padding-top: 130px;
	}

	.s-py-md-140 > [class*='container'] {
		padding-bottom: 140px;
		padding-top: 140px;
	}

	.s-py-md-145 > [class*='container'] {
		padding-bottom: 145px;
		padding-top: 145px;
	}

	.s-py-md-150 > [class*='container'] {
		padding-bottom: 150px;
		padding-top: 150px;
	}

	.s-py-md-160 > [class*='container'] {
		padding-bottom: 160px;
		padding-top: 160px;
	}

	.s-py-md-180 > [class*='container'] {
		padding-bottom: 180px;
		padding-top: 180px;
	}

	.s-py-md-200 > [class*='container'] {
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

@media (min-width: 992px) {
	.s-pt-lg-0 > [class*='container'] {
		padding-top: 0;
	}

	.s-pt-lg-1 > [class*='container'] {
		padding-top: 1px;
	}

	.s-pt-lg-2 > [class*='container'] {
		padding-top: 2px;
	}

	.s-pt-lg-3 > [class*='container'] {
		padding-top: 3px;
	}

	.s-pt-lg-5 > [class*='container'] {
		padding-top: 5px;
	}

	.s-pt-lg-10 > [class*='container'] {
		padding-top: 10px;
	}

	.s-pt-lg-15 > [class*='container'] {
		padding-top: 15px;
	}

	.s-pt-lg-20 > [class*='container'] {
		padding-top: 20px;
	}

	.s-pt-lg-25 > [class*='container'] {
		padding-top: 25px;
	}

	.s-pt-lg-30 > [class*='container'] {
		padding-top: 30px;
	}

	.s-pt-lg-35 > [class*='container'] {
		padding-top: 35px;
	}

	.s-pt-lg-40 > [class*='container'] {
		padding-top: 40px;
	}

	.s-pt-lg-45 > [class*='container'] {
		padding-top: 45px;
	}

	.s-pt-lg-50 > [class*='container'] {
		padding-top: 50px;
	}

	.s-pt-lg-55 > [class*='container'] {
		padding-top: 55px;
	}

	.s-pt-lg-60 > [class*='container'] {
		padding-top: 60px;
	}

	.s-pt-lg-70 > [class*='container'] {
		padding-top: 70px;
	}

	.s-pt-lg-75 > [class*='container'] {
		padding-top: 75px;
	}

	.s-pt-lg-80 > [class*='container'] {
		padding-top: 80px;
	}

	.s-pt-lg-90 > [class*='container'] {
		padding-top: 90px;
	}

	.s-pt-lg-95 > [class*='container'] {
		padding-top: 95px;
	}

	.s-pt-lg-100 > [class*='container'] {
		padding-top: 100px;
	}

	.s-pt-lg-120 > [class*='container'] {
		padding-top: 120px;
	}

	.s-pt-lg-130 > [class*='container'] {
		padding-top: 130px;
	}

	.s-pt-lg-140 > [class*='container'] {
		padding-top: 140px;
	}

	.s-pt-lg-145 > [class*='container'] {
		padding-top: 145px;
	}

	.s-pt-lg-150 > [class*='container'] {
		padding-top: 150px;
	}

	.s-pt-lg-160 > [class*='container'] {
		padding-top: 160px;
	}

	.s-pt-lg-180 > [class*='container'] {
		padding-top: 180px;
	}

	.s-pt-lg-200 > [class*='container'] {
		padding-top: 200px;
	}

	.s-pb-lg-0 > [class*='container'] {
		padding-bottom: 0;
	}

	.s-pb-lg-1 > [class*='container'] {
		padding-bottom: 1px;
	}

	.s-pb-lg-2 > [class*='container'] {
		padding-bottom: 2px;
	}

	.s-pb-lg-3 > [class*='container'] {
		padding-bottom: 3px;
	}

	.s-pb-lg-5 > [class*='container'] {
		padding-bottom: 5px;
	}

	.s-pb-lg-10 > [class*='container'] {
		padding-bottom: 10px;
	}

	.s-pb-lg-15 > [class*='container'] {
		padding-bottom: 15px;
	}

	.s-pb-lg-20 > [class*='container'] {
		padding-bottom: 20px;
	}

	.s-pb-lg-25 > [class*='container'] {
		padding-bottom: 25px;
	}

	.s-pb-lg-30 > [class*='container'] {
		padding-bottom: 30px;
	}

	.s-pb-lg-35 > [class*='container'] {
		padding-bottom: 35px;
	}

	.s-pb-lg-40 > [class*='container'] {
		padding-bottom: 40px;
	}

	.s-pb-lg-45 > [class*='container'] {
		padding-bottom: 45px;
	}

	.s-pb-lg-50 > [class*='container'] {
		padding-bottom: 50px;
	}

	.s-pb-lg-55 > [class*='container'] {
		padding-bottom: 55px;
	}

	.s-pb-lg-60 > [class*='container'] {
		padding-bottom: 60px;
	}

	.s-pb-lg-70 > [class*='container'] {
		padding-bottom: 70px;
	}

	.s-pb-lg-75 > [class*='container'] {
		padding-bottom: 75px;
	}

	.s-pb-lg-80 > [class*='container'] {
		padding-bottom: 80px;
	}

	.s-pb-lg-90 > [class*='container'] {
		padding-bottom: 90px;
	}

	.s-pb-lg-95 > [class*='container'] {
		padding-bottom: 95px;
	}

	.s-pb-lg-100 > [class*='container'] {
		padding-bottom: 100px;
	}

	.s-pb-lg-120 > [class*='container'] {
		padding-bottom: 120px;
	}

	.s-pb-lg-130 > [class*='container'] {
		padding-bottom: 130px;
	}

	.s-pb-lg-140 > [class*='container'] {
		padding-bottom: 140px;
	}

	.s-pb-lg-145 > [class*='container'] {
		padding-bottom: 145px;
	}

	.s-pb-lg-150 > [class*='container'] {
		padding-bottom: 150px;
	}

	.s-pb-lg-160 > [class*='container'] {
		padding-bottom: 160px;
	}

	.s-pb-lg-180 > [class*='container'] {
		padding-bottom: 180px;
	}

	.s-pb-lg-200 > [class*='container'] {
		padding-bottom: 200px;
	}

	.s-py-lg-0 > [class*='container'] {
		padding-bottom: 0;
		padding-top: 0;
	}

	.s-py-lg-1 > [class*='container'] {
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.s-py-lg-2 > [class*='container'] {
		padding-bottom: 2px;
		padding-top: 2px;
	}

	.s-py-lg-3 > [class*='container'] {
		padding-bottom: 3px;
		padding-top: 3px;
	}

	.s-py-lg-5 > [class*='container'] {
		padding-bottom: 5px;
		padding-top: 5px;
	}

	.s-py-lg-10 > [class*='container'] {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.s-py-lg-15 > [class*='container'] {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.s-py-lg-20 > [class*='container'] {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.s-py-lg-25 > [class*='container'] {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.s-py-lg-30 > [class*='container'] {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.s-py-lg-35 > [class*='container'] {
		padding-bottom: 35px;
		padding-top: 35px;
	}

	.s-py-lg-40 > [class*='container'] {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.s-py-lg-45 > [class*='container'] {
		padding-bottom: 45px;
		padding-top: 45px;
	}

	.s-py-lg-50 > [class*='container'] {
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.s-py-lg-55 > [class*='container'] {
		padding-bottom: 55px;
		padding-top: 55px;
	}

	.s-py-lg-60 > [class*='container'] {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.s-py-lg-70 > [class*='container'] {
		padding-bottom: 70px;
		padding-top: 70px;
	}

	.s-py-lg-75 > [class*='container'] {
		padding-bottom: 75px;
		padding-top: 75px;
	}

	.s-py-lg-80 > [class*='container'] {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.s-py-lg-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.s-py-lg-95 > [class*='container'] {
		padding-bottom: 95px;
		padding-top: 95px;
	}

	.s-py-lg-100 > [class*='container'] {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.s-py-lg-120 > [class*='container'] {
		padding-bottom: 120px;
		padding-top: 120px;
	}

	.s-py-lg-130 > [class*='container'] {
		padding-bottom: 130px;
		padding-top: 130px;
	}

	.s-py-lg-140 > [class*='container'] {
		padding-bottom: 140px;
		padding-top: 140px;
	}

	.s-py-lg-145 > [class*='container'] {
		padding-bottom: 145px;
		padding-top: 145px;
	}

	.s-py-lg-150 > [class*='container'] {
		padding-bottom: 150px;
		padding-top: 150px;
	}

	.s-py-lg-160 > [class*='container'] {
		padding-bottom: 160px;
		padding-top: 160px;
	}

	.s-py-lg-180 > [class*='container'] {
		padding-bottom: 180px;
		padding-top: 180px;
	}

	.s-py-lg-200 > [class*='container'] {
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

@media (min-width: 1200px) {
	.s-pt-xl-0 > [class*='container'] {
		padding-top: 0;
	}

	.s-pt-xl-1 > [class*='container'] {
		padding-top: 1px;
	}

	.s-pt-xl-2 > [class*='container'] {
		padding-top: 2px;
	}

	.s-pt-xl-3 > [class*='container'] {
		padding-top: 3px;
	}

	.s-pt-xl-5 > [class*='container'] {
		padding-top: 5px;
	}

	.s-pt-xl-10 > [class*='container'] {
		padding-top: 10px;
	}

	.s-pt-xl-15 > [class*='container'] {
		padding-top: 15px;
	}

	.s-pt-xl-20 > [class*='container'] {
		padding-top: 20px;
	}

	.s-pt-xl-25 > [class*='container'] {
		padding-top: 25px;
	}

	.s-pt-xl-30 > [class*='container'] {
		padding-top: 30px;
	}

	.s-pt-xl-35 > [class*='container'] {
		padding-top: 35px;
	}

	.s-pt-xl-40 > [class*='container'] {
		padding-top: 40px;
	}

	.s-pt-xl-45 > [class*='container'] {
		padding-top: 45px;
	}

	.s-pt-xl-50 > [class*='container'] {
		padding-top: 50px;
	}

	.s-pt-xl-55 > [class*='container'] {
		padding-top: 55px;
	}

	.s-pt-xl-60 > [class*='container'] {
		padding-top: 60px;
	}

	.s-pt-xl-70 > [class*='container'] {
		padding-top: 70px;
	}

	.s-pt-xl-75 > [class*='container'] {
		padding-top: 75px;
	}

	.s-pt-xl-80 > [class*='container'] {
		padding-top: 80px;
	}

	.s-pt-xl-90 > [class*='container'] {
		padding-top: 90px;
	}

	.s-pt-xl-95 > [class*='container'] {
		padding-top: 95px;
	}

	.s-pt-xl-100 > [class*='container'] {
		padding-top: 100px;
	}

	.s-pt-xl-120 > [class*='container'] {
		padding-top: 120px;
	}

	.s-pt-xl-130 > [class*='container'] {
		padding-top: 130px;
	}

	.s-pt-xl-140 > [class*='container'] {
		padding-top: 140px;
	}

	.s-pt-xl-145 > [class*='container'] {
		padding-top: 145px;
	}

	.s-pt-xl-150 > [class*='container'] {
		padding-top: 150px;
	}

	.s-pt-xl-160 > [class*='container'] {
		padding-top: 160px;
	}

	.s-pt-xl-180 > [class*='container'] {
		padding-top: 180px;
	}

	.s-pt-xl-200 > [class*='container'] {
		padding-top: 200px;
	}

	.s-pb-xl-0 > [class*='container'] {
		padding-bottom: 0;
	}

	.s-pb-xl-1 > [class*='container'] {
		padding-bottom: 1px;
	}

	.s-pb-xl-2 > [class*='container'] {
		padding-bottom: 2px;
	}

	.s-pb-xl-3 > [class*='container'] {
		padding-bottom: 3px;
	}

	.s-pb-xl-5 > [class*='container'] {
		padding-bottom: 5px;
	}

	.s-pb-xl-10 > [class*='container'] {
		padding-bottom: 10px;
	}

	.s-pb-xl-15 > [class*='container'] {
		padding-bottom: 15px;
	}

	.s-pb-xl-20 > [class*='container'] {
		padding-bottom: 20px;
	}

	.s-pb-xl-25 > [class*='container'] {
		padding-bottom: 25px;
	}

	.s-pb-xl-30 > [class*='container'] {
		padding-bottom: 30px;
	}

	.s-pb-xl-35 > [class*='container'] {
		padding-bottom: 35px;
	}

	.s-pb-xl-40 > [class*='container'] {
		padding-bottom: 40px;
	}

	.s-pb-xl-45 > [class*='container'] {
		padding-bottom: 45px;
	}

	.s-pb-xl-50 > [class*='container'] {
		padding-bottom: 50px;
	}

	.s-pb-xl-55 > [class*='container'] {
		padding-bottom: 55px;
	}

	.s-pb-xl-60 > [class*='container'] {
		padding-bottom: 60px;
	}

	.s-pb-xl-70 > [class*='container'] {
		padding-bottom: 70px;
	}

	.s-pb-xl-75 > [class*='container'] {
		padding-bottom: 75px;
	}

	.s-pb-xl-80 > [class*='container'] {
		padding-bottom: 80px;
	}

	.s-pb-xl-90 > [class*='container'] {
		padding-bottom: 90px;
	}

	.s-pb-xl-95 > [class*='container'] {
		padding-bottom: 95px;
	}

	.s-pb-xl-100 > [class*='container'] {
		padding-bottom: 100px;
	}

	.s-pb-xl-120 > [class*='container'] {
		padding-bottom: 120px;
	}

	.s-pb-xl-130 > [class*='container'] {
		padding-bottom: 130px;
	}

	.s-pb-xl-140 > [class*='container'] {
		padding-bottom: 140px;
	}

	.s-pb-xl-145 > [class*='container'] {
		padding-bottom: 145px;
	}

	.s-pb-xl-150 > [class*='container'] {
		padding-bottom: 150px;
	}

	.s-pb-xl-160 > [class*='container'] {
		padding-bottom: 160px;
	}

	.s-pb-xl-180 > [class*='container'] {
		padding-bottom: 180px;
	}

	.s-pb-xl-200 > [class*='container'] {
		padding-bottom: 200px;
	}

	.s-py-xl-0 > [class*='container'] {
		padding-bottom: 0;
		padding-top: 0;
	}

	.s-py-xl-1 > [class*='container'] {
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.s-py-xl-2 > [class*='container'] {
		padding-bottom: 2px;
		padding-top: 2px;
	}

	.s-py-xl-3 > [class*='container'] {
		padding-bottom: 3px;
		padding-top: 3px;
	}

	.s-py-xl-5 > [class*='container'] {
		padding-bottom: 5px;
		padding-top: 5px;
	}

	.s-py-xl-10 > [class*='container'] {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.s-py-xl-15 > [class*='container'] {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.s-py-xl-20 > [class*='container'] {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.s-py-xl-25 > [class*='container'] {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.s-py-xl-30 > [class*='container'] {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.s-py-xl-35 > [class*='container'] {
		padding-bottom: 35px;
		padding-top: 35px;
	}

	.s-py-xl-40 > [class*='container'] {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.s-py-xl-45 > [class*='container'] {
		padding-bottom: 45px;
		padding-top: 45px;
	}

	.s-py-xl-50 > [class*='container'] {
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.s-py-xl-55 > [class*='container'] {
		padding-bottom: 55px;
		padding-top: 55px;
	}

	.s-py-xl-60 > [class*='container'] {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.s-py-xl-70 > [class*='container'] {
		padding-bottom: 70px;
		padding-top: 70px;
	}

	.s-py-xl-75 > [class*='container'] {
		padding-bottom: 75px;
		padding-top: 75px;
	}

	.s-py-xl-80 > [class*='container'] {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.s-py-xl-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.s-py-xl-95 > [class*='container'] {
		padding-bottom: 95px;
		padding-top: 95px;
	}

	.s-py-xl-100 > [class*='container'] {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.s-py-xl-120 > [class*='container'] {
		padding-bottom: 120px;
		padding-top: 120px;
	}

	.s-py-xl-130 > [class*='container'] {
		padding-bottom: 130px;
		padding-top: 130px;
	}

	.s-py-xl-140 > [class*='container'] {
		padding-bottom: 140px;
		padding-top: 140px;
	}

	.s-py-xl-145 > [class*='container'] {
		padding-bottom: 145px;
		padding-top: 145px;
	}

	.s-py-xl-150 > [class*='container'] {
		padding-bottom: 150px;
		padding-top: 150px;
	}

	.s-py-xl-160 > [class*='container'] {
		padding-bottom: 160px;
		padding-top: 160px;
	}

	.s-py-xl-180 > [class*='container'] {
		padding-bottom: 180px;
		padding-top: 180px;
	}

	.s-py-xl-200 > [class*='container'] {
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

@media (min-width: 1680px) {
	.s-pt-xxl-0 > [class*='container'] {
		padding-top: 0;
	}

	.s-pt-xxl-1 > [class*='container'] {
		padding-top: 1px;
	}

	.s-pt-xxl-2 > [class*='container'] {
		padding-top: 2px;
	}

	.s-pt-xxl-3 > [class*='container'] {
		padding-top: 3px;
	}

	.s-pt-xxl-5 > [class*='container'] {
		padding-top: 5px;
	}

	.s-pt-xxl-10 > [class*='container'] {
		padding-top: 10px;
	}

	.s-pt-xxl-15 > [class*='container'] {
		padding-top: 15px;
	}

	.s-pt-xxl-20 > [class*='container'] {
		padding-top: 20px;
	}

	.s-pt-xxl-25 > [class*='container'] {
		padding-top: 25px;
	}

	.s-pt-xxl-30 > [class*='container'] {
		padding-top: 30px;
	}

	.s-pt-xxl-35 > [class*='container'] {
		padding-top: 35px;
	}

	.s-pt-xxl-40 > [class*='container'] {
		padding-top: 40px;
	}

	.s-pt-xxl-45 > [class*='container'] {
		padding-top: 45px;
	}

	.s-pt-xxl-50 > [class*='container'] {
		padding-top: 50px;
	}

	.s-pt-xxl-55 > [class*='container'] {
		padding-top: 55px;
	}

	.s-pt-xxl-60 > [class*='container'] {
		padding-top: 60px;
	}

	.s-pt-xxl-70 > [class*='container'] {
		padding-top: 70px;
	}

	.s-pt-xxl-75 > [class*='container'] {
		padding-top: 75px;
	}

	.s-pt-xxl-80 > [class*='container'] {
		padding-top: 80px;
	}

	.s-pt-xxl-90 > [class*='container'] {
		padding-top: 90px;
	}

	.s-pt-xxl-95 > [class*='container'] {
		padding-top: 95px;
	}

	.s-pt-xxl-100 > [class*='container'] {
		padding-top: 100px;
	}

	.s-pt-xxl-120 > [class*='container'] {
		padding-top: 120px;
	}

	.s-pt-xxl-130 > [class*='container'] {
		padding-top: 130px;
	}

	.s-pt-xxl-140 > [class*='container'] {
		padding-top: 140px;
	}

	.s-pt-xxl-145 > [class*='container'] {
		padding-top: 145px;
	}

	.s-pt-xxl-150 > [class*='container'] {
		padding-top: 150px;
	}

	.s-pt-xxl-160 > [class*='container'] {
		padding-top: 160px;
	}

	.s-pt-xxl-180 > [class*='container'] {
		padding-top: 180px;
	}

	.s-pt-xxl-200 > [class*='container'] {
		padding-top: 200px;
	}

	.s-pb-xxl-0 > [class*='container'] {
		padding-bottom: 0;
	}

	.s-pb-xxl-1 > [class*='container'] {
		padding-bottom: 1px;
	}

	.s-pb-xxl-2 > [class*='container'] {
		padding-bottom: 2px;
	}

	.s-pb-xxl-3 > [class*='container'] {
		padding-bottom: 3px;
	}

	.s-pb-xxl-5 > [class*='container'] {
		padding-bottom: 5px;
	}

	.s-pb-xxl-10 > [class*='container'] {
		padding-bottom: 10px;
	}

	.s-pb-xxl-15 > [class*='container'] {
		padding-bottom: 15px;
	}

	.s-pb-xxl-20 > [class*='container'] {
		padding-bottom: 20px;
	}

	.s-pb-xxl-25 > [class*='container'] {
		padding-bottom: 25px;
	}

	.s-pb-xxl-30 > [class*='container'] {
		padding-bottom: 30px;
	}

	.s-pb-xxl-35 > [class*='container'] {
		padding-bottom: 35px;
	}

	.s-pb-xxl-40 > [class*='container'] {
		padding-bottom: 40px;
	}

	.s-pb-xxl-45 > [class*='container'] {
		padding-bottom: 45px;
	}

	.s-pb-xxl-50 > [class*='container'] {
		padding-bottom: 50px;
	}

	.s-pb-xxl-55 > [class*='container'] {
		padding-bottom: 55px;
	}

	.s-pb-xxl-60 > [class*='container'] {
		padding-bottom: 60px;
	}

	.s-pb-xxl-70 > [class*='container'] {
		padding-bottom: 70px;
	}

	.s-pb-xxl-75 > [class*='container'] {
		padding-bottom: 75px;
	}

	.s-pb-xxl-80 > [class*='container'] {
		padding-bottom: 80px;
	}

	.s-pb-xxl-90 > [class*='container'] {
		padding-bottom: 90px;
	}

	.s-pb-xxl-95 > [class*='container'] {
		padding-bottom: 95px;
	}

	.s-pb-xxl-100 > [class*='container'] {
		padding-bottom: 100px;
	}

	.s-pb-xxl-120 > [class*='container'] {
		padding-bottom: 120px;
	}

	.s-pb-xxl-130 > [class*='container'] {
		padding-bottom: 130px;
	}

	.s-pb-xxl-140 > [class*='container'] {
		padding-bottom: 140px;
	}

	.s-pb-xxl-145 > [class*='container'] {
		padding-bottom: 145px;
	}

	.s-pb-xxl-150 > [class*='container'] {
		padding-bottom: 150px;
	}

	.s-pb-xxl-160 > [class*='container'] {
		padding-bottom: 160px;
	}

	.s-pb-xxl-180 > [class*='container'] {
		padding-bottom: 180px;
	}

	.s-pb-xxl-200 > [class*='container'] {
		padding-bottom: 200px;
	}

	.s-py-xxl-0 > [class*='container'] {
		padding-bottom: 0;
		padding-top: 0;
	}

	.s-py-xxl-1 > [class*='container'] {
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.s-py-xxl-2 > [class*='container'] {
		padding-bottom: 2px;
		padding-top: 2px;
	}

	.s-py-xxl-3 > [class*='container'] {
		padding-bottom: 3px;
		padding-top: 3px;
	}

	.s-py-xxl-5 > [class*='container'] {
		padding-bottom: 5px;
		padding-top: 5px;
	}

	.s-py-xxl-10 > [class*='container'] {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.s-py-xxl-15 > [class*='container'] {
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.s-py-xxl-20 > [class*='container'] {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.s-py-xxl-25 > [class*='container'] {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.s-py-xxl-30 > [class*='container'] {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.s-py-xxl-35 > [class*='container'] {
		padding-bottom: 35px;
		padding-top: 35px;
	}

	.s-py-xxl-40 > [class*='container'] {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.s-py-xxl-45 > [class*='container'] {
		padding-bottom: 45px;
		padding-top: 45px;
	}

	.s-py-xxl-50 > [class*='container'] {
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.s-py-xxl-55 > [class*='container'] {
		padding-bottom: 55px;
		padding-top: 55px;
	}

	.s-py-xxl-60 > [class*='container'] {
		padding-bottom: 60px;
		padding-top: 60px;
	}

	.s-py-xxl-70 > [class*='container'] {
		padding-bottom: 70px;
		padding-top: 70px;
	}

	.s-py-xxl-75 > [class*='container'] {
		padding-bottom: 75px;
		padding-top: 75px;
	}

	.s-py-xxl-80 > [class*='container'] {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.s-py-xxl-90 > [class*='container'] {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.s-py-xxl-95 > [class*='container'] {
		padding-bottom: 95px;
		padding-top: 95px;
	}

	.s-py-xxl-100 > [class*='container'] {
		padding-bottom: 100px;
		padding-top: 100px;
	}

	.s-py-xxl-120 > [class*='container'] {
		padding-bottom: 120px;
		padding-top: 120px;
	}

	.s-py-xxl-130 > [class*='container'] {
		padding-bottom: 130px;
		padding-top: 130px;
	}

	.s-py-xxl-140 > [class*='container'] {
		padding-bottom: 140px;
		padding-top: 140px;
	}

	.s-py-xxl-145 > [class*='container'] {
		padding-bottom: 145px;
		padding-top: 145px;
	}

	.s-py-xxl-150 > [class*='container'] {
		padding-bottom: 150px;
		padding-top: 150px;
	}

	.s-py-xxl-160 > [class*='container'] {
		padding-bottom: 160px;
		padding-top: 160px;
	}

	.s-py-xxl-180 > [class*='container'] {
		padding-bottom: 180px;
		padding-top: 180px;
	}

	.s-py-xxl-200 > [class*='container'] {
		padding-bottom: 200px;
		padding-top: 200px;
	}
}

/* Vertical margins for columns in sections and rows
.c - columns
mt-* - margin top value
mb-* - margin bottom value
my-* - same value for top and for bottom margin
*/
.c-mt-0 [class*="col-"],
.row.c-mt-0 > [class*="col-"] {
	margin-top: 0;
}

.c-mt-1 [class*="col-"],
.row.c-mt-1 > [class*="col-"] {
	margin-top: 1px;
}

.c-mt-2 [class*="col-"],
.row.c-mt-2 > [class*="col-"] {
	margin-top: 2px;
}

.c-mt-5 [class*="col-"],
.row.c-mt-5 > [class*="col-"] {
	margin-top: 5px;
}

.c-mt-10 [class*="col-"],
.row.c-mt-10 > [class*="col-"] {
	margin-top: 10px;
}

.c-mt-15 [class*="col-"],
.row.c-mt-15 > [class*="col-"] {
	margin-top: 15px;
}

.c-mt-20 [class*="col-"],
.row.c-mt-20 > [class*="col-"] {
	margin-top: 20px;
}

.c-mt-25 [class*="col-"],
.row.c-mt-25 > [class*="col-"] {
	margin-top: 25px;
}

.c-mt-30 [class*="col-"],
.row.c-mt-30 > [class*="col-"] {
	margin-top: 30px;
}

.c-mt-40 [class*="col-"],
.row.c-mt-40 > [class*="col-"] {
	margin-top: 40px;
}

.c-mt-50 [class*="col-"],
.row.c-mt-50 > [class*="col-"] {
	margin-top: 50px;
}

.c-mt-60 [class*="col-"],
.row.c-mt-60 > [class*="col-"] {
	margin-top: 60px;
}

.c-mb-0 [class*="col-"],
.row.c-mb-0 > [class*="col-"] {
	margin-bottom: 0;
}

.c-mb-1 [class*="col-"],
.row.c-mb-1 > [class*="col-"] {
	margin-bottom: 1px;
}

.c-mb-2 [class*="col-"],
.row.c-mb-2 > [class*="col-"] {
	margin-bottom: 2px;
}

.c-mb-5 [class*="col-"],
.row.c-mb-5 > [class*="col-"] {
	margin-bottom: 5px;
}

.c-mb-10 [class*="col-"],
.row.c-mb-10 > [class*="col-"] {
	margin-bottom: 10px;
}

.c-mb-15 [class*="col-"],
.row.c-mb-15 > [class*="col-"] {
	margin-bottom: 15px;
}

.c-mb-20 [class*="col-"],
.row.c-mb-20 > [class*="col-"] {
	margin-bottom: 20px;
}

.c-mb-25 [class*="col-"],
.row.c-mb-25 > [class*="col-"] {
	margin-bottom: 25px;
}

.c-mb-30 [class*="col-"],
.row.c-mb-30 > [class*="col-"] {
	margin-bottom: 30px;
}

.c-mb-40 [class*="col-"],
.row.c-mb-40 > [class*="col-"] {
	margin-bottom: 40px;
}

.c-mb-50 [class*="col-"],
.row.c-mb-50 > [class*="col-"] {
	margin-bottom: 50px;
}

.c-mb-60 [class*="col-"],
.row.c-mb-60 > [class*="col-"] {
	margin-bottom: 60px;
}

.c-my-0 [class*="col-"],
.row.c-my-0 > [class*="col-"] {
	margin-bottom: 0;
	margin-top: 0;
}

.c-my-1 [class*="col-"],
.row.c-my-1 > [class*="col-"] {
	margin-bottom: 1px;
	margin-top: 1px;
}

.c-my-2 [class*="col-"],
.row.c-my-2 > [class*="col-"] {
	margin-bottom: 2px;
	margin-top: 2px;
}

.c-my-5 [class*="col-"],
.row.c-my-5 > [class*="col-"] {
	margin-bottom: 5px;
	margin-top: 5px;
}

.c-my-10 [class*="col-"],
.row.c-my-10 > [class*="col-"] {
	margin-bottom: 10px;
	margin-top: 10px;
}

.c-my-15 [class*="col-"],
.row.c-my-15 > [class*="col-"] {
	margin-bottom: 15px;
	margin-top: 15px;
}

.c-my-20 [class*="col-"],
.row.c-my-20 > [class*="col-"] {
	margin-bottom: 20px;
	margin-top: 20px;
}

.c-my-25 [class*="col-"],
.row.c-my-25 > [class*="col-"] {
	margin-bottom: 25px;
	margin-top: 25px;
}

.c-my-30 [class*="col-"],
.row.c-my-30 > [class*="col-"] {
	margin-bottom: 30px;
	margin-top: 30px;
}

.c-my-40 [class*="col-"],
.row.c-my-40 > [class*="col-"] {
	margin-bottom: 40px;
	margin-top: 40px;
}

.c-my-50 [class*="col-"],
.row.c-my-50 > [class*="col-"] {
	margin-bottom: 50px;
	margin-top: 50px;
}

.c-my-60 [class*="col-"],
.row.c-my-60 > [class*="col-"] {
	margin-bottom: 60px;
	margin-top: 60px;
}

@media (min-width: 576px) {
	.c-mt-sm-0 [class*="col-"],
	.row.c-mt-sm-0 > [class*="col-"] {
		margin-top: 0;
	}

	.c-mt-sm-1 [class*="col-"],
	.row.c-mt-sm-1 > [class*="col-"] {
		margin-top: 1px;
	}

	.c-mt-sm-2 [class*="col-"],
	.row.c-mt-sm-2 > [class*="col-"] {
		margin-top: 2px;
	}

	.c-mt-sm-5 [class*="col-"],
	.row.c-mt-sm-5 > [class*="col-"] {
		margin-top: 5px;
	}

	.c-mt-sm-10 [class*="col-"],
	.row.c-mt-sm-10 > [class*="col-"] {
		margin-top: 10px;
	}

	.c-mt-sm-15 [class*="col-"],
	.row.c-mt-sm-15 > [class*="col-"] {
		margin-top: 15px;
	}

	.c-mt-sm-20 [class*="col-"],
	.row.c-mt-sm-20 > [class*="col-"] {
		margin-top: 20px;
	}

	.c-mt-sm-25 [class*="col-"],
	.row.c-mt-sm-25 > [class*="col-"] {
		margin-top: 25px;
	}

	.c-mt-sm-30 [class*="col-"],
	.row.c-mt-sm-30 > [class*="col-"] {
		margin-top: 30px;
	}

	.c-mt-sm-40 [class*="col-"],
	.row.c-mt-sm-40 > [class*="col-"] {
		margin-top: 40px;
	}

	.c-mt-sm-50 [class*="col-"],
	.row.c-mt-sm-50 > [class*="col-"] {
		margin-top: 50px;
	}

	.c-mt-sm-60 [class*="col-"],
	.row.c-mt-sm-60 > [class*="col-"] {
		margin-top: 60px;
	}

	.c-mb-sm-0 [class*="col-"],
	.row.c-mb-sm-0 > [class*="col-"] {
		margin-bottom: 0;
	}

	.c-mb-sm-1 [class*="col-"],
	.row.c-mb-sm-1 > [class*="col-"] {
		margin-bottom: 1px;
	}

	.c-mb-sm-2 [class*="col-"],
	.row.c-mb-sm-2 > [class*="col-"] {
		margin-bottom: 2px;
	}

	.c-mb-sm-5 [class*="col-"],
	.row.c-mb-sm-5 > [class*="col-"] {
		margin-bottom: 5px;
	}

	.c-mb-sm-10 [class*="col-"],
	.row.c-mb-sm-10 > [class*="col-"] {
		margin-bottom: 10px;
	}

	.c-mb-sm-15 [class*="col-"],
	.row.c-mb-sm-15 > [class*="col-"] {
		margin-bottom: 15px;
	}

	.c-mb-sm-20 [class*="col-"],
	.row.c-mb-sm-20 > [class*="col-"] {
		margin-bottom: 20px;
	}

	.c-mb-sm-25 [class*="col-"],
	.row.c-mb-sm-25 > [class*="col-"] {
		margin-bottom: 25px;
	}

	.c-mb-sm-30 [class*="col-"],
	.row.c-mb-sm-30 > [class*="col-"] {
		margin-bottom: 30px;
	}

	.c-mb-sm-40 [class*="col-"],
	.row.c-mb-sm-40 > [class*="col-"] {
		margin-bottom: 40px;
	}

	.c-mb-sm-50 [class*="col-"],
	.row.c-mb-sm-50 > [class*="col-"] {
		margin-bottom: 50px;
	}

	.c-mb-sm-60 [class*="col-"],
	.row.c-mb-sm-60 > [class*="col-"] {
		margin-bottom: 60px;
	}

	.c-my-sm-0 [class*="col-"],
	.row.c-my-sm-0 > [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
	}

	.c-my-sm-1 [class*="col-"],
	.row.c-my-sm-1 > [class*="col-"] {
		margin-bottom: 1px;
		margin-top: 1px;
	}

	.c-my-sm-2 [class*="col-"],
	.row.c-my-sm-2 > [class*="col-"] {
		margin-bottom: 2px;
		margin-top: 2px;
	}

	.c-my-sm-5 [class*="col-"],
	.row.c-my-sm-5 > [class*="col-"] {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.c-my-sm-10 [class*="col-"],
	.row.c-my-sm-10 > [class*="col-"] {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.c-my-sm-15 [class*="col-"],
	.row.c-my-sm-15 > [class*="col-"] {
		margin-bottom: 15px;
		margin-top: 15px;
	}

	.c-my-sm-20 [class*="col-"],
	.row.c-my-sm-20 > [class*="col-"] {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.c-my-sm-25 [class*="col-"],
	.row.c-my-sm-25 > [class*="col-"] {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.c-my-sm-30 [class*="col-"],
	.row.c-my-sm-30 > [class*="col-"] {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.c-my-sm-40 [class*="col-"],
	.row.c-my-sm-40 > [class*="col-"] {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.c-my-sm-50 [class*="col-"],
	.row.c-my-sm-50 > [class*="col-"] {
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.c-my-sm-60 [class*="col-"],
	.row.c-my-sm-60 > [class*="col-"] {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

@media (min-width: 768px) {
	.c-mt-md-0 [class*="col-"],
	.row.c-mt-md-0 > [class*="col-"] {
		margin-top: 0;
	}

	.c-mt-md-1 [class*="col-"],
	.row.c-mt-md-1 > [class*="col-"] {
		margin-top: 1px;
	}

	.c-mt-md-2 [class*="col-"],
	.row.c-mt-md-2 > [class*="col-"] {
		margin-top: 2px;
	}

	.c-mt-md-5 [class*="col-"],
	.row.c-mt-md-5 > [class*="col-"] {
		margin-top: 5px;
	}

	.c-mt-md-10 [class*="col-"],
	.row.c-mt-md-10 > [class*="col-"] {
		margin-top: 10px;
	}

	.c-mt-md-15 [class*="col-"],
	.row.c-mt-md-15 > [class*="col-"] {
		margin-top: 15px;
	}

	.c-mt-md-20 [class*="col-"],
	.row.c-mt-md-20 > [class*="col-"] {
		margin-top: 20px;
	}

	.c-mt-md-25 [class*="col-"],
	.row.c-mt-md-25 > [class*="col-"] {
		margin-top: 25px;
	}

	.c-mt-md-30 [class*="col-"],
	.row.c-mt-md-30 > [class*="col-"] {
		margin-top: 30px;
	}

	.c-mt-md-40 [class*="col-"],
	.row.c-mt-md-40 > [class*="col-"] {
		margin-top: 40px;
	}

	.c-mt-md-50 [class*="col-"],
	.row.c-mt-md-50 > [class*="col-"] {
		margin-top: 50px;
	}

	.c-mt-md-60 [class*="col-"],
	.row.c-mt-md-60 > [class*="col-"] {
		margin-top: 60px;
	}

	.c-mb-md-0 [class*="col-"],
	.row.c-mb-md-0 > [class*="col-"] {
		margin-bottom: 0;
	}

	.c-mb-md-1 [class*="col-"],
	.row.c-mb-md-1 > [class*="col-"] {
		margin-bottom: 1px;
	}

	.c-mb-md-2 [class*="col-"],
	.row.c-mb-md-2 > [class*="col-"] {
		margin-bottom: 2px;
	}

	.c-mb-md-5 [class*="col-"],
	.row.c-mb-md-5 > [class*="col-"] {
		margin-bottom: 5px;
	}

	.c-mb-md-10 [class*="col-"],
	.row.c-mb-md-10 > [class*="col-"] {
		margin-bottom: 10px;
	}

	.c-mb-md-15 [class*="col-"],
	.row.c-mb-md-15 > [class*="col-"] {
		margin-bottom: 15px;
	}

	.c-mb-md-20 [class*="col-"],
	.row.c-mb-md-20 > [class*="col-"] {
		margin-bottom: 20px;
	}

	.c-mb-md-25 [class*="col-"],
	.row.c-mb-md-25 > [class*="col-"] {
		margin-bottom: 25px;
	}

	.c-mb-md-30 [class*="col-"],
	.row.c-mb-md-30 > [class*="col-"] {
		margin-bottom: 30px;
	}

	.c-mb-md-40 [class*="col-"],
	.row.c-mb-md-40 > [class*="col-"] {
		margin-bottom: 40px;
	}

	.c-mb-md-50 [class*="col-"],
	.row.c-mb-md-50 > [class*="col-"] {
		margin-bottom: 50px;
	}

	.c-mb-md-60 [class*="col-"],
	.row.c-mb-md-60 > [class*="col-"] {
		margin-bottom: 60px;
	}

	.c-my-md-0 [class*="col-"],
	.row.c-my-md-0 > [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
	}

	.c-my-md-1 [class*="col-"],
	.row.c-my-md-1 > [class*="col-"] {
		margin-bottom: 1px;
		margin-top: 1px;
	}

	.c-my-md-2 [class*="col-"],
	.row.c-my-md-2 > [class*="col-"] {
		margin-bottom: 2px;
		margin-top: 2px;
	}

	.c-my-md-5 [class*="col-"],
	.row.c-my-md-5 > [class*="col-"] {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.c-my-md-10 [class*="col-"],
	.row.c-my-md-10 > [class*="col-"] {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.c-my-md-15 [class*="col-"],
	.row.c-my-md-15 > [class*="col-"] {
		margin-bottom: 15px;
		margin-top: 15px;
	}

	.c-my-md-20 [class*="col-"],
	.row.c-my-md-20 > [class*="col-"] {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.c-my-md-25 [class*="col-"],
	.row.c-my-md-25 > [class*="col-"] {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.c-my-md-30 [class*="col-"],
	.row.c-my-md-30 > [class*="col-"] {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.c-my-md-40 [class*="col-"],
	.row.c-my-md-40 > [class*="col-"] {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.c-my-md-50 [class*="col-"],
	.row.c-my-md-50 > [class*="col-"] {
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.c-my-md-60 [class*="col-"],
	.row.c-my-md-60 > [class*="col-"] {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

@media (min-width: 992px) {
	.c-mt-lg-0 [class*="col-"],
	.row.c-mt-lg-0 > [class*="col-"] {
		margin-top: 0;
	}

	.c-mt-lg-1 [class*="col-"],
	.row.c-mt-lg-1 > [class*="col-"] {
		margin-top: 1px;
	}

	.c-mt-lg-2 [class*="col-"],
	.row.c-mt-lg-2 > [class*="col-"] {
		margin-top: 2px;
	}

	.c-mt-lg-5 [class*="col-"],
	.row.c-mt-lg-5 > [class*="col-"] {
		margin-top: 5px;
	}

	.c-mt-lg-10 [class*="col-"],
	.row.c-mt-lg-10 > [class*="col-"] {
		margin-top: 10px;
	}

	.c-mt-lg-15 [class*="col-"],
	.row.c-mt-lg-15 > [class*="col-"] {
		margin-top: 15px;
	}

	.c-mt-lg-20 [class*="col-"],
	.row.c-mt-lg-20 > [class*="col-"] {
		margin-top: 20px;
	}

	.c-mt-lg-25 [class*="col-"],
	.row.c-mt-lg-25 > [class*="col-"] {
		margin-top: 25px;
	}

	.c-mt-lg-30 [class*="col-"],
	.row.c-mt-lg-30 > [class*="col-"] {
		margin-top: 30px;
	}

	.c-mt-lg-40 [class*="col-"],
	.row.c-mt-lg-40 > [class*="col-"] {
		margin-top: 40px;
	}

	.c-mt-lg-50 [class*="col-"],
	.row.c-mt-lg-50 > [class*="col-"] {
		margin-top: 50px;
	}

	.c-mt-lg-60 [class*="col-"],
	.row.c-mt-lg-60 > [class*="col-"] {
		margin-top: 60px;
	}

	.c-mb-lg-0 [class*="col-"],
	.row.c-mb-lg-0 > [class*="col-"] {
		margin-bottom: 0;
	}

	.c-mb-lg-1 [class*="col-"],
	.row.c-mb-lg-1 > [class*="col-"] {
		margin-bottom: 1px;
	}

	.c-mb-lg-2 [class*="col-"],
	.row.c-mb-lg-2 > [class*="col-"] {
		margin-bottom: 2px;
	}

	.c-mb-lg-5 [class*="col-"],
	.row.c-mb-lg-5 > [class*="col-"] {
		margin-bottom: 5px;
	}

	.c-mb-lg-10 [class*="col-"],
	.row.c-mb-lg-10 > [class*="col-"] {
		margin-bottom: 10px;
	}

	.c-mb-lg-15 [class*="col-"],
	.row.c-mb-lg-15 > [class*="col-"] {
		margin-bottom: 15px;
	}

	.c-mb-lg-20 [class*="col-"],
	.row.c-mb-lg-20 > [class*="col-"] {
		margin-bottom: 20px;
	}

	.c-mb-lg-25 [class*="col-"],
	.row.c-mb-lg-25 > [class*="col-"] {
		margin-bottom: 25px;
	}

	.c-mb-lg-30 [class*="col-"],
	.row.c-mb-lg-30 > [class*="col-"] {
		margin-bottom: 30px;
	}

	.c-mb-lg-40 [class*="col-"],
	.row.c-mb-lg-40 > [class*="col-"] {
		margin-bottom: 40px;
	}

	.c-mb-lg-50 [class*="col-"],
	.row.c-mb-lg-50 > [class*="col-"] {
		margin-bottom: 50px;
	}

	.c-mb-lg-60 [class*="col-"],
	.row.c-mb-lg-60 > [class*="col-"] {
		margin-bottom: 60px;
	}

	.c-my-lg-0 [class*="col-"],
	.row.c-my-lg-0 > [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
	}

	.c-my-lg-1 [class*="col-"],
	.row.c-my-lg-1 > [class*="col-"] {
		margin-bottom: 1px;
		margin-top: 1px;
	}

	.c-my-lg-2 [class*="col-"],
	.row.c-my-lg-2 > [class*="col-"] {
		margin-bottom: 2px;
		margin-top: 2px;
	}

	.c-my-lg-5 [class*="col-"],
	.row.c-my-lg-5 > [class*="col-"] {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.c-my-lg-10 [class*="col-"],
	.row.c-my-lg-10 > [class*="col-"] {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.c-my-lg-15 [class*="col-"],
	.row.c-my-lg-15 > [class*="col-"] {
		margin-bottom: 15px;
		margin-top: 15px;
	}

	.c-my-lg-20 [class*="col-"],
	.row.c-my-lg-20 > [class*="col-"] {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.c-my-lg-25 [class*="col-"],
	.row.c-my-lg-25 > [class*="col-"] {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.c-my-lg-30 [class*="col-"],
	.row.c-my-lg-30 > [class*="col-"] {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.c-my-lg-40 [class*="col-"],
	.row.c-my-lg-40 > [class*="col-"] {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.c-my-lg-50 [class*="col-"],
	.row.c-my-lg-50 > [class*="col-"] {
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.c-my-lg-60 [class*="col-"],
	.row.c-my-lg-60 > [class*="col-"] {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	.c-mt-xl-0 [class*="col-"],
	.row.c-mt-xl-0 > [class*="col-"] {
		margin-top: 0;
	}

	.c-mt-xl-1 [class*="col-"],
	.row.c-mt-xl-1 > [class*="col-"] {
		margin-top: 1px;
	}

	.c-mt-xl-2 [class*="col-"],
	.row.c-mt-xl-2 > [class*="col-"] {
		margin-top: 2px;
	}

	.c-mt-xl-5 [class*="col-"],
	.row.c-mt-xl-5 > [class*="col-"] {
		margin-top: 5px;
	}

	.c-mt-xl-10 [class*="col-"],
	.row.c-mt-xl-10 > [class*="col-"] {
		margin-top: 10px;
	}

	.c-mt-xl-15 [class*="col-"],
	.row.c-mt-xl-15 > [class*="col-"] {
		margin-top: 15px;
	}

	.c-mt-xl-20 [class*="col-"],
	.row.c-mt-xl-20 > [class*="col-"] {
		margin-top: 20px;
	}

	.c-mt-xl-25 [class*="col-"],
	.row.c-mt-xl-25 > [class*="col-"] {
		margin-top: 25px;
	}

	.c-mt-xl-30 [class*="col-"],
	.row.c-mt-xl-30 > [class*="col-"] {
		margin-top: 30px;
	}

	.c-mt-xl-40 [class*="col-"],
	.row.c-mt-xl-40 > [class*="col-"] {
		margin-top: 40px;
	}

	.c-mt-xl-50 [class*="col-"],
	.row.c-mt-xl-50 > [class*="col-"] {
		margin-top: 50px;
	}

	.c-mt-xl-60 [class*="col-"],
	.row.c-mt-xl-60 > [class*="col-"] {
		margin-top: 60px;
	}

	.c-mb-xl-0 [class*="col-"],
	.row.c-mb-xl-0 > [class*="col-"] {
		margin-bottom: 0;
	}

	.c-mb-xl-1 [class*="col-"],
	.row.c-mb-xl-1 > [class*="col-"] {
		margin-bottom: 1px;
	}

	.c-mb-xl-2 [class*="col-"],
	.row.c-mb-xl-2 > [class*="col-"] {
		margin-bottom: 2px;
	}

	.c-mb-xl-5 [class*="col-"],
	.row.c-mb-xl-5 > [class*="col-"] {
		margin-bottom: 5px;
	}

	.c-mb-xl-10 [class*="col-"],
	.row.c-mb-xl-10 > [class*="col-"] {
		margin-bottom: 10px;
	}

	.c-mb-xl-15 [class*="col-"],
	.row.c-mb-xl-15 > [class*="col-"] {
		margin-bottom: 15px;
	}

	.c-mb-xl-20 [class*="col-"],
	.row.c-mb-xl-20 > [class*="col-"] {
		margin-bottom: 20px;
	}

	.c-mb-xl-25 [class*="col-"],
	.row.c-mb-xl-25 > [class*="col-"] {
		margin-bottom: 25px;
	}

	.c-mb-xl-30 [class*="col-"],
	.row.c-mb-xl-30 > [class*="col-"] {
		margin-bottom: 30px;
	}

	.c-mb-xl-40 [class*="col-"],
	.row.c-mb-xl-40 > [class*="col-"] {
		margin-bottom: 40px;
	}

	.c-mb-xl-50 [class*="col-"],
	.row.c-mb-xl-50 > [class*="col-"] {
		margin-bottom: 50px;
	}

	.c-mb-xl-60 [class*="col-"],
	.row.c-mb-xl-60 > [class*="col-"] {
		margin-bottom: 60px;
	}

	.c-my-xl-0 [class*="col-"],
	.row.c-my-xl-0 > [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
	}

	.c-my-xl-1 [class*="col-"],
	.row.c-my-xl-1 > [class*="col-"] {
		margin-bottom: 1px;
		margin-top: 1px;
	}

	.c-my-xl-2 [class*="col-"],
	.row.c-my-xl-2 > [class*="col-"] {
		margin-bottom: 2px;
		margin-top: 2px;
	}

	.c-my-xl-5 [class*="col-"],
	.row.c-my-xl-5 > [class*="col-"] {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.c-my-xl-10 [class*="col-"],
	.row.c-my-xl-10 > [class*="col-"] {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.c-my-xl-15 [class*="col-"],
	.row.c-my-xl-15 > [class*="col-"] {
		margin-bottom: 15px;
		margin-top: 15px;
	}

	.c-my-xl-20 [class*="col-"],
	.row.c-my-xl-20 > [class*="col-"] {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.c-my-xl-25 [class*="col-"],
	.row.c-my-xl-25 > [class*="col-"] {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.c-my-xl-30 [class*="col-"],
	.row.c-my-xl-30 > [class*="col-"] {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.c-my-xl-40 [class*="col-"],
	.row.c-my-xl-40 > [class*="col-"] {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.c-my-xl-50 [class*="col-"],
	.row.c-my-xl-50 > [class*="col-"] {
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.c-my-xl-60 [class*="col-"],
	.row.c-my-xl-60 > [class*="col-"] {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

@media (min-width: 1680px) {
	.c-mt-xxl-0 [class*="col-"],
	.row.c-mt-xxl-0 > [class*="col-"] {
		margin-top: 0;
	}

	.c-mt-xxl-1 [class*="col-"],
	.row.c-mt-xxl-1 > [class*="col-"] {
		margin-top: 1px;
	}

	.c-mt-xxl-2 [class*="col-"],
	.row.c-mt-xxl-2 > [class*="col-"] {
		margin-top: 2px;
	}

	.c-mt-xxl-5 [class*="col-"],
	.row.c-mt-xxl-5 > [class*="col-"] {
		margin-top: 5px;
	}

	.c-mt-xxl-10 [class*="col-"],
	.row.c-mt-xxl-10 > [class*="col-"] {
		margin-top: 10px;
	}

	.c-mt-xxl-15 [class*="col-"],
	.row.c-mt-xxl-15 > [class*="col-"] {
		margin-top: 15px;
	}

	.c-mt-xxl-20 [class*="col-"],
	.row.c-mt-xxl-20 > [class*="col-"] {
		margin-top: 20px;
	}

	.c-mt-xxl-25 [class*="col-"],
	.row.c-mt-xxl-25 > [class*="col-"] {
		margin-top: 25px;
	}

	.c-mt-xxl-30 [class*="col-"],
	.row.c-mt-xxl-30 > [class*="col-"] {
		margin-top: 30px;
	}

	.c-mt-xxl-40 [class*="col-"],
	.row.c-mt-xxl-40 > [class*="col-"] {
		margin-top: 40px;
	}

	.c-mt-xxl-50 [class*="col-"],
	.row.c-mt-xxl-50 > [class*="col-"] {
		margin-top: 50px;
	}

	.c-mt-xxl-60 [class*="col-"],
	.row.c-mt-xxl-60 > [class*="col-"] {
		margin-top: 60px;
	}

	.c-mb-xxl-0 [class*="col-"],
	.row.c-mb-xxl-0 > [class*="col-"] {
		margin-bottom: 0;
	}

	.c-mb-xxl-1 [class*="col-"],
	.row.c-mb-xxl-1 > [class*="col-"] {
		margin-bottom: 1px;
	}

	.c-mb-xxl-2 [class*="col-"],
	.row.c-mb-xxl-2 > [class*="col-"] {
		margin-bottom: 2px;
	}

	.c-mb-xxl-5 [class*="col-"],
	.row.c-mb-xxl-5 > [class*="col-"] {
		margin-bottom: 5px;
	}

	.c-mb-xxl-10 [class*="col-"],
	.row.c-mb-xxl-10 > [class*="col-"] {
		margin-bottom: 10px;
	}

	.c-mb-xxl-15 [class*="col-"],
	.row.c-mb-xxl-15 > [class*="col-"] {
		margin-bottom: 15px;
	}

	.c-mb-xxl-20 [class*="col-"],
	.row.c-mb-xxl-20 > [class*="col-"] {
		margin-bottom: 20px;
	}

	.c-mb-xxl-25 [class*="col-"],
	.row.c-mb-xxl-25 > [class*="col-"] {
		margin-bottom: 25px;
	}

	.c-mb-xxl-30 [class*="col-"],
	.row.c-mb-xxl-30 > [class*="col-"] {
		margin-bottom: 30px;
	}

	.c-mb-xxl-40 [class*="col-"],
	.row.c-mb-xxl-40 > [class*="col-"] {
		margin-bottom: 40px;
	}

	.c-mb-xxl-50 [class*="col-"],
	.row.c-mb-xxl-50 > [class*="col-"] {
		margin-bottom: 50px;
	}

	.c-mb-xxl-60 [class*="col-"],
	.row.c-mb-xxl-60 > [class*="col-"] {
		margin-bottom: 60px;
	}

	.c-my-xxl-0 [class*="col-"],
	.row.c-my-xxl-0 > [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
	}

	.c-my-xxl-1 [class*="col-"],
	.row.c-my-xxl-1 > [class*="col-"] {
		margin-bottom: 1px;
		margin-top: 1px;
	}

	.c-my-xxl-2 [class*="col-"],
	.row.c-my-xxl-2 > [class*="col-"] {
		margin-bottom: 2px;
		margin-top: 2px;
	}

	.c-my-xxl-5 [class*="col-"],
	.row.c-my-xxl-5 > [class*="col-"] {
		margin-bottom: 5px;
		margin-top: 5px;
	}

	.c-my-xxl-10 [class*="col-"],
	.row.c-my-xxl-10 > [class*="col-"] {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	.c-my-xxl-15 [class*="col-"],
	.row.c-my-xxl-15 > [class*="col-"] {
		margin-bottom: 15px;
		margin-top: 15px;
	}

	.c-my-xxl-20 [class*="col-"],
	.row.c-my-xxl-20 > [class*="col-"] {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.c-my-xxl-25 [class*="col-"],
	.row.c-my-xxl-25 > [class*="col-"] {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.c-my-xxl-30 [class*="col-"],
	.row.c-my-xxl-30 > [class*="col-"] {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.c-my-xxl-40 [class*="col-"],
	.row.c-my-xxl-40 > [class*="col-"] {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.c-my-xxl-50 [class*="col-"],
	.row.c-my-xxl-50 > [class*="col-"] {
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.c-my-xxl-60 [class*="col-"],
	.row.c-my-xxl-60 > [class*="col-"] {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

form[class*="c-mb-"] .row:last-child [class^="col-"],
[class*="c-mb-"] form .row:last-child [class^="col-"] {
	margin-bottom: 0 !important;
}

/* overlap featured image on top section (for big screens) */

@media screen and (min-width: 1200px) {
	.s-top-overlap {
		margin-top: -140px;
	}

	.s-top-overlap-big {
		margin-top: -180px;
	}

	.s-top-overlap-small {
		margin-top: -100px;
	}
}

/* full height section */
.s-full-height {
	min-height: 100vh;
}

/* Vertical dividers - use them with Bootstrap responsive utilities - http://getbootstrap.com/docs/4.1/utilities/display/#hiding-elements */
[class*='divider-'] {
	clear: both;
	width: 100%;
}

[class*='divider-']:last-child {
	-webkit-box-ordinal-group: 10001;
	-webkit-order: 10000;
	        order: 10000;
}

.divider-0 {
	margin-top: 0;
}

.divider-5 {
	margin-top: 5px;
}

.divider-10 {
	margin-top: 10px;
}

.divider-15 {
	margin-top: 15px;
}

.divider-20 {
	margin-top: 20px;
}

.divider-25 {
	margin-top: 25px;
}

.divider-30 {
	margin-top: 30px;
}

.divider-33 {
	margin-top: 33px;
}

.divider-37 {
	margin-top: 37px;
}

.divider-40 {
	margin-top: 40px;
}

.divider-45 {
	margin-top: 45px;
}

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

.divider-53 {
	margin-top: 53px;
}

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

.divider-63 {
	margin-top: 63px;
}

.divider-70 {
	margin-top: 70px;
}

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

.divider-90 {
	margin-top: 90px;
}

.divider-100 {
	margin-top: 100px;
}

.divider-120 {
	margin-top: 120px;
}

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

@media (min-width: 576px) {
	.divider-sm-0 {
		margin-top: 0;
	}

	.divider-sm-5 {
		margin-top: 5px;
	}

	.divider-sm-10 {
		margin-top: 10px;
	}

	.divider-sm-15 {
		margin-top: 15px;
	}

	.divider-sm-20 {
		margin-top: 20px;
	}

	.divider-sm-25 {
		margin-top: 25px;
	}

	.divider-sm-30 {
		margin-top: 30px;
	}

	.divider-sm-33 {
		margin-top: 33px;
	}

	.divider-sm-37 {
		margin-top: 37px;
	}

	.divider-sm-40 {
		margin-top: 40px;
	}

	.divider-sm-45 {
		margin-top: 45px;
	}

	.divider-sm-50 {
		margin-top: 50px;
	}

	.divider-sm-53 {
		margin-top: 53px;
	}

	.divider-sm-60 {
		margin-top: 60px;
	}

	.divider-sm-63 {
		margin-top: 63px;
	}

	.divider-sm-70 {
		margin-top: 70px;
	}

	.divider-sm-80 {
		margin-top: 80px;
	}

	.divider-sm-90 {
		margin-top: 90px;
	}

	.divider-sm-100 {
		margin-top: 100px;
	}

	.divider-sm-120 {
		margin-top: 120px;
	}

	.divider-sm-150 {
		margin-top: 150px;
	}
}

@media (min-width: 768px) {
	.divider-md-0 {
		margin-top: 0;
	}

	.divider-md-5 {
		margin-top: 5px;
	}

	.divider-md-10 {
		margin-top: 10px;
	}

	.divider-md-15 {
		margin-top: 15px;
	}

	.divider-md-20 {
		margin-top: 20px;
	}

	.divider-md-25 {
		margin-top: 25px;
	}

	.divider-md-30 {
		margin-top: 30px;
	}

	.divider-md-33 {
		margin-top: 33px;
	}

	.divider-md-37 {
		margin-top: 37px;
	}

	.divider-md-40 {
		margin-top: 40px;
	}

	.divider-md-45 {
		margin-top: 45px;
	}

	.divider-md-50 {
		margin-top: 50px;
	}

	.divider-md-53 {
		margin-top: 53px;
	}

	.divider-md-60 {
		margin-top: 60px;
	}

	.divider-md-63 {
		margin-top: 63px;
	}

	.divider-md-70 {
		margin-top: 70px;
	}

	.divider-md-80 {
		margin-top: 80px;
	}

	.divider-md-90 {
		margin-top: 90px;
	}

	.divider-md-100 {
		margin-top: 100px;
	}

	.divider-md-120 {
		margin-top: 120px;
	}

	.divider-md-150 {
		margin-top: 150px;
	}
}

@media (min-width: 992px) {
	.divider-lg-0 {
		margin-top: 0;
	}

	.divider-lg-5 {
		margin-top: 5px;
	}

	.divider-lg-10 {
		margin-top: 10px;
	}

	.divider-lg-15 {
		margin-top: 15px;
	}

	.divider-lg-20 {
		margin-top: 20px;
	}

	.divider-lg-25 {
		margin-top: 25px;
	}

	.divider-lg-30 {
		margin-top: 30px;
	}

	.divider-lg-33 {
		margin-top: 33px;
	}

	.divider-lg-37 {
		margin-top: 37px;
	}

	.divider-lg-40 {
		margin-top: 40px;
	}

	.divider-lg-45 {
		margin-top: 45px;
	}

	.divider-lg-50 {
		margin-top: 50px;
	}

	.divider-lg-53 {
		margin-top: 53px;
	}

	.divider-lg-60 {
		margin-top: 60px;
	}

	.divider-lg-63 {
		margin-top: 63px;
	}

	.divider-lg-70 {
		margin-top: 70px;
	}

	.divider-lg-80 {
		margin-top: 80px;
	}

	.divider-lg-90 {
		margin-top: 90px;
	}

	.divider-lg-100 {
		margin-top: 100px;
	}

	.divider-lg-120 {
		margin-top: 120px;
	}

	.divider-lg-150 {
		margin-top: 150px;
	}
}

@media (min-width: 1200px) {
	.divider-xl-0 {
		margin-top: 0;
	}

	.divider-xl-5 {
		margin-top: 5px;
	}

	.divider-xl-10 {
		margin-top: 10px;
	}

	.divider-xl-15 {
		margin-top: 15px;
	}

	.divider-xl-20 {
		margin-top: 20px;
	}

	.divider-xl-25 {
		margin-top: 25px;
	}

	.divider-xl-30 {
		margin-top: 30px;
	}

	.divider-xl-33 {
		margin-top: 33px;
	}

	.divider-xl-37 {
		margin-top: 37px;
	}

	.divider-xl-40 {
		margin-top: 40px;
	}

	.divider-xl-45 {
		margin-top: 45px;
	}

	.divider-xl-50 {
		margin-top: 50px;
	}

	.divider-xl-53 {
		margin-top: 53px;
	}

	.divider-xl-60 {
		margin-top: 60px;
	}

	.divider-xl-63 {
		margin-top: 63px;
	}

	.divider-xl-70 {
		margin-top: 70px;
	}

	.divider-xl-80 {
		margin-top: 80px;
	}

	.divider-xl-90 {
		margin-top: 90px;
	}

	.divider-xl-100 {
		margin-top: 100px;
	}

	.divider-xl-120 {
		margin-top: 120px;
	}

	.divider-xl-150 {
		margin-top: 150px;
	}
}

@media (min-width: 1680px) {
	.divider-xxl-0 {
		margin-top: 0;
	}

	.divider-xxl-5 {
		margin-top: 5px;
	}

	.divider-xxl-10 {
		margin-top: 10px;
	}

	.divider-xxl-15 {
		margin-top: 15px;
	}

	.divider-xxl-20 {
		margin-top: 20px;
	}

	.divider-xxl-25 {
		margin-top: 25px;
	}

	.divider-xxl-30 {
		margin-top: 30px;
	}

	.divider-xxl-33 {
		margin-top: 33px;
	}

	.divider-xxl-37 {
		margin-top: 37px;
	}

	.divider-xxl-40 {
		margin-top: 40px;
	}

	.divider-xxl-45 {
		margin-top: 45px;
	}

	.divider-xxl-50 {
		margin-top: 50px;
	}

	.divider-xxl-53 {
		margin-top: 53px;
	}

	.divider-xxl-60 {
		margin-top: 60px;
	}

	.divider-xxl-63 {
		margin-top: 63px;
	}

	.divider-xxl-70 {
		margin-top: 70px;
	}

	.divider-xxl-80 {
		margin-top: 80px;
	}

	.divider-xxl-90 {
		margin-top: 90px;
	}

	.divider-xxl-100 {
		margin-top: 100px;
	}

	.divider-xxl-120 {
		margin-top: 120px;
	}

	.divider-xxl-150 {
		margin-top: 150px;
	}
}

/*
** Common Sections Styles
*/
section {
	position: relative;
}

img {
	max-width: 100%;
}

/*parallax*/
.s-parallax,
.cover-image,
.cover-background,
.texture-background {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.cover-image {
	height: 100%;
	width: 100%;
}

.texture-background {
	background-image: url(../img/background-texture-cover.jpg);
}

.pattern-background:before {
	background-image: url(../img/patterns/pattern8.png);
}

@media (min-width: 768px) {
	.cover-image {
		background-position: 50% 50%;
		bottom: 0;
		display: block;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
	}

	section > .cover-image {
		position: absolute !important;
	}

	.cover-image.s-cover-right {
		left: auto;
		width: 50%;
	}

	.cover-image.s-cover-left {
		width: 50%;
	}

	.cover-image > img {
		visibility: hidden;
	}

	.cover-image > a {
		bottom: 0;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}

	.cover-image + [class*='container'] [class*='col-'] > img,
	.cover-image + [class*='container'] [class*='col-'] > a:after,
	.cover-image + [class*='container'] [class*='col-'] > a > img {
		visibility: hidden;
	}
}

.cover-image > img {
	display: none;
	width: 100%;
}

.fixed-background,
.s-parallax {
	background-attachment: fixed;
	background-position: 50% 0;
}

@media (max-width: 767px) {
	.s-parallax {
		background-size: auto auto;
	}
}

/*additional overlay for parallax sections*/
.s-overlay:before {
	opacity: 0.8;
}

.s-overlay.ls:before {
	background-color: #fff;
	opacity: 0.93;
}

.s-overlay.ls.ms:before {
	background-color: #f2f2f2;
	opacity: 0.81;
}

.s-overlay.cs:before {
	background-color: var(--colorMain);
	opacity: 0.82;
}

.s-overlay.cs.cs2:before {
	background-color: var(--colorMain2);
}

.s-overlay.cs.cs3:before {
	background-color: var(--colorMain3);
}

.s-overlay.ds:before {
	background-color: #000;
	opacity: 0.7;
}

.s-overlay.ds.ms:before {
	opacity: 0.7;
}

.s-muted:before {
	background-color: var(--darkgreyColorRgba01);
	opacity: 1;
}

.gradientradial-background {
	overflow: hidden;
}

.s-parallax > *,
.s-overlay > *,
.s-muted > *,
.s-overlay-diagonal-double > *,
.pattern-background > *,
.gradientradial-background > *,
.gradient-background > *,
.gradientvertical-background > *,
.gradientdarken-background > * {
	position: relative;
	z-index: 4;
}

.s-parallax:before,
.s-overlay:before,
.s-muted:before,
.s-overlay-diagonal-double:before,
.s-overlay-diagonal-double:after,
.pattern-background:before,
.gradient-background:before,
.gradientvertical-background:before,
.gradientdarken-background:before {
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.s-muted:before,
.s-parallax:before {
	opacity: 0.8;
}

.s-overlay-diagonal {
	background-clip: content-box;
	overflow: hidden;
	padding: 10px 0;
}

.s-overlay-diagonal:before {
	bottom: auto;
	height: 3000px;
	left: 0;
	margin-left: 30%;
	right: auto;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	    -ms-transform: translateY(-50%) rotate(-45deg);
	        transform: translateY(-50%) rotate(-45deg);
	width: 40%;
}

@media (max-width: 1200px) {
	.s-overlay-diagonal:before {
		margin-left: 15%;
		width: 70%;
	}
}

.s-overlay-diagonal-double {
	overflow: hidden;
	padding: 10px 0;
}

.s-overlay-diagonal-double:before {
	background: -webkit-linear-gradient(45deg, var(--colorMain) 30%, transparent 30%);
	background: linear-gradient(45deg, var(--colorMain) 30%, transparent 30%);
	opacity: 0.6;
}

.s-overlay-diagonal-double:after {
	background: -webkit-linear-gradient(45deg, transparent 70%, var(--colorMain) 70%);
	background: linear-gradient(45deg, transparent 70%, var(--colorMain) 70%);
	opacity: 0.6;
}

.gradient-background:before {
	background: var(--colorMain);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, var(--colorMainRgba1)), color-stop(100%, var(--colorMain2Rgba1)));
	background: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain2Rgba1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain2Rgba1)));
	background: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain2Rgba1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$colorMain", endColorstr="$colorMain2", GradientType=1);
}

.gradientvertical-background:before {
	background: var(--colorMain);
	/* Old browsers */
	background: -webkit-linear-gradient(top, var(--colorMainRgba1) 0%, var(--colorMain2Rgba1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--colorMainRgba1)), to(var(--colorMain2Rgba1)));
	background: linear-gradient(to bottom, var(--colorMainRgba1) 0%, var(--colorMain2Rgba1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$colorMain", endColorstr="$colorMain2", GradientType=0);
}

.gradientdarken-background:before {
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000", endColorstr="#00000000", GradientType=0);
}

.gradientradial-background:before {
	/* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0, center center, 50%, color-stop(0%, rgba(255, 255, 255, 0.24)), color-stop(50%, rgba(255, 255, 255, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
	/* Chrome10+,Safari5.1+ */
	/* Opera 12+ */
	/* IE10+ */
	background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
	content: "";
	display: block;
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3ffff", endColorstr="#00ffffff", GradientType=1);
	height: 1400px;
	left: 50%;
	margin-left: -700px;
	margin-top: -700px;
	position: absolute;
	top: 50%;
	width: 1400px;
	z-index: 2;
	/* IE6-9 fallback on horizontal gradient */
}

.s-overlay.gradientradial-background:before {
	height: 100vw;
	margin-left: -50vw;
	margin-top: -50vw;
	width: 100vw;
}

.s-bordertop,
.s-borderbottom,
.s-bordertop-container .container,
.s-borderbottom-container .container {
	position: relative;
}

.s-bordertop:before,
.s-borderbottom:after,
.s-bordertop-container .container:before,
.s-borderbottom-container .container:after {
	background-color: rgba(76, 76, 76, 0.1);
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.s-borderheight-2:before,
.s-borderheight-2:after,
.s-borderheight-2 .container:before,
.s-borderheight-2 .container:after {
	height: 2px;
}

.s-borderheight-3:before,
.s-borderheight-3:after,
.s-borderheight-3 .container:before,
.s-borderheight-3 .container:after {
	height: 3px;
}

.s-borderheight-5:before,
.s-borderheight-5:after,
.s-borderheight-5 .container:before,
.s-borderheight-5 .container:after {
	height: 5px;
}

.s-bordercolormain:before,
.s-bordercolormain:after,
.s-bordercolormain .container:before,
.s-bordercolormain .container:after {
	background-color: var(--colorMain);
}

.s-bordertop-container .container:before,
.s-borderbottom-container .container:after {
	left: 15px;
	right: 15px;
}

.s-borderbottom:after,
.s-borderbottom-container .container:after {
	bottom: 0;
	top: auto;
}

.s-bordered-columns [class*='col-'] + [class*='col-']:before {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 1em;
	content: "";
	left: 0;
	position: absolute;
	top: 1em;
	width: 1px;
}

/*page preloader*/
.preloader {
	background: rgba(255, 255, 255, 0.99);
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 13000;
}

.no-js .preloader,
.lt-ie9 .preloader,
.lt-ie10 .preloader {
	display: none;
}

.preloader_image {
	background: url(../img/preloader.gif) no-repeat 50% 50% transparent;
	height: 256px;
	left: 50%;
	margin: -128px 0 0 -128px;
	position: absolute;
	top: 50%;
	width: 256px;
}

.preloader_css {
	-webkit-animation: spin 2s infinite linear;
	        animation: spin 2s infinite linear;
	border: 10px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border-top-color: var(--colorMain);
	height: 120px;
	left: 50%;
	margin: -60px 0 0 -60px;
	position: absolute;
	top: 50%;
	width: 120px;
}

/* animated elements */
.animate {
	visibility: hidden;
}

.no-js .animate,
.lt-ie10 .animate,
.lt-ie9 .animate {
	visibility: visible;
}

.animated {
	visibility: visible !important;
}

/* boxed layout */
#box_wrapper,
#canvas {
	overflow: visible;
	position: relative;
}

#box_wrapper > section,
#box_wrapper > div > section {
	clear: both;
	position: relative;
}

#canvas.boxed {
	padding: 1px 0;
}

body.boxed {
	height: auto;
	position: static;
	width: auto;
}

.pattern1 {
	background-image: url(../img/patterns/pattern1.png);
}

.pattern2 {
	background-image: url(../img/patterns/pattern2.png);
}

.pattern3 {
	background-image: url(../img/patterns/pattern3.png);
}

.pattern4 {
	background-image: url(../img/patterns/pattern4.png);
}

.pattern5 {
	background-image: url(../img/patterns/pattern5.png);
}

.pattern6 {
	background-image: url(../img/patterns/pattern6.png);
}

.pattern7 {
	background-image: url(../img/patterns/pattern7.png);
}

.pattern8 {
	background-image: url(../img/patterns/pattern8.png);
}

.pattern9 {
	background-image: url(../img/patterns/pattern9.png);
}

.pattern10 {
	background-image: url(../img/patterns/pattern10.png);
}

.pattern11 {
	background-image: url(../img/patterns/pattern11.png);
}

.boxed .container {
	padding-left: 50px;
	padding-right: 50px;
}

@media (max-width: 500px) {
	.boxed .container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.boxed #box_wrapper.container {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	margin-top: 120px;
	padding: 0;
}

@media (min-width: 1600px) {
	.boxed #box_wrapper.container {
		max-width: 1560px;
	}
}

.boxed #box_wrapper.container.top-bottom-margins {
	margin-bottom: 120px;
	margin-top: 150px;
}

/*common background sections*/
.s-map-dark {
	background-image: url("../img/parallax/map-dark.jpg");
}

.s-map-light {
	background-image: url("../img/parallax/map-light.jpg");
}

.s-light-abstract {
	background-image: url("../img/parallax/light-abstract.jpg");
}

.s-light-wood {
	background-image: url("../img/parallax/light-wood.jpg");
}

/*bordered columns*/
.c-bordered [class*='col-'] {
	border: 1px solid rgba(76, 76, 76, 0.1);
	margin-left: -1px;
	margin-top: -1px;
}

@media (min-width: 768px) {
	.c-bordered.c-bordered-center .row [class*='col-']:first-child {
		border-left-color: transparent;
	}

	.c-bordered.c-bordered-center .row [class*='col-']:last-child {
		border-right-color: transparent;
	}

	.c-bordered.c-bordered-center .row:first-child [class*='col-'] {
		border-top-color: transparent;
	}

	.c-bordered.c-bordered-center .row:last-child [class*='col-'] {
		border-bottom-color: transparent;
	}
}

.background-video .container,
.background-video .container-fluid {
	position: relative;
	z-index: 1;
}

.background-video .fs-background-container {
	padding: 0;
}

@media (min-width: 768px) {
	.centered-content {
		padding: 0 30px;
	}
}

@media (min-width: 992px) {
	.centered-content {
		padding: 0 60px;
	}
}

@media (min-width: 1199px) {
	.centered-content {
		padding: 0 100px;
	}
}

@media (min-width: 1600px) {
	.centered-content {
		padding: 0 190px;
	}
}

/* Media Items - Common Side and Top Image Items */
.item-content > p:last-child {
	margin-bottom: -.7em;
}

.bordered .item-media,
.bordered .entry-thumbnail {
	margin: -1px -1px -1px -1px;
	z-index: 1;
}

.bordered .item-media.cover-image {
	height: -webkit-calc(100% + 2px);
	height: calc(100% + 2px);
}

.bordered.full-padding .item-media {
	margin: 0;
}

/* side and vertical items paddings */
.full-padding {
	padding: 40px;
}

.content-padding .item-content {
	padding: 40px;
}

@media (max-width: 992px) {
	.full-padding {
		padding: 30px;
	}

	.content-padding .item-content {
		padding: 30px;
	}
}

/*side item*/
.side-item h2,
.side-item h3,
.side-item h4 {
	line-height: 1;
}

.side-item .row {
	margin: 0;
}

.side-item .row [class*="col-"] {
	margin: 0;
	padding: 0;
}

.side-item .item-title + .item-content {
	padding-top: 30px;
}

.side-item [class*="col-"] > .item-title {
	padding: 15px 30px;
}

.side-item [class*="col-"] > .item-title h2,
.side-item [class*="col-"] > .item-title h3,
.side-item [class*="col-"] > .item-title h4 {
	margin: 0;
}

.side-item.bordered [class*="col-"] > .item-title {
	margin: -1px;
}

/*-xs- -sm- side-item paddings and margins*/

@media (max-width: 767px) {
	.no-content-padding [class*='col-sm-'] .item-content,
	.no-content-padding [class*='col-xs-'] .item-content,
	.full-padding [class*='col-sm-'] .item-content,
	.full-padding [class*='col-xs-'] .item-content {
		padding-left: 30px;
	}

	.no-content-padding [class*='col-sm-'][class*='sm-pull-'] .item-content,
	.no-content-padding [class*='col-sm-'][class*='xs-pull-'] .item-content,
	.no-content-padding [class*='col-sm-'][class*='order-sm-1'] .item-content,
	.no-content-padding [class*='col-sm-'][class*='order-xs-1'] .item-content,
	.no-content-padding [class*='col-xs-'][class*='sm-pull-'] .item-content,
	.no-content-padding [class*='col-xs-'][class*='xs-pull-'] .item-content,
	.no-content-padding [class*='col-xs-'][class*='order-sm-1'] .item-content,
	.no-content-padding [class*='col-xs-'][class*='order-xs-1'] .item-content,
	.full-padding [class*='col-sm-'][class*='sm-pull-'] .item-content,
	.full-padding [class*='col-sm-'][class*='xs-pull-'] .item-content,
	.full-padding [class*='col-sm-'][class*='order-sm-1'] .item-content,
	.full-padding [class*='col-sm-'][class*='order-xs-1'] .item-content,
	.full-padding [class*='col-xs-'][class*='sm-pull-'] .item-content,
	.full-padding [class*='col-xs-'][class*='xs-pull-'] .item-content,
	.full-padding [class*='col-xs-'][class*='order-sm-1'] .item-content,
	.full-padding [class*='col-xs-'][class*='order-xs-1'] .item-content {
		padding-left: 0;
		padding-right: 30px;
	}

	.no-content-padding .col-sm-12 .item-content,
	.no-content-padding .col-xs-12 .item-content,
	.full-padding .col-sm-12 .item-content,
	.full-padding .col-xs-12 .item-content {
		padding-left: 0;
		padding-right: 0;
		padding-top: 30px;
	}
}

/*-md- side-item paddings and margins*/

@media (min-width: 768px) {
	.no-content-padding [class*='col-md-'] .item-content,
	.full-padding [class*='col-md-'] .item-content {
		padding-left: 30px;
	}

	.no-content-padding [class*='col-md-'][class*='md-pull-'] .item-content,
	.no-content-padding [class*='col-md-'][class*='order-md-1'] .item-content,
	.full-padding [class*='col-md-'][class*='md-pull-'] .item-content,
	.full-padding [class*='col-md-'][class*='order-md-1'] .item-content {
		padding-left: 0;
		padding-right: 30px;
	}

	.no-content-padding .col-sm-12 .item-content,
	.full-padding .col-sm-12 .item-content {
		padding-left: 0;
		padding-right: 0;
		padding-top: 30px;
	}
}

/*-lg- side-item paddings and margins*/

@media (min-width: 992px) {
	.no-content-padding [class*='col-lg-'] .item-content,
	.full-padding [class*='col-lg-'] .item-content {
		padding-left: 30px;
	}

	.no-content-padding [class*='col-lg-'][class*='lg-pull-'] .item-content,
	.no-content-padding [class*='col-lg-'][class*='order-lg-1'] .item-content,
	.full-padding [class*='col-lg-'][class*='lg-pull-'] .item-content,
	.full-padding [class*='col-lg-'][class*='order-lg-1'] .item-content {
		padding-left: 0;
		padding-right: 30px;
	}

	.no-content-padding .col-md-12 .item-content,
	.full-padding .col-md-12 .item-content {
		padding-left: 0;
		padding-right: 0;
		padding-top: 30px;
	}
}

/*-xl- side-item paddings and margins*/

@media (min-width: 1200px) {
	.no-content-padding [class*='col-xl-'] .item-content,
	.full-padding [class*='col-xl-'] .item-content {
		padding-left: 30px;
	}

	.no-content-padding [class*='col-xl-'][class*='order-xl-1'] .item-content,
	.full-padding [class*='col-xl-'][class*='order-xl-1'] .item-content {
		padding-left: 0;
		padding-right: 30px;
	}

	.no-content-padding .col-lg-12 .item-content,
	.full-padding .col-lg-12 .item-content {
		padding-left: 0;
		padding-right: 0;
		padding-top: 30px;
	}
}

/* vertical media item */
.vertical-item .item-media + .item-content {
	padding-top: 40px;
}

.vertical-item.content-padding .item-content {
	padding: 35px 50px;
}

@media (max-width: 1199px) {
	.vertical-item.content-padding .item-content {
		padding: 30px;
	}
}

.vertical-item.content-padding.padding-small .item-content {
	padding: 40px 40px 40px;
}

.vertical-item.content-absolute {
	position: relative;
}

.vertical-item.content-absolute .item-content {
	bottom: 0;
	left: 0;
	padding: 20px 30px 20px;
	position: absolute;
	right: 0;
	z-index: 2;
}

.vertical-item.content-absolute.vertical-center .item-content {
	top: 0;
}

.vertical-item + .item-title {
	padding: 10px 30px;
}

.vertical-item + .item-title h2,
.vertical-item + .item-title h3,
.vertical-item + .item-title h4 {
	margin: 0;
}

/* item meta */
.item-meta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.6;
	text-transform: uppercase;
}

.item-meta i {
	font-size: 1.2em;
	position: relative;
	text-align: center;
	width: 1em;
}

/* item media & item links */
.item-media {
	overflow: hidden;
	position: relative;
}

.item-media img {
	width: 100%;
}

.item-media.cover-image {
	height: 100%;
}

.media-links {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.media-links div {
	margin-top: -30px;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 4;
}

.content-absolute .media-links div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
	margin-top: 0;
	top: 0;
}

.content-absolute .media-links div a {
	-webkit-transition: all 0.35s ease 0.1s;
	transition: all 0.35s ease 0.1s;
}

.content-absolute .media-links div a:hover {
	-webkit-transform: scaleX(-1);
	    -ms-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.content-absolute .media-links div a:first-child {
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.media-links:before {
	background-color: var(--colorMainRgba05);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

[class*="-item"]:hover .media-links:before {
	opacity: 0.8;
}

.media-links a.abs-link {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}

[class*="-item"]:hover .media-links a.abs-link {
	opacity: 1;
}

[class*="-item"] .links-wrap a {
	border: 2px solid transparent;
	display: inline-block;
	font-size: 16px;
	height: 60px;
	line-height: 58px;
	opacity: 0;
	position: relative;
	text-align: center;
	top: -100px;
	-webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	width: 60px;
	z-index: 5;
}

[class*="-item"] .links-wrap a.link-zoom {
	background-color: var(--darkgreyColor);
	border-color: var(--darkgreyColor);
	color: #fff;
}

[class*="-item"] .links-wrap a.link-zoom:hover {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
	color: #fff;
	opacity: 1;
}

[class*="-item"] .links-wrap a.link-anchor {
	background-color: #fff;
	border-color: #fff;
	color: var(--darkgreyColor);
	-webkit-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}

[class*="-item"] .links-wrap a.link-anchor:hover {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
	color: #fff;
	opacity: 1;
}

[class*="-item"] .links-wrap a:before {
	content: "\f002";
	font-family: "FontAwesome";
}

[class*="-item"] .links-wrap a.link-anchor:before {
	content: "\f041";
}

[class*="-item"]:hover .links-wrap a {
	filter: alpha(opacity=100);
	opacity: 1;
	top: 0;
}

[class*="-item"]:hover .media-links div {
	filter: alpha(opacity=100);
	opacity: 1;
}

/* item icons */
.item-icons {
	font-size: 12px;
	margin-top: 35px;
}

.content-padding .item-icons {
	margin-top: 0;
}

.item-icons i {
	padding: 0 4px;
}

.item-icons .col {
	padding-bottom: 20px;
	padding-top: 15px;
	text-align: center;
}

/*
** Buttons
 */
.btn:hover {
	cursor: pointer;
}

form .btn + .btn {
	margin-left: 20px;
}

@media (max-width: 394px) {
	form .btn + .btn {
		margin-left: 0;
	}
}

@media (max-width: 374px) {
	form .btn + .btn {
		margin-top: 20px;
	}
}

@media (min-width: 1440px) {
	.btn + .btn {
		margin-left: 25px;
	}
}

.product-inner .add_to_cart_button,
.single_add_to_cart_button,
.btn {
	border-width: 0;
	position: relative;
}

.product-inner .add_to_cart_button span,
.product-inner .add_to_cart_button input,
.single_add_to_cart_button span,
.single_add_to_cart_button input,
.btn span,
.btn input {
	border: 0;
	border-radius: 4px;
	display: block;
	height: 100%;
	padding: 18px 15px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: 100%;
}

.btn:hover,
.btn.focus,
.btn:focus {
	box-shadow: none;
	outline: none;
}

.btn:hover span,
.btn:hover input,
.btn.focus span,
.btn.focus input,
.btn:focus span,
.btn:focus input {
	color: var(--darkgreyColor);
}

.btn-secondary {
	border-color: rgba(76, 76, 76, 0.1);
	color: var(--darkgreyColor);
}

/*color background buttons*/
.product-inner .add_to_cart_button,
.single_add_to_cart_button,
.btn-maincolor,
.btn-maincolor2,
.btn-maincolor3,
.btn-darkgrey {
	color: #fff;
}

.product-inner .add_to_cart_button,
.single_add_to_cart_button,
.btn-maincolor {
	background-color: var(--colorMain3) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
}

.product-inner .add_to_cart_button:hover span,
.product-inner .add_to_cart_button:hover input,
.product-inner .add_to_cart_button:focus span,
.product-inner .add_to_cart_button:focus input,
.single_add_to_cart_button:hover span,
.single_add_to_cart_button:hover input,
.single_add_to_cart_button:focus span,
.single_add_to_cart_button:focus input,
.btn-maincolor:hover span,
.btn-maincolor:hover input,
.btn-maincolor:focus span,
.btn-maincolor:focus input {
	background-color: #fff;
}

.btn-maincolor2 {
	background-color: var(--colorMain6) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain5Rgba1)), to(var(--colorMain6Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
}

.btn-maincolor2:hover span,
.btn-maincolor2:hover input,
.btn-maincolor2:focus span,
.btn-maincolor2:focus input {
	background-color: #fff;
}

.btn-maincolor3 {
	background-color: var(--colorMain8) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain7Rgba1)), to(var(--colorMain8Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
}

.btn-maincolor3:hover span,
.btn-maincolor3:hover input,
.btn-maincolor3:focus span,
.btn-maincolor3:focus input {
	background-color: #fff;
}

.btn-white {
	background-color: #fff;
	background-image: none;
	border: 2px solid #fff;
	color: var(--colorMain6);
}

.btn-white:hover,
.btn-white:focus {
	background-color: transparent;
}

.btn-white:hover span,
.btn-white:hover input,
.btn-white:focus span,
.btn-white:focus input {
	background-color: transparent;
	color: #fff;
}

.btn-google,
.btn-apple {
	background-color: transparent;
	border: 2px solid #4c4c4c;
	border-radius: 5px;
	color: #4c4c4c;
	font-size: 24px;
	font-weight: 500;
	height: 80px;
	letter-spacing: -1px;
	line-height: 60px;
	padding: 15px 5px 5px 45px;
	position: relative;
	width: 270px;
}

.btn-google:hover,
.btn-apple:hover {
	color: #4c4c4c;
	opacity: 0.5;
}

.btn-google:before {
	background-image: url("../img/google-play.png");
	background-repeat: no-repeat;
	content: "";
	height: 40px;
	left: 32px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	width: 40px;
}

.btn-google:after,
.btn-apple:after {
	content: "get it on";
	font-size: 14px;
	font-weight: 100;
	left: 80px;
	letter-spacing: 0;
	line-height: 1.5;
	position: absolute;
	text-transform: uppercase;
	top: 15px;
}

.btn-apple {
	background-color: #4c4c4c;
	border: 2px solid #4c4c4c;
	color: #fff;
	margin-left: 12px;
	margin-right: 0;
}

.btn-apple:hover {
	color: #fff;
}

.btn-apple:before {
	background-image: url("../img/apple.png");
	background-repeat: no-repeat;
	content: "";
	height: 50px;
	left: 38px;
	margin-top: -27px;
	position: absolute;
	top: 50%;
	width: 50px;
}

.btn-apple:after {
	content: "download on";
	left: 89px;
}

.btn-darkgrey {
	background-color: var(--darkgreyColor);
}

/*color outline buttons*/
.btn-outline-maincolor span,
.btn-outline-maincolor input,
.btn-outline-maincolor2 span,
.btn-outline-maincolor2 input,
.btn-outline-maincolor3 span,
.btn-outline-maincolor3 input,
.btn-outline-darkgrey span,
.btn-outline-darkgrey input {
	background-color: #fff;
}

.btn-outline-maincolor:hover span,
.btn-outline-maincolor:hover input,
.btn-outline-maincolor:focus span,
.btn-outline-maincolor:focus input,
.btn-outline-maincolor2:hover span,
.btn-outline-maincolor2:hover input,
.btn-outline-maincolor2:focus span,
.btn-outline-maincolor2:focus input,
.btn-outline-maincolor3:hover span,
.btn-outline-maincolor3:hover input,
.btn-outline-maincolor3:focus span,
.btn-outline-maincolor3:focus input,
.btn-outline-darkgrey:hover span,
.btn-outline-darkgrey:hover input,
.btn-outline-darkgrey:focus span,
.btn-outline-darkgrey:focus input {
	background-color: transparent;
	color: #fff;
}

.btn-outline-darkgrey {
	background-color: #fff;
	color: var(--darkgreyColor);
}

.btn-outline-maincolor {
	background-color: var(--colorMain3) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	color: var(--colorMain3);
}

.btn-outline-maincolor2 {
	background-color: var(--colorMain6) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain5Rgba1)), to(var(--colorMain6Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
	color: var(--colorMain6);
}

.btn-outline-maincolor3 {
	background-color: var(--colorMain8) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain7Rgba1)), to(var(--colorMain8Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
	color: var(--colorMain8);
}

.btn-outline-darkgrey {
	background-color: var(--darkgreyColor);
}

/*color shadow buttons*/
.btn-shadow-maincolor,
.btn-shadow-maincolor2,
.btn-shadow-maincolor3,
.btn-shadow-darkgrey {
	background-color: #fff !important;
	border-radius: 6px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	padding: 0;
}

.btn-shadow-maincolor span,
.btn-shadow-maincolor2 span,
.btn-shadow-maincolor3 span,
.btn-shadow-darkgrey span {
	background-color: #fff;
	border-radius: 0;
}

.btn-shadow-maincolor:hover span,
.btn-shadow-maincolor:focus span,
.btn-shadow-maincolor2:hover span,
.btn-shadow-maincolor2:focus span,
.btn-shadow-maincolor3:hover span,
.btn-shadow-maincolor3:focus span,
.btn-shadow-darkgrey:hover span,
.btn-shadow-darkgrey:focus span {
	background-color: transparent;
	color: #fff;
}

.btn-shadow-darkgrey {
	background-color: #fff;
	color: var(--darkgreyColor);
}

.btn-shadow-maincolor {
	color: var(--colorMain3);
}

.btn-shadow-maincolor:hover,
.btn-shadow-maincolor:focus {
	background-color: var(--colorMain3) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
}

.btn-shadow-maincolor2 {
	color: var(--colorMain6);
}

.btn-shadow-maincolor2:hover,
.btn-shadow-maincolor2:focus {
	background-color: var(--colorMain6) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain5Rgba1)), to(var(--colorMain6Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
}

.btn-shadow-maincolor3 {
	color: var(--colorMain8);
}

.btn-shadow-maincolor3:hover,
.btn-shadow-maincolor3:focus {
	background-color: var(--colorMain8) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain7Rgba1)), to(var(--colorMain8Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
}

.btn-shadow-darkgrey {
	color: var(--darkgreyColor);
}

.btn-shadow-darkgrey:hover,
.btn-shadow-darkgrey:focus {
	background-color: var(--darkgreyColor) !important;
	color: #fff;
}

/* Wide button */
.single_add_to_cart_button,
.wide_button {
	min-width: 140px;
}

@media (min-width: 992px) {
	.single_add_to_cart_button,
	.wide_button {
		min-width: 180px;
	}
}

/* Small buttons */
.product-inner .add_to_cart_button span,
.small_button span {
	min-width: auto;
	padding: 8px 26px 8px;
}

.corner {
	background-color: transparent !important;
	height: 0;
	overflow: visible !important;
	padding-bottom: 70px;
	position: relative;
	z-index: 3;
}

.corner:before,
.corner:after {
	content: "";
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}

.corner:after {
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	border-top: 70px solid #fff;
}

.corner.corner-outside {
	position: absolute;
}

.corner.corner-outside:first-child {
	top: -70px;
}

.corner.corner-outside:last-child {
	bottom: -70px;
}

.corner.corner-half:after {
	border-left-width: 100vw;
	border-right-width: 0;
}

.corner.corner-half.corner-half-inverse:after {
	border-left-width: 0;
	border-right-width: 100vw;
}

.corner.corner-mirror:after {
	border-left-width: 0;
}

.corner.corner-mirror:before {
	border-left: 50vw solid transparent;
	border-top: 70px solid #fff;
	left: 50vw;
}

.corner.corner-inverse:before,
.corner.corner-inverse:after {
	border-bottom: 70px solid #fff;
	border-top: none;
}

@media (max-width: 1199px) {
	.corner {
		padding-bottom: 30px;
	}

	.corner:after {
		border-top-width: 30px;
	}

	.corner.corner-outside {
		position: absolute;
	}

	.corner.corner-outside:first-child {
		top: -30px;
	}

	.corner.corner-outside:last-child {
		bottom: -30px;
	}

	.corner.corner-mirror:before {
		border-top-width: 30px;
	}

	.corner.corner-inverse:before,
	.corner.corner-inverse:after {
		border-bottom-width: 30px;
	}
}

.corner.ls.ms.corner-mirror:before,
.corner.ls.ms:after {
	border-bottom-color: #f2f2f2;
	border-top-color: #f2f2f2;
}

.corner.ls.ms.corner-inverse:after {
	border-bottom-color: #f2f2f2;
}

.corner.ds.corner-mirror:before,
.corner.ds:after {
	border-bottom-color: var(--darkgreyColor);
	border-top-color: var(--darkgreyColor);
}

.corner.ds.corner-inverse:after {
	border-bottom-color: var(--darkgreyColor);
}

.corner.ds.ms.corner-mirror:before,
.corner.ds.ms:after {
	border-bottom-color: var(--darkColor);
	border-top-color: var(--darkColor);
}

.corner.ds.ms.corner-inverse:after {
	border-bottom-color: var(--darkColor);
}

.corner.ds.bs.corner-mirror:before,
.corner.ds.bs:after {
	border-bottom-color: #2f3e47;
	border-top-color: #2f3e47;
}

.corner.ds.bs.corner-inverse:after {
	border-bottom-color: #2f3e47;
}

.corner.cs.corner-mirror:before,
.corner.cs:after {
	border-bottom-color: var(--colorMain);
	border-top-color: var(--colorMain);
}

.corner.cs.corner-inverse:after {
	border-bottom-color: var(--colorMain);
}

.corner.cs.cs2.corner-mirror:before,
.corner.cs.cs2:after {
	border-bottom-color: var(--colorMain2);
	border-top-color: var(--colorMain2);
}

.corner.cs.cs2.corner-inverse:after {
	border-bottom-color: var(--colorMain2);
}

.corner.cs.cs3.corner-mirror:before,
.corner.cs.cs3:after {
	border-bottom-color: var(--colorMain3);
	border-top-color: var(--colorMain3);
}

.corner.cs.cs3.corner-inverse:after {
	border-bottom-color: var(--colorMain3);
}

/*
** Light Background Section - .ls
*/
.ls {
	background-color: #fff;
	color: #808080;
}

.ls h1,
.ls h2,
.ls h3,
.ls h4,
.ls h5,
.ls h6 {
	color: #4c4c4c;
}

.ls h1 a,
.ls h2 a,
.ls h3 a,
.ls h4 a,
.ls h5 a,
.ls h6 a {
	color: inherit;
}

.ls h1 a:hover,
.ls h2 a:hover,
.ls h3 a:hover,
.ls h4 a:hover,
.ls h5 a:hover,
.ls h6 a:hover {
	opacity: 0.8;
}

.ls .btn-maincolor:hover,
.ls .btn-maincolor2:hover,
.ls .btn-maincolor3:hover,
.ls .btn-darkgrey:hover,
.ls .btn-outline-maincolor:hover,
.ls .btn-outline-maincolor2:hover,
.ls .btn-outline-maincolor3:hover,
.ls .btn-outline-darkgrey:hover {
	color: #fff;
}

.ls .btn-outline-maincolor:hover,
.ls .btn-maincolor:hover {
	background-color: var(--colorMainDarker10);
}

.ls .btn-outline-maincolor2:hover,
.ls .btn-maincolor2:hover {
	background-color: var(--colorMain2Darker10);
}

.ls .btn-outline-maincolor3:hover,
.ls .btn-maincolor3:hover {
	background-color: var(--colorMain3Darker10);
}

.ls .btn-outline-darkgrey:hover,
.ls .btn-darkgrey:hover {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
}

.ls .links-maincolor a:hover {
	opacity: 0.7;
}

/*
** Grey Background Section - light section, muted section - .ls.ms
*/
.ls.ms {
	background-color: #f7f6fb;
	color: #6e6e6e;
}

.ls.ms .links-grey a {
	color: #6e6e6e;
}

.ls.ms .hero-bg {
	background-color: #fff;
}

.ls.ms .hero-bg hr {
	background-color: rgba(76, 76, 76, 0.1);
}

.ls.ms hr {
	background-color: #fff;
}

.ls.ms input[type="text"],
.ls.ms input[type="email"],
.ls.ms input[type="url"],
.ls.ms input[type="password"],
.ls.ms input[type="search"],
.ls.ms input[type="tel"],
.ls.ms input[type="number"],
.ls.ms textarea,
.ls.ms select,
.ls.ms .form-control {
	background-color: #fff;
}

.ls.ms .hero-bg input[type="text"],
.ls.ms .hero-bg input[type="email"],
.ls.ms .hero-bg input[type="url"],
.ls.ms .hero-bg input[type="password"],
.ls.ms .hero-bg input[type="search"],
.ls.ms .hero-bg input[type="tel"],
.ls.ms .hero-bg input[type="number"],
.ls.ms .hero-bg textarea,
.ls.ms .hero-bg select,
.ls.ms .hero-bg .form-control {
	background-color: #f2f2f2;
	border-color: rgba(76, 76, 76, 0.1);
}

.ls.ms td,
.ls.ms th,
.ls.ms .bordered {
	border-color: rgba(63, 63, 63, 0.1);
}

.ls.ms .btn-secondary {
	border-color: #fff;
}

.ls.ms .btn-secondary:hover {
	background-color: #e3e3e3;
	border-color: #e3e3e3;
}

.ls .color-icon.bg-icon {
	background-color: #ececec;
}

.ls .pricing-plan [class*='btn-outline-'] {
	background-color: #fff;
}

.ls .pricing-plan [class*='btn-outline-']:hover {
	background-color: var(--colorMain);
}

.ls.ms .nav-tabs > li.active > a,
.ls.ms .nav-tabs > li.active > a:hover,
.ls.ms .nav-tabs > li.active > a:focus {
	background-color: #fff;
	border-color: #fff;
}

.ls.ms .tab-content {
	background-color: #fff;
}

.ls.ms .tab-content .bordered {
	border-color: #e6e6e6;
}

.ls.ms .tab-content.no-border {
	background-color: transparent;
}

.ls.ms .tab-content .form-control {
	background-color: #f2f2f2;
}

.ls.ms .vertical-tabs .nav > li > a {
	background-color: #fff;
}

.ls.ms .vertical-tabs .nav > li > a:hover,
.ls.ms .vertical-tabs .nav > li.active > a {
	background-color: var(--darkgreyColor);
}

.ls.ms .pagination a,
.ls.ms .pagination span {
	background-color: #fff;
	border-color: #fff;
}

.ls.ms .breadcrumb {
	color: #808080;
}

.ls.ms .breadcrumb a {
	color: #676767;
}

.ls.ms .breadcrumb a:hover {
	color: var(--colorMain);
}

.ls.ms [class*='btn-outline-']:not(:hover) {
	background-color: #f2f2f2;
}

/*
** Dark Section background and Dark Muted background sections - .ds and .ds.ms
*/
/* dark grey background section - .ds */
.ds {
	background-color: var(--darkgreyColor);
	color: #fff;
}

.ds * .ds {
	background-color: var(--darkgreyColorDarker5);
}

/* dark background section - .ds.ms */
.ds.ms {
	background-color: var(--darkColor);
}

.ds.ms .ds.ms {
	background-color: var(--darkColorLighten2);
}

/* dark section blue - .ds.bs */
.ds.bs {
	background-color: #2f3e47;
}

.ds a:not(.btn) {
	color: #fff;
}

.ds a:not(.btn):hover {
	opacity: 0.8;
}

.ds h1,
.ds h2,
.ds h3,
.ds h4,
.ds h5,
.ds h6 {
	color: #fff;
}

.ds h1 a,
.ds h2 a,
.ds h3 a,
.ds h4 a,
.ds h5 a,
.ds h6 a {
	color: #fff;
}

.ds h1 a:hover,
.ds h2 a:hover,
.ds h3 a:hover,
.ds h4 a:hover,
.ds h5 a:hover,
.ds h6 a:hover {
	opacity: 0.8;
}

.ds .ls {
	background-color: #fff;
	color: #808080;
}

.ds .ls h1,
.ds .ls h2,
.ds .ls h3,
.ds .ls h4,
.ds .ls h5,
.ds .ls h6 {
	color: var(--darkgreyColor);
}

.ds .ls h1 a,
.ds .ls h2 a,
.ds .ls h3 a,
.ds .ls h4 a,
.ds .ls h5 a,
.ds .ls h6 a {
	color: inherit;
}

.ds .ls h1 a:hover,
.ds .ls h2 a:hover,
.ds .ls h3 a:hover,
.ds .ls h4 a:hover,
.ds .ls h5 a:hover,
.ds .ls h6 a:hover {
	color: var(--colorMain);
}

.ds .ls a:not(.btn) {
	color: var(--darkgreyColor);
}

.ds .ls a:not(.btn):hover {
	color: var(--colorMain);
}

.ds label {
	color: #fff;
}

.ds hr {
	background-color: #454545;
	border-color: #454545;
}

.ds blockquote,
.ds .blockquote {
	color: #fff;
}

.ds pre {
	color: #9a9a9a;
}

.ds .muted-bg,
.ds .hero-bg {
	background-color: rgba(255, 255, 255, 0.05);
}

.ds .bordered {
	border-color: #454545;
}

.ds .color-main {
	color: var(--colorMain);
}

.ds .color-main2 {
	color: var(--colorMain2);
}

.ds .color-dark,
.ds .color-darkgrey {
	border-color: #fff;
	color: #fff;
}

.ds .links-maincolor a {
	color: var(--colorMain);
}

.ds .links-maincolor a:hover {
	color: #fff;
}

.ds .links-maincolor2 a {
	color: var(--colorMain2);
}

.ds .links-maincolor2 a:hover {
	color: #fff;
}

.ds .links-maincolor3 a {
	color: var(--colorMain3);
}

.ds .links-maincolor3 a:hover {
	color: #fff;
}

.ds .links-grey a {
	color: #9a9a9a;
}

.ds .links-grey a:hover {
	color: #fff;
}

.ds .links-darkgrey a {
	color: #fff;
}

.ds .links-darkgrey a:hover {
	color: var(--colorMain);
}

.ds.s-bordertop:before,
.ds.s-borderbottom:after,
.ds.s-bordertop-container .container:before,
.ds.s-borderbottom-container .container:after {
	background-color: #454545;
}

.ds.s-bordered-columns [class*='col-'] + [class*='col-']:before {
	background-color: #454545;
}

.ds .btn-darkgrey {
	background-color: #fff;
	color: var(--darkgreyColor);
}

.ds .btn-maincolor:hover,
.ds .btn-maincolor2:hover,
.ds .btn-maincolor3:hover,
.ds .btn-darkgrey:hover,
.ds .btn-outline-maincolor:hover,
.ds .btn-outline-maincolor2:hover,
.ds .btn-outline-maincolor3:hover,
.ds .btn-outline-darkgrey:hover {
	color: #fff;
}

.ds .btn-outline-maincolor:hover,
.ds .btn-maincolor:hover {
	background-color: var(--colorMainDarker10);
}

.ds .btn-outline-maincolor2:hover,
.ds .btn-maincolor2:hover {
	background-color: var(--colorMain2Darker10);
}

.ds .btn-outline-maincolor3:hover,
.ds .btn-maincolor3:hover {
	background-color: var(--colorMain3Darker10);
}

.ds .btn-outline-darkgrey {
	border-color: #fff;
	color: #fff;
}

.ds .btn-outline-darkgrey:hover,
.ds .btn-darkgrey:hover {
	background-color: var(--darkgreyColorDarker10);
	border-color: var(--darkgreyColorDarker10);
}

.ds a.fa {
	border-color: #454545;
	color: #fff;
}

.ds a.bg-icon {
	background-color: rgba(255, 255, 255, 0.05);
}

.ds .fa.color-icon:hover {
	color: #fff;
}

.ds .color-icon.bg-icon {
	background-color: rgba(255, 255, 255, 0.05);
}

.ds .color-icon.bg-icon:hover {
	color: #fff;
}

.ds .color-bg-icon:hover {
	background-color: var(--colorMain);
}

.ds {
	/* shop */
}

.ds .list-bordered li {
	border-color: #454545;
}

.ds input[type="text"],
.ds input[type="email"],
.ds input[type="url"],
.ds input[type="password"],
.ds input[type="search"],
.ds input[type="tel"],
.ds input[type="number"],
.ds textarea,
.ds select,
.ds .form-control {
	background-color: transparent;
	border-color: #454545;
	color: #9a9a9a;
}

.ds .form-group-select:before {
	border-color: #454545;
}

.ds .form-control:focus {
	border-color: #525252;
}

.ds .form-control:-moz-placeholder {
	color: #9a9a9a;
	opacity: 1;
}

.ds .form-control::-moz-placeholder {
	color: #9a9a9a;
	opacity: 1;
}

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

.ds .form-control::-webkit-input-placeholder {
	color: #9a9a9a;
}

.ds .form-control:focus:-moz-placeholder {
	color: transparent;
}

.ds .form-control:focus::-moz-placeholder {
	color: transparent;
}

.ds .form-control:focus:-ms-input-placeholder {
	color: transparent;
}

.ds .form-control:focus::-webkit-input-placeholder {
	color: transparent;
}

.ds .contact-form.transparent-background .form-control {
	border-color: #454545;
}

.ds .tab-content {
	border-color: #454545;
}

.ds .nav-tabs .nav-link {
	border-color: #454545;
}

.ds .owl-theme .owl-dots .owl-dot span {
	border-color: #fff;
}

.ds .post-adds .share_button > i,
.ds .post-adds .like_button > i {
	color: #fff;
}

.ds .side-item {
	border-color: #454545;
}

.ds .excerpt {
	color: #fff;
}

.ds .reply a {
	color: #fff;
}

.ds .widget_search .form-inline .btn,
.ds .widget_product_search [type="submit"],
.ds .widget_mailchimp .form-inline .btn {
	background-color: transparent;
	color: var(--colorMain);
}

.ds .widget_search button,
.ds .widget_mailchimp button,
.ds .widget_shopping_cart .cart_list,
.ds .widget_recent_entries li,
.ds .widget_recent_comments li,
.ds .widget_archive li,
.ds .widget_categories li,
.ds .widget_meta li,
.ds .widget_nav_menu li,
.ds .widget_pages li,
.ds .widget_popular_entries li {
	border-color: #454545;
}

.ds .widget_nav_menu ul ul {
	border-color: #454545;
}

.ds .widget_popular_entries .media-heading {
	color: #fff;
}

.ds .tweet_list li + li .tweet_right {
	border-color: #454545;
}

.ds .widget_tag_cloud a {
	border-color: #fff;
	color: #fff;
}

.ds .widget_shopping_cart li a + a {
	color: #fff;
}

.ds .widget_shopping_cart li a + a:hover {
	color: var(--colorMain);
}

.ds .summary .price {
	border-color: #454545;
	color: #fff;
}

.ds .summary .product_meta {
	border-color: #454545;
}

.ds .widget_price_filter .price_label {
	color: #fff;
}

.ds #calendar_wrap {
	border-color: #454545;
}

.ds .widget_calendar table {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: #454545;
}

.ds .widget_calendar tfoot td a {
	border-color: #454545;
}

.ds .widget_calendar caption,
.ds .widget_calendar thead,
.ds .widget_calendar th {
	color: #fff;
}

.ds .widget_calendar tbody td a:hover {
	color: #fff;
}

.ds .grid-view h3:before,
.ds .grid-view h3:after {
	background-color: #454545;
}

.ds .owl-carousel.product-thumbnails .owl-nav > div:after {
	color: #fff;
}

.ds .ui-slider {
	background-color: rgba(255, 255, 255, 0.05);
}

.ds .ui-slider .ui-slider-handle {
	background-color: #fff;
}

.ds #sort_view {
	background-color: transparent;
	color: #fff;
}

.ds #toggle_shop_view.grid-view:after,
.ds #toggle_shop_view:before {
	background-color: rgba(247, 247, 247, 0.05);
}

.ds .widget_layered_nav .color-filters a:before {
	border-color: #454545;
}

.ds .table.cart a {
	color: #fff;
}

.ds .pagination > li > a,
.ds .pagination > li > span {
	background-color: transparent;
	border: 1px solid #454545;
	color: #fff;
}

.ds .pagination > li.active > a,
.ds .pagination > li.active > span,
.ds .pagination > li > a:hover,
.ds .pagination > li > span:hover,
.ds .pagination > li > a:focus,
.ds .pagination > li > span:focus {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
	color: #fff;
}

.ds .thumbnail {
	background-color: transparent;
}

.ds .thumbnail h3 a {
	color: #fff;
}

.ds .thumbnail .caption {
	background-color: rgba(252, 252, 252, 0.05);
	border-color: transparent;
}

.ds .progress {
	background-color: #454545;
}

.ds .vertical-tabs .nav > li > a {
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.ds .vertical-tabs .nav > li.active > a,
.ds .vertical-tabs .nav > li > a:hover {
	background-color: var(--colorMain);
}

.ds .vertical-tabs .nav > li > a:hover:after {
	color: #fff;
}

.ds .entry-meta .comments-link a {
	color: #fff;
}

.ds #timetable tbody th,
.ds #timetable tbody td {
	border-color: #454545;
}

.ds #isotope_filters a,
.ds .filters a {
	color: #fff;
}

.ds div .fw-shortcode-calendar-wrapper .page-header h3,
.ds div .btn-group button[data-calendar-nav],
.ds div .btn-group button[data-calendar-nav*='today'] {
	color: #fff;
}

/*
** Color Background Section - .cs
*/
.cs.cs2 {
	background-color: var(--colorMain2);
}

.cs.cs2 .color-main {
	color: var(--colorMain);
}

.cs.cs3 {
	background-color: var(--colorMain3);
}

.cs.cs3 .color-main {
	color: var(--colorMain);
}

/* color section grey - .cs.gs */
.cs.gs {
	background-color: #aaa6a7;
}

.cs.cs-success {
	background-color: #32b9c2;
}

.cs.cs-info {
	background-color: #3197d4;
}

.cs.cs-warning {
	background-color: #f7b432;
}

.cs.cs-danger {
	background-color: #fb4f1b;
}

.cs {
	background-color: var(--colorMain);
	color: #fff;
}

.cs h1,
.cs h2,
.cs h3,
.cs h4,
.cs h5,
.cs h6 {
	color: #fff;
}

.cs h1 a,
.cs h2 a,
.cs h3 a,
.cs h4 a,
.cs h5 a,
.cs h6 a {
	color: #fff;
}

.cs h1 a:hover,
.cs h2 a:hover,
.cs h3 a:hover,
.cs h4 a:hover,
.cs h5 a:hover,
.cs h6 a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.cs a:not(.btn) {
	color: #fff;
}

.cs a:not(.btn):hover {
	opacity: 0.8;
}

.cs blockquote,
.cs .blockquote {
	border-color: var(--colorMainLighten10);
}

.cs hr {
	border-color: rgba(255, 255, 255, 0.15);
}

.cs pre {
	color: #fff;
}

.cs .hero-bg {
	background-color: rgba(255, 255, 255, 0.1);
}

.cs .bordered {
	border-color: rgba(255, 255, 255, 0.15);
}

.cs.s-bordertop:before,
.cs.s-borderbottom:after,
.cs.s-bordertop-container .container:before,
.cs.s-borderbottom-container .container:after {
	background-color: rgba(255, 255, 255, 0.15);
}

.cs.s-bordered-columns [class*='col-'] + [class*='col-']:before {
	background-color: rgba(255, 255, 255, 0.15);
}

.cs .links-darkgrey a,
.cs .links-grey a {
	color: #fff;
	opacity: 0.9;
}

.cs .links-darkgrey a:hover,
.cs .links-grey a:hover {
	color: #fff;
	opacity: 1;
}

.cs .color-dark {
	border-color: #fff;
	color: #fff;
}

.cs .color-darkgrey {
	border-color: var(--darkgreyColor);
	color: var(--darkgreyColor);
}

.cs .response,
.cs .color-main {
	color: #fff;
}

.cs input[type="text"],
.cs input[type="email"],
.cs input[type="url"],
.cs input[type="password"],
.cs input[type="search"],
.cs input[type="tel"],
.cs input[type="number"],
.cs textarea,
.cs select,
.cs .form-control {
	background-color: #fff;
	border-color: #fff;
	color: var(--darkgreyColor);
}

.cs .form-control:focus {
	border-color: rgba(255, 255, 255, 0.5);
}

.cs .form-control:-moz-placeholder {
	color: var(--darkgreyColor);
	opacity: 1;
}

.cs .form-control::-moz-placeholder {
	color: var(--darkgreyColor);
	opacity: 1;
}

.cs .form-control:-ms-input-placeholder {
	color: var(--darkgreyColor);
}

.cs .form-control::-webkit-input-placeholder {
	color: var(--darkgreyColor);
}

.cs .form-control:focus:-moz-placeholder {
	color: transparent;
}

.cs .form-control:focus::-moz-placeholder {
	color: transparent;
}

.cs .form-control:focus:-ms-input-placeholder {
	color: transparent;
}

.cs .form-control:focus::-webkit-input-placeholder {
	color: transparent;
}

.cs .btn-maincolor {
	background-color: #fff;
	color: var(--darkgreyColor);
}

.cs .btn-outline-maincolor {
	border-color: #fff;
	color: #fff;
}

.cs .btn-maincolor:hover,
.cs .btn-maincolor2:hover,
.cs .btn-maincolor3:hover,
.cs .btn-darkgrey:hover,
.cs .btn-outline-maincolor:hover,
.cs .btn-outline-maincolor2:hover,
.cs .btn-outline-maincolor3:hover,
.cs .btn-outline-darkgrey:hover {
	color: #fff;
}

.cs .btn-outline-maincolor:hover,
.cs .btn-maincolor:hover {
	background-color: var(--colorMainDarker10);
	border-color: var(--colorMainDarker10);
}

.cs .btn-outline-maincolor2:hover,
.cs .btn-maincolor2:hover {
	background-color: var(--colorMain2Darker10);
}

.cs .btn-outline-maincolor3:hover,
.cs .btn-maincolor3:hover {
	background-color: var(--colorMain3Darker10);
}

.cs .btn-outline-darkgrey:hover,
.cs .btn-darkgrey:hover {
	background-color: var(--darkgreyColorDarker10);
	border-color: var(--darkgreyColorDarker10);
}

.cs a.fa {
	border-color: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.cs a.bg-icon {
	background-color: rgba(255, 255, 255, 0.17);
}

.cs .color-icon.bg-icon {
	background-color: rgba(255, 255, 255, 0.9);
}

.cs a.fa.color-bg-icon:hover {
	background-color: var(--darkgreyColor);
}

.cs .btn-action {
	background-color: #fff;
}

.cs .btn-action i {
	color: var(--darkgreyColor);
}

.cs .btn-action:hover i {
	opacity: 0.7;
}

/*
** Helper Utilities
*/
/* layout */
.clear,
.clearfix {
	clear: both;
}

.round {
	border-radius: 50%;
}

.rounded {
	border-radius: 5px !important;
}

.text-normal {
	text-transform: none;
}

.text-underline {
	text-decoration: underline;
}

.with_top_border,
.with_bottom_border {
	position: relative;
}

.with_top_border:before,
.with_bottom_border:after {
	background-color: rgba(76, 76, 76, 0.1);
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.with_bottom_border:after {
	bottom: 0;
	top: auto;
}

/* paddings for .*-bg, .bg-* and .bordered */
.p-big {
	padding: 40px 45px;
}

@media (min-width: 1200px) {
	.p-big {
		padding: 55px 60px;
	}
}

.p-normal {
	padding: 40px 45px;
}

.p-small {
	padding: 30px 35px;
}

.cover-before,
.cover-after {
	overflow: hidden;
}

.cover-before,
.cover-after,
.cover-before > *,
.cover-after > * {
	position: relative;
	z-index: 2;
}

.cover-before:before,
.cover-after:after {
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.top-corner {
	left: 0;
	line-height: 1;
	position: absolute;
	top: 0;
}

/* text helpers */
.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

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

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

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

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

.fs-28 {
	font-size: 28px;
}

.fs-32 {
	font-size: 32px;
}

.fs-36 {
	font-size: 36px;
}

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

.fs-56 {
	font-size: 56px;
}

.fontsize_30 {
	font-size: 30px;
}

.rightmargin_10 {
	margin-right: 10px;
}

.leftmargin_10 {
	margin-left: 10px;
}

.fw-100 {
	font-weight: 100;
}

.fw-300,
.thin {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-700,
.bold {
	font-weight: 700;
}

.fw-900,
.bolder {
	font-weight: 900;
}

.dropcap {
	float: left;
	font-size: 108px;
	font-weight: 900;
	line-height: 0.9;
	margin: 0 15px 0 0;
	text-transform: uppercase;
}

@media (max-width: 1600px) {
	.dropcap {
		font-size: 92px;
		margin-right: 15px;
	}
}

.overflow-hidden {
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.overflow-visible {
	overflow: visible;
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.overflow-md-visible {
		overflow: visible !important;
	}
}

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

/*display helpers*/
[class*='visible-above-'],
[class*='visible-below-'] {
	display: none !important;
}

@media (min-width: 576px) {
	.visible-above-sm {
		display: block !important;
	}
}

@media (max-width: 575px) {
	.visible-below-sm {
		display: block !important;
	}
}

@media (min-width: 768px) {
	.visible-above-md {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.visible-below-md {
		display: block !important;
	}
}

@media (min-width: 992px) {
	.visible-above-lg {
		display: block !important;
	}
}

@media (max-width: 991px) {
	.visible-below-lg {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.visible-above-xl {
		display: block !important;
	}
}

@media (max-width: 1199px) {
	.visible-below-xl {
		display: block !important;
	}
}

@media (min-width: 1680px) {
	.visible-above-xxl {
		display: block !important;
	}
}

@media (max-width: 1679px) {
	.visible-below-xxl {
		display: block !important;
	}
}

@media (max-width: 575px) {
	.hidden-below-sm {
		display: none !important;
	}
}

@media (min-width: 576px) {
	.hidden-above-sm {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-below-md {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.hidden-above-md {
		display: none !important;
	}
}

@media (max-width: 991px) {
	.hidden-below-lg {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.hidden-above-lg {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.hidden-below-xl {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-above-xl {
		display: none !important;
	}
}

@media (max-width: 1679px) {
	.hidden-below-xxl {
		display: none !important;
	}
}

@media (min-width: 1680px) {
	.hidden-above-xxl {
		display: none !important;
	}
}

@media (max-width: 575px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-lg {
		display: none !important;
	}
}

@media (min-width: 1200px) and (max-width: 1679px) {
	.hidden-xl {
		display: none !important;
	}
}

@media (min-width: 1680px) {
	.hidden-xxl {
		display: none !important;
	}
}

/* borders, colors and backgrounds */
.light-bg {
	background-color: #fff;
}

.hero-bg {
	background-color: #f7f6fb;
}

.muted-bg {
	background-color: var(--darkgreyColorRgba006);
}

.bordered {
	border: 1px solid rgba(76, 76, 76, 0.1);
}

.box-shadow {
	border-color: transparent;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.response,
.color-main {
	border-color: var(--colorMain);
	color: var(--colorMain);
}

.color-main2 {
	border-color: var(--colorMain2);
	color: var(--colorMain2);
}

.color-main3 {
	border-color: var(--colorMain3);
	color: var(--colorMain3);
}

.color-main4 {
	border-color: var(--colorMain4);
	color: var(--colorMain4);
}

.color-main5 {
	border-color: var(--colorMain5);
	color: var(--colorMain5);
}

.color-main6 {
	border-color: var(--colorMain6);
	color: var(--colorMain6);
}

.color-dark {
	border-color: var(--darkColor);
	color: var(--darkColor);
}

.color-darkgrey {
	border-color: #4c4c4c;
	color: #4c4c4c;
}

.color-light {
	border-color: #fff;
	color: #fff;
}

.color-success {
	color: #32b9c2;
}

.color-info {
	color: #3197d4;
}

.color-warning {
	color: #f7b432;
}

.required,
.color-danger {
	color: #fb4f1b;
}

a.links-maincolor,
.links-maincolor a {
	color: var(--colorMain);
}

a.links-maincolor:hover,
.links-maincolor a:hover {
	color: var(--colorMain6);
}

a.links-maincolor2,
.links-maincolor2 a {
	color: var(--colorMain2);
}

a.links-maincolor2:hover,
.links-maincolor2 a:hover {
	color: var(--colorMain6);
}

a.links-maincolor3,
.links-maincolor3 a {
	color: var(--colorMain3);
}

a.links-maincolor3:hover,
.links-maincolor3 a:hover {
	color: var(--colorMain6);
}

a.links-maincolor4,
.links-maincolor4 a {
	color: var(--colorMain4);
}

a.links-maincolor4:hover,
.links-maincolor4 a:hover {
	color: var(--colorMain6);
}

a.links-maincolor5,
.links-maincolor5 a {
	color: var(--colorMain5);
}

a.links-maincolor5:hover,
.links-maincolor5 a:hover {
	color: var(--colorMain6);
}

a.links-maincolor6,
.links-maincolor6 a {
	color: var(--colorMain6);
}

a.links-maincolor6:hover,
.links-maincolor6 a:hover {
	color: var(--colorMain);
}

a.links-grey,
.links-grey a {
	color: #808080;
}

a.links-grey:hover,
.links-grey a:hover {
	color: var(--colorMain);
}

a.links-darkgrey,
.links-darkgrey a {
	color: var(--darkgreyColor);
}

a.links-darkgrey:hover,
.links-darkgrey a:hover {
	color: var(--colorMain);
}

.links-light a {
	color: #fff;
}

.links-light a:hover {
	color: var(--colorMain);
}

.bg-maincolor {
	background-color: var(--colorMain);
}

.bg-maincolor2 {
	background-color: var(--colorMain2);
}

.bg-maincolor3 {
	background-color: var(--colorMain3);
}

.bg-dark {
	background-color: var(--darkColor);
}

.bg-darkblue {
	background-color: #253138;
	color: #fff;
}

.bg-darkgrey {
	background-color: var(--darkgreyColor);
	color: #fff;
}

.bg-success {
	background-color: #32b9c2 !important;
}

.bg-info {
	background-color: #3197d4 !important;
}

.bg-warning {
	background-color: #f7b432 !important;
}

.bg-danger {
	background-color: #fb4f1b !important;
}

[class*='bg-'] {
	color: #fff;
}

[class*='bg-'] a,
[class*='bg-'] h1,
[class*='bg-'] h2,
[class*='bg-'] h3,
[class*='bg-'] h4,
[class*='bg-'] h5,
[class*='bg-'] h6 {
	color: #fff;
}

/*padding for inline elements with theme backgrounds*/
span[class*='bg-'],
span.bordered,
span.light-bg,
span.hero-bg,
span.muted-bg {
	padding-left: 0.37em;
	padding-right: 0.37em;
}

/*Dividers, margins and padding helpers*/
/* margins */
/*top&bottom equal margins - dividers*/
.my-10 {
	margin-bottom: 10px;
	margin-top: 10px;
}

.my-15 {
	margin-bottom: 15px;
	margin-top: 15px;
}

.my-20 {
	margin-bottom: 20px;
	margin-top: 20px;
}

.my-30 {
	margin-bottom: 30px;
	margin-top: 30px;
}

.my-40 {
	margin-bottom: 40px;
	margin-top: 40px;
}

.my-50 {
	margin-bottom: 50px;
	margin-top: 50px;
}

.my-60 {
	margin-bottom: 60px;
	margin-top: 60px;
}

/*left&right equal margins*/
.mx-10 {
	margin-left: 10px;
	margin-right: 10px;
}

.mx-15 {
	margin-left: 15px;
	margin-right: 15px;
}

.mx-20 {
	margin-left: 20px;
	margin-right: 20px;
}

.mx-30 {
	margin-left: 30px;
	margin-right: 30px;
}

.mx-40 {
	margin-left: 40px;
	margin-right: 40px;
}

.mx-50 {
	margin-left: 50px;
	margin-right: 50px;
}

.mx-60 {
	margin-left: 60px;
	margin-right: 60px;
}

/*top margins*/
.mt-10 {
	margin-top: 10px;
}

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

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

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

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

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

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

/*bottom margins*/
.mb-10 {
	margin-bottom: 10px;
}

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

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

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

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

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

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

/*top right bottom left margins*/
.m-10 {
	margin: 10px;
}

.m-15 {
	margin: 15px;
}

.m-20 {
	margin: 20px;
}

.m-30 {
	margin: 30px;
}

.m-40 {
	margin: 40px;
}

.m-50 {
	margin: 50px;
}

.m-60 {
	margin: 60px;
}

/* paddings */
/*top&bottom equal paddings - dividers*/
.py-10 {
	padding-bottom: 10px;
	padding-top: 10px;
}

.py-15 {
	padding-bottom: 15px;
	padding-top: 15px;
}

.py-20 {
	padding-bottom: 20px;
	padding-top: 20px;
}

.py-30 {
	padding-bottom: 30px;
	padding-top: 30px;
}

.py-40 {
	padding-bottom: 40px;
	padding-top: 40px;
}

.py-50 {
	padding-bottom: 50px;
	padding-top: 50px;
}

.py-60 {
	padding-bottom: 60px;
	padding-top: 60px;
}

/*left&right equal paddings*/
.px-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.px-15 {
	padding-left: 15px;
	padding-right: 15px;
}

.px-20 {
	padding-left: 20px;
	padding-right: 20px;
}

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

.px-40 {
	padding-left: 40px;
	padding-right: 40px;
}

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

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

/*top paddings*/
.pt-10 {
	padding-top: 10px;
}

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

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

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

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

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

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

/*bottom paddings*/
.pb-10 {
	padding-bottom: 10px;
}

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

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

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

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

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

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

/*top right bottom left paddings*/
.p-10 {
	padding: 10px;
}

.p-15 {
	padding: 15px;
}

.p-20 {
	padding: 20px;
}

.p-30 {
	padding: 30px;
}

.p-40 {
	padding: 40px;
}

.p-50 {
	padding: 50px;
}

.p-60 {
	padding: 60px;
}

/*
** Shortcodes
*/
/* Author Bio Shortcode */
.author-bio-shortcode {
	text-align: center;
}

.author-bio-shortcode .author_bio_shortcode_wrap {
	margin: 0 auto;
	max-width: 700px;
	position: relative;
}

.author-bio-shortcode .author_bio_shortcode_wrap .owl-carousel.owl-loaded {
	margin-bottom: 0;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav {
	margin-top: -20px;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 4;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div {
	color: var(--colorMain);
	cursor: pointer;
	font-size: 0;
	opacity: 0.3;
	position: absolute;
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	width: 40px;
}

.ds .author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div {
	color: #fff;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div:hover {
	opacity: 1;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div:before {
	content: "";
	font-family: FontAwesome;
	font-size: 30px;
	font-weight: 300;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div.owl-prev {
	left: -50px;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div.owl-prev:before {
	content: "\f104";
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div.owl-next {
	left: auto;
	right: -50px;
}

.author-bio-shortcode .author_bio_shortcode_wrap .custom-nav > div.owl-next:before {
	content: "\f105";
}

.author-bio-shortcode .bio-text {
	color: #808080;
	font-size: 20px;
	font-weight: 200;
	line-height: 30px;
	max-width: 700px;
	position: relative;
}

.ds .author-bio-shortcode .bio-text {
	color: #fff;
}

.author-bio-shortcode .author-bio-word {
	color: #fff;
	font-size: 100px;
	font-weight: 900;
	opacity: 0.07;
	position: absolute;
	text-align: left;
	text-transform: uppercase;
	top: -50%;
	width: 200%;
}

@media (min-width: 768px) {
	.author-bio-shortcode .author-bio-word {
		font-size: 240px;
	}
}

.author-bio-shortcode .owl-carousel-slider {
	background-color: rgba(247, 246, 251, 0.1);
	height: 4px;
	margin-top: 105px;
	position: relative;
	-webkit-transform: translateX(50%);
	    -ms-transform: translateX(50%);
	        transform: translateX(50%);
	-webkit-transition: left 0.5s ease;
	transition: left 0.5s ease;
}

.author-bio-shortcode .ui-slider-handle {
	outline: none;
}

.author-bio-shortcode .ui-slider-range {
	background-color: #f7f6fb;
	height: 4px;
	position: absolute;
	top: 0;
	-webkit-transition: width 0.5s ease;
	transition: width 0.5s ease;
}

.author-bio-shortcode .author-bio-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	position: relative;
	z-index: 2;
}

.author-bio-shortcode .author-bio-flex:first-child {
	margin-left: -15px;
	margin-right: -15px;
}

.author-bio-shortcode .author-bio-flex:first-child span {
	background: var(--colorMain3);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, var(--colorMain3)), color-stop(100%, var(--colorMain)));
	background: -webkit-linear-gradient(top, var(--colorMain3) 0%, var(--colorMain) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--colorMain3)), to(var(--colorMain)));
	background: linear-gradient(to bottom, var(--colorMain3) 0%, var(--colorMain) 100%);
	border: 3px solid #c5cddf;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	height: 24px;
	margin-top: -10px;
	position: relative;
	-webkit-transition: background-color 0.5s ease;
	transition: background-color 0.5s ease;
	width: 24px;
	z-index: 2;
}

.author-bio-shortcode .author-bio-flex:first-child span:before {
	background: #c5cddf;
	border: 0;
	border-radius: 50%;
	content: "";
	display: block;
	height: 12px;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	width: 12px;
	z-index: 3;
}

.author-bio-shortcode .author-bio-flex:first-child span:after {
	background: var(--colorMain);
	border: 0;
	border-radius: 50%;
	content: "";
	display: block;
	height: 6px;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	width: 6px;
	z-index: 3;
}

.author-bio-shortcode .author-bio-flex:first-child span.active {
	background-color: var(--colorMain2);
}

.author-bio-shortcode .author-bio-flex:first-child span.active:before,
.author-bio-shortcode .author-bio-flex:first-child span.active:after {
	display: none;
}

.author-bio-shortcode .author-bio-flex:first-child + div {
	margin-left: -1em;
	margin-right: -1em;
	position: relative;
	top: -60px;
}

.author-bio-shortcode .author-bio-flex .year-label {
	color: #808080;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	-webkit-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

.ds .author-bio-shortcode .author-bio-flex .year-label {
	color: #fff;
}

.ls .author-bio-shortcode .owl-carousel-slider {
	background: var(--darkColorRgba01);
}

.ls .author-bio-shortcode .author-bio-word {
	color: var(--colorMain);
}

.ls .author-bio-shortcode .ui-slider-range {
	background-color: var(--colorMain);
}

/*
** Special Heading
*/
.special-heading {
	line-height: 1;
	margin: 0;
}

h1.special-heading,
h2.special-heading {
	line-height: 1.1;
}

h2.special-heading.big {
	font-size: 60px;
}

@media (max-width: 576px) {
	h2.special-heading.big {
		font-size: 40px;
	}
}

.line-height-big {
	line-height: 1.45;
}

@media (max-width: 1240px) {
	.line-height-big {
		line-height: 1;
	}
}

.line-height-medium {
	line-height: 1.25;
}

@media (max-width: 1240px) {
	.line-height-medium {
		line-height: 1;
	}
}

.extra-light {
	font-weight: 200;
}

.large-letter-spacing {
	display: block;
	letter-spacing: 0.2em;
}

.big-letter-spacing {
	letter-spacing: 0.2em;
}

@media (min-width: 768px) {
	.big-letter-spacing {
		letter-spacing: 0.4em;
	}
}

.none-letter-spacing {
	letter-spacing: 0;
}

p.special-heading + .special-heading {
	margin-top: 10px !important;
}

/*
** Number Card
*/
.number-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin: 30px 0;
	overflow: hidden;
	position: relative;
}

.number-card .card-number span {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 60px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-left: -0.32em;
	margin-top: -0.14em;
	position: relative;
}

.number-card .card-number span:after {
	bottom: -0.09em;
	content: "•";
	font-size: 0.62em;
	position: absolute;
	right: -0.4em;
}

@media (min-width: 992px) {
	.number-card .card-number span {
		font-size: 100px;
	}
}

@media (min-width: 1200px) {
	.number-card .card-number span {
		font-size: 238px;
	}
}

.number-card .card-content {
	padding: 36px 36px 46px;
}

@media (min-width: 992px) {
	.number-card .card-content {
		padding: 56px 60px 66px 100px;
	}
}

.number-card .card-content h4 {
	line-height: 1;
	margin: 0;
}

.number-card .card-content h3 {
	font-weight: 900;
	line-height: 1;
	margin: 6px 0 25px;
}

@media (min-width: 500px) {
	.number-card .card-content h3 {
		font-size: 38px;
	}
}

@media (max-width: 499px) {
	.number-card .card-number {
		position: absolute;
	}

	.number-card .card-number span {
		font-size: 36px;
	}

	.number-card h3,
	.number-card h4 {
		display: inline-block;
	}
}

.pricing-plan {
	background-color: #fff;
	border-radius: 5px !important;
	margin-bottom: 25px;
	margin-top: 25px;
	text-align: center;
}

.pricing-plan .pricing-plan-inner {
	padding: 40px 40px 10px;
}

@media (min-width: 1200px) {
	.pricing-plan .pricing-plan-inner {
		padding: 40px 60px 10px;
	}
}

.pricing-plan .price-wrap {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 500;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	letter-spacing: 0.2em;
	line-height: 0.7;
	margin: 42px 0 -7px;
	text-indent: 0.2em;
	text-transform: uppercase;
}

.pricing-plan .price-wrap[class*='bg-'] {
	margin-bottom: 0;
	margin-top: 50px;
	padding: 30px 30px 10px;
}

.pricing-plan .price-wrap .plan-price {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0;
	margin: 0 4px;
}

.pricing-plan [class*='bg-'] {
	margin-left: -41px;
	margin-right: -41px;
	padding: 10px 30px 30px;
}

.pricing-plan .plan-name {
	border: 0;
	border-radius: 5px 5px 0 0;
	padding: 28px 15px;
}

.pricing-plan .plan-name h3 {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
}

.pricing-plan.color_style1 .plan-name {
	background-color: var(--colorMain3) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
}

.pricing-plan.color_style1 .plan-price {
	color: var(--colorMain3);
}

.pricing-plan.color_style2 .plan-name {
	background-color: var(--colorMain6) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain5Rgba1)), to(var(--colorMain6Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain5Rgba1) 0%, var(--colorMain6Rgba1) 100%);
}

.pricing-plan.color_style2 .plan-price {
	color: var(--colorMain6);
}

.pricing-plan.color_style3 .plan-name {
	background-color: var(--colorMain8) !important;
	background-image: -webkit-gradient(linear, left top, right top, from(var(--colorMain7Rgba1)), to(var(--colorMain8Rgba1)));
	background-image: -webkit-linear-gradient(left, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
	background-image: linear-gradient(to right, var(--colorMain7Rgba1) 0%, var(--colorMain8Rgba1) 100%);
}

.pricing-plan.color_style3 .plan-price {
	color: var(--colorMain8);
}

@media (min-width: 1200px) {
	.pricing-plan [class*='bg-'] {
		margin-left: -61px;
		margin-right: -61px;
	}

	.pricing-plan .plan-name[class*='bg-'] {
		margin-top: -57px;
	}
}

.pricing-plan .plan-features {
	margin: 40px 0 20px;
}

.pricing-plan .plan-button {
	position: relative;
	top: 48px;
}

.pricing-plan.plan-featured {
	border: 10px solid var(--colorMain);
	-webkit-transform: translateY(-10px);
	    -ms-transform: translateY(-10px);
	        transform: translateY(-10px);
}

.pricing-plan.plan-featured .plan-button {
	top: 48px;
}

.pricing-plan hr {
	margin: 15px 0;
}

.pricing-plan .fw-switch-row {
	position: absolute;
}

.desc-col .pricing-plan {
	padding-left: 0;
	padding-right: 0;
}

.desc-col .pricing-plan .fw-switch-row {
	display: none;
}

/* Testimonials shortcode */
.testimonials-slider .quote-item {
	border: none;
	padding: 20px 0;
	text-align: center;
}

@media (min-width: 576px) and (max-width: 991px) {
	.testimonials-slider .quote-item {
		margin-left: auto;
		margin-right: auto;
		max-width: 80%;
	}
}

@media (min-width: 992px) {
	.testimonials-slider .quote-item {
		-webkit-box-align: center;
		-webkit-align-items: center;
		        align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		        justify-content: flex-start;
	}
}

@media (min-width: 992px) {
	.testimonials-slider .quote-item .quote-inner {
		padding-right: 26px;
		text-align: left;
	}
}

.testimonials-slider .quote-item .quote-inner .quote-meta {
	margin-bottom: 30px;
	margin-left: -12px;
	margin-top: 34px;
}

.testimonials-slider .quote-item .quote-inner .quote-content {
	color: #4c4c4c;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	line-height: 30px;
}

@media (min-width: 992px) {
	.testimonials-slider .quote-item .quote-inner .quote-signature {
		margin-left: -20px;
	}
}

.testimonials-slider .owl-dots {
	counter-reset: number;
	margin-top: -10px;
	-webkit-tap-highlight-color: transparent;
	text-align: center;
}

@media (min-width: 992px) {
	.testimonials-slider .owl-dots {
		margin-top: 0;
		position: absolute;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		width: 30px;
	}
}

.testimonials-slider .owl-dots .owl-dot {
	*display: inline;
	-webkit-backface-visibility: visible;
	display: inline-block;
	height: 30px;
	margin: 0 10px;
	position: relative;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	width: auto;
	zoom: 1;
}

@media (min-width: 992px) {
	.testimonials-slider .owl-dots .owl-dot {
		margin: 5px 0;
	}
}

.testimonials-slider .owl-dots .owl-dot:after {
	color: var(--colorMain3);
	content: counter(number, decimal-leading-zero);
	counter-increment: number;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
	z-index: 1;
}

.ds .testimonials-slider .owl-dots .owl-dot:after,
.cs .testimonials-slider .owl-dots .owl-dot:after {
	color: #fff;
}

.testimonials-slider .owl-dots .owl-dot span {
	border: 0;
	display: block;
	height: 0;
	opacity: 1;
	position: relative;
	width: 0;
	z-index: 2;
}

.testimonials-slider .owl-dots .owl-dot.active:after,
.testimonials-slider .owl-dots .owl-dot:hover:after {
	color: var(--colorMain);
}

.testimonials-slider .owl-dots .owl-dot.active:after {
	text-decoration: line-through;
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .quote-item .quote-inner {
		padding-right: 100px;
	}
}

.testimonials-slider.testimonials2 .quote-item .quote-inner .quote-meta {
	letter-spacing: 0.2em;
	margin-bottom: 7px;
	margin-left: 0;
	margin-top: 0;
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .quote-item .quote-inner .quote-meta {
		letter-spacing: 0.39em;
		margin-bottom: 21px;
		margin-left: -12px;
	}
}

.testimonials-slider.testimonials2 .quote-item .quote-image img {
	box-shadow: none;
	padding: 0;
}

.testimonials-slider.testimonials2 .quote-item .quote-image:after {
	background: var(--colorMain);
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .owl-stage-outer {
		margin-right: 70px;
	}
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .owl-dots {
		right: 36px;
	}
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .owl-dots .owl-dot {
		-webkit-box-align: center;
		-webkit-align-items: center;
		        align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		margin: -1px 0;
	}
}

.testimonials-slider.testimonials2 .owl-dots .owl-dot:after {
	color: #808080;
	font-size: 14px;
	font-weight: 400;
	opacity: 0;
	text-decoration: none;
}

.testimonials-slider.testimonials2 .owl-dots .owl-dot span {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	margin: 5px 0;
	padding: 6px;
}

@media (min-width: 992px) {
	.testimonials-slider.testimonials2 .owl-dots .owl-dot span {
		left: 50px;
		margin: 0;
	}
}

.testimonials-slider.testimonials2 .owl-dots .owl-dot span:after {
	background-color: var(--colorMain);
	border-radius: 0;
	content: "";
	height: 6px;
	position: absolute;
	width: 6px;
}

.testimonials-slider.testimonials2 .owl-dots .owl-dot.active span {
	border: 1px solid var(--colorMain);
}

.testimonials-slider.testimonials2 .owl-dots .owl-dot.active:after {
	opacity: 1;
}

.quote-image {
	display: inline-block;
	margin-bottom: 25px;
	position: relative;
}

@media (min-width: 992px) {
	.quote-image {
		margin-bottom: 0;
		margin-right: 60px;
	}
}

.quote-image:after {
	background: var(--colorMain);
	background: -webkit-gradient(left top, right top, color-stop(0%, var(--colorMainRgba1)), color-stop(100%, var(--colorMain3Rgba1)));
	background: -webkit-linear-gradient(left, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMainRgba1)), to(var(--colorMain3Rgba1)));
	background: linear-gradient(to right, var(--colorMainRgba1) 0%, var(--colorMain3Rgba1) 100%);
	border: 0;
	border-radius: 50%;
	color: #fff;
	content: "‘‘";
	font-family: "Rasa", serif;
	font-size: 60px;
	height: 60px;
	line-height: 86px;
	margin-top: -30px;
	position: absolute;
	right: -30px;
	text-align: center;
	text-indent: 0;
	top: 50%;
	width: 60px;
}

@media (max-width: 576px) {
	.quote-image:after {
		display: none;
	}
}

.quote-image img {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	max-width: 370px;
	padding: 10px;
}

@media (max-width: 1200px) {
	.quote-image img {
		max-width: 250px;
	}
}

.quote-image + p {
	letter-spacing: 0.4em;
	margin: 30px 0 20px;
}

/*
* Icon box shortcode
*/
.icon-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	/* Block Items styling */
}

@media (max-width: 992px) {
	.icon-box.mobile-center {
		-webkit-box-align: center !important;
		-webkit-align-items: center !important;
		        align-items: center !important;
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-webkit-flex-direction: column !important;
		        flex-direction: column !important;
		text-align: center !important;
	}

	.icon-box.mobile-center .box_icon + .box-wrap {
		margin-top: 15px !important;
	}
}

.icon-box .box_icon {
	font-size: 25px;
}

.icon-box .box_icon img {
	max-width: 50px;
}

.icon-box.type_2 .box_icon {
	background-clip: content-box;
	background-color: #fff;
	border: 10px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-block;
	height: 120px;
	line-height: 90px;
	max-width: 100%;
	width: 120px;
}

.icon-box.type_2 .box_icon img {
	margin-top: 6px;
}

.icon-box.type_2 .box-heading {
	letter-spacing: 0.2em;
	line-height: 1;
	margin-bottom: 17px;
	margin-top: 20px;
	text-transform: uppercase;
}

.icon-box.icon_top {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        flex-direction: column;
	text-align: center;
}

.icon-box.icon_top .box_icon + .box-wrap {
	margin-top: 15px;
}

.icon-box.icon_left .box_icon + .box-wrap {
	margin-left: 20px;
}

.icon-box.icon_right {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	text-align: right;
}

.icon-box.icon_right .box_icon + .box-wrap {
	margin-right: 20px;
}

.icon-box .box-heading {
	font-size: 23px;
	line-height: 30px;
	margin-bottom: 14px;
}

.icon-box.grad-1 i {
	background: -webkit-linear-gradient(left, var(--colorMain5) 0%, var(--colorMain6) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMain5)), to(var(--colorMain6)));
	background: linear-gradient(to right, var(--colorMain5) 0%, var(--colorMain6) 100%);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.icon-box.grad-2 i {
	background: -webkit-linear-gradient(left, var(--colorMain) 0%, var(--colorMain3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMain)), to(var(--colorMain3)));
	background: linear-gradient(to right, var(--colorMain) 0%, var(--colorMain3) 100%);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.icon-box.block-item {
	background-color: #fff;
	border: 0;
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	overflow: hidden;
	padding: 60px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	z-index: 1;
}

.icon-box.block-item .box_icon {
	height: 60px;
	line-height: 1;
}

.icon-box.block-item i,
.icon-box.block-item i:before {
	font-size: 60px;
}

.icon-box.block-item .box_icon + .box-wrap {
	margin-top: 25px;
}

.icon-box.block-item .box_icon img {
	max-width: 60px;
}

.icon-box.block-item:before {
	background: -webkit-linear-gradient(left, var(--colorMain) 0%, var(--colorMain3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--colorMain)), to(var(--colorMain3)));
	background: linear-gradient(to right, var(--colorMain) 0%, var(--colorMain3) 100%);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.icon-box.block-item:hover:before {
	opacity: 1;
}

.icon-box.block-item:hover .box_icon i,
.icon-box.block-item:hover .box-heading,
.icon-box.block-item:hover .box-content {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.icon-box.block-item:hover .box_icon img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.icon-box.block-item .box_icon,
.icon-box.block-item .box-wrap {
	z-index: 2;
}

/* Shortcode Posts */
.shortcode-posts {
	/* Tiled special layout */
}

.shortcode-posts .item-title {
	line-height: 1.2;
}

.shortcode-posts .vertical-item + .item-title {
	padding: 22px 0 0;
}

.shortcode-posts .post-adds a {
	color: #808080;
}

.shortcode-posts .post-adds a:hover {
	color: var(--colorMain);
}

@media (max-width: 1240px) {
	.shortcode-posts .post-adds {
		display: block;
	}

	.shortcode-posts .post-adds .comments-link,
	.shortcode-posts .post-adds .likes-count,
	.shortcode-posts .post-adds .post-views-count {
		display: block;
		margin-bottom: 10px;
	}

	.shortcode-posts .post-adds .comments-link:after,
	.shortcode-posts .post-adds .likes-count:after,
	.shortcode-posts .post-adds .post-views-count:after {
		display: none;
	}
}

.shortcode-posts .post-adds span,
.shortcode-posts .post-adds a {
	line-height: 1;
}

.shortcode-posts .likes-count,
.shortcode-posts .comments-link {
	margin-right: 8px;
}

.shortcode-posts .likes-count:after,
.shortcode-posts .comments-link:after {
	content: "|";
	font-size: 10px;
	font-weight: 600;
	margin-left: 8px;
	position: relative;
	top: 0;
}

.shortcode-posts .comments-link {
	margin-right: 8px;
}

.shortcode-posts .comments-link:after {
	top: -1px;
}

.shortcode-posts.tiled-layout {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	        flex-direction: row;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
}

.shortcode-posts.tiled-layout .post + .post {
	margin-top: 30px;
}

.shortcode-posts.tiled-layout .bigitem .vertical-item p {
	height: 85px;
	margin-bottom: 32px;
	overflow: hidden;
}

.shortcode-posts.tiled-layout .item-content .post-meta {
	color: var(--colorMain);
	line-height: 1.2;
	text-transform: uppercase;
}

.shortcode-posts.tiled-layout .item-content .post-meta a {
	color: var(--colorMain);
}

.shortcode-posts.tiled-layout .item-content .post-meta a:hover {
	opacity: 0.8;
}

.shortcode-posts.tiled-layout .item-content .comments-link {
	margin-right: 8px;
}

.shortcode-posts.tiled-layout .item-content .comments-link:after {
	color: var(--darkgreyColor);
	top: -1px;
}

@media (max-width: 399px) {
	.shortcode-posts.tiled-layout .smallitem .side-item .item-content {
		padding: 30px;
	}

	.shortcode-posts.tiled-layout .smallitem .side-item .item-content p {
		height: 85px;
		overflow: hidden;
	}
}

@media (min-width: 400px) {
	.shortcode-posts.tiled-layout .smallitem .side-item {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: wrap;
		        flex-flow: wrap;
	}

	.shortcode-posts.tiled-layout .smallitem .side-item .item-media-wrap {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		        flex: 0 0 50%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		        justify-content: flex-start;
	}

	.shortcode-posts.tiled-layout .smallitem .side-item .item-content {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		        flex: 0 0 50%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
		padding: 0 0 0 30px;
		text-align: left;
	}

	.shortcode-posts.tiled-layout .smallitem .side-item .item-content p {
		height: 56px;
		overflow: hidden;
	}

	.shortcode-posts.tiled-layout .smallitem .side-item .item-content > span {
		display: inline-block;
		width: auto;
	}
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content {
	margin-top: 12px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-meta {
	color: #4c4c4c;
	text-transform: none;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date i,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds i {
	color: var(--colorMain);
	font-size: 14px;
	margin-right: 9px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date a,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds a {
	color: #4c4c4c;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date a:hover,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds a:hover {
	color: var(--colorMain);
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date .comments-link:after,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds .comments-link:after {
	display: none;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date .likes-count,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds .likes-count {
	margin-right: 23px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date .likes-count .votes_count,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds .likes-count .votes_count {
	font-size: 16px;
	font-weight: 300;
	text-transform: none;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date .likes-count .votes_count .item-likes-word,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds .likes-count .votes_count .item-likes-word {
	display: none;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .entry-date .likes-count:after,
.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-adds .likes-count:after {
	font-size: 16px;
	font-weight: 300;
	margin-left: 24px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .item-title {
	line-height: 1;
	margin: 12px 0 18px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-button {
	margin-top: 10px;
}

@media (min-width: 1200px) {
	.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-button {
		margin-top: 38px;
	}
}

.shortcode-posts.tiled-layout.tiled-layout2 .item-content .post-button a {
	margin-bottom: 0;
}

.shortcode-posts.tiled-layout.tiled-layout2 .bigitem .item-content {
	margin-top: 25px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .bigitem .item-content .item-title {
	margin: 23px 0 20px;
}

.shortcode-posts.tiled-layout.tiled-layout2 .bigitem .item-content p {
	height: auto;
	margin-bottom: -7px;
}

@media (min-width: 991px) {
	.shortcode-posts.tiled-layout.tiled-layout2 .bigitem .item-content p {
		margin-bottom: 7px;
	}
}

@media (max-width: 767px) {
	.shortcode-posts.tiled-layout.tiled-layout2 .smallitem .side-item .item-media-wrap,
	.shortcode-posts.tiled-layout.tiled-layout2 .smallitem .side-item .item-content {
		-webkit-box-flex: 1;
		-webkit-flex: auto;
		        flex: auto;
		padding: 0;
		text-align: center;
	}

	.shortcode-posts.tiled-layout.tiled-layout2 .smallitem .side-item .post-adds {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
	}
}

/*
* Icons list shortcode
*/
.icons-list-shortcode li.icon-maincolor i {
	color: var(--colorMain);
}

.icons-list-shortcode li.icon-maincolor2 i {
	color: var(--colorMain6);
}

.icons-list-shortcode li.icon-maincolor3 i {
	color: var(--colorMain8);
}

.icons-list-shortcode li.icon-white i {
	color: #fff;
}

.icons-list-shortcode li.icon-dark i {
	color: #4c4c4c;
}

.icons-list-shortcode li .icon-inline > * {
	display: inline;
	vertical-align: middle;
}

.icons-list-shortcode li .icon-inline .icon-styled {
	margin-right: 5px;
}

.icons-list-shortcode li .icon-inline .icon-styled i {
	text-align: center;
	width: 18px;
}

.icons-list-shortcode li .icon-inline p > strong {
	color: #808080 !important;
	font-size: 16px;
	font-weight: 300 !important;
}

/* Shortcode Loop Item */
.shortcode-loop-item {
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.shortcode-loop-item .item-media {
	border: 0;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.shortcode-loop-item .item-content {
	border: 0;
	border-radius: 5px;
	display: block;
	margin: 0 30px;
	padding: 15px 25px !important;
	position: relative;
	top: -30px;
}

.shortcode-loop-item .item-title {
	font-size: 20px;
}

.shortcode-loop-item.loop-animation:hover {
	-webkit-transform: translateY(-10px);
	    -ms-transform: translateY(-10px);
	        transform: translateY(-10px);
}

/* Contacts list */
.contacts-list .no-bullets {
	padding-left: 0;
}

.contacts-list .contact-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	        justify-content: left;
	margin-bottom: 10px;
}

.contacts-list .contact-item:last-child {
	margin-bottom: 0;
}

.contacts-list .contact-item .title {
	color: #4c4c4c;
	min-width: 80px;
}

.contacts-list .contact-item .desc a {
	color: #4c4c4c;
}

.contacts-list .contact-item .desc a:hover {
	color: var(--colorMain);
}

/* Tabs with Accordion */
/* notification */
.shortcode-notification.alert {
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	line-height: 26px;
	margin-bottom: 20px;
	padding: 16px 25px 17px 40px;
	position: relative;
	text-transform: uppercase;
}

.shortcode-notification.alert:before {
	content: "";
	font-family: FontAwesome;
	font-size: 14px;
	left: -10px;
	position: relative;
	top: 0;
}

.shortcode-notification.alert-success {
	background-color: #32b9c2;
}

.shortcode-notification.alert-success:before {
	content: "\f058";
}

.shortcode-notification.alert-info {
	background-color: #3197d4;
}

.shortcode-notification.alert-info:before {
	content: "\f06a";
}

.shortcode-notification.alert-warning {
	background-color: #f7b432;
}

.shortcode-notification.alert-warning:before {
	content: "\f071";
}

.shortcode-notification.alert-danger {
	background-color: #fb4f1b;
}

.shortcode-notification.alert-danger:before {
	content: "\f057";
}

/* Signature */
.fw-theme-signature {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.fw-theme-signature.type-2 {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
}

.fw-theme-signature.type-2 .img-part {
	margin-right: 60px;
}

@media (max-width: 575px) {
	.fw-theme-signature.type-2 .img-part {
		margin-right: 20px;
	}
}

.fw-theme-signature .section_header {
	font-size: 16px;
	margin-bottom: 0;
}

.fw-theme-signature .desc {
	font-size: 16px;
	text-transform: none;
}

.fw-theme-signature .img-part {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

/* Simple Counter Shortcode */
.shortcode-simple-counter {
	position: relative;
}

.shortcode-simple-counter .counter_wrap {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	border-radius: 5px;
	border-right: 2px solid #fff;
	padding: 20px;
}

.shortcode-simple-counter .counter_wrap:after,
.shortcode-simple-counter .counter_wrap:before {
	background-color: #fff;
	border-radius: 5px 0 0 0;
	content: "";
	height: 2px;
	left: 3px;
	position: absolute;
	top: 0;
	width: 30%;
}

.shortcode-simple-counter .counter_wrap:after {
	border-radius: 0 5px 0 0;
	left: auto;
	right: 3px;
}

.shortcode-simple-counter .counter_icon {
	display: block;
	height: 50px;
	left: 50%;
	position: absolute;
	top: -25px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: auto;
}

.shortcode-simple-counter .counter_icon img {
	height: 50px;
}

.shortcode-simple-counter .counter-size {
	color: #fff;
	display: inline-block;
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 0;
	margin-top: 26px;
}

.shortcode-simple-counter .counter-text {
	color: #fff;
	line-height: 1;
	margin-bottom: 20px;
	margin-top: 5px;
}

/* Simple list */
.simple-list .no-bullets {
	padding-left: 0;
}

.simple-list .list-title {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	margin-bottom: 10px;
	padding-bottom: 13px;
}

.simple-list .list-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	        justify-content: left;
	margin-bottom: 0;
}

.simple-list .list-item:last-child {
	margin-bottom: 0;
}

.text-center .simple-list .list-item {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

/*
* Steps
*/
.fw-theme-steps .fw-theme-step-wrap {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: auto;
}

.fw-theme-steps .fw-theme-step-wrap > * {
	display: block;
	margin: 0 auto;
	position: relative;
	width: auto;
}

.fw-theme-steps .fw-theme-step-wrap .fw-step-left-part {
	max-width: 400px;
	text-align: center;
}

.fw-theme-steps .fw-theme-step-wrap .fw-step-left-part .step-title {
	width: 100%;
}

.fw-theme-steps .fw-theme-step-wrap .fw-step-right-part {
	margin-top: 20px;
	max-width: 400px;
}

.ds .fw-theme-steps .fw-theme-step-wrap .fw-step-right-part {
	color: rgba(255, 255, 255, 0.7);
}

.fw-theme-steps .fw-theme-step-wrap .fw-step-center-part img {
	border: 10px solid var(--darkgreyColor);
	border-radius: 50%;
	box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
	max-width: 250px;
}

.ls .fw-theme-steps .fw-theme-step-wrap .fw-step-center-part img {
	border: 10px solid #fff;
	box-shadow: 0 0px 10px 0px rgba(255, 255, 255, 0.1);
}

.fw-theme-steps .fw-theme-step-wrap .step-subtitle {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(odd) .step-subtitle {
	margin-bottom: 0;
	text-align: right;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(odd) .step-title {
	margin-top: 0;
	text-align: right;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(odd) .step-title:before {
	left: 0;
	text-align: left;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(even) .step-subtitle {
	margin-bottom: 0;
	text-align: left;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(even) .step-title {
	margin-top: 0;
	text-align: left;
}

.fw-theme-steps .fw-theme-step-wrap:nth-child(even) .step-title:before {
	right: 0;
	text-align: right;
}

/* Steps counter */
#box_wrapper {
	counter-reset: number;
}

#box_wrapper .step-title {
	font-size: 60px;
	letter-spacing: 0.2em;
	line-height: 1.2;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

@media (max-width: 576px) {
	#box_wrapper .step-title {
		font-size: 40px;
	}
}

#box_wrapper .step-title:before {
	content: counter(number, decimal-leading-zero);
	counter-increment: number;
	font-size: 90px;
	font-weight: 700;
	position: absolute;
	top: -25px;
	width: 100%;
	z-index: -1;
}

#box_wrapper .step-title.color1:before {
	background: -webkit-linear-gradient(right, #b2a9d4, #deb2dc);
	background: -webkit-gradient(linear, left top, right top, from(#b2a9d4), to(#deb2dc));
	background: -webkit-linear-gradient(left, #b2a9d4, #deb2dc);
	background: linear-gradient(to right, #b2a9d4, #deb2dc);
	-webkit-background-clip: text;
	color: var(--colorMain);
	-webkit-text-fill-color: transparent;
}

#box_wrapper .step-title.color2:before {
	background: -webkit-linear-gradient(right, #54a7d4, #86cff7);
	background: -webkit-gradient(linear, left top, right top, from(#54a7d4), to(#86cff7));
	background: -webkit-linear-gradient(left, #54a7d4, #86cff7);
	background: linear-gradient(to right, #54a7d4, #86cff7);
	-webkit-background-clip: text;
	color: var(--colorMain4);
	-webkit-text-fill-color: transparent;
}

#box_wrapper .step-title.color3:before {
	background: -webkit-linear-gradient(right, #4ab4cb, #7ad0c7);
	background: -webkit-gradient(linear, left top, right top, from(#4ab4cb), to(#7ad0c7));
	background: -webkit-linear-gradient(left, #4ab4cb, #7ad0c7);
	background: linear-gradient(to right, #4ab4cb, #7ad0c7);
	-webkit-background-clip: text;
	color: var(--colorMain8);
	-webkit-text-fill-color: transparent;
}

#box_wrapper .step-title.color4:before {
	background: -webkit-linear-gradient(right, #58ba5d, #7ad07e);
	background: -webkit-gradient(linear, left top, right top, from(#58ba5d), to(#7ad07e));
	background: -webkit-linear-gradient(left, #58ba5d, #7ad07e);
	background: linear-gradient(to right, #58ba5d, #7ad07e);
	-webkit-background-clip: text;
	color: var(--colorMain7);
	-webkit-text-fill-color: transparent;
}

.fw-theme-step-wrap + .fw-theme-step-wrap {
	margin-top: 32px;
}

/* Responsive */

@media (min-width: 992px) {
	#box_wrapper .step-title {
		margin-bottom: 0;
	}

	#box_wrapper .step-title:before {
		font-size: 185px;
		top: -90px;
		width: 100%;
	}

	.fw-theme-steps .fw-theme-step-wrap {
		-webkit-box-align: center;
		-webkit-align-items: center;
		        align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
	}

	.fw-theme-steps .fw-theme-step-wrap .fw-step-right-part {
		margin-top: 0;
		max-width: 100%;
		text-align: left;
	}

	.fw-theme-steps .fw-theme-step-wrap .fw-step-center-part {
		position: relative;
	}

	.fw-theme-steps .fw-theme-step-wrap:nth-child(odd) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		        flex-direction: row;
	}

	.fw-theme-steps .fw-theme-step-wrap:nth-child(even) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}

	.fw-theme-steps .fw-theme-step-wrap:nth-child(even) .fw-step-right-part {
		text-align: right;
	}

	.fw-theme-steps .fw-theme-step-wrap:last-child .fw-step-center-part:after {
		display: none;
	}

	.fw-theme-steps .fw-theme-step-wrap > * {
		-webkit-flex-basis: 33.3%;
		        flex-basis: 33.3%;
	}
}

@media (min-width: 1200px) {
	.fw-theme-steps .fw-theme-step-wrap .fw-step-center-part:after {
		right: 40px;
	}

	.fw-theme-steps .fw-theme-step-wrap:nth-child(even) .fw-step-center-part:after {
		left: 40px;
	}
}

#box_wrapper .fw-theme-steps.steps2 {
	display: block;
	text-align: center;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap {
	display: block;
	padding: 0 15px;
	position: relative;
	text-align: left;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap {
		padding: 0 20px 0 0;
		width: 25%;
	}

	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap:last-child {
		padding: 0;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step {
	margin: 99px 0 63px;
}

@media (max-width: 991px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step:last-child {
		margin-bottom: 3px;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title {
	font-size: 24px;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: none;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title {
		text-align: left;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title:before {
	background: none;
	font-size: 100px;
	font-weight: 900;
	left: 0;
	letter-spacing: -6px;
	text-align: center;
	-webkit-text-fill-color: initial;
	top: -65px;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title:before {
		text-align: left;
	}
}

@media (min-width: 1200px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title:before {
		left: -32px;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title.color1:before {
	color: var(--colorMain);
	opacity: 0.1;
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title.color2:before {
	color: var(--colorMain2);
	opacity: 0.1;
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title.color3:before {
	color: var(--colorMain3);
	opacity: 0.1;
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-title.color4:before {
	color: var(--colorMain4);
	opacity: 0.9;
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-text {
	color: var(--darkColor);
	line-height: 23px;
	margin-left: 0;
	margin-top: 11px;
	text-align: center;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap .fw-step .step-text {
		margin-left: -6px;
		text-align: left;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap + .fw-theme-step-wrap {
	margin-top: 0;
}

@media (min-width: 992px) {
	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap:after {
		background-image: url(../img/arrow-top.png);
		background-repeat: no-repeat;
		content: "";
		display: block;
		height: 36px;
		position: absolute;
		right: 24px;
		top: 0;
		width: 150px;
		z-index: 4;
	}

	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap:last-child:after {
		display: none !important;
	}

	#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap:nth-child(2n):after {
		background-image: url(../img/arrow-bottom.png);
		bottom: 0;
		right: -5px;
		top: auto;
	}
}

#box_wrapper .fw-theme-steps.steps2 .fw-theme-step-wrap.steps-count-2 .fw-theme-step-wrap:after {
	right: -70px;
}

/* Call To Action */
.fw-theme-call-to-action {
	border: 0;
	display: block;
	margin-bottom: 10px;
	padding: 0;
}

.fw-theme-call-to-action .section_header {
	margin-bottom: 15px;
}

.fw-theme-call-to-action .fw-action-wrap {
	display: inline-block;
}

.fw-theme-call-to-action .fw-action-wrap .fw-action-desc {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 15px;
}

.fw-theme-call-to-action .fw-action-wrap .fw-action-desc span,
.fw-theme-call-to-action .fw-action-wrap .fw-action-desc strong {
	color: #4c4c4c;
}

@media (min-width: 768px) {
	.fw-theme-call-to-action .fw-action-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-around;
		        justify-content: space-around;
	}

	.fw-theme-call-to-action .fw-action-wrap .fw-action-desc {
		margin-right: 35px;
	}

	.fw-theme-call-to-action .fw-action-wrap .fw-action-btn {
		margin-left: 0;
	}
}

@media (min-width: 992px) {
	.fw-theme-call-to-action .fw-action-wrap .fw-action-desc {
		margin-right: 90px;
	}
}

.ds .fw-action-wrap {
	color: #808080;
}

.ds .fw-action-wrap .fw-action-desc span {
	color: #808080;
}

/*
** Items Masonry
*/
.items-tile .item-content {
	padding-bottom: 100px;
}

.items-tile .item-content h3 {
	margin-bottom: 0.3em;
	text-transform: none;
}

@media (min-width: 992px) {
	.items-tile .item-content h3 a {
		display: inline-block;
		max-height: 3.05em;
		overflow: hidden;
		padding-bottom: 0.1em;
	}

	.items-tile .item-content h3 + p {
		max-height: 5.5em;
		overflow: hidden;
	}
}

.items-tile .item-icons {
	border-bottom: 10px solid rgba(0, 0, 0, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	bottom: 0;
	height: 70px;
	left: 0;
	line-height: 60px;
	padding: 0 40px;
	position: absolute;
	right: 0;
}

.items-tile .item-icons span {
	padding: 0 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.items-tile .col-lg-4 [class*='col-']:first-child .item-media {
		margin-bottom: 32px;
	}

	.items-tile .col-lg-4 [class*='col-']:last-child .item-content {
		min-height: 320px;
	}
}

@media (min-width: 1200px) {
	.items-tile .item-content {
		padding: 60px 60px 100px;
	}

	.items-tile .item-content h3 {
		font-size: 38px;
	}

	.items-tile .col-lg-4 [class*='col-']:first-child .item-media {
		margin-bottom: 16px;
	}

	.items-tile .col-lg-4 [class*='col-']:last-child .item-content {
		min-height: 388px;
	}
}

/*
filters
*/
.filters {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	padding-top: 30px;
}

.filters.gallery-filters {
	padding-bottom: 45px;
}

.filters.filters-active-tob-border {
	padding-top: 0;
}

.filters.filters-active-tob-border a {
	padding-bottom: 60px;
	padding-top: 60px;
	position: relative;
}

@media (max-width: 991px) {
	.filters.filters-active-tob-border a {
		padding-bottom: 7px;
		padding-top: 10px;
	}
}

.filters.filters-active-tob-border a.active:after {
	background: var(--colorMain);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.filters a {
	line-height: 3em;
	padding: 0 15px;
}

.filters .active {
	color: var(--colorMain);
}

@media (min-width: 992px) {
	.isotope-wrapper + .row {
		margin-top: 60px;
	}

	.isotope-wrapper.c-mb-30 + .row {
		margin-top: 30px;
	}

	.isotope-wrapper.c-mb-10 + .row {
		margin-top: 50px;
	}

	.isotope-wrapper.c-mb-1 + .row {
		margin-top: 59px;
	}
}

.contact-form textarea {
	min-height: 200px;
}

.excerpt {
	color: var(--darkgreyColor);
	font-size: 20px;
}

/*
** Widgets
*/
aside h2 {
	line-height: 1;
	margin-bottom: 0;
}

aside > * + * {
	margin-top: 56px;
}

.footer-fullwidth .widget + .widget,
.page_footer .widget + .widget {
	margin-top: 40px;
}

.widget {
	position: relative;
}

.widget > h3,
.widget .widget-title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 1.5em;
}

.widget > h2:last-child {
	line-height: 1;
}

.widget li.media {
	margin-bottom: 20px;
}

.widget li.media img {
	max-width: 100px;
}

.widget li.media h3,
.widget li.media h4 {
	font-size: inherit;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5em;
	text-transform: none;
}

.widget li.media p {
	line-height: 1.4;
	margin-bottom: 0.5em;
}

.page_footer .widget {
	margin-bottom: 30px;
}

.page_footer .widget > h3,
.page_footer .widget .widget-title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 26px !important;
	text-transform: uppercase;
}

.widget-title.next-image-background {
	position: relative;
	z-index: 2;
}

.widget-title.next-image-background + img {
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: -15px;
}

.text-center .widget-title.next-image-background + img {
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

@media (max-width: 991px) {
	.column-sidebar,
	aside {
		margin: 60px auto;
		max-width: 410px;
	}
}

/* affix-aside */
.affix-aside {
	position: relative;
}

.affix-aside.affix {
	position: fixed;
	top: 100px;
}

.affix-aside.affix-bottom {
	position: absolute !important;
}

.affix-aside.affix-top {
	left: auto !important;
	width: inherit !important;
}

@media (max-width: 991px) {
	.affix-aside,
	.affix-aside.affix-top,
	.affix-aside.affix,
	.affix-aside.affix-bottom {
		position: static !important;
		width: 100% !important;
	}
}

.widget_text .textwidget {
	margin-top: -5px;
}

.widget_text .textwidget .btn {
	margin-bottom: 0;
}

.stars > span {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.stars a {
	color: transparent;
	position: relative;
	text-indent: -999em;
	width: 1em;
}

.stars a:before {
	font-family: "FontAwesome";
	height: 1em;
	left: 0;
	line-height: 1;
	position: absolute;
	text-indent: 0;
	top: 0;
	width: 1em;
}

.stars a:before,
.stars a:hover ~ a:before {
	color: var(--colorMain3);
	content: "\f006";
}

.stars.selected a.active:before,
.stars:hover a:before {
	color: var(--colorMain3);
	content: "\f005";
	opacity: 1;
}

.stars.selected a.active ~ a:before {
	color: var(--colorMain3);
	content: "\f005";
	opacity: .5;
}

.stars.selected a:not(.active):before {
	color: var(--colorMain3);
	content: "\f005";
	opacity: 1;
}

.star-rating {
	color: var(--colorMain3);
	font-family: "FontAwesome";
	font-size: 0.8em;
	height: 1em;
	letter-spacing: 0.1em;
	line-height: 1;
	overflow: hidden;
	position: relative;
	width: 5em;
}

.star-rating:before {
	content: "\f006\f006\f006\f006\f006";
	float: left;
	left: 0;
	position: absolute;
	top: 0;
}

.star-rating span {
	float: left;
	left: 0;
	overflow: hidden;
	padding-top: 1.5em;
	position: absolute;
	top: 0;
}

.star-rating span:before {
	content: "\f005\f005\f005\f005\f005";
	left: 0;
	position: absolute;
	top: 0;
}

/* Widget portfolio */
.widget_portfolio .filters {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

.widget_tabs .tabs.small-tabs .nav-tabs .nav-link {
	min-width: auto;
}

/*
widget_search,
widget_mailchimp
widget_product_search
*/
.widget_search form,
.widget_product_search form,
.widget_mailchimp form {
	margin: auto;
	max-width: 370px;
	position: relative;
}

.widget_search label,
.widget_product_search label,
.widget_mailchimp label {
	display: inline;
	margin: 0;
	padding: 0;
}

.widget_search input,
.widget_product_search input,
.widget_mailchimp input {
	border-radius: 5px;
	max-width: 370px;
	padding-left: 30px;
	width: 100%;
}

.widget_search input:-moz-placeholder,
.widget_product_search input:-moz-placeholder,
.widget_mailchimp input:-moz-placeholder {
	color: #808080;
	opacity: 1;
	text-transform: uppercase;
}

.widget_search input::-moz-placeholder,
.widget_product_search input::-moz-placeholder,
.widget_mailchimp input::-moz-placeholder {
	color: #808080;
	opacity: 1;
	text-transform: uppercase;
}

.widget_search input:-ms-input-placeholder,
.widget_product_search input:-ms-input-placeholder,
.widget_mailchimp input:-ms-input-placeholder {
	color: #808080;
	text-transform: uppercase;
}

.widget_search input::-webkit-input-placeholder,
.widget_product_search input::-webkit-input-placeholder,
.widget_mailchimp input::-webkit-input-placeholder {
	color: #808080;
	text-transform: uppercase;
}

.widget_search button,
.widget_mailchimp button,
.widget_product_search form input[type="submit"],
.widget_product_search form:before {
	background-color: var(--colorMain3);
	border: 0;
	border-radius: 0 5px 5px 0;
	height: 58px;
	opacity: 1;
	padding-left: 10px;
	padding-right: 10px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 1px;
	width: 60px;
}

.mc4wp-form-fields .mc4wp-form-inner {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.mc4wp-form-fields [type*="submit"] {
	background-color: transparent;
	border: none;
	border-radius: 0;
	bottom: 0;
	box-shadow: none;
	color: var(--colorMain);
	font-size: 0;
	height: 60px !important;
	line-height: 60px !important;
	margin-bottom: 0;
	min-width: 56px;
	padding: 0;
	position: absolute;
	right: 0;
	width: 56px !important;
}

.mc4wp-form-fields [type*="submit"]:before {
	content: "\f040";
	font-family: "FontAwesome";
	font-size: 16px;
}

.mc4wp-form-fields [type*="submit"]:hover,
.mc4wp-form-fields [type*="submit"]:focus {
	border: none;
	opacity: 0.5;
}

.widget_search button,
.widget_mailchimp button,
.widget_product_search form input[type="submit"] {
	padding: 10px;
}

.widget_search button:hover,
.widget_mailchimp button:hover,
.widget_product_search form input[type="submit"]:hover {
	opacity: 0.5;
}

.widget_search button:before,
.widget_mailchimp button:before,
.widget_product_search form:before {
	color: #fff;
	content: "\f002";
	font-family: "FontAwesome";
	font-size: 14px;
}

.widget_mailchimp form button:before {
	content: "\f040";
}

.widget_product_search form:before {
	line-height: 60px;
}

.widget_product_search input[type="submit"] {
	color: transparent;
	font-size: 0;
}

/*
widget_archive
widget_categories
widget_nav_menu
widget_meta
widget_pages
widget_recent_comments
widget_recent_entries
*/
.widget_archive ul,
.widget_categories ul,
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.widget_archive ul ul li,
.widget_categories ul ul li,
.widget_nav_menu ul ul li,
.widget_meta ul ul li,
.widget_pages ul ul li,
.widget_recent_comments ul ul li,
.widget_recent_entries ul ul li {
	padding-left: 14px;
}

.widget_archive ul ul li:last-child,
.widget_categories ul ul li:last-child,
.widget_nav_menu ul ul li:last-child,
.widget_meta ul ul li:last-child,
.widget_pages ul ul li:last-child,
.widget_recent_comments ul ul li:last-child,
.widget_recent_entries ul ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.widget_archive li,
.widget_categories li,
.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_recent_comments li,
.widget_recent_entries li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	border-top: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_archive li:first-child,
.widget_categories li:first-child,
.widget_nav_menu li:first-child,
.widget_meta li:first-child,
.widget_pages li:first-child,
.widget_recent_comments li:first-child,
.widget_recent_entries li:first-child {
	border-top: 0;
}

.widget_archive li + li,
.widget_categories li + li,
.widget_nav_menu li + li,
.widget_meta li + li,
.widget_pages li + li,
.widget_recent_comments li + li,
.widget_recent_entries li + li {
	border-top: none;
}

.widget_archive li,
.widget_categories li,
.widget_nav_menu li,
.widget_meta li,
.widget_pages li {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.widget_archive li a,
.widget_categories li a,
.widget_nav_menu li a,
.widget_meta li a,
.widget_pages li a {
	display: inline-block;
	-webkit-box-flex: 10;
	-webkit-flex-grow: 10;
	        flex-grow: 10;
	padding-bottom: 14px;
	padding-top: 14px;
}

.widget_archive li > a:before,
.widget_categories li > a:before,
.widget_nav_menu li > a:before,
.widget_meta li > a:before,
.widget_pages li > a:before {
	color: var(--colorMain);
	content: "\f054";
	font-family: "FontAwesome";
	font-size: 10px;
	padding-right: 10px;
	position: relative;
	top: -2px;
}

.widget_meta > ul,
.widget_recent_comments > ul,
.widget_archive > ul,
.widget_recent_entries > ul,
.widget_categories > ul {
	margin-top: -20px;
}

.widget_meta ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_archive ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover {
	color: var(--colorMain3);
}

.widget_meta.no-bullets li > a:before,
.widget_recent_comments.no-bullets li > a:before,
.widget_archive.no-bullets li > a:before,
.widget_recent_entries.no-bullets li > a:before,
.widget_categories.no-bullets li > a:before {
	display: none;
}

.widget_recent_comments li,
.widget_recent_entries li {
	padding-bottom: 12px;
	padding-top: 12px;
}

.widget_recent_comments li:before,
.widget_recent_entries li:before {
	color: var(--colorMain);
	content: "\f054";
	font-family: "FontAwesome";
	font-size: 10px;
	padding-right: 10px;
	position: relative;
	top: -2px;
}

/* Widget Instagram */
#sb_instagram {
	padding-bottom: 0 !important;
}

#sb_instagram #sbi_images {
	margin: -10px;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
}

#sb_instagram #sbi_images .sbi_photo_wrap {
	border: 0;
	border-radius: 5px;
	overflow: hidden;
}

.page_copyright .widget_nav_menu li,
.page_topline .widget_nav_menu li {
	border: none;
	display: inline-block;
	padding-bottom: 0;
	padding-right: 5px;
	padding-top: 0;
	position: relative;
}

.page_copyright .widget_nav_menu li:before,
.page_topline .widget_nav_menu li:before {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 5px;
	content: "";
	display: block;
	left: -5px;
	opacity: 0.3;
	padding: 0;
	position: absolute;
	top: 5px;
	width: 1px;
}

.page_copyright .widget_nav_menu li:first-child:before,
.page_topline .widget_nav_menu li:first-child:before {
	display: none;
}

.page_copyright .widget_nav_menu a,
.page_topline .widget_nav_menu a {
	padding: 0 10px;
}

.page_copyright .widget_nav_menu a:before,
.page_topline .widget_nav_menu a:before {
	display: none;
}

.page_copyright .copyright-menu .widget_nav_menu li,
.page_topline .copyright-menu .widget_nav_menu li {
	border: 0;
}

.page_copyright .copyright-menu .widget_nav_menu li a,
.page_topline .copyright-menu .widget_nav_menu li a {
	letter-spacing: 0.5em;
	padding: 0 20px;
}

.widget_categories select,
.widget_archive select {
	max-width: 370px;
	width: 100%;
}

.page_footer .widget_nav_menu .menu {
	margin-top: -15px;
}

.page_footer .widget_nav_menu .menu li:last-child {
	border-bottom: none;
}

.widget_nav_menu ul.menu > li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_nav_menu ul.menu > li:first-child {
	border-top: 1px solid rgba(76, 76, 76, 0.1);
}

.page_footer .widget_nav_menu ul.menu > li:first-child {
	border-top: 0;
}

.widget_nav_menu ul.sub-menu > li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_nav_menu ul.sub-menu > li:first-child {
	border-top: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_nav_menu ul.sub-menu > li:last-child {
	border-bottom: 0;
}

/* widget_categories */
.widget_meta ul > li,
.widget_pages ul > li,
.widget_archive ul > li,
.widget_recent_comments ul > li,
.widget_categories ul > li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_meta ul > li:first-child,
.widget_pages ul > li:first-child,
.widget_archive ul > li:first-child,
.widget_recent_comments ul > li:first-child,
.widget_categories ul > li:first-child {
	border-top: 0;
}

.widget_meta ul > li:last-child,
.widget_pages ul > li:last-child,
.widget_archive ul > li:last-child,
.widget_recent_comments ul > li:last-child,
.widget_categories ul > li:last-child {
	border-bottom: 0;
}

.widget_meta ul.children > li,
.widget_pages ul.children > li,
.widget_archive ul.children > li,
.widget_recent_comments ul.children > li,
.widget_categories ul.children > li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_meta ul.children > li:first-child,
.widget_pages ul.children > li:first-child,
.widget_archive ul.children > li:first-child,
.widget_recent_comments ul.children > li:first-child,
.widget_categories ul.children > li:first-child {
	border-top: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_meta ul.children > li:last-child,
.widget_pages ul.children > li:last-child,
.widget_archive ul.children > li:last-child,
.widget_recent_comments ul.children > li:last-child,
.widget_categories ul.children > li:last-child {
	border-bottom: 0;
}

/* widget_calendar */
.calendar_wrap {
	margin-bottom: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	width: 100%;
}

@media (min-width: 768px) and (max-width: 992px) {
	.calendar_wrap {
		overflow-x: auto;
		overflow-y: hidden;
	}
}

.widget_calendar table {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        flex-direction: column;
	margin: 0 auto;
	max-width: 370px;
	position: relative;
	text-align: center;
}

.widget_calendar table td,
.widget_calendar table th {
	border-color: rgba(76, 76, 76, 0.1);
	border-style: solid;
	border-width: 0 0 1px 1px;
}

.widget_calendar caption {
	background-color: var(--colorMain);
	color: #fff;
	line-height: 1;
	padding: 22px 0 22px;
	text-align: center;
}

.widget_calendar thead {
	background-color: var(--darkgreyColor);
	color: #fff;
}

.widget_calendar thead th {
	text-align: center;
	width: 100px;
}

.widget_calendar thead th:first-child {
	padding-left: 20px;
}

.widget_calendar thead th:last-child {
	padding-right: 20px;
}

.widget_calendar tbody {
	border-right: 1px solid rgba(76, 76, 76, 0.1);
}

.widget_calendar tbody td {
	padding: 10px 4px;
	position: relative;
	width: 100px;
}

.widget_calendar th {
	color: inherit;
}

.widget_calendar tfoot td {
	position: absolute;
	top: 0;
}

.widget_calendar tfoot td a {
	color: transparent;
	display: inline-block;
	font-size: 0;
	height: 60px;
	line-height: 60px;
	padding: 0 25px;
	text-align: center;
}

.widget_calendar tfoot td a:hover {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
}

.widget_calendar tfoot td a:before,
.widget_calendar tfoot td a:after {
	color: #fff;
	font-family: "FontAwesome";
	font-size: 14px;
}

.widget_calendar tfoot td.pad {
	display: none;
}

.widget_calendar tfoot td:first-child {
	left: 0;
	padding: 0;
}

.widget_calendar tfoot td:first-child a {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.widget_calendar tfoot td:first-child a:before {
	content: "\f053";
}

.widget_calendar tfoot td:last-child {
	padding: 0;
	right: 0;
}

.widget_calendar tfoot td:last-child a {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.widget_calendar tfoot td:last-child a:after {
	content: "\f054";
}

/* widget_rss */
.widget_rss .widget-title .rsswidget:first-child img {
	display: none;
}

.widget_rss .widget-title .rsswidget:first-child:before {
	content: "\f09e";
	font-family: "FontAwesome";
	font-size: 0.8em;
	padding-right: 0.3em;
	position: relative;
	top: -1px;
}

.widget_rss ul {
	list-style: none;
	padding-left: 0;
}

.widget_rss ul a {
	display: block;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-transform: uppercase;
}

.widget_rss li cite:last-child {
	display: block;
	margin-top: 0.5em;
}

.widget_rss li + li {
	margin-top: 1.5em;
}

.widget_rss .rss-date {
	color: var(--darkgreyColor);
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	margin: 0.8em 0;
	text-transform: uppercase;
}

/* widget_tag_cloud */
.widget_tag_cloud a {
	border: 1px solid rgba(76, 76, 76, 0.1);
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	color: var(--colorMain3);
	display: inline-block;
	font-size: 12px !important;
	font-weight: 500;
	margin: 0 10px 12px 0;
	padding: 10px 20px 10px 20px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 1200px) {
	.widget_tag_cloud a {
		padding: 10px 30px 10px 30px;
	}
}

.widget_tag_cloud a:hover {
	background-color: var(--colorMain3);
	border-color: var(--colorMain3);
	color: #fff;
}

/* widget_flickr */
.widget_flickr ul {
	margin: 0;
	padding: 0;
}

.widget_flickr li {
	display: inline-block;
	margin: 0 10px 10px 0;
}

.widget_flickr img {
	border-radius: 1px;
	max-width: 160px;
}

.widget_flickr a {
	opacity: 1;
}

.widget_flickr a:hover {
	opacity: 0.6;
}

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

.widget_instagram img {
	max-width: 82px;
}

/* access_press */
.apsc-facebook-icon {
	background-color: #3b5998;
}

.apsc-twitter-icon {
	background-color: #1dcaff;
}

.apsc-youtube-icon {
	background-color: #e52d27;
}

.apsc-soundcloud-icon {
	background-color: #f80;
}

.apsc-dribble-icon {
	background-color: #ea4c89;
}

.apsc-comment-icon {
	background-color: #464646;
}

.apsc-edit-icon {
	background-color: #837d7d;
}

.apsc-google-plus-icon {
	background-color: #dd4b39;
}

.apsc-instagram-icon {
	background-color: #3f729b;
}

.apsc-each-profile a {
	color: white !important;
}

.apsc-each-profile a:hover {
	color: white !important;
	text-decoration: none !important;
}

.apsc-theme-4 .apsc-facebook-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-facebook-icon i {
	background-color: #3b5998;
}

.apsc-theme-4 .apsc-twitter-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-twitter-icon i {
	background-color: #1dcaff;
}

.apsc-theme-4 .apsc-youtube-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-youtube-icon i {
	background-color: #e52d27;
}

.apsc-theme-4 .apsc-soundcloud-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-soundcloud-icon i {
	background-color: #f80;
}

.apsc-theme-4 .apsc-dribble-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-dribble-icon i {
	background-color: #ea4c89;
}

.apsc-theme-4 .apsc-comment-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-comment-icon i {
	background-color: #464646;
}

.apsc-theme-4 .apsc-edit-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-edit-icon i {
	background-color: #837d7d;
}

.apsc-theme-4 .apsc-google-plus-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-google-plus-icon i {
	background-color: #dd4b39;
}

.apsc-theme-4 .apsc-instagram-icon {
	background-color: #fff;
}

.apsc-theme-4 .apsc-instagram-icon i {
	background-color: #3f729b;
}

.apsc-theme-4 .apsc-each-profile {
	margin-bottom: 10px;
	width: 100%;
}

.apsc-theme-4 .apsc-inner-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
}

.apsc-theme-4 .social-icon {
	display: inline-block;
	margin-right: auto;
	padding: 4px 0;
	position: static;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.apsc-theme-4 .apsc-each-profile a {
	background-color: #f2f2f2;
	color: #808080 !important;
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 14px 29px 14px 88px;
	position: relative;
	text-transform: capitalize;
}

.apsc-theme-4 .apsc-each-profile a .media-name {
	color: var(--darkgreyColor) !important;
	font-weight: 400;
}

.apsc-theme-4 .apsc-each-profile a i {
	color: #fff !important;
}

.apsc-theme-4 .apsc-each-profile a:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.apsc-theme-4 .apsc-each-profile a {
		padding: 11px 15px 11px 70px;
	}
}

.apsc-theme-4 .apsc-each-profile a .fa,
.apsc-theme-4 .apsc-each-profile a .fa {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	border-right: 1px solid #fff;
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	font-size: 16px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 60px;
}

.apsc-theme-4 .apsc-each-profile a:hover .fa {
	-webkit-transform: scale(1.1) translateZ(0px);
	        transform: scale(1.1) translateZ(0px);
}

.apsc-theme-4 .apsc-count {
	border-radius: 0;
	color: var(--colorMain);
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: inherit;
	font-weight: 400;
	padding: 4px 4px;
	position: relative;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.apsc-theme-4 .apsc-media-type {
	color: var(--darkColor);
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-weight: 500;
	padding: 4px 0;
}

.apsc-theme-1 .apsc-each-profile {
	width: 30%;
}

.apsc-theme-1 .apsc-each-profile a {
	border-radius: 0;
	padding-bottom: 15px;
	padding-top: 30px;
}

.apsc-theme-1 .apsc-each-profile .social-icon .fa {
	font-size: 28px;
}

.apsc-theme-1 .apsc-each-profile .apsc-count {
	padding-top: 15px;
}

.apsc-theme-2 .apsc-each-profile {
	width: 30%;
}

.apsc-theme-2 .apsc-each-profile a {
	border-radius: 0;
	padding-bottom: 15px;
	padding-top: 30px;
}

.apsc-theme-2 .apsc-each-profile .social-icon .fa {
	font-size: 28px;
}

.apsc-theme-2 .apsc-each-profile .apsc-count {
	font-size: 18px;
	padding-top: 10px;
}

@media screen and (max-width: 479px) {
	.apsc-theme-4 .apsc-each-profile,
	.apsc-theme-3 .apsc-each-profile {
		float: none;
	}
}

/* widget_twitter */
.tweet_avatar {
	float: left;
	margin-top: 4px;
}

.tweet_avatar img {
	display: none;
	max-width: 25px;
}

.tweet_avatar:before {
	color: #55acee;
	content: "\f099";
	font-family: "FontAwesome";
}

.tweet_right {
	margin-left: 35px;
	overflow: hidden;
	zoom: 1;
}

.tweet_list {
	list-style: none;
	padding: 0;
}

.tweet_list li + li {
	clear: both;
	padding-top: 20px;
}

.tweet_text a:last-child {
	display: block;
}

.tweet_time {
	display: block;
}

/* widget-theme-posts */
.widget-theme-posts li.media {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin-bottom: 20px;
	margin-top: 10px;
}

.widget-theme-posts li.media .title {
	margin-bottom: 20px;
}

.widget-theme-posts li.media .title,
.widget-theme-posts li.media .item-meta {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 24px;
	text-transform: none;
}

.widget-theme-posts li.media img {
	border-radius: 5px;
}

/* Widget portfolio carousel */
.widget_portfolio_carousel .owl-nav > div {
	color: #fff;
	cursor: pointer;
	margin-top: -8px;
	opacity: 1;
	right: 100px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.widget_portfolio_carousel .owl-nav > div:first-child {
	left: 100px;
}

.widget_portfolio_carousel .owl-nav > div i {
	font-size: 28px;
}

.widget_portfolio_carousel .item-layout-regular .media-links:before {
	background-color: var(--colorMain2Rgba05);
}

.widget_portfolio_carousel .item-layout-regular .media-links .abs-link:before {
	display: none;
}

/*.widget_slider*/
.widget_slider h4:first-child {
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0.3em;
	margin-top: -1em;
	text-transform: none;
}

.widget_slider .cat-links {
	bottom: 0;
	left: 0;
	margin-bottom: -4px;
	position: absolute;
}

/*.widget_post_tabs*/
.widget_post_tabs h4:first-child {
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0.3em;
	margin-top: -1em;
	text-transform: none;
}

.widget_post_tabs .vertical-item {
	margin-bottom: 2em;
}

.widget_post_tabs .vertical-item:last-child {
	margin-bottom: 0;
}

/*.widget_posts_2cols*/
.widget_posts_2cols ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.widget_posts_2cols li {
	margin-top: 20px;
	width: 50%;
}

.widget_posts_2cols li:nth-child(even) {
	padding-left: 10px;
}

.widget_posts_2cols li:nth-child(odd) {
	padding-right: 10px;
}

.widget_posts_2cols li:nth-child(1),
.widget_posts_2cols li:nth-child(2) {
	margin-top: 0;
}

.widget_posts_2cols h5 {
	font-size: 16px;
	font-weight: 700;
	margin: 10px 0 0;
	text-transform: none;
}

/*
** Social Icons - Font Awesome Brand Icons
*/
/* social icon layout */
a[class*='fa-']:before {
	display: inline-block;
	font-family: "FontAwesome", sans-serif;
	font-size: 14px;
	line-height: 1;
	width: 1em;
}

a.fa {
	font-size: 0;
	line-height: 0;
	margin-left: 8px;
	margin-right: 8px;
	text-align: center;
}

a.fa.bg-icon,
a.fa .tooltip,
a.fa.color-bg-icon,
a.fa .tooltip,
a.fa.border-icon {
	margin-left: 5px;
	margin-right: 5px;
}

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

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

a.border-icon,
a.bg-icon,
a.color-bg-icon {
	margin-bottom: 4px;
}

a.border-icon:before,
a.bg-icon:before,
a.color-bg-icon:before {
	height: 2.6em;
	line-height: 2.6em;
	width: 2.6em;
}

a[class*='fa-'].rounded-icon {
	border-radius: 50%;
}

/*social icons brand colors*/
a.color-icon.fa-500px,
a[class*="fa-"].fa-500px:hover {
	color: #0099e5;
}

a.color-icon.fa-adn,
a[class*="fa-"].fa-adn:hover {
	color: #4a484c;
}

a.color-icon.fa-amazon,
a[class*="fa-"].fa-amazon:hover {
	color: #f90;
}

a.color-icon.fa-android,
a[class*="fa-"].fa-android:hover {
	color: #a4c639;
}

a.color-icon.fa-angellist,
a[class*="fa-"].fa-angellist:hover {
	color: #000;
}

a.color-icon.fa-apple,
a[class*="fa-"].fa-apple:hover {
	color: #979797;
}

a.color-icon.fa-behance-square,
a[class*="fa-"].fa-behance-square:hover {
	color: #1769ff;
}

a.color-icon.fa-behance,
a[class*="fa-"].fa-behance:hover {
	color: #1769ff;
}

a.color-icon.fa-bitbucket-square,
a[class*="fa-"].fa-bitbucket-square:hover {
	color: #205081;
}

a.color-icon.fa-bitbucket,
a[class*="fa-"].fa-bitbucket:hover {
	color: #205081;
}

a.color-icon.fa-bitcoin,
a[class*="fa-"].fa-bitcoin:hover {
	color: #ee9209;
}

a.color-icon.fa-black-tie,
a[class*="fa-"].fa-black-tie:hover {
	color: #222;
}

a.color-icon.fa-btc,
a[class*="fa-"].fa-btc:hover {
	color: #ee9209;
}

a.color-icon.fa-buysellads,
a[class*="fa-"].fa-buysellads:hover {
	color: #c90100;
}

a.color-icon.fa-cc-amex,
a[class*="fa-"].fa-cc-amex:hover {
	color: #007bc1;
}

a.color-icon.fa-cc-diners-club,
a[class*="fa-"].fa-cc-diners-club:hover {
	color: #004a97;
}

a.color-icon.fa-cc-discover,
a[class*="fa-"].fa-cc-discover:hover {
	color: #f68121;
}

a.color-icon.fa-cc-jcb,
a[class*="fa-"].fa-cc-jcb:hover {
	color: #003a8f;
}

a.color-icon.fa-cc-mastercard,
a[class*="fa-"].fa-cc-mastercard:hover {
	color: #0a3a82;
}

a.color-icon.fa-cc-paypal,
a[class*="fa-"].fa-cc-paypal:hover {
	color: #253b80;
}

a.color-icon.fa-cc-stripe,
a[class*="fa-"].fa-cc-stripe:hover {
	color: #00afe1;
}

a.color-icon.fa-cc-visa,
a[class*="fa-"].fa-cc-visa:hover {
	color: #0157a2;
}

a.color-icon.fa-chrome,
a[class*="fa-"].fa-chrome:hover {
	color: #4587f3;
}

a.color-icon.fa-codepen,
a[class*="fa-"].fa-codepen:hover {
	color: #000;
}

a.color-icon.fa-connectdevelop,
a[class*="fa-"].fa-connectdevelop:hover {
	color: #391448;
}

a.color-icon.fa-contao,
a[class*="fa-"].fa-contao:hover {
	color: #eb8623;
}

a.color-icon.fa-creative-commons,
a[class*="fa-"].fa-creative-commons:hover {
	color: #231f20;
}

a.color-icon.fa-css3,
a[class*="fa-"].fa-css3:hover {
	color: #1680c0;
}

a.color-icon.fa-dashcube,
a[class*="fa-"].fa-dashcube:hover {
	color: #7f7f7f;
}

a.color-icon.fa-delicious,
a[class*="fa-"].fa-delicious:hover {
	color: #39f;
}

a.color-icon.fa-deviantart,
a[class*="fa-"].fa-deviantart:hover {
	color: #4e6252;
}

a.color-icon.fa-digg,
a[class*="fa-"].fa-digg:hover {
	color: #000;
}

a.color-icon.fa-dribbble,
a[class*="fa-"].fa-dribbble:hover {
	color: #444;
}

a.color-icon.fa-dropbox,
a[class*="fa-"].fa-dropbox:hover {
	color: #007ee5;
}

a.color-icon.fa-drupal,
a[class*="fa-"].fa-drupal:hover {
	color: #0077c0;
}

a.color-icon.fa-empire,
a[class*="fa-"].fa-empire:hover {
	color: #000;
}

a.color-icon.fa-expeditedssl,
a[class*="fa-"].fa-expeditedssl:hover {
	color: #343433;
}

a.color-icon.fa-facebook-official,
a[class*="fa-"].fa-facebook-official:hover {
	color: #3b5998;
}

a.color-icon.fa-facebook-square,
a[class*="fa-"].fa-facebook-square:hover {
	color: #3b5998;
}

a.color-icon.fa-facebook,
a[class*="fa-"].fa-facebook:hover {
	color: #3b5998;
}

a.color-icon.fa-firefox,
a[class*="fa-"].fa-firefox:hover {
	color: #e66000;
}

a.color-icon.fa-flickr,
a[class*="fa-"].fa-flickr:hover {
	color: #ff0084;
}

a.color-icon.fa-fonticons,
a[class*="fa-"].fa-fonticons:hover {
	color: #1c1e29;
}

a.color-icon.fa-forumbee,
a[class*="fa-"].fa-forumbee:hover {
	color: #83ad13;
}

a.color-icon.fa-foursquare,
a[class*="fa-"].fa-foursquare:hover {
	color: #0072b1;
}

a.color-icon.fa-ge,
a[class*="fa-"].fa-ge:hover {
	color: #000;
}

a.color-icon.fa-get-pocket,
a[class*="fa-"].fa-get-pocket:hover {
	color: #d3505a;
}

a.color-icon.fa-gg-circle,
a[class*="fa-"].fa-gg-circle:hover {
	color: #000;
}

a.color-icon.fa-gg,
a[class*="fa-"].fa-gg:hover {
	color: #000;
}

a.color-icon.fa-git-square,
a[class*="fa-"].fa-git-square:hover {
	color: #333;
}

a.color-icon.fa-500px,
a[class*="fa-"].fa-500px:hover {
	color: #0099e5;
}

a.color-icon.fa-adn,
a[class*="fa-"].fa-adn:hover {
	color: #4a484c;
}

a.color-icon.fa-amazon,
a[class*="fa-"].fa-amazon:hover {
	color: #f90;
}

a.color-icon.fa-android,
a[class*="fa-"].fa-android:hover {
	color: #a4c639;
}

a.color-icon.fa-angellist,
a[class*="fa-"].fa-angellist:hover {
	color: #000;
}

a.color-icon.fa-apple,
a[class*="fa-"].fa-apple:hover {
	color: #979797;
}

a.color-icon.fa-behance-square,
a[class*="fa-"].fa-behance-square:hover {
	color: #1769ff;
}

a.color-icon.fa-behance,
a[class*="fa-"].fa-behance:hover {
	color: #1769ff;
}

a.color-icon.fa-bitbucket-square,
a[class*="fa-"].fa-bitbucket-square:hover {
	color: #205081;
}

a.color-icon.fa-bitbucket,
a[class*="fa-"].fa-bitbucket:hover {
	color: #205081;
}

a.color-icon.fa-bitcoin,
a[class*="fa-"].fa-bitcoin:hover {
	color: #ee9209;
}

a.color-icon.fa-black-tie,
a[class*="fa-"].fa-black-tie:hover {
	color: #222;
}

a.color-icon.fa-btc,
a[class*="fa-"].fa-btc:hover {
	color: #ee9209;
}

a.color-icon.fa-buysellads,
a[class*="fa-"].fa-buysellads:hover {
	color: #c90100;
}

a.color-icon.fa-cc-amex,
a[class*="fa-"].fa-cc-amex:hover {
	color: #007bc1;
}

a.color-icon.fa-cc-diners-club,
a[class*="fa-"].fa-cc-diners-club:hover {
	color: #004a97;
}

a.color-icon.fa-cc-discover,
a[class*="fa-"].fa-cc-discover:hover {
	color: #f68121;
}

a.color-icon.fa-cc-jcb,
a[class*="fa-"].fa-cc-jcb:hover {
	color: #003a8f;
}

a.color-icon.fa-cc-mastercard,
a[class*="fa-"].fa-cc-mastercard:hover {
	color: #0a3a82;
}

a.color-icon.fa-cc-paypal,
a[class*="fa-"].fa-cc-paypal:hover {
	color: #253b80;
}

a.color-icon.fa-cc-stripe,
a[class*="fa-"].fa-cc-stripe:hover {
	color: #00afe1;
}

a.color-icon.fa-cc-visa,
a[class*="fa-"].fa-cc-visa:hover {
	color: #0157a2;
}

a.color-icon.fa-chrome,
a[class*="fa-"].fa-chrome:hover {
	color: #4587f3;
}

a.color-icon.fa-codepen,
a[class*="fa-"].fa-codepen:hover {
	color: #000;
}

a.color-icon.fa-connectdevelop,
a[class*="fa-"].fa-connectdevelop:hover {
	color: #391448;
}

a.color-icon.fa-contao,
a[class*="fa-"].fa-contao:hover {
	color: #eb8623;
}

a.color-icon.fa-creative-commons,
a[class*="fa-"].fa-creative-commons:hover {
	color: #231f20;
}

a.color-icon.fa-css3,
a[class*="fa-"].fa-css3:hover {
	color: #1680c0;
}

a.color-icon.fa-dashcube,
a[class*="fa-"].fa-dashcube:hover {
	color: #7f7f7f;
}

a.color-icon.fa-delicious,
a[class*="fa-"].fa-delicious:hover {
	color: #39f;
}

a.color-icon.fa-deviantart,
a[class*="fa-"].fa-deviantart:hover {
	color: #4e6252;
}

a.color-icon.fa-digg,
a[class*="fa-"].fa-digg:hover {
	color: #000;
}

a.color-icon.fa-dribbble,
a[class*="fa-"].fa-dribbble:hover {
	color: #444;
}

a.color-icon.fa-dropbox,
a[class*="fa-"].fa-dropbox:hover {
	color: #007ee5;
}

a.color-icon.fa-drupal,
a[class*="fa-"].fa-drupal:hover {
	color: #0077c0;
}

a.color-icon.fa-empire,
a[class*="fa-"].fa-empire:hover {
	color: #000;
}

a.color-icon.fa-expeditedssl,
a[class*="fa-"].fa-expeditedssl:hover {
	color: #343433;
}

a.color-icon.fa-facebook-official,
a[class*="fa-"].fa-facebook-official:hover {
	color: #3b5998;
}

a.color-icon.fa-facebook-square,
a[class*="fa-"].fa-facebook-square:hover {
	color: #3b5998;
}

a.color-icon.fa-facebook,
a[class*="fa-"].fa-facebook:hover {
	color: #3b5998;
}

a.color-icon.fa-firefox,
a[class*="fa-"].fa-firefox:hover {
	color: #e66000;
}

a.color-icon.fa-flickr,
a[class*="fa-"].fa-flickr:hover {
	color: #ff0084;
}

a.color-icon.fa-fonticons,
a[class*="fa-"].fa-fonticons:hover {
	color: #1c1e29;
}

a.color-icon.fa-forumbee,
a[class*="fa-"].fa-forumbee:hover {
	color: #83ad13;
}

a.color-icon.fa-foursquare,
a[class*="fa-"].fa-foursquare:hover {
	color: #0072b1;
}

a.color-icon.fa-ge,
a[class*="fa-"].fa-ge:hover {
	color: #000;
}

a.color-icon.fa-get-pocket,
a[class*="fa-"].fa-get-pocket:hover {
	color: #d3505a;
}

a.color-icon.fa-gg-circle,
a[class*="fa-"].fa-gg-circle:hover {
	color: #000;
}

a.color-icon.fa-gg,
a[class*="fa-"].fa-gg:hover {
	color: #000;
}

a.color-icon.fa-git-square,
a[class*="fa-"].fa-git-square:hover {
	color: #333;
}

a.color-icon.fa-git,
a[class*="fa-"].fa-git:hover {
	color: #333;
}

a.color-icon.fa-github-alt,
a[class*="fa-"].fa-github-alt:hover {
	color: #333;
}

a.color-icon.fa-github-square,
a[class*="fa-"].fa-github-square:hover {
	color: #333;
}

a.color-icon.fa-github,
a[class*="fa-"].fa-github:hover {
	color: #333;
}

a.color-icon.fa-gittip,
a[class*="fa-"].fa-gittip:hover {
	color: #630;
}

a.color-icon.fa-google-plus-square,
a[class*="fa-"].fa-google-plus-square:hover {
	color: #dd4b39;
}

a.color-icon.fa-google-plus,
a[class*="fa-"].fa-google-plus:hover {
	color: #dd4b39;
}

a.color-icon.fa-google-wallet,
a[class*="fa-"].fa-google-wallet:hover {
	color: #4285f4;
}

a.color-icon.fa-google,
a[class*="fa-"].fa-google:hover {
	color: #dd4b39;
}

a.color-icon.fa-hacker-news,
a[class*="fa-"].fa-hacker-news:hover {
	color: #f60;
}

a.color-icon.fa-houzz,
a[class*="fa-"].fa-houzz:hover {
	color: #7ac142;
}

a.color-icon.fa-html5,
a[class*="fa-"].fa-html5:hover {
	color: #e34f26;
}

a.color-icon.fa-instagram,
a[class*="fa-"].fa-instagram:hover {
	color: #3f729b;
}

a.color-icon.fa-internet-explorer,
a[class*="fa-"].fa-internet-explorer:hover {
	color: #1ebbee;
}

a.color-icon.fa-ioxhost,
a[class*="fa-"].fa-ioxhost:hover {
	color: #faa729;
}

a.color-icon.fa-joomla,
a[class*="fa-"].fa-joomla:hover {
	color: #142849;
}

a.color-icon.fa-jsfiddle,
a[class*="fa-"].fa-jsfiddle:hover {
	color: #4679bd;
}

a.color-icon.fa-lastfm-square,
a[class*="fa-"].fa-lastfm-square:hover {
	color: #c3000d;
}

a.color-icon.fa-lastfm,
a[class*="fa-"].fa-lastfm:hover {
	color: #c3000d;
}

a.color-icon.fa-leanpub,
a[class*="fa-"].fa-leanpub:hover {
	color: #0c0c0c;
}

a.color-icon.fa-linkedin-square,
a[class*="fa-"].fa-linkedin-square:hover {
	color: #0976b4;
}

a.color-icon.fa-linkedin,
a[class*="fa-"].fa-linkedin:hover {
	color: #0976b4;
}

a.color-icon.fa-linux,
a[class*="fa-"].fa-linux:hover {
	color: #333;
}

a.color-icon.fa-maxcdn,
a[class*="fa-"].fa-maxcdn:hover {
	color: #f60;
}

a.color-icon.fa-meanpath,
a[class*="fa-"].fa-meanpath:hover {
	color: #538ed7;
}

a.color-icon.fa-medium,
a[class*="fa-"].fa-medium:hover {
	color: #000;
}

a.color-icon.fa-odnoklassniki-square,
a[class*="fa-"].fa-odnoklassniki-square:hover {
	color: #ed812b;
}

a.color-icon.fa-odnoklassniki,
a[class*="fa-"].fa-odnoklassniki:hover {
	color: #ed812b;
}

a.color-icon.fa-opencart,
a[class*="fa-"].fa-opencart:hover {
	color: #2ac2ef;
}

a.color-icon.fa-openid,
a[class*="fa-"].fa-openid:hover {
	color: #f78c40;
}

a.color-icon.fa-opera,
a[class*="fa-"].fa-opera:hover {
	color: #cc0f16;
}

a.color-icon.fa-optin-monster,
a[class*="fa-"].fa-optin-monster:hover {
	color: #83c11f;
}

a.color-icon.fa-pagelines,
a[class*="fa-"].fa-pagelines:hover {
	color: #000;
}

a.color-icon.fa-paypal,
a[class*="fa-"].fa-paypal:hover {
	color: #253b80;
}

a.color-icon.fa-pied-piper-alt,
a[class*="fa-"].fa-pied-piper-alt :hover {
	color: #2f9f46;
}

a.color-icon.fa-pied-piper-square,
a[class*="fa-"].fa-pied-piper-square :hover {
	color: #2f9f46;
}

a.color-icon.fa-pied-piper,
a[class*="fa-"].fa-pied-piper:hover {
	color: #2f9f46;
}

a.color-icon.fa-pinterest-p,
a[class*="fa-"].fa-pinterest-p:hover {
	color: #cc2127;
}

a.color-icon.fa-pinterest-square,
a[class*="fa-"].fa-pinterest-square:hover {
	color: #cc2127;
}

a.color-icon.fa-pinterest,
a[class*="fa-"].fa-pinterest:hover {
	color: #cc2127;
}

a.color-icon.fa-qq,
a[class*="fa-"].fa-qq:hover {
	color: #000;
}

a.color-icon.fa-ra,
a[class*="fa-"].fa-ra:hover {
	color: #000;
}

a.color-icon.fa-rebel,
a[class*="fa-"].fa-rebel:hover {
	color: #000;
}

a.color-icon.fa-reddit-square,
a[class*="fa-"].fa-reddit-square:hover {
	color: #ff4500;
}

a.color-icon.fa-reddit,
a[class*="fa-"].fa-reddit:hover {
	color: #ff4500;
}

a.color-icon.fa-renren,
a[class*="fa-"].fa-renren:hover {
	color: #005eac;
}

a.color-icon.fa-safari,
a[class*="fa-"].fa-safari:hover {
	color: #1b88ca;
}

a.color-icon.fa-sellsy,
a[class*="fa-"].fa-sellsy:hover {
	color: #1f78b9;
}

a.color-icon.fa-share-alt-square,
a[class*="fa-"].fa-share-alt-square:hover {
	color: #01bf01;
}

a.color-icon.fa-share-alt,
a[class*="fa-"].fa-share-alt:hover {
	color: #01bf01;
}

a.color-icon.fa-shirtsinbulk,
a[class*="fa-"].fa-shirtsinbulk:hover {
	color: #dd3a26;
}

a.color-icon.fa-simplybuilt,
a[class*="fa-"].fa-simplybuilt:hover {
	color: #000;
}

a.color-icon.fa-skyatlas,
a[class*="fa-"].fa-skyatlas:hover {
	color: #00adbb;
}

a.color-icon.fa-skype,
a[class*="fa-"].fa-skype:hover {
	color: #00aff0;
}

a.color-icon.fa-slack,
a[class*="fa-"].fa-slack:hover {
	color: #0f7965;
}

a.color-icon.fa-slideshare,
a[class*="fa-"].fa-slideshare:hover {
	color: #e98325;
}

a.color-icon.fa-soundcloud,
a[class*="fa-"].fa-soundcloud:hover {
	color: #f80;
}

a.color-icon.fa-spotify,
a[class*="fa-"].fa-spotify:hover {
	color: #7ab800;
}

a.color-icon.fa-stack-exchange,
a[class*="fa-"].fa-stack-exchange:hover {
	color: #000;
}

a.color-icon.fa-stack-overflow,
a[class*="fa-"].fa-stack-overflow:hover {
	color: #fe7a15;
}

a.color-icon.fa-steam-square,
a[class*="fa-"].fa-steam-square:hover {
	color: #0b0b0b;
}

a.color-icon.fa-steam,
a[class*="fa-"].fa-steam:hover {
	color: #0b0b0b;
}

a.color-icon.fa-stumbleupon-circle,
a[class*="fa-"].fa-stumbleupon-circle:hover {
	color: #eb4924;
}

a.color-icon.fa-stumbleupon,
a[class*="fa-"].fa-stumbleupon:hover {
	color: #eb4924;
}

a.color-icon.fa-tencent-weibo,
a[class*="fa-"].fa-tencent-weibo:hover {
	color: #74af2c;
}

a.color-icon.fa-trello,
a[class*="fa-"].fa-trello:hover {
	color: #256a92;
}

a.color-icon.fa-tripadvisor,
a[class*="fa-"].fa-tripadvisor:hover {
	color: #589442;
}

a.color-icon.fa-tumblr-square,
a[class*="fa-"].fa-tumblr-square:hover {
	color: #35465c;
}

a.color-icon.fa-tumblr,
a[class*="fa-"].fa-tumblr:hover {
	color: #35465c;
}

a.color-icon.fa-twitch,
a[class*="fa-"].fa-twitch:hover {
	color: #6441a5;
}

a.color-icon.fa-twitter-square,
a[class*="fa-"].fa-twitter-square:hover {
	color: #55acee;
}

a.color-icon.fa-twitter,
a[class*="fa-"].fa-twitter:hover {
	color: #55acee;
}

a.color-icon.fa-viacoin,
a[class*="fa-"].fa-viacoin:hover {
	color: #333;
}

a.color-icon.fa-vimeo-square,
a[class*="fa-"].fa-vimeo-square:hover {
	color: #1ab7ea;
}

a.color-icon.fa-vimeo,
a[class*="fa-"].fa-vimeo:hover {
	color: #1ab7ea;
}

a.color-icon.fa-vine,
a[class*="fa-"].fa-vine:hover {
	color: #00b488;
}

a.color-icon.fa-vk,
a[class*="fa-"].fa-vk:hover {
	color: #45668e;
}

a.color-icon.fa-wechat,
a[class*="fa-"].fa-wechat:hover {
	color: #93d034;
}

a.color-icon.fa-weibo,
a[class*="fa-"].fa-weibo:hover {
	color: #e71d34;
}

a.color-icon.fa-weixin,
a[class*="fa-"].fa-weixin:hover {
	color: #93d034;
}

a.color-icon.fa-wikipedia-w,
a[class*="fa-"].fa-wikipedia-w:hover {
	color: #000;
}

a.color-icon.fa-windows,
a[class*="fa-"].fa-windows:hover {
	color: #00bcf2;
}

a.color-icon.fa-wordpress,
a[class*="fa-"].fa-wordpress:hover {
	color: #21759b;
}

a.color-icon.fa-xing-square,
a[class*="fa-"].fa-xing-square:hover {
	color: #026466;
}

a.color-icon.fa-xing,
a[class*="fa-"].fa-xing:hover {
	color: #026466;
}

a.color-icon.fa-y-combinator,
a[class*="fa-"].fa-y-combinator:hover {
	color: #f0652f;
}

a.color-icon.fa-yahoo,
a[class*="fa-"].fa-yahoo:hover {
	color: #400191;
}

a.color-icon.fa-yc,
a[class*="fa-"].fa-yc:hover {
	color: #f0652f;
}

a.color-icon.fa-yelp,
a[class*="fa-"].fa-yelp:hover {
	color: #af0606;
}

a.color-icon.fa-youtube-play,
a[class*="fa-"].fa-youtube-play:hover {
	color: #e52d27;
}

a.color-icon.fa-youtube-square,
a[class*="fa-"].fa-youtube-square:hover {
	color: #e52d27;
}

a.color-icon.fa-youtube,
a[class*="fa-"].fa-youtube:hover {
	color: #e52d27;
}

a.color-icon.fa-rss,
a[class*="fa-"].fa-rss:hover {
	color: #ffa811;
}

.color-bg-icon.fa-500px,
a.fa-500px.bg-icon:hover,
.fa-500px.color-icon.border-icon:hover {
	background-color: #0099e5;
}

.color-bg-icon.fa-adn,
a.fa-adn.bg-icon:hover,
.fa-adn.color-icon.border-icon:hover {
	background-color: #4a484c;
}

.color-bg-icon.fa-amazon,
a.fa-amazon.bg-icon:hover,
.fa-amazon.color-icon.border-icon:hover {
	background-color: #f90;
}

.color-bg-icon.fa-android,
a.fa-android.bg-icon:hover,
.fa-android.color-icon.border-icon:hover {
	background-color: #a4c639;
}

.color-bg-icon.fa-angellist,
a.fa-angellist.bg-icon:hover,
.fa-angellist.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-apple,
a.fa-apple.bg-icon:hover,
.fa-apple.color-icon.border-icon:hover {
	background-color: #979797;
}

.color-bg-icon.fa-behance-square,
a.fa-behance-square.bg-icon:hover,
.fa-behance-square.color-icon.border-icon:hover {
	background-color: #1769ff;
}

.color-bg-icon.fa-behance,
a.fa-behance.bg-icon:hover,
.fa-behance.color-icon.border-icon:hover {
	background-color: #1769ff;
}

.color-bg-icon.fa-bitbucket-square,
a.fa-bitbucket-square.bg-icon:hover,
.fa-bitbucket-square.color-icon.border-icon:hover {
	background-color: #205081;
}

.color-bg-icon.fa-bitbucket,
a.fa-bitbucket.bg-icon:hover,
.fa-bitbucket.color-icon.border-icon:hover {
	background-color: #205081;
}

.color-bg-icon.fa-bitcoin,
a.fa-bitcoin.bg-icon:hover,
.fa-bitcoin.color-icon.border-icon:hover {
	background-color: #ee9209;
}

.color-bg-icon.fa-black-tie,
a.fa-black-tie.bg-icon:hover,
.fa-black-tie.color-icon.border-icon:hover {
	background-color: #222;
}

.color-bg-icon.fa-btc,
a.fa-btc.bg-icon:hover,
.fa-btc.color-icon.border-icon:hover {
	background-color: #ee9209;
}

.color-bg-icon.fa-buysellads,
a.fa-buysellads.bg-icon:hover,
.fa-buysellads.color-icon.border-icon:hover {
	background-color: #c90100;
}

.color-bg-icon.fa-cc-amex,
a.fa-cc-amex.bg-icon:hover,
.fa-cc-amex.color-icon.border-icon:hover {
	background-color: #007bc1;
}

.color-bg-icon.fa-cc-diners-club,
a.fa-cc-diners-club.bg-icon:hover,
.fa-cc-diners-club.color-icon.border-icon:hover {
	background-color: #004a97;
}

.color-bg-icon.fa-cc-discover,
a.fa-cc-discover.bg-icon:hover,
.fa-cc-discover.color-icon.border-icon:hover {
	background-color: #f68121;
}

.color-bg-icon.fa-cc-jcb,
a.fa-cc-jcb.bg-icon:hover,
.fa-cc-jcb.color-icon.border-icon:hover {
	background-color: #003a8f;
}

.color-bg-icon.fa-cc-mastercard,
a.fa-cc-mastercard.bg-icon:hover,
.fa-cc-mastercard.color-icon.border-icon:hover {
	background-color: #0a3a82;
}

.color-bg-icon.fa-cc-paypal,
a.fa-cc-paypal.bg-icon:hover,
.fa-cc-paypal.color-icon.border-icon:hover {
	background-color: #253b80;
}

.color-bg-icon.fa-cc-stripe,
a.fa-cc-stripe.bg-icon:hover,
.fa-cc-stripe.color-icon.border-icon:hover {
	background-color: #00afe1;
}

.color-bg-icon.fa-cc-visa,
a.fa-cc-visa.bg-icon:hover,
.fa-cc-visa.color-icon.border-icon:hover {
	background-color: #0157a2;
}

.color-bg-icon.fa-chrome,
a.fa-chrome.bg-icon:hover,
.fa-chrome.color-icon.border-icon:hover {
	background-color: #4587f3;
}

.color-bg-icon.fa-codepen,
a.fa-codepen.bg-icon:hover,
.fa-codepen.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-connectdevelop,
a.fa-connectdevelop.bg-icon:hover,
.fa-connectdevelop.color-icon.border-icon:hover {
	background-color: #391448;
}

.color-bg-icon.fa-contao,
a.fa-contao.bg-icon:hover,
.fa-contao.color-icon.border-icon:hover {
	background-color: #eb8623;
}

.color-bg-icon.fa-creative-commons,
a.fa-creative-commons.bg-icon:hover,
.fa-creative-commons.color-icon.border-icon:hover {
	background-color: #231f20;
}

.color-bg-icon.fa-css3,
a.fa-css3.bg-icon:hover,
.fa-css3.color-icon.border-icon:hover {
	background-color: #1680c0;
}

.color-bg-icon.fa-dashcube,
a.fa-dashcube.bg-icon:hover,
.fa-dashcube.color-icon.border-icon:hover {
	background-color: #7f7f7f;
}

.color-bg-icon.fa-delicious,
a.fa-delicious.bg-icon:hover,
.fa-delicious.color-icon.border-icon:hover {
	background-color: #39f;
}

.color-bg-icon.fa-deviantart,
a.fa-deviantart.bg-icon:hover,
.fa-deviantart.color-icon.border-icon:hover {
	background-color: #4e6252;
}

.color-bg-icon.fa-digg,
a.fa-digg.bg-icon:hover,
.fa-digg.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-dribbble,
a.fa-dribbble.bg-icon:hover,
.fa-dribbble.color-icon.border-icon:hover {
	background-color: #444;
}

.color-bg-icon.fa-dropbox,
a.fa-dropbox.bg-icon:hover,
.fa-dropbox.color-icon.border-icon:hover {
	background-color: #007ee5;
}

.color-bg-icon.fa-drupal,
a.fa-drupal.bg-icon:hover,
.fa-drupal.color-icon.border-icon:hover {
	background-color: #0077c0;
}

.color-bg-icon.fa-empire,
a.fa-empire.bg-icon:hover,
.fa-empire.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-expeditedssl,
a.fa-expeditedssl.bg-icon:hover,
.fa-expeditedssl.color-icon.border-icon:hover {
	background-color: #343433;
}

.color-bg-icon.fa-facebook-official,
a.fa-facebook-official.bg-icon:hover,
.fa-facebook-official.color-icon.border-icon:hover {
	background-color: #3b5998;
}

.color-bg-icon.fa-facebook-square,
a.fa-facebook-square.bg-icon:hover,
.fa-facebook-square.color-icon.border-icon:hover {
	background-color: #3b5998;
}

.color-bg-icon.fa-facebook,
a.fa-facebook.bg-icon:hover,
.fa-facebook.color-icon.border-icon:hover {
	background-color: #3b5998;
}

.color-bg-icon.fa-firefox,
a.fa-firefox.bg-icon:hover,
.fa-firefox.color-icon.border-icon:hover {
	background-color: #e66000;
}

.color-bg-icon.fa-flickr,
a.fa-flickr.bg-icon:hover,
.fa-flickr.color-icon.border-icon:hover {
	background-color: #ff0084;
}

.color-bg-icon.fa-fonticons,
a.fa-fonticons.bg-icon:hover,
.fa-fonticons.color-icon.border-icon:hover {
	background-color: #1c1e29;
}

.color-bg-icon.fa-forumbee,
a.fa-forumbee.bg-icon:hover,
.fa-forumbee.color-icon.border-icon:hover {
	background-color: #83ad13;
}

.color-bg-icon.fa-foursquare,
a.fa-foursquare.bg-icon:hover,
.fa-foursquare.color-icon.border-icon:hover {
	background-color: #0072b1;
}

.color-bg-icon.fa-ge,
a.fa-ge.bg-icon:hover,
.fa-ge.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-get-pocket,
a.fa-get-pocket.bg-icon:hover,
.fa-get-pocket.color-icon.border-icon:hover {
	background-color: #d3505a;
}

.color-bg-icon.fa-gg-circle,
a.fa-gg-circle.bg-icon:hover,
.fa-gg-circle.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-gg,
a.fa-gg.bg-icon:hover,
.fa-gg.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-git-square,
a.fa-git-square.bg-icon:hover,
.fa-git-square.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-git,
a.fa-git.bg-icon:hover,
.fa-git.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-github-alt,
a.fa-github-alt.bg-icon:hover,
.fa-github-alt.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-github-square,
a.fa-github-square.bg-icon:hover,
.fa-github-square.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-github,
a.fa-github.bg-icon:hover,
.fa-github.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-gittip,
a.fa-gittip.bg-icon:hover,
.fa-gittip.color-icon.border-icon:hover {
	background-color: #630;
}

.color-bg-icon.fa-google-plus-square,
a.fa-google-plus-square.bg-icon:hover,
.fa-google-plus-square.color-icon.border-icon:hover {
	background-color: #dd4b39;
}

.color-bg-icon.fa-google-plus,
a.fa-google-plus.bg-icon:hover,
.fa-google-plus.color-icon.border-icon:hover {
	background-color: #dd4b39;
}

.color-bg-icon.fa-google-wallet,
a.fa-google-wallet.bg-icon:hover,
.fa-google-wallet.color-icon.border-icon:hover {
	background-color: #4285f4;
}

.color-bg-icon.fa-google,
a.fa-google.bg-icon:hover,
.fa-google.color-icon.border-icon:hover {
	background-color: #dd4b39;
}

.color-bg-icon.fa-hacker-news,
a.fa-hacker-news.bg-icon:hover,
.fa-hacker-news.color-icon.border-icon:hover {
	background-color: #f60;
}

.color-bg-icon.fa-houzz,
a.fa-houzz.bg-icon:hover,
.fa-houzz.color-icon.border-icon:hover {
	background-color: #7ac142;
}

.color-bg-icon.fa-html5,
a.fa-html5.bg-icon:hover,
.fa-html5.color-icon.border-icon:hover {
	background-color: #e34f26;
}

.color-bg-icon.fa-instagram,
a.fa-instagram.bg-icon:hover,
.fa-instagram.color-icon.border-icon:hover {
	background-color: #3f729b;
}

.color-bg-icon.fa-internet-explorer,
a.fa-internet-explorer.bg-icon:hover,
.fa-internet-explorer.color-icon.border-icon:hover {
	background-color: #1ebbee;
}

.color-bg-icon.fa-ioxhost,
a.fa-ioxhost.bg-icon:hover,
.fa-ioxhost.color-icon.border-icon:hover {
	background-color: #faa729;
}

.color-bg-icon.fa-joomla,
a.fa-joomla.bg-icon:hover,
.fa-joomla.color-icon.border-icon:hover {
	background-color: #142849;
}

.color-bg-icon.fa-jsfiddle,
a.fa-jsfiddle.bg-icon:hover,
.fa-jsfiddle.color-icon.border-icon:hover {
	background-color: #4679bd;
}

.color-bg-icon.fa-lastfm-square,
a.fa-lastfm-square.bg-icon:hover,
.fa-lastfm-square.color-icon.border-icon:hover {
	background-color: #c3000d;
}

.color-bg-icon.fa-lastfm,
a.fa-lastfm.bg-icon:hover,
.fa-lastfm.color-icon.border-icon:hover {
	background-color: #c3000d;
}

.color-bg-icon.fa-leanpub,
a.fa-leanpub.bg-icon:hover,
.fa-leanpub.color-icon.border-icon:hover {
	background-color: #0c0c0c;
}

.color-bg-icon.fa-linkedin-square,
a.fa-linkedin-square.bg-icon:hover,
.fa-linkedin-square.color-icon.border-icon:hover {
	background-color: #0976b4;
}

.color-bg-icon.fa-linkedin,
a.fa-linkedin.bg-icon:hover,
.fa-linkedin.color-icon.border-icon:hover {
	background-color: #0976b4;
}

.color-bg-icon.fa-linux,
a.fa-linux.bg-icon:hover,
.fa-linux.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-maxcdn,
a.fa-maxcdn.bg-icon:hover,
.fa-maxcdn.color-icon.border-icon:hover {
	background-color: #f60;
}

.color-bg-icon.fa-meanpath,
a.fa-meanpath.bg-icon:hover,
.fa-meanpath.color-icon.border-icon:hover {
	background-color: #538ed7;
}

.color-bg-icon.fa-medium,
a.fa-medium.bg-icon:hover,
.fa-medium.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-odnoklassniki-square,
a.fa-odnoklassniki-square.bg-icon:hover,
.fa-odnoklassniki-square.color-icon.border-icon:hover {
	background-color: #ed812b;
}

.color-bg-icon.fa-odnoklassniki,
a.fa-odnoklassniki.bg-icon:hover,
.fa-odnoklassniki.color-icon.border-icon:hover {
	background-color: #ed812b;
}

.color-bg-icon.fa-opencart,
a.fa-opencart.bg-icon:hover,
.fa-opencart.color-icon.border-icon:hover {
	background-color: #2ac2ef;
}

.color-bg-icon.fa-openid,
a.fa-openid.bg-icon:hover,
.fa-openid.color-icon.border-icon:hover {
	background-color: #f78c40;
}

.color-bg-icon.fa-opera,
a.fa-opera.bg-icon:hover,
.fa-opera.color-icon.border-icon:hover {
	background-color: #cc0f16;
}

.color-bg-icon.fa-optin-monster,
a.fa-optin-monster.bg-icon:hover,
.fa-optin-monster.color-icon.border-icon:hover {
	background-color: #83c11f;
}

.color-bg-icon.fa-pagelines,
a.fa-pagelines.bg-icon:hover,
.fa-pagelines.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-paypal,
a.fa-paypal.bg-icon:hover,
.fa-paypal.color-icon.border-icon:hover {
	background-color: #253b80;
}

.color-bg-icon.fa-pied-piper-alt,
a.fa-pied-piper-alt .bg-icon:hover,
.fa-pied-piper-alt .color-icon.border-icon:hover {
	color: #2f9f46;
}

.color-bg-icon.fa-pied-piper-square,
a.fa-pied-piper-square .bg-icon:hover,
.fa-pied-piper-square .color-icon.border-icon:hover {
	color: #2f9f46;
}

.color-bg-icon.fa-pied-piper,
a.fa-pied-piper.bg-icon:hover,
.fa-pied-piper.color-icon.border-icon:hover {
	background-color: #2f9f46;
}

.color-bg-icon.fa-pinterest-p,
a.fa-pinterest-p.bg-icon:hover,
.fa-pinterest-p.color-icon.border-icon:hover {
	background-color: #cc2127;
}

.color-bg-icon.fa-pinterest-square,
a.fa-pinterest-square.bg-icon:hover,
.fa-pinterest-square.color-icon.border-icon:hover {
	background-color: #cc2127;
}

.color-bg-icon.fa-pinterest,
a.fa-pinterest.bg-icon:hover,
.fa-pinterest.color-icon.border-icon:hover {
	background-color: #cc2127;
}

.color-bg-icon.fa-qq,
a.fa-qq.bg-icon:hover,
.fa-qq.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-ra,
a.fa-ra.bg-icon:hover,
.fa-ra.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-rebel,
a.fa-rebel.bg-icon:hover,
.fa-rebel.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-reddit-square,
a.fa-reddit-square.bg-icon:hover,
.fa-reddit-square.color-icon.border-icon:hover {
	background-color: #ff4500;
}

.color-bg-icon.fa-reddit,
a.fa-reddit.bg-icon:hover,
.fa-reddit.color-icon.border-icon:hover {
	background-color: #ff4500;
}

.color-bg-icon.fa-renren,
a.fa-renren.bg-icon:hover,
.fa-renren.color-icon.border-icon:hover {
	background-color: #005eac;
}

.color-bg-icon.fa-safari,
a.fa-safari.bg-icon:hover,
.fa-safari.color-icon.border-icon:hover {
	background-color: #1b88ca;
}

.color-bg-icon.fa-sellsy,
a.fa-sellsy.bg-icon:hover,
.fa-sellsy.color-icon.border-icon:hover {
	background-color: #1f78b9;
}

.color-bg-icon.fa-share-alt-square,
a.fa-share-alt-square.bg-icon:hover,
.fa-share-alt-square.color-icon.border-icon:hover {
	background-color: #01bf01;
}

.color-bg-icon.fa-share-alt,
a.fa-share-alt.bg-icon:hover,
.fa-share-alt.color-icon.border-icon:hover {
	background-color: #01bf01;
}

.color-bg-icon.fa-shirtsinbulk,
a.fa-shirtsinbulk.bg-icon:hover,
.fa-shirtsinbulk.color-icon.border-icon:hover {
	background-color: #dd3a26;
}

.color-bg-icon.fa-simplybuilt,
a.fa-simplybuilt.bg-icon:hover,
.fa-simplybuilt.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-skyatlas,
a.fa-skyatlas.bg-icon:hover,
.fa-skyatlas.color-icon.border-icon:hover {
	background-color: #00adbb;
}

.color-bg-icon.fa-skype,
a.fa-skype.bg-icon:hover,
.fa-skype.color-icon.border-icon:hover {
	background-color: #00aff0;
}

.color-bg-icon.fa-slack,
a.fa-slack.bg-icon:hover,
.fa-slack.color-icon.border-icon:hover {
	background-color: #0f7965;
}

.color-bg-icon.fa-slideshare,
a.fa-slideshare.bg-icon:hover,
.fa-slideshare.color-icon.border-icon:hover {
	background-color: #e98325;
}

.color-bg-icon.fa-soundcloud,
a.fa-soundcloud.bg-icon:hover,
.fa-soundcloud.color-icon.border-icon:hover {
	background-color: #f80;
}

.color-bg-icon.fa-spotify,
a.fa-spotify.bg-icon:hover,
.fa-spotify.color-icon.border-icon:hover {
	background-color: #7ab800;
}

.color-bg-icon.fa-stack-exchange,
a.fa-stack-exchange.bg-icon:hover,
.fa-stack-exchange.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-stack-overflow,
a.fa-stack-overflow.bg-icon:hover,
.fa-stack-overflow.color-icon.border-icon:hover {
	background-color: #fe7a15;
}

.color-bg-icon.fa-steam-square,
a.fa-steam-square.bg-icon:hover,
.fa-steam-square.color-icon.border-icon:hover {
	background-color: #0b0b0b;
}

.color-bg-icon.fa-steam,
a.fa-steam.bg-icon:hover,
.fa-steam.color-icon.border-icon:hover {
	background-color: #0b0b0b;
}

.color-bg-icon.fa-stumbleupon-circle,
a.fa-stumbleupon-circle.bg-icon:hover,
.fa-stumbleupon-circle.color-icon.border-icon:hover {
	background-color: #eb4924;
}

.color-bg-icon.fa-stumbleupon,
a.fa-stumbleupon.bg-icon:hover,
.fa-stumbleupon.color-icon.border-icon:hover {
	background-color: #eb4924;
}

.color-bg-icon.fa-tencent-weibo,
a.fa-tencent-weibo.bg-icon:hover,
.fa-tencent-weibo.color-icon.border-icon:hover {
	background-color: #74af2c;
}

.color-bg-icon.fa-trello,
a.fa-trello.bg-icon:hover,
.fa-trello.color-icon.border-icon:hover {
	background-color: #256a92;
}

.color-bg-icon.fa-tripadvisor,
a.fa-tripadvisor.bg-icon:hover,
.fa-tripadvisor.color-icon.border-icon:hover {
	background-color: #589442;
}

.color-bg-icon.fa-tumblr-square,
a.fa-tumblr-square.bg-icon:hover,
.fa-tumblr-square.color-icon.border-icon:hover {
	background-color: #35465c;
}

.color-bg-icon.fa-tumblr,
a.fa-tumblr.bg-icon:hover,
.fa-tumblr.color-icon.border-icon:hover {
	background-color: #35465c;
}

.color-bg-icon.fa-twitch,
a.fa-twitch.bg-icon:hover,
.fa-twitch.color-icon.border-icon:hover {
	background-color: #6441a5;
}

.color-bg-icon.fa-twitter-square,
a.fa-twitter-square.bg-icon:hover,
.fa-twitter-square.color-icon.border-icon:hover {
	background-color: #55acee;
}

.color-bg-icon.fa-twitter,
a.fa-twitter.bg-icon:hover,
.fa-twitter.color-icon.border-icon:hover {
	background-color: #55acee;
}

.color-bg-icon.fa-viacoin,
a.fa-viacoin.bg-icon:hover,
.fa-viacoin.color-icon.border-icon:hover {
	background-color: #333;
}

.color-bg-icon.fa-vimeo-square,
a.fa-vimeo-square.bg-icon:hover,
.fa-vimeo-square.color-icon.border-icon:hover {
	background-color: #1ab7ea;
}

.color-bg-icon.fa-vimeo,
a.fa-vimeo.bg-icon:hover,
.fa-vimeo.color-icon.border-icon:hover {
	background-color: #1ab7ea;
}

.color-bg-icon.fa-vine,
a.fa-vine.bg-icon:hover,
.fa-vine.color-icon.border-icon:hover {
	background-color: #00b488;
}

.color-bg-icon.fa-vk,
a.fa-vk.bg-icon:hover,
.fa-vk.color-icon.border-icon:hover {
	background-color: #45668e;
}

.color-bg-icon.fa-wechat,
a.fa-wechat.bg-icon:hover,
.fa-wechat.color-icon.border-icon:hover {
	background-color: #93d034;
}

.color-bg-icon.fa-weibo,
a.fa-weibo.bg-icon:hover,
.fa-weibo.color-icon.border-icon:hover {
	background-color: #e71d34;
}

.color-bg-icon.fa-weixin,
a.fa-weixin.bg-icon:hover,
.fa-weixin.color-icon.border-icon:hover {
	background-color: #93d034;
}

.color-bg-icon.fa-wikipedia-w,
a.fa-wikipedia-w.bg-icon:hover,
.fa-wikipedia-w.color-icon.border-icon:hover {
	background-color: #000;
}

.color-bg-icon.fa-windows,
a.fa-windows.bg-icon:hover,
.fa-windows.color-icon.border-icon:hover {
	background-color: #00bcf2;
}

.color-bg-icon.fa-wordpress,
a.fa-wordpress.bg-icon:hover,
.fa-wordpress.color-icon.border-icon:hover {
	background-color: #21759b;
}

.color-bg-icon.fa-xing-square,
a.fa-xing-square.bg-icon:hover,
.fa-xing-square.color-icon.border-icon:hover {
	background-color: #026466;
}

.color-bg-icon.fa-xing,
a.fa-xing.bg-icon:hover,
.fa-xing.color-icon.border-icon:hover {
	background-color: #026466;
}

.color-bg-icon.fa-y-combinator,
a.fa-y-combinator.bg-icon:hover,
.fa-y-combinator.color-icon.border-icon:hover {
	background-color: #f0652f;
}

.color-bg-icon.fa-yahoo,
a.fa-yahoo.bg-icon:hover,
.fa-yahoo.color-icon.border-icon:hover {
	background-color: #400191;
}

.color-bg-icon.fa-yc,
a.fa-yc.bg-icon:hover,
.fa-yc.color-icon.border-icon:hover {
	background-color: #f0652f;
}

.color-bg-icon.fa-yelp,
a.fa-yelp.bg-icon:hover,
.fa-yelp.color-icon.border-icon:hover {
	background-color: #af0606;
}

.color-bg-icon.fa-youtube-play,
a.fa-youtube-play.bg-icon:hover,
.fa-youtube-play.color-icon.border-icon:hover {
	background-color: #e52d27;
}

.color-bg-icon.fa-youtube-square,
a.fa-youtube-square.bg-icon:hover,
.fa-youtube-square.color-icon.border-icon:hover {
	background-color: #e52d27;
}

.color-bg-icon.fa-youtube,
a.fa-youtube.bg-icon:hover,
.fa-youtube.color-icon.border-icon:hover {
	background-color: #e52d27;
}

.color-bg-icon.fa-rss,
a.fa-rss.bg-icon:hover,
.fa-rss.color-icon.border-icon:hover {
	background-color: #ffa811;
}

/*social icons default colors*/
.color-bg-icon {
	color: #fff;
}

a.fa {
	color: var(--darkgreyColor);
}

a.fa.color-main {
	color: var(--colorMain);
}

a.border-icon {
	border: 1px solid #808080;
	border-color: rgba(128, 128, 128, 0.4);
}

a.border-icon.color-icon:hover {
	border-color: transparent;
}

a.bg-icon {
	background-color: #e7e4f3;
}

a.color-bg-icon {
	background-color: var(--darkgreyColor);
	color: #fff;
}

a.fa.color-icon:hover {
	color: var(--darkgreyColor);
}

a.fa.bg-icon:hover {
	color: #fff;
}

a.fa.color-bg-icon:hover {
	background-color: var(--colorMain);
	color: #fff;
}

a.color-icon:hover {
	color: var(--darkgreyColor);
}

a.color-icon.border-icon:hover {
	color: #fff;
}

/*
** WordPress Required
*/
.alignnone {
	margin: 10px 0 30px;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 10px auto 30px auto;
}

.alignright {
	float: right;
	margin: 10px 0 30px 40px;
	max-width: 50%;
}

.alignleft {
	float: left;
	margin: 10px 40px 30px 0;
	max-width: 50%;
}

a img.alignright {
	float: right;
	margin: 10px 0 30px 40px;
}

a img.alignnone {
	margin: 10px 0 30px;
}

a img.alignleft {
	float: left;
	margin: 10px 40px 30px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}

.screen-reader-text:focus {
	clip: auto !important;
	display: block;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.sticky,
.bypostauthor {
	position: relative;
}

/*
** WordPress Page Links and Pagination
*/
.page-item,
.nav-links {
	clear: both;
}

.page-item > span,
.page-item > a,
.nav-links > span,
.nav-links > a {
	border: 2px solid rgba(76, 76, 76, 0.1);
	border-radius: 5px !important;
	color: #808080;
	display: inline-block;
	line-height: inherit;
	margin-bottom: 7px;
	margin-left: 0;
	margin-right: 4px;
	min-width: 3em;
	padding: 0.5em 1.2em;
	text-align: center;
}

.page-item > span:hover,
.page-item > a:hover,
.nav-links > span:hover,
.nav-links > a:hover {
	border-color: var(--colorMain3);
}

.page-item.active > a,
.page-item > span,
.nav-links.active > a,
.nav-links > span {
	border-color: var(--colorMain3);
	cursor: not-allowed;
}

.page-item .dots,
.page-item .dots:hover,
.nav-links .dots,
.nav-links .dots:hover {
	border-color: rgba(76, 76, 76, 0.1);
}

.page-item .fa,
.nav-links .fa {
	font-size: 18px;
}

.page-links {
	clear: both;
	margin-top: 20px;
}

.page-links > a,
.page-links > span,
.page-links > .theme_button {
	border: 1px solid var(--colorMain3);
	border-radius: 5px !important;
	color: #808080;
	display: inline-block;
	padding: 0 0.5em;
	text-align: center;
	width: 30px;
}

.page-links > a.disabled:hover,
.page-links > span.disabled:hover,
.page-links > .theme_button.disabled:hover {
	border: 1px solid var(--colorMain3);
	color: #808080;
}

.page-links > a:hover,
.page-links > span:hover,
.page-links > .theme_button:hover {
	border: 1px solid var(--colorMain);
	color: var(--colorMain);
}

.page-links > span:first-child {
	border: 0;
	color: #808080;
	padding: 0;
	text-align: left;
	width: auto;
}

.page-links-title {
	margin-right: 10px;
}

.ds .page-item > span,
.ds .page-item > a:not(.btn),
.ds .nav-links > span,
.ds .nav-links > a:not(.btn),
.ds .page-links > span,
.ds .page-links > a:not(.btn) {
	color: #fff;
}

.ds .page-item > span:hover,
.ds .page-item > a:not(.btn):hover,
.ds .nav-links > span:hover,
.ds .nav-links > a:not(.btn):hover,
.ds .page-links > span:hover,
.ds .page-links > a:not(.btn):hover {
	background-color: #253138;
	border-color: #253138;
	color: #fff;
}

.ds .page-item > span.prev,
.ds .page-item > span.next,
.ds .page-item > a:not(.btn).prev,
.ds .page-item > a:not(.btn).next,
.ds .nav-links > span.prev,
.ds .nav-links > span.next,
.ds .nav-links > a:not(.btn).prev,
.ds .nav-links > a:not(.btn).next,
.ds .page-links > span.prev,
.ds .page-links > span.next,
.ds .page-links > a:not(.btn).prev,
.ds .page-links > a:not(.btn).next {
	background-color: var(--colorMain);
	border-color: var(--colorMain);
	color: #fff;
}

.ds .page-item > span.prev:hover,
.ds .page-item > span.next:hover,
.ds .page-item > a:not(.btn).prev:hover,
.ds .page-item > a:not(.btn).next:hover,
.ds .nav-links > span.prev:hover,
.ds .nav-links > span.next:hover,
.ds .nav-links > a:not(.btn).prev:hover,
.ds .nav-links > a:not(.btn).next:hover,
.ds .page-links > span.prev:hover,
.ds .page-links > span.next:hover,
.ds .page-links > a:not(.btn).prev:hover,
.ds .page-links > a:not(.btn).next:hover {
	border-color: #253138;
}

.hero-bg .page-item > span,
.hero-bg .page-item > a:not(.btn),
.hero-bg .nav-links > span,
.hero-bg .nav-links > a:not(.btn) {
	border-color: var(--darkgreyColor);
}

.page-links a:first-child {
	margin-left: 1em;
}

.pagination {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	margin-bottom: -10px;
	margin-top: 60px;
}

.post-navigation {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
	margin: 60px 0 0;
	position: relative;
}

.post-navigation a {
	width: 49%;
}

.post-navigation a:last-child {
	margin-left: auto;
}

@media (max-width: 575px) {
	.post-navigation a {
		width: 100%;
	}

	.post-navigation a:first-child {
		margin-bottom: 30px;
	}
}

.post-navigation .media {
	background-position: 50% 28%;
	height: auto;
	padding: 32px 39px;
	position: relative;
	text-align: left;
	-webkit-transition: 0.2s opacity ease;
	transition: 0.2s opacity ease;
}

.post-navigation .media.nav-next {
	text-align: right;
}

.post-navigation .media.s-overlay.ds:before {
	opacity: 0.8;
}

.post-navigation .media:hover {
	opacity: 0.9;
}

.post-navigation .media .post-nav-text-wrap {
	width: 100%;
}

.post-navigation .nav-subtitle {
	display: inline-block;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	min-width: 8em;
	padding: 0.25em 0 0 0;
	text-transform: uppercase;
}

.post-navigation .nav-title {
	display: block;
	font-size: 24px;
	letter-spacing: 0.3px;
	line-height: 1.2;
	margin-bottom: -1px;
	margin-top: 4px;
	text-transform: capitalize;
}

.post-navigation.nav-links > div {
	background-position: 50% 28%;
	height: auto;
	padding: 32px 39px;
	position: relative;
	text-align: right;
	-webkit-transition: 0.2s opacity ease;
	transition: 0.2s opacity ease;
	width: 49%;
}

.post-navigation.nav-links > div .post-nav-text-wrap {
	text-align: right;
}

.post-navigation.nav-links > div.s-overlay.ds:before {
	opacity: 0.8;
}

.post-navigation.nav-links > div:hover {
	opacity: 0.9;
}

@media (max-width: 575px) {
	.post-navigation.nav-links > div {
		width: 100%;
	}

	.post-navigation.nav-links > div:first-child {
		margin-bottom: 30px;
	}
}

.post-navigation.nav-links > div .fa {
	font-size: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.post-navigation.nav-links > div:first-child .post-nav-text-wrap {
	text-align: left;
}

.post-navigation.nav-links > div:first-child .fa {
	left: 0;
	right: auto;
}

.post-navigation.nav-links .nav-subtitle {
	display: inline-block;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	min-width: 8em;
	padding: 0.25em 0 0 0;
	text-transform: uppercase;
}

.post-navigation.nav-links .nav-title {
	display: block;
	font-size: 24px;
	letter-spacing: 0.3px;
	line-height: 1.2;
	margin-bottom: -1px;
	margin-top: 4px;
	text-transform: capitalize;
}

.post-navigation.nav-links a {
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.post-navigation .post-nav-image {
	display: none;
}

.post-navigation .cover-image .post-nav-text-wrap {
	text-align: center;
}

/*
** Main Menu styles
*/
.nav-wrap {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
	.nav-wrap {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}
}

.nav-wrap > .top-nav + *:not(.top-includes) {
	-webkit-box-flex: 100;
	-webkit-flex-grow: 100;
	        flex-grow: 100;
	padding-left: 30px;
	padding-right: 30px;
}

/* Desktop menu - (min 1200px) styles */

@media (min-width: 1200px) {
	.top-nav {
		-webkit-box-align: center;
		-webkit-align-items: center;
		        align-items: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-flex: 10;
		-webkit-flex-grow: 10;
		        flex-grow: 10;
		-webkit-flex-wrap: nowrap;
		        flex-wrap: nowrap;
		position: relative;
	}

	.justify-nav-end .top-nav {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}

	.justify-nav-center .top-nav {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
	}
	/* menu layout */
	.sf-menu {
		display: block;
	}

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

	.sf-menu li {
		position: relative;
	}

	.sf-menu li > ul {
		display: none;
		position: absolute;
		top: 100%;
		z-index: 99;
	}

	.sf-menu li:hover > ul,
	.sf-menu li.sfHover > ul {
		display: block;
	}

	.sf-menu a {
		display: block;
		position: relative;
	}
	/* menu skin */
	.sf-menu a {
		font-size: 12px;
		font-weight: 500;
		letter-spacing: 0.2em;
		line-height: 1.6em;
		padding: 10px 1.1em;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition-property: color, background-color, border-color, padding-top, padding-bottom;
		transition-property: color, background-color, border-color, padding-top, padding-bottom;
		zoom: 1;
	}

	.sf-menu li {
		*white-space: normal;
		white-space: nowrap;
	}

	.sf-menu > li {
		display: inline-block;
		position: relative;
	}

	.sf-menu.nav > li:first-child > a {
		margin-left: 0;
	}

	.sf-menu.nav > li:last-child > a {
		margin-right: 0;
	}

	.sf-menu > li > a {
		line-height: 14px;
		margin: 0 15px;
		padding-bottom: 15px;
		padding-left: 0;
		padding-right: 0;
		padding-top: 15px;
		-webkit-transition-duration: 0.15s;
		        transition-duration: 0.15s;
	}

	.affix .sf-menu > li > a {
		padding-bottom: 15px;
		padding-top: 15px;
	}
}

@media (min-width: 1200px) and (min-width: 1500px) {
	.sf-menu > li > a {
		margin: 0 25px;
	}
}

@media (min-width: 1200px) {
	.sf-menu > li > a:hover,
	.sf-menu > li.active > a {
		color: var(--colorMain);
	}

	.nav-narrow .sf-menu > li {
		padding: 0;
	}

	.nav-narrow .sf-menu > li > a {
		margin-left: 29px;
		margin-right: 29px;
		padding-bottom: 24px;
		padding-top: 24px;
	}

	.nav-narrow .sf-menu > li.active > a:before {
		background-color: var(--colorMain);
		content: "";
		height: 1px;
		left: -20px;
		position: absolute;
		right: -20px;
		top: 0;
		z-index: 1;
	}

	.nav-bordered .sf-menu > li + li:before {
		background-color: rgba(255, 255, 255, 0.15);
		bottom: 0;
		content: "";
		left: -2px;
		position: absolute;
		top: 0;
		width: 1px;
	}

	.cs .sf-menu > li > a {
		color: #fff;
	}

	.cs .sf-menu > li > a:hover,
	.cs .sf-menu > li.active > a {
		color: var(--darkgreyColor);
	}

	.ds .sf-menu > li > a {
		color: #fff;
	}

	.ds .sf-menu > li > a:hover,
	.ds .sf-menu > li.active > a {
		color: var(--colorMain);
	}

	.ls .sf-menu > li > a {
		color: var(--darkgreyColor);
	}

	.ls .sf-menu > li > a:hover,
	.ls .sf-menu > li.active > a {
		color: var(--colorMain);
	}

	.ls .sf-menu > li + li:before {
		background-color: rgba(76, 76, 76, 0.1);
	}

	.ls .sf-menu.light-menu > li > a {
		color: #fff;
	}

	.ls .sf-menu.light-menu > li > a:hover,
	.ls .sf-menu.light-menu > li.active > a {
		color: rgba(255, 255, 255, 0.7);
	}

	.ls.affix .sf-menu.light-menu > li > a {
		color: #4c4c4c;
	}

	.ls.affix .sf-menu.light-menu > li > a:hover,
	.ls.affix .sf-menu.light-menu > li.active > a {
		color: var(--colorMain);
	}

	.sf-menu li:hover,
	.sf-menu li.sfHover {
		/* only transition out, not in */
		-webkit-transition: none;
		transition: none;
	}
	/* second and next levels */
	.sf-menu > li .mega-menu,
	.sf-menu li > ul {
		/* allow long menu items to determine submenu width */
		*width: 10em;
		background-color: #fff;
		border-top: 4px solid var(--colorMain);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		list-style: none;
		margin-top: 5px;
		min-width: 10em;
		padding: 28px 0 28px;
		text-align: left;
		/* no auto sub width for IE7, see white-space comment below */
	}

	.sf-menu > li .mega-menu {
		padding-left: 0;
		padding-right: 0;
	}

	.sf-menu.nav ul a {
		color: var(--darkgreyColor);
		padding-left: 40px;
		padding-right: 40px;
	}

	.sf-menu .mega-menu ul {
		background: transparent;
		box-shadow: none;
		padding: 0;
	}

	.sf-menu .mega-menu ul a {
		padding-left: 0;
		padding-right: 0;
	}

	.sf-menu ul a:hover,
	.sf-menu ul li.active > a {
		color: var(--colorMain);
	}
	/* third level */
	.sf-menu ul ul {
		margin-top: 0;
		top: -32px;
	}

	.sf-arrows ul .sf-with-ul:after {
		content: "\f105";
		font-family: "FontAwesome";
		padding-left: 7px;
	}
}

.sf-menu i[class] {
	font-size: 1.1em;
	margin-right: 7px;
}

/* hidden menu items */

@media (min-width: 1200px) {
	.sf-menu .sf-xl-hidden {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.sf-more-li {
		display: none;
	}
}

.page_header.page_header_4 .sf-menu > li .mega-menu,
.page_header.page_header_4 .sf-menu li > ul {
	border: 0;
	border-radius: 10px;
	left: -60%;
	right: auto;
}

@media (min-width: 1200px) {
	.page_header.page_header_4 .sf-menu > li .mega-menu,
	.page_header.page_header_4 .sf-menu li > ul {
		text-align: center;
	}
}

/* Mobile menu toggler */

@media (min-width: 1200px) {
	.page_header .toggle_menu,
	.page_toplogo .toggle_menu {
		display: none;
	}
}

.toggle_menu {
	cursor: pointer;
	height: 59px;
	margin-left: -30px;
	margin-top: -30px;
	opacity: 0.95;
	padding: 0 !important;
	position: absolute;
	right: 0;
	top: 50%;
	visibility: visible;
	width: 60px;
	z-index: 1002;
}

.page_header_wrapper .toggle_menu {
	z-index: 1003;
}

.ls .toggle_menu {
	background-color: #fff;
}

.ls .toggle_menu:before,
.ls .toggle_menu span,
.ls .toggle_menu span:before,
.ls .toggle_menu span:after {
	background-color: var(--darkgreyColor);
}

.page_toplogo .toggle_menu {
	left: auto;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.toggle_menu:hover span:before {
	top: -9px;
}

.toggle_menu:hover span:after {
	top: 9px;
}

.toggle_menu:before,
.toggle_menu span,
.toggle_menu span:before,
.toggle_menu span:after {
	background-color: #fff;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	width: 30px;
}

.page_header_3 .toggle_menu:before,
.page_header_3
.toggle_menu span,
.page_header_3
.toggle_menu span:before,
.page_header_3
.toggle_menu span:after {
	background-color: var(--colorMain);
}

.toggle_menu:before,
.toggle_menu span {
	left: 15px;
	top: 50%;
}

.toggle_menu span:before {
	opacity: 1;
	top: -8px;
}

.toggle_menu span:after {
	opacity: 1;
	top: 8px;
}

.toggle_menu.mobile-active {
	background-color: var(--colorMain);
	border: none;
	left: auto;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 3000;
}

.toggle_menu.mobile-active:before {
	background-color: #fff;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.toggle_menu.mobile-active span {
	background-color: #fff;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.toggle_menu.mobile-active span:before,
.toggle_menu.mobile-active span:after {
	opacity: 0;
}

.toggle_menu.active:before {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.toggle_menu.active span {
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.toggle_menu.active span:before,
.toggle_menu.active span:after {
	opacity: 0;
}

.header_3_wrap .toggle_menu,
.header_4_wrap .toggle_menu {
	cursor: pointer;
	height: 59px;
	margin-left: -30px;
	margin-top: -30px;
	opacity: 0.95;
	padding: 0 !important;
	position: absolute;
	right: 50%;
	top: 50%;
	-webkit-transform: translateX(50%);
	    -ms-transform: translateX(50%);
	        transform: translateX(50%);
	visibility: visible;
	width: 60px;
	z-index: 1002;
}

.header_3_wrap .toggle_menu.mobile-active,
.header_4_wrap .toggle_menu.mobile-active {
	border: none;
	left: auto;
	margin: 0 !important;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transform: none !important;
	    -ms-transform: none !important;
	        transform: none !important;
	z-index: 3000;
}

.header_4_wrap .toggle_menu.toggle2 {
	height: 50px;
	top: 14px;
	width: 50px;
}

@media (max-width: 1199px) {
	.header_4_wrap .toggle_menu.toggle2 {
		display: none;
	}
}

.header_4_wrap .toggle_menu.toggle2:before,
.header_4_wrap .toggle_menu.toggle2 span,
.header_4_wrap .toggle_menu.toggle2 span:before,
.header_4_wrap .toggle_menu.toggle2 span:after {
	background-color: var(--colorMain) !important;
	width: 20px;
}

@media (max-width: 1199px) {
	.header_4_wrap .toggle_menu {
		right: 0;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
	}
}

/* Mobile Menu (max 991px) styles */

@media (max-width: 767px) {
	.nav-wrap {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
	}
}

@media (max-width: 1199px) {
	.page_header [class*="col"] {
		min-height: 0;
	}

	.top-nav {
		background-color: transparent;
		bottom: 0;
		left: 0;
		opacity: 0;
		position: fixed;
		right: 0;
		top: 0;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		visibility: hidden;
		z-index: 10;
	}

	.mobile-active .top-nav {
		background-color: #111;
		background-color: rgba(0, 0, 0, 0.9);
		opacity: 1;
		visibility: visible;
		z-index: 1002;
	}

	.nav-justified > li > a {
		text-align: left;
	}

	.sf-menu {
		background-color: #fff;
		border-top: 61px solid var(--colorMain);
		bottom: 0;
		display: block;
		font-size: 12px;
		font-weight: 500;
		left: 0;
		letter-spacing: 0.2em;
		line-height: 1.6em;
		opacity: 0;
		overflow: auto;
		padding: 20px 10px 20px 20px;
		position: fixed;
		right: 100%;
		text-align: left;
		text-transform: uppercase;
		top: 0;
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	.mobile-active .sf-menu {
		opacity: 1;
		right: 0;
	}

	.sf-menu li {
		position: relative;
	}

	.top-nav .sf-menu a {
		color: var(--darkgreyColor);
		display: block;
		padding: 10px 10px;
		z-index: 2;
	}

	.top-nav .sf-menu a.active {
		color: var(--colorMain);
	}

	.sf-menu ul {
		list-style: none;
		margin-top: 0 !important;
		padding-left: 10px;
	}

	.sf-menu ul li a {
		font-weight: 500;
		letter-spacing: 0.1em;
	}

	.sf-menu ul li a:before {
		background-color: var(--colorMain);
		border-radius: 50%;
		bottom: 3px;
		content: "";
		display: inline-block;
		height: 3px;
		margin-right: 10px;
		position: relative;
		width: 3px;
	}
	/* arrows (for all except IE7) */
	.sf-arrows .sf-with-ul {
		padding-right: 3.5em;
	}
	/* styling for both css and generated arrows */
	.sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler {
		border-radius: 50%;
		height: 30px;
		line-height: 30px;
		position: absolute;
		right: 5px;
		text-align: center;
		top: 5px;
		width: 30px;
		z-index: 1;
	}

	.sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler:after {
		color: var(--darkgreyColor);
		content: "\f105";
		font-family: "FontAwesome";
	}

	.sfHover > .sf-with-ul + .sf-menu-item-mobile-toggler:after {
		content: "\f107";
	}
}

/* Mega Menu */

@media screen and (min-width: 1200px) {
	.top-nav ul .mega-menu ul {
		border: none;
		min-width: auto;
	}

	.top-nav .menu-item-has-mega-menu {
		position: relative;
	}

	.top-nav .mega-menu {
		display: none;
		position: absolute;
		top: 100%;
		width: 940px;
		z-index: 10;
	}

	.top-nav .menu-item-has-mega-menu:hover .mega-menu {
		display: block;
	}
	/* row */
	.top-nav .mega-menu-row {
		display: table;
		position: static;
		table-layout: fixed;
	}

	.top-nav .mega-menu-row ul {
		display: block;
		position: static;
	}
	/* column */
	.top-nav .mega-menu-col {
		border-left: 1px solid rgba(76, 76, 76, 0.1);
		display: table-cell;
		padding: 0 15px;
		width: 2000px;
		/* overrides from settings / styling / mega-menu */
	}

	.top-nav .mega-menu-col > a {
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.top-nav .mega-menu-col:first-child {
		border-left: none;
	}

	.top-nav ul ul .mega-menu {
		display: block;
		margin-left: 1px;
		top: -20px;
		width: auto;
	}

	.top-nav ul ul .mega-menu li {
		border: none;
		display: block;
		width: auto;
	}
}

@media screen and (min-width: 1200px) {
	.top-nav .mega-menu {
		width: 1170px;
	}

	.top-nav ul .mega-menu ul {
		min-width: 10em;
	}

	.top-nav .mega-menu-col {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1199px) {
	.top-nav .mega-menu {
		position: static;
	}
}

/* side clickable menu styles */
.menu-click {
	padding: 0;
}

.menu-click i {
	margin-right: 10px;
	text-align: center;
	width: 1em;
}

.menu-click .toggle_submenu {
	border-radius: 50%;
	cursor: pointer;
	font-size: 8px;
	height: 3em;
	line-height: 3em;
	opacity: 0.9;
	position: absolute;
	right: 20px;
	text-align: center;
	top: 8px;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	width: 3em;
}

.menu-click .toggle_submenu:before {
	content: "\f078";
	font-family: "FontAwesome";
	height: 3em;
	left: 0;
	line-height: 3em;
	position: absolute;
	top: 0;
	width: 3em;
}

.menu-click ul {
	padding: 0;
}

.menu-click li {
	list-style: none;
	position: relative;
	width: 100%;
}

.menu-click > li {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.menu-click a {
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	padding: 10px 40px;
	text-transform: uppercase;
}

.menu-click a:hover {
	background-color: rgba(150, 150, 150, 0.05);
}

.menu-click .active-submenu > a {
	background-color: rgba(150, 150, 150, 0.05);
}

.menu-click .active-submenu > .toggle_submenu {
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.menu-click li.active > a {
	color: var(--colorMain);
}

.menu-click ul {
	height: 0;
	opacity: 0;
}

.menu-click ul a {
	padding-bottom: 8px;
	padding-left: 50px;
	padding-top: 8px;
}

.menu-click ul ul a {
	padding-left: 60px;
}

.menu-click ul ul ul a {
	padding-left: 70px;
}

.menu-click ul ul ul ul a {
	padding-left: 80px;
}

.menu-click .active-submenu > div.mega-menu {
	height: auto;
}

.menu-click .active-submenu > ul,
.menu-click .active-submenu > div.mega-menu > ul {
	height: auto;
	opacity: 1;
}

.menu-click ul,
.menu-click div.mega-menu {
	height: 0;
	overflow: hidden;
	-webkit-transition: opacity 0.6s, margin-top 0.4s, margin-bottom 0.4s, height 0.3s ease-in-out;
	transition: opacity 0.6s, margin-top 0.4s, margin-bottom 0.4s, height 0.3s ease-in-out;
}

.menu-click ul li.sfHover > .mega-menu ul {
	display: block;
	height: 100%;
}

.menu-click div.mega-menu > ul {
	height: auto;
	margin-right: 0;
}

/*
** Header
*/
.page_header {
	height: auto;
	left: 0;
	margin: 0;
	padding: 0;
	position: relative;
	right: 0;
	top: 0;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
	z-index: 1000;
}

.boxed .page_header,
.page_header.affix {
	box-shadow: 0 2px 15px 0 rgba(100, 100, 100, 0.05);
	opacity: 0.98;
	position: fixed !important;
	z-index: 1001;
}

.boxed .page_header .logo.with_logo_affix img,
.page_header.affix .logo.with_logo_affix img {
	display: none;
}

.boxed .page_header .logo.with_logo_affix img.logo_affix,
.page_header.affix .logo.with_logo_affix img.logo_affix {
	display: inline-block;
}

.boxed .page_header:after,
.page_header.affix:after {
	background-color: transparent;
}

.page_header.affix.s-bordertop::before {
	display: none;
}

@media (max-width: 991px) {
	.page_header.mobile-active {
		opacity: 1;
		z-index: 1003;
	}
}

.page_header.affix-bottom {
	position: fixed;
	top: 0 !important;
}

.page_header .row {
	min-height: 60px;
}

.page_header [class*='container'] {
	position: relative;
}

.page_header a {
	display: inline-block;
}

.page_header .btn {
	margin-bottom: 0;
	padding: 10px 28px;
}

@media (min-width: 1200px) {
	.header_disable_affix_xl .page_header {
		box-shadow: none;
		opacity: 1;
		position: relative !important;
	}
}

@media (max-width: 1199px) {
	.header_disable_affix_xs .page_header {
		box-shadow: none;
		opacity: 1;
		position: relative !important;
	}
}

.page_header_1.affix [class*='container'],
.page_header_4.affix [class*='container'] {
	padding-bottom: 0;
	padding-top: 0;
}

.header_absolute {
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 1002;
}

.header_absolute .page_topline,
.header_absolute .page_toplogo,
.header_absolute .page_header_wrapper:not(.affix-wrapper),
.header_absolute .page_title {
	background-color: transparent;
}

#canvas:not(.boxed) .header_absolute .page_header:not(.affix) {
	background-color: transparent;
}

@media (min-width: 1200px) {
	.header_absolute .page_header.page_header_1 .sf-menu.light-menu > li > a {
		color: #fff;
		-webkit-transition-duration: 0.15s;
		        transition-duration: 0.15s;
	}

	.header_absolute .page_header.page_header_1 .sf-menu.light-menu > li > a:hover {
		opacity: 0.7;
	}

	.header_absolute .page_header.page_header_1.affix .sf-menu.light-menu > li > a {
		color: var(--colorMain);
		-webkit-transition-duration: 0.15s;
		        transition-duration: 0.15s;
	}

	.header_absolute .page_header.page_header_1.affix .sf-menu.light-menu > li > a:hover {
		opacity: 0.7;
	}
}

.header_absolute .page_header.page_header_1.affix .sf-menu.light-menu > li > a {
	color: #4c4c4c;
}

.header_absolute .page_topline.page_topline_2 {
	background-color: #fff;
}

.header_absolute .page_topline.page_topline_3 {
	background-color: transparent !important;
}

.header_absolute .page_topline.page_topline_3 i,
.header_absolute .page_topline.page_topline_3 span {
	color: #fff !important;
}

.header_absolute .page_topline.page_topline_3 a {
	color: #fff;
}

.header_absolute .page_topline.page_topline_3 a:hover {
	opacity: 0.7;
}

.header_absolute .page_header.page_header_3 {
	background-color: #fff !important;
}

@media (min-width: 1200px) {
	.header_absolute .page_header.page_header_4 .sf-menu a {
		letter-spacing: 0.4em;
	}
}

.header_absolute .page_header.page_header_4.affix-top .toggle_menu span,
.header_absolute .page_header.page_header_4.affix-top .toggle_menu span:before,
.header_absolute .page_header.page_header_4.affix-top .toggle_menu span:after {
	background-color: #fff !important;
}

.header_absolute .page_header.page_header_4.affix-top .header-includes a {
	color: #fff;
}

.header_absolute .page_header.page_header_4 .header-includes a {
	color: var(--colorMain);
}

.header_absolute .page_header.page_header_4 .search_modal_button {
	margin: 0 34px 0 5px;
}

.header_3_wrap,
.header_4_wrap {
	display: block;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.header_3_wrap
.header_3_wrap,
+ .page_title {
	padding-top: 100px;
}

.page_topline {
	line-height: 1.4;
}

.page_topline.page_topline_2,
.page_topline.page_topline_3 {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.page_topline.page_topline_2 .top-includes li,
.page_topline.page_topline_3 .top-includes li {
	margin-left: 0;
}

@media (min-width: 992px) {
	.page_topline.page_topline_2 .top-includes li,
	.page_topline.page_topline_3 .top-includes li {
		margin-right: 28px;
	}

	.page_topline.page_topline_2 .top-includes li:last-of-type,
	.page_topline.page_topline_3 .top-includes li:last-of-type {
		margin-right: 0;
	}
}

.page_topline.page_topline_2 .icon-inline > .icon-styled i,
.page_topline.page_topline_3 .icon-inline > .icon-styled i {
	font-size: 14px;
}

.page_topline.page_topline_2 .icon-inline > .icon-styled:first-child,
.page_topline.page_topline_3 .icon-inline > .icon-styled:first-child {
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
	margin-right: 15px;
}

.page_topline.small-text i {
	font-size: 14px;
}

.page_topline .icon-inline {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

.page_topline .icon-inline .request-block {
	margin-left: 20px;
}

.ls .page_topline .icon-inline {
	color: #4c4c4c;
}

.page_topline .social-icons {
	display: inline-block;
}

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

.page_topline ul {
	margin: 0;
	padding: 0;
}

.page_topline ul li {
	display: inline-block;
	line-height: 1.2;
}

.page_topline .dropdown-menu {
	margin: 23px 0 0 -25px;
	min-width: auto;
}

.page_topline .dropdown-language a > img {
	bottom: 1px;
	margin-right: 6px;
	max-width: 16px;
	position: relative;
}

.page_topline .owl-news-slider-dates {
	font-weight: 700;
}

.page_topline .topline-news-item {
	height: 2em;
	line-height: 2em;
	margin: 0 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page_topline .topline-news-item .cat-links {
	display: inline;
}

.page_topline .topline-news-nav-arrow {
	border: 1px solid var(--darkgreyColor);
	bottom: 20px;
	font-size: 10px;
	line-height: 38px;
	position: relative;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
	width: 40px;
}

.page_topline .topline-news-nav-arrow:hover {
	opacity: 0.5;
}

.page_topline .owl-nav > div {
	opacity: 1;
}

@media (min-width: 992px) {
	.page_toplogo .media + .media {
		margin-left: 60px;
	}
}

.page_toplogo .widget_search form,
.page_toplogo .widget_product_search form,
.page_toplogo .widget_search input,
.page_toplogo .widget_product_search input {
	max-width: none;
}

@media (max-width: 991px) {
	.page_toplogo .media {
		margin: 10px;
	}
}

@media (min-width: 1500px) {
	.page_topline .container-fluid,
	.page_toplogo .container-fluid,
	.page_header .container-fluid,
	.page_title .container-fluid {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media (min-width: 1680px) {
	.page_topline .container-fluid,
	.page_toplogo .container-fluid,
	.page_header .container-fluid,
	.page_title .container-fluid {
		padding-left: 120px;
		padding-right: 120px;
	}
}

@media (min-width: 1500px) {
	.page_header_side.page_header4_special ~ .page_topline .container-fluid,
	.page_header_side.page_header4_special ~ .page_toplogo .container-fluid,
	.page_header_side.page_header4_special ~ div .page_header .container-fluid {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media (min-width: 1680px) {
	.page_header_side.page_header4_special ~ .page_topline .container-fluid,
	.page_header_side.page_header4_special ~ .page_toplogo .container-fluid,
	.page_header_side.page_header4_special ~ div .page_header .container-fluid {
		padding-left: 120px;
		padding-right: 120px;
	}
}

/*header includes*/
.top-includes {
	margin: 0;
	padding: 0;
}

@media (min-width: 992px) {
	.top-includes {
		white-space: nowrap;
	}
}

.top-includes > * {
	display: inline-block;
}

.top-includes > li {
	margin-left: 10px;
}

.top-includes > li:first-child {
	margin-left: 0;
}

@media (min-width: 992px) {
	.top-includes.border-divided > li + li {
		border-left: 2px solid rgba(200, 200, 200, 0.35);
		margin-left: 26px;
		padding-left: 30px;
	}
}

@media (min-width: 992px) {
	.top-nav + .top-includes {
		margin-left: 50px;
	}
}

@media (max-width: 991px) {
	.top-includes.md-absolute {
		bottom: 0;
		position: absolute;
		right: 80px;
	}
}

.top-includes a.border-icon,
.top-includes a.bg-icon,
.top-includes a.color-bg-icon {
	margin-bottom: 2px;
	margin-top: 2px;
}

@media (min-width: 1200px) {
	.header_3_wrap .page_topline .container-fluid {
		padding-left: 65px !important;
		padding-right: 65px !important;
	}
}

/*logo*/
a.logo {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

a.logo img {
	display: inline-block;
	max-height: 80px;
}

a.logo img.logo_affix {
	display: none;
}

a.logo .logo-text {
	border: 2px solid #fff;
	border-radius: 8px;
	color: #fff;
	font-size: 24px;
	letter-spacing: 0.4em;
	padding: 3px 7px;
	text-indent: 0.4em;
	text-transform: uppercase;
}

.page_header_2 a.logo .logo-text {
	border-color: var(--colorMain2);
	color: var(--colorMain2);
}

.page_header_3 a.logo .logo-text {
	border-color: var(--colorMain2);
	color: var(--colorMain2);
}

@media (max-width: 768px) {
	.page_header_3 a.logo .logo-text {
		letter-spacing: 0.2em;
		text-indent: 0.2em;
	}
}

.affix a.logo .logo-text {
	border-color: var(--colorMain2);
	color: var(--colorMain2);
}

.affix a.logo .logo-text img.logo_affix {
	display: inline-block;
}

a.logo .logo-subtext {
	font-size: 22px;
	padding: 0 10px;
}

a.logo .logo-text-bottom {
	font-size: 26px;
}

a.logo .flex-column,
a.logo.flex-column {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	padding-bottom: 10px;
	padding-top: 10px;
}

a.logo .flex-column.text-center,
a.logo.flex-column.text-center {
	display: inline-block;
}

.text-center a.logo {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

.header_logo_center a.logo {
	display: inline-block;
	padding: 10px 0;
	position: relative;
	z-index: 2;
}

.header_logo_center.affix a.logo {
	padding: 5px 0;
}

@media (min-width: 992px) {
	.header_logo_center .logo_wrapper {
		-webkit-box-align: center;
		-webkit-align-items: center;
		        align-items: center;
		bottom: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
}

/*search modal*/
#search_modal {
	padding: 0 !important;
}

#search_modal .widget {
	background-color: #fff;
	padding: 20px 0;
}

@media (min-width: 1200px) {
	#search_modal .widget:before {
		content: "";
		height: 100px;
		opacity: 0.2;
		position: absolute;
		top: 0;
		width: 100%;
	}
}

#search_modal .search-form {
	margin: 0 auto;
	max-width: 960px;
	padding: 0 60px 0 0;
}

@media (max-width: 1050px) {
	#search_modal .search-form {
		margin-right: 55px;
	}
}

#search_modal a {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
}

#search_modal a:hover {
	color: var(--colorMain);
	opacity: 1;
}

#search_modal .searchform-respond {
	color: #fff;
	margin: 20px auto;
	width: 300px;
}

#search_modal .form-group {
	margin-bottom: 0;
}

#search_modal .form-control {
	background-color: transparent;
	border: none;
	box-shadow: none;
	color: var(--darkgreyColor);
	font-size: 18px;
	font-style: italic;
	height: 60px;
	max-width: none;
	width: 100%;
}

#search_modal .form-control:-moz-placeholder {
	color: #808080;
	opacity: 1;
	text-transform: uppercase;
}

#search_modal .form-control::-moz-placeholder {
	color: #808080;
	opacity: 1;
	text-transform: uppercase;
}

#search_modal .form-control:-ms-input-placeholder {
	color: #808080;
	text-transform: uppercase;
}

#search_modal .form-control::-webkit-input-placeholder {
	color: #808080;
	text-transform: uppercase;
}

#search_modal .btn {
	color: var(--darkgreyColor);
	font-size: 0;
	margin: 0 60px 0 0;
	padding: 30px 22px 25px;
	width: auto;
}

#search_modal .btn:before {
	color: var(--darkgreyColor);
	font-size: 18px;
}

#search_modal .close {
	color: var(--colorMain3);
	font-size: 28px;
	line-height: 60px;
	min-width: 50px;
	opacity: 1;
	position: absolute;
	right: 15px;
	text-align: center;
	text-shadow: none;
	top: 22px !important;
	z-index: 2;
}

#search_modal .search-submit {
	background: transparent;
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	top: 0;
}

#search_modal .search-submit:before {
	color: var(--colorMain3);
}

.active-side-header #search_modal {
	right: 310px;
}

.search_modal_button {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	padding: 0 0 0 10px;
}

/*
** Side Header
*/
/* side header layout */
body:after {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 1001;
}

body,
body:after,
#canvas,
.page_header_side {
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

#canvas {
	left: 0;
	-webkit-transition-property: left, margin-left;
	transition-property: left, margin-left;
}

body.active-side-header {
	overflow: hidden;
}

body.active-side-header #canvas {
	left: 310px;
}

body.active-side-header .page_header_side {
	left: 0;
}

body.active-side-header:after {
	opacity: 1;
	visibility: visible;
}

html.html-active-push-header {
	overflow: hidden;
}

.page_header_side {
	bottom: 0;
	left: -310px;
	position: fixed;
	top: 0;
	width: 310px;
	z-index: 1002;
}

.page_header_side.active-slide-side-header {
	box-shadow: 0 0 4px 3px rgba(50, 50, 50, 0.05);
}

.page_header_side ~ .page_toplogo .toggle_menu {
	display: none;
}

.page_header_side a.logo {
	margin-bottom: 20px;
	padding: 10px 20px;
}

.page_header_side a.logo img {
	max-width: 100%;
}

.page_header_side .widget {
	margin-top: 60px;
	padding-left: 30px;
	padding-right: 30px;
}

.page_header_side .widget_icons_list li + li {
	margin-top: 1em;
}

.page_header_side .social-icons {
	display: block;
	margin-top: 43px;
}

.page_header_side .social-icons a.border-icon,
.page_header_side .social-icons a.bg-icon,
.page_header_side .social-icons a.color-bg-icon {
	margin-bottom: 2px;
	margin-top: 2px;
}

@media (min-width: 1200px) {
	.page_header_side ~ .page_topline .container-fluid,
	.page_header_side ~ .page_toplogo .container-fluid,
	.page_header_side ~ div .page_header .container-fluid {
		padding-left: 65px;
		padding-right: 65px;
	}
}

@media (max-width: 1199px) {
	.page_header_side ~ .page_topline [class*="container"],
	.page_header_side ~ .page_toplogo [class*="container"],
	.page_header_side ~ div .page_header [class*="container"] {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.header_3_wrap div .page_header:not(.mobile-active) .container-fluid {
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 1200px) {
	.header_3_wrap div .page_header:not(.mobile-active) .container-fluid {
		padding-left: 65px;
		padding-right: 65px;
	}
}

.side_header_inner {
	padding: 26px 0 60px;
}

.toggle_menu_side {
	margin: 0;
	position: absolute;
	right: -60px;
	top: 0;
	-webkit-transition: right 0.3s ease-in-out;
	transition: right 0.3s ease-in-out;
}

@media (max-width: 370px) {
	.toggle_menu_side.active {
		opacity: 0.4;
		right: 0;
	}
}

.toggle_menu_side:before,
.toggle_menu_side span:before,
.toggle_menu_side span:after,
.toggle_menu_side span {
	background-color: #fff !important;
}

.ds .toggle_menu_side {
	background-color: var(--colorMain);
}

.bs .toggle_menu_side {
	background-color: var(--colorMain);
}

.ls .toggle_menu_side {
	background-color: var(--colorMain);
}

.page_header_side.header_side_sticked .toggle_menu_side {
	right: -60px;
	top: 0;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.page_header_side.active-slide-side-header {
	left: 0;
}

.active-side-header .boxed .header_push ~ div .page_header,
.active-side-header .header_push ~ div .page_header.affix {
	margin-left: 310px;
}

.active-side-header.slide-right .boxed .header_push ~ div .page_header,
.active-side-header.slide-right .header_push ~ div .page_header.affix {
	margin-left: -310px;
}

.page_header_side.header_side_right {
	left: auto;
	right: -310px;
}

.page_header_side.header_side_right.active-slide-side-header {
	right: 0;
}

.page_header_side.header_side_right .toggle_menu_side {
	left: -60px;
	right: auto;
	-webkit-transition: left 0.3s ease-in-out;
	transition: left 0.3s ease-in-out;
}

@media (max-width: 370px) {
	.page_header_side.header_side_right .toggle_menu_side.active {
		left: 0;
	}
}

body.active-side-header.slide-right #canvas {
	left: -310px;
}

body.active-side-header.slide-right .page_header_side {
	left: auto;
	right: 0;
}

@media (min-width: 600px) {
	.page_header_side.header_side_sticked.active-slide-side-header {
		left: 0;
	}

	.header_side_sticked ~ * {
		-webkit-transition: margin 0.5s ease-in-out;
		transition: margin 0.5s ease-in-out;
	}

	.header_side_sticked ~ * .container-fluid {
		padding-left: 80px;
	}

	.header_side_sticked ~ div .page_header {
		width: auto;
	}

	.header_side_sticked.active-slide-side-header ~ *,
	.header_side_sticked.active-slide-side-header ~ div .page_header {
		margin-left: 310px;
	}

	.boxed .header_side_sticked.active-slide-side-header ~ *,
	.boxed .header_side_sticked.active-slide-side-header ~ div .page_header {
		margin-left: 0;
	}

	.header_side_sticked ~ .page_header_wrapper {
		margin: 0 !important;
	}

	.page_header_side.header_side_sticked.header_side_right.active-slide-side-header {
		left: auto;
	}

	.header_side_sticked.header_side_right.active-slide-side-header ~ *,
	.header_side_sticked.header_side_right.active-slide-side-header ~ div .page_header {
		margin-left: 0;
		margin-right: 310px;
	}
}

/* Header right side */
.toggle_menu_side.toggle_menu_side_special {
	background-color: transparent !important;
	display: inline-block;
	height: auto;
	margin-left: 0;
	position: relative;
	right: auto;
	top: auto;
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
	width: auto;
	z-index: 999;
}

.toggle_menu_side.toggle_menu_side_special:before {
	display: none;
}

.icon-inline.right-icons {
	display: inline-block;
}

.icon-inline.right-icons .search_modal_button,
.icon-inline.right-icons .login-block,
.icon-inline.right-icons .toggle_menu_side_special {
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	display: inline-block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 40px;
}

@media (min-width: 1200px) {
	.icon-inline.right-icons .search_modal_button,
	.icon-inline.right-icons .login-block,
	.icon-inline.right-icons .toggle_menu_side_special {
		margin-left: 20px;
	}
}

.icon-inline.right-icons .search_modal_button {
	padding: 0;
}

.icon-inline.right-icons i {
	color: var(--colorMain);
	font-size: 14px;
}

.page_header_side_special .close-wrapper {
	display: none !important;
}

.page_header_side_special .mainmenu_side_wrapper .widget-first {
	margin-top: 30px;
}

.page_header_side_special .mainmenu_side_wrapper .widget-title {
	margin-bottom: 14px;
}

.page_header_side_special .mainmenu_side_wrapper .widget_archive li a,
.page_header_side_special .mainmenu_side_wrapper .widget_categories li a,
.page_header_side_special .mainmenu_side_wrapper .widget_nav_menu li a,
.page_header_side_special .mainmenu_side_wrapper .widget_meta li a,
.page_header_side_special .mainmenu_side_wrapper .widget_pages li a {
	display: inline-block;
	-webkit-box-flex: 10;
	-webkit-flex-grow: 10;
	        flex-grow: 10;
	padding-bottom: 9px;
	padding-top: 9px;
}

.page_header_side_special .mainmenu_side_wrapper .wordpress-helpdesk-faq-list li,
.page_header_side_special .mainmenu_side_wrapper .widget_faq_topics li {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	list-style: none;
	margin-bottom: 0;
	padding: 9px 0 9px 0;
}

.page_header_side_special_overlay {
	background-color: var(--colorMainRgba05);
	bottom: 0;
	cursor: url("../img/cursor.png"), auto;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background 0.15s ease-in-out 0s;
	transition: background 0.15s ease-in-out 0s;
	width: 100%;
	z-index: 1001;
}

.page_header_side_special_overlay.hidden {
	visibility: hidden !important;
}

.page_header_4 .toggle_menu {
	background-color: transparent;
}

/* 
** Intro Section Styles
*/
.page_slider {
	clear: both;
	overflow: hidden;
	position: relative;
}

.page_slider > img {
	width: 100%;
}

.page_slider h2 {
	font-size: 3em;
	line-height: 1;
	margin: 0;
}

.page_slider h3 {
	font-size: 2em;
	line-height: 1;
	margin: 0;
}

.page_slider h4 {
	font-size: 1.5em;
	margin: 0;
}

.page_slider p {
	font-size: 1.2em;
	margin: 0;
}

@media (min-width: 992px) {
	.page_slider h2 {
		font-size: 6em;
	}

	.page_slider h3 {
		font-size: 3em;
	}

	.page_slider h4 {
		font-size: 2.5em;
	}

	.page_slider p {
		font-size: 1.7em;
	}
}

.page_slider .flex-direction-nav .flex-prev {
	left: 2%;
	opacity: 1;
}

.page_slider .flex-direction-nav .flex-next {
	opacity: 1;
	right: 2%;
}

.page_slider .flexslider .slides {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.page_slider .flexslider:before,
.page_slider .flexslider:after {
	clear: both;
	content: "";
	display: block;
}

.page_slider .flexslider .intro_layer img {
	display: inline-block;
	width: auto;
}

.page_slider .flexslider.slider-shadow {
	padding-bottom: 50px;
}

.page_slider .flexslider.slider-shadow:before,
.page_slider .flexslider.slider-shadow:after {
	background: transparent;
	bottom: 65px;
	box-shadow: 0 25px 20px rgba(0, 0, 0, 0.3);
	content: "";
	height: 20%;
	left: 10px;
	max-width: 400px;
	position: absolute;
	-webkit-transform: rotate(-3deg);
	    -ms-transform: rotate(-3deg);
	        transform: rotate(-3deg);
	width: 50%;
	z-index: 1;
}

.page_slider .flexslider.slider-shadow:after {
	left: auto;
	right: 10px;
	-webkit-transform: rotate(3deg);
	    -ms-transform: rotate(3deg);
	        transform: rotate(3deg);
}

.page_slider .intro_layers_wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.page_slider .intro_after_featured_word {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 400px) {
	.page_slider .intro_after_featured_word {
		display: none;
	}
}

.page_slider .intro_layers {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	padding: 20px 0;
	width: 100%;
}

.page_slider .flex-control-nav {
	bottom: 55px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	position: absolute;
	width: 100%;
}

@media (max-width: 991px) {
	.page_slider .flex-control-nav {
		display: none;
	}
}

.page_slider .flex-control-nav li {
	display: block;
	padding-bottom: 6px;
	padding-top: 6px;
}

.page_slider .flex-control-nav li a {
	background: #fff;
	border-color: #fff;
	opacity: 0.5;
}

.page_slider .flex-control-nav li a.flex-active {
	opacity: 1;
}

@media (min-width: 300px) {
	.page_slider .cs,
	.page_slider .ds {
		background-color: transparent;
	}

	.page_slider .container-fluid,
	.page_slider .container,
	.page_slider img + .container {
		bottom: 0;
		left: 0;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		right: 0;
		top: 0;
	}

	.page_slider [class*="col-"] {
		margin-bottom: 0;
		margin-top: 0;
		min-height: 0;
		position: static;
	}

	.page_slider .intro_layers_wrapper {
		bottom: 0;
		height: 100%;
		left: 15px;
		position: absolute;
		right: 15px;
		top: 0;
		z-index: 5;
	}
}

@media (min-width: 300px) and (min-width: 600px) {
	.boxed .page_slider .intro_layers_wrapper {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media (min-width: 300px) {
	.page_slider .intro_text_top .intro_layers {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		        justify-content: flex-start;
	}

	.page_slider .intro_text_bottom .intro_layers {
		-webkit-box-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}

	.page_slider .intro_before_featured_word {
		font-size: 20px;
		line-height: 0.8;
		margin: 0;
		padding: 0 0.2em;
		text-align: left;
		text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
	}

	.page_slider .intro_featured_word {
		font-size: 50px;
		line-height: 0.9;
		margin: 0;
		text-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
		white-space: nowrap;
	}

	.page_slider .intro_after_featured_word {
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 1em;
		text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
		text-transform: uppercase;
	}
}

@media (max-width: 400px) {
	.page_slider .intro_featured_word {
		font-size: 40px;
	}
}

@media (min-width: 992px) {
	.page_slider .intro_layers_wrapper {
		padding: 100px 0;
	}

	.page_slider .intro_before_featured_word {
		font-size: 42px;
	}

	.page_slider .intro_featured_word {
		font-size: 138px;
	}

	.page_slider .intro_after_featured_word {
		font-size: 12px;
		letter-spacing: 2em;
	}
}

@media (min-width: 1600px) {
	.page_slider .intro_before_featured_word {
		font-size: 62px;
	}

	.page_slider .intro_featured_word {
		font-size: 238px;
		white-space: nowrap;
	}

	.container .page_slider .intro_featured_word {
		font-size: 138px;
	}
}

@media (max-width: 991px) {
	.page_slider {
		text-align: center;
	}
}

/* Team Plugin Styles */
.team-item .item-title {
	font-size: 24px;
	margin-bottom: 0.2em;
}

@media (max-width: 1240px) {
	.team-item .item-title {
		font-size: 18px;
		line-height: 1.2;
	}
}

.team-item .position {
	margin-bottom: 0 !important;
}

@media (max-width: 1240px) {
	.team-item .position {
		letter-spacing: 0;
	}
}

.single-team-member {
	margin-top: 10px;
}

.single-team-member .image-wrap {
	margin-bottom: 30px;
}

.single-team-member .info-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

.single-team-member .team-social-icons {
	margin-bottom: 35px;
}

.single-team-member .info-item > * {
	display: inline-block;
}

.single-team-member .info-item .title {
	color: #4c4c4c;
	font-weight: 500;
	min-width: 140px;
}

/* Team Slider Shortcode */
.shortcode-team-slider {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

@media (min-width: 300px) {
	.shortcode-team-slider .container-fluid {
		position: static;
	}
}

.shortcode-team-slider .slider-title {
	color: #b2a9d4;
	display: block;
	font-size: 140px;
	font-weight: 900;
	left: -14%;
	letter-spacing: -9px;
	opacity: 0.1;
	position: absolute;
	text-transform: uppercase;
	top: 42%;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	word-break: unset;
	z-index: 4;
}

.shortcode-team-slider .menu__item {
	color: #4c4c4c;
	cursor: pointer;
	display: block;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-bottom: 18px;
	opacity: 0.3;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.shortcode-team-slider .menu__item:hover,
.shortcode-team-slider .menu__item:focus {
	opacity: 1;
}

.shortcode-team-slider .menu__item {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.shortcode-team-slider .menu__item .position {
	font-weight: 300;
}

.shortcode-team-slider .menu__item span.position:after {
	color: var(--darkgreyColor);
	content: " / ";
	opacity: 0.1 !important;
}

.shortcode-team-slider .menu__item span {
	color: var(--colorMain);
}

.shortcode-team-slider .menu__item.flex-active,
.shortcode-team-slider .menu__item.flex-active:hover,
.shortcode-team-slider .menu__item.flex-active:focus {
	opacity: 1;
}

.shortcode-team-slider .flexslider-controls {
	left: 6%;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: auto;
	z-index: 4;
}

.shortcode-team-slider .flexslider-controls > ul {
	padding-left: 0;
}

.shortcode-team-slider .team-social-icons {
	margin-bottom: 20px;
	margin-top: 0;
	z-index: 4;
}

.shortcode-team-slider .team-social-icons a.social-icon.color-icon.border-icon.rounded-icon {
	border-style: solid;
	border-width: 3px;
	height: 40px;
	line-height: 34px;
	margin-bottom: 4px;
	padding: 0;
	width: 40px;
}

.shortcode-team-slider .team-social-icons {
	display: none;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.shortcode-team-slider .menu__item.flex-active + .team-social-icons {
	display: block;
}

@media (min-width: 768px) {
	.shortcode-team-slider .menu__item {
		font-size: 30px;
	}

	.shortcode-team-slider .team-social-icons {
		margin-bottom: 0;
		position: absolute;
		right: 10px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		width: 60px;
	}

	.shortcode-team-slider .team-social-icons a.social-icon.color-icon.border-icon.rounded-icon {
		display: inline-block;
		margin-bottom: 10px !important;
		margin-left: 0;
	}

	.shortcode-team-slider .team-social-icons a.social-icon.color-icon.border-icon.rounded-icon:last-child {
		margin-bottom: 0 !important;
	}
}

@media (min-width: 1200px) {
	.shortcode-team-slider .team-social-icons {
		right: 40px;
	}

	.shortcode-team-slider .team-social-icons a.social-icon.color-icon.border-icon.rounded-icon {
		height: 60px;
		line-height: 54px;
		width: 60px;
	}

	.shortcode-team-slider .menu__item {
		font-size: 40px;
	}
}

@media (min-width: 1600px) {
	.shortcode-team-slider .flexslider-controls {
		left: 17%;
	}

	.shortcode-team-slider .slider-title {
		display: block;
	}

	.shortcode-team-slider .team-social-icons {
		right: 80px;
	}
}

@media (max-width: 1599px) {
	.shortcode-team-slider .slider-title {
		display: none;
	}
}

@media (max-width: 767px) {
	.shortcode-team-slider .slides img {
		position: relative;
		right: 87px;
	}

	.shortcode-team-slider .menu__item span.position:after {
		display: none;
	}

	.shortcode-team-slider .flexslider-controls {
		left: 0;
		padding: 30px 15px 80px;
		position: relative;
		right: 0;
		text-align: center;
		top: auto;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		width: 100%;
	}

	.shortcode-team-slider .team-social-icons {
		margin-bottom: 20px;
		margin-top: 20px;
	}
}

.team-item.team-item2.vertical-item {
	padding: 40px 40px 31px;
}

@media (min-width: 768px) {
	.team-item.team-item2.vertical-item {
		padding: 50px 40px 41px;
	}
}

@media (min-width: 1200px) {
	.team-item.team-item2.vertical-item {
		padding: 70px 70px 61px;
	}
}

.team-item.team-item2.vertical-item .team-social-icons a.fa {
	font-weight: 900;
	margin-left: 14px;
	margin-right: 14px;
}

.team-item.team-item2.vertical-item .team-social-icons a.fa:first-child {
	margin-left: 0;
}

.team-item.team-item2.vertical-item .team-social-icons a.fa:last-child {
	margin-right: 0;
}

.service-item {
	padding: 40px 30px 38px;
}

@media (min-width: 768px) {
	.service-item {
		padding: 50px 40px 48px;
	}
}

@media (min-width: 1200px) {
	.service-item {
		padding: 70px 50px 68px;
	}
}

.service-item .item-title a:hover {
	color: var(--colorMain);
}

.service-item.service-hover:hover img {
	-webkit-transform: rotate(360deg);
	    -ms-transform: rotate(360deg);
	        transform: rotate(360deg);
	-webkit-transition: -webkit-transform .6s;
	transition: -webkit-transform .6s;
	transition: transform .6s;
	transition: transform .6s, -webkit-transform .6s;
}

/*
** Subpages
*/
/*
** 404
*/
.error404 .content-404 {
	margin-bottom: 84px;
	margin-top: 90px;
}

.error404 .content-404 .not_found {
	background-image: url("../img/404.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 80px;
	margin-bottom: 10px;
	width: inherit;
}

@media (min-width: 1024px) {
	.error404 .content-404 .not_found {
		height: 280px;
		margin-bottom: 38px;
	}
}

.error404 .content-404 .not_found_title {
	margin-bottom: 16px;
}

.error404 .content-404 .btn-404 {
	margin-top: 20px;
}

.error404 .content-404 .btn-404 span {
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}

@media (min-width: 1024px) {
	.error404 .content-404 .btn-404 span {
		min-width: 270px;
		padding: 30px 35px;
	}
}

/*
** Blog
*/
.sticky {
	background-color: #f7f6fb;
	border: 1px solid var(--colorMain);
	padding: 30px;
}

@media (min-width: 1200px) {
	.sticky {
		padding: 55px 55px;
	}
}

.sticky .featured-post {
	display: none;
}

.sticky .item-content {
	border-bottom: 0 !important;
	padding: 0 !important;
}

.sticky .item-content p:last-of-type,
.sticky .item-content ul:last-of-type {
	margin-bottom: 0;
}

.sticky .entry-footer {
	clear: both;
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
}

.sticky .entry-footer {
	display: none;
}

.sticky .more-link {
	display: none;
}

.blog .column-main {
	margin-bottom: 10px;
}

.blog_slider {
	margin-bottom: 60px;
}

@media (min-width: 992px) {
	.blog_slider .intro_layers_wrapper {
		left: 130px;
		right: 130px;
	}
}

@media (max-width: 767px) {
	.blog_slider {
		display: none;
	}
}

.blog-featured-posts .post {
	height: 100%;
}

.entry-title,
.entry-title:last-child {
	font-size: 30px;
	line-height: 1.2;
	margin: 0;
	text-transform: none;
}

h4.entry-title {
	font-size: 24px;
	margin-bottom: 0.7em;
}

.post_color1 h4.entry-title a:hover {
	color: var(--colorMain);
}

.post_color2 h4.entry-title a:hover {
	color: var(--colorMain2);
}

.post_color3 h4.entry-title a:hover {
	color: var(--colorMain8);
}

.item-media + .item-content h1.entry-title {
	margin-top: 5px;
}

.post {
	position: relative;
}

.post .item-content {
	position: relative;
}

@media (min-width: 1200px) {
	.post.vertical-item.content-padding .item-content {
		padding: 55px 55px;
	}
}

.post > .fa {
	color: #fff;
	position: absolute;
	right: 9px;
	top: 7px;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	z-index: 2;
}

.post > .fa:before {
	position: relative;
	z-index: 3;
}

.post > .fa:after {
	border-color: transparent transparent var(--colorMain) transparent;
	border-style: solid;
	border-width: 0 40px 40px 40px;
	content: "";
	display: block;
	height: 0;
	left: -35px;
	position: absolute;
	top: -14px;
	width: 0;
	z-index: 2;
}

.post + .post {
	margin-top: 60px;
}

.post h3.entry-title + .entry-meta {
	margin-top: -0.65em;
}

.post.readmore-hidden .more-link,
.post.readmore-hidden .read-more-button {
	display: none;
}

.post.readmore-show .more-link {
	display: none;
}

.post h1.entry-title + .entry-meta {
	margin: -1em 0 2em;
}

.post.post-quote,
.post.post-status {
	height: auto;
	padding: 35px 30px 30px;
	text-align: center;
}

@media (min-width: 992px) {
	.post.post-quote,
	.post.post-status {
		padding: 60px 60px 50px;
	}
}

.post.post-quote .post-thumbnail,
.post.post-status .post-thumbnail {
	display: none;
}

.post ul,
.post ol {
	margin-bottom: 40px;
}

.post ul:last-child,
.post ol:last-child {
	margin-bottom: 0;
}

.post-thumbnail {
	text-align: center;
}

.post-thumbnail > img {
	width: auto;
}

.post-thumbnail .owl-dots {
	counter-reset: number;
	margin-top: 10px;
	-webkit-tap-highlight-color: transparent;
	text-align: center;
}

@media (min-width: 992px) {
	.post-thumbnail .owl-dots {
		bottom: auto !important;
		left: auto !important;
		margin-top: 0;
		position: absolute;
		right: 20px !important;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		width: 30px;
	}
}

.post-thumbnail .owl-dots .owl-dot {
	*display: inline;
	-webkit-backface-visibility: visible;
	display: inline-block;
	height: 30px;
	margin: 0 10px;
	position: relative;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
	width: auto;
	zoom: 1;
}

@media (min-width: 992px) {
	.post-thumbnail .owl-dots .owl-dot {
		margin: 5px 0;
	}
}

.post-thumbnail .owl-dots .owl-dot:after {
	color: #fff;
	content: counter(number, decimal-leading-zero);
	counter-increment: number;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
	z-index: 1;
}

.ds .post-thumbnail .owl-dots .owl-dot:after,
.cs .post-thumbnail .owl-dots .owl-dot:after {
	color: #fff;
}

.post-thumbnail .owl-dots .owl-dot span {
	border: 0;
	display: block;
	height: 0;
	opacity: 1;
	position: relative;
	width: 0;
	z-index: 2;
}

.post-thumbnail .owl-dots .owl-dot.active:after {
	text-decoration: line-through;
}

.post-thumbnail + .entry-content {
	margin-top: 0;
}

.post .item-media-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	text-align: center;
}

.post .item-media-wrap .post-thumbnail {
	display: inline-block;
}

.post .item-media-wrap .post-thumbnail.item-media-gallery {
	display: block;
}

.post.format-gallery .item-media-wrap {
	display: block;
	text-align: center;
}

.entry-meta-corner {
	background-color: var(--colorMain);
	color: #fff;
	position: absolute;
}

.entry-meta-corner .day {
	background-color: var(--darkgreyColor);
	display: block;
	padding: 0.1em 0.6em;
}

.entry-meta-corner .month {
	padding: 0.1em 0.3em;
}

.post-password-form input[type="password"] {
	margin-right: 10px;
	margin-top: 0.5em;
	width: auto;
}

.post-password-form input[type="submit"] {
	border: 0;
	border-radius: 4px;
	display: inline-block;
	height: 100%;
	max-width: 180px;
	padding: 19px 15px;
	position: relative;
	top: 6px;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: 100%;
}

.entry-footer,
.entry-meta {
	clear: both;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	letter-spacing: 0;
	line-height: 1;
	line-height: 1.6em;
	margin-bottom: 1em;
	text-transform: uppercase;
}

.entry-footer a,
.entry-meta a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	letter-spacing: 0;
	line-height: 1.6em;
	text-transform: uppercase;
}

.post_color2 .entry-footer a,
.post_color2
.entry-meta a {
	color: var(--colorMain2);
}

.post_color3 .entry-footer a,
.post_color3
.entry-meta a {
	color: var(--colorMain8);
}

.entry-footer:before,
.entry-footer:after,
.entry-meta:before,
.entry-meta:after {
	clear: both;
	content: "";
	display: block;
}

.entry-footer:empty,
.entry-meta:empty {
	display: none;
}

.entry-footer {
	margin-bottom: 50px;
	margin-top: 40px;
}

.entry-footer .fa {
	margin-right: 10px;
}

.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.entry-header:before,
.entry-header:after {
	clear: both;
	content: "";
	display: block;
}

.entry-header {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	margin-bottom: 25px;
}

.entry-header:before,
.entry-header:after {
	display: none;
}

.entry-header .avatar,
.entry-footer .avatar {
	background-color: #fff;
	border: 5px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	display: block;
	min-width: 100px;
	z-index: 2;
}

@media (max-width: 576px) {
	.entry-header .avatar,
	.entry-footer .avatar {
		display: none;
	}
}

.has-post-thumbnail .entry-header .avatar,
.has-post-thumbnail
.entry-footer .avatar {
	bottom: auto;
	position: absolute;
	right: 20px;
	top: -50px;
}

@media (min-width: 1200px) {
	.has-post-thumbnail .entry-header .avatar,
.has-post-thumbnail
  .entry-footer .avatar {
		right: 60px;
	}
}

.entry-header .author-link,
.entry-footer .author-link {
	margin-right: 20px;
}

.entry-header .author-link i,
.entry-footer .author-link i {
	margin-right: 8px;
}

.post_color2 .entry-header .author-link i,
.post_color2
.entry-footer .author-link i {
	color: var(--colorMain2);
}

.post_color3 .entry-header .author-link i,
.post_color3
.entry-footer .author-link i {
	color: var(--colorMain8);
}

.entry-header .date-link,
.entry-footer .date-link {
	margin-right: 20px;
}

.entry-header .date-link::before,
.entry-footer .date-link::before {
	color: var(--colorMain);
	content: "\f073";
	font-family: "FontAwesome";
	font-size: 14px;
	font-weight: 500;
	margin-right: 8px;
	position: relative;
	top: 1px;
}

.post_color2 .entry-header .date-link::before,
.post_color2
.entry-footer .date-link::before {
	color: var(--colorMain2);
}

.post_color3 .entry-header .date-link::before,
.post_color3
.entry-footer .date-link::before {
	color: var(--colorMain8);
}

.entry-header .entry-tags,
.entry-footer .entry-tags {
	display: inline-block;
}

.entry-header .entry-tags::before,
.entry-footer .entry-tags::before {
	color: var(--colorMain);
	content: "\f02b";
	font-family: "FontAwesome";
	font-size: 14px;
	font-weight: 500;
	margin-right: 8px;
	position: relative;
	top: 1px;
}

.post_color2 .entry-header .entry-tags::before,
.post_color2
.entry-footer .entry-tags::before {
	color: var(--colorMain2);
}

.post_color3 .entry-header .entry-tags::before,
.post_color3
.entry-footer .entry-tags::before {
	color: var(--colorMain8);
}

.entry-header .entry-meta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.entry-header .entry-meta > * {
	margin-bottom: 5px;
	margin-top: 5px;
}

.entry-content .post-meta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	margin-top: 30px;
}

.entry-content .post-meta .btn.read-more-button {
	margin-bottom: 0 !important;
	margin-right: 20px;
}

.entry-content .post-meta .btn.read-more-button span {
	background-color: #f7f6fb;
}

.entry-content .post-meta .btn.read-more-button:hover span,
.entry-content .post-meta .btn.read-more-button:focus span {
	background-color: transparent;
}

.entry-content .post-meta .comments-link {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	margin-right: 15px;
	text-transform: uppercase;
}

.entry-content .post-meta .comments-link::before {
	color: var(--colorMain);
	content: "\f086";
	font-family: "FontAwesome";
	font-size: 16px;
	font-weight: 500;
	margin-right: 8px;
	position: relative;
	top: 0;
}

.post_color2 .entry-content .post-meta .comments-link::before {
	color: var(--colorMain2);
}

.post_color3 .entry-content .post-meta .comments-link::before {
	color: var(--colorMain8);
}

.post_color2 .entry-content .post-meta .comments-link a:hover {
	color: var(--colorMain2);
}

.post_color3 .entry-content .post-meta .comments-link a:hover {
	color: var(--colorMain8);
}

.cat-links {
	clear: both;
	display: block;
	font-size: 0;
	line-height: 1;
	margin-bottom: 12px;
	margin-top: 20px;
}

.cat-links:last-child {
	margin-bottom: 0;
	margin-top: 12px;
}

.cat-links i {
	color: var(--darkgreyColor);
	font-size: 12px;
	padding-right: 10px;
}

.cat-links a {
	background-color: var(--colorMain3);
	border: 1px solid var(--colorMain3);
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	margin: 4px 4px 0 0;
	padding: 0.45em 0.7em 0.35em;
	text-transform: uppercase;
}

.cat-links a:hover {
	background-color: transparent;
	color: var(--colorMain3);
}

.entry-footer .edit-link,
.entry-header .edit-link {
	float: right;
}

.entry-footer .edit-link a:before,
.entry-header .edit-link a:before {
	content: "\f040";
	font-family: "FontAwesome";
	padding-right: 0.4em;
}

.entry-footer .entry-title + .edit-link,
.entry-header .entry-title + .edit-link {
	position: absolute;
	right: 15px;
	top: 0.5em;
}

.post-adds {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	clear: both;
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: flex !important;
	line-height: 1;
	margin-bottom: 0;
}

.post-adds i {
	width: 14px !important;
}

.post-adds a {
	margin: 0;
}

.post-adds .dropdown-menu {
	border: none;
	padding: 0;
}

.post-adds .share_buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.post-adds .share_buttons a {
	display: block;
	margin: 0;
}

.post-adds .share_button {
	background-color: var(--colorMain);
	color: #fff;
	line-height: 1;
	text-align: center;
}

.post-adds .likes-count {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.post-adds .likes-count > * {
	display: inline-block;
}

.post-adds .like_button {
	color: var(--colorMain);
	display: block;
	line-height: 1;
	margin-right: 10px;
	text-align: center;
}

.post-adds .like_button span {
	display: none;
}

.post_color2 .post-adds .like_button {
	color: var(--colorMain2);
}

.post_color3 .post-adds .like_button {
	color: var(--colorMain8);
}

.post-adds .votes_count {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding: 0;
	text-transform: uppercase;
}

.post-adds .views-count {
	background-color: var(--colorMain);
	color: #fff;
	line-height: 60px;
	margin-left: auto;
	padding: 0 30px;
}

@media (max-width: 767px) {
	.post-adds {
		-webkit-flex-wrap: wrap;
		        flex-wrap: wrap;
	}

	.post-adds .share_button {
		line-height: 40px;
		width: 40px;
	}

	.post-adds .like_button {
		line-height: 40px;
		width: auto;
	}

	.post-adds .views-count {
		line-height: 40px;
		padding: 0 15px;
	}
}

@media (max-width: 400px) {
	.post-adds .item-views-word {
		display: none;
	}
}

.single {
	/* post author */
}

.single .like_button_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-shrink: 0;
	        flex-shrink: 0;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	        justify-content: flex-end;
	line-height: 1;
	min-width: 160px;
}

.single .post-adds {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	color: #4c4c4c;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	font-size: 12px;
	font-weight: 500;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	letter-spacing: 0.2em;
	line-height: 1;
	line-height: 1.6em;
	text-transform: uppercase;
}

.single .post-adds .author-link {
	display: none;
}

.single .post-adds > span {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	margin-bottom: 5px;
	margin-right: 25px;
	margin-top: 5px;
}

.single .post-adds > span:last-child {
	margin-right: 0;
}

@media (min-width: 577px) and (max-width: 991px) {
	.single .post-adds {
		display: block;
	}

	.single .post-adds > span {
		display: inline-block;
		width: 43%;
	}
}

@media (max-width: 576px) {
	.single .post-adds {
		display: block;
	}

	.single .post-adds > span {
		display: block;
		margin: 5px 0;
		width: 100%;
	}
}

.single .post-adds a {
	color: #4c4c4c;
	display: inline-block;
	margin: 0;
}

.single .post-adds a:hover {
	color: var(--colorMain);
}

.single .post-adds i {
	color: var(--colorMain);
	font-size: 14px !important;
	margin-right: 8px;
}

.single .author-bio {
	margin-top: 48px;
}

.single .author-bio a.fa {
	margin-bottom: 0;
}

.single .author-bio .item-media {
	border: 10px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	height: 270px;
	width: 270px;
}

.single .author-bio h5 {
	margin: 0;
}

.single .author-bio p {
	margin: 0;
}

.single .author-bio .bio-desk {
	margin: 13px 0;
}

.single .author-bio .item-content {
	margin-left: 30px;
}

.single .cat-links {
	margin-bottom: 30px;
}

.single .entry-footer-wrap {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	        align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.single .entry-footer-wrap .like_button i {
	color: var(--colorMain3);
	margin-right: 10px;
}

.single .entry-footer-wrap .like_button a:hover {
	color: var(--colorMain3);
}

.single .entry-footer-wrap .like_button span {
	display: inline-block;
}

.single .share_buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.single .share_buttons a {
	display: block;
	width: 100%;
}

.single .share_buttons a:before {
	height: 60px;
	line-height: 60px;
}

.single .share_buttons a.fa {
	margin: 0 1px 0 0;
}

.single .share_buttons a.fa:last-child {
	border-radius: 0 0 5px 0;
	margin: 0;
}

.single .share_buttons a.fa:first-child {
	border-radius: 0 0 0 5px;
}

.single .related-posts {
	margin-top: 46px;
}

.single .related-posts .related-posts-title {
	margin-bottom: 1.05em;
}

.single .related-posts .top-right-nav .owl-nav {
	display: block;
	right: -10px;
}

@media (max-width: 575px) {
	.single .related-posts .top-right-nav .owl-nav {
		top: -50px;
	}
}

.single .related-posts .item-title {
	color: #4c4c4c;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0.2em;
	margin-top: 1em;
}

.single .related-posts .author-link {
	display: none;
}

.single .related-posts .date-link {
	font-weight: 500;
}

.single .related-posts .date-link a {
	color: var(--colorMain3);
}

/*gallery post*/
.post .item-media + .item-content {
	padding: 60px;
}

@media (max-width: 991px) {
	.post .item-media + .item-content {
		padding: 40px;
	}
}

@media (max-width: 575px) {
	.post .item-media + .item-content {
		padding: 20px 20px;
	}

	.post .item-media + .item-content .entry-content {
		overflow-x: auto;
	}

	.post .item-media + .item-content hr {
		margin-bottom: 20px;
		margin-top: 20px;
	}
}

.post .gallery {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: 0 -7px 30px;
}

.post .gallery .gallery-item {
	padding: 0 7px;
	width: 50%;
}

.post .gallery .gallery-item > img {
	border: 0;
	border-radius: 5px;
	overflow: hidden;
}

.post .gallery .gallery-item figcaption {
	padding: 10px 0 5px;
}

@media (min-width: 992px) {
	.post .gallery.gallery-columns-1 .gallery-item {
		width: 100%;
	}

	.post .gallery.gallery-columns-2 .gallery-item {
		width: 50%;
	}

	.post .gallery.gallery-columns-3 .gallery-item {
		width: 33.33%;
	}

	.post .gallery.gallery-columns-4 .gallery-item {
		width: 25%;
	}

	.post .gallery.gallery-columns-5 .gallery-item {
		width: 20%;
	}

	.post .gallery.gallery-columns-6 .gallery-item {
		width: 16.66%;
	}

	.post .gallery.gallery-columns-7 .gallery-item {
		width: 14.28%;
	}

	.post .gallery.gallery-columns-8 .gallery-item {
		width: 12.5%;
	}

	.post .gallery.gallery-columns-9 .gallery-item {
		width: 11.11%;
	}
}

/*post author*/
.author-bio a.fa {
	margin-bottom: 0;
}

/*comments*/
.comments-title {
	margin-bottom: 60px;
}

#cancel-comment-reply-link {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.6em;
	text-transform: uppercase;
}

.comments-area {
	margin-top: 70px;
	padding: 50px 60px 60px;
}

@media (max-width: 576px) {
	.comments-area {
		margin-top: 35px;
		padding: 20px 20px;
	}
}

.comments-area .comment-respond {
	margin-bottom: 30px;
}

.comments-area .comment-list {
	border-bottom: 1px solid rgba(76, 76, 76, 0.1);
	list-style: none;
	padding: 0;
}

.comments-area .comment-list li.comment {
	border-top: 1px solid rgba(76, 76, 76, 0.1);
}

.comments-area .comment-list ol.children {
	border-bottom: 0;
	list-style: none;
	padding-left: 15px;
}

@media (min-width: 1200px) {
	.comments-area .comment-list ol.children {
		padding-left: 50px;
	}
}

@media (min-width: 768px) {
	.comments-area .comment-list ol.children {
		padding-left: 35px;
	}
}

.comments-area .comment-list ol.children ol.children ol.children {
	padding-left: 15px;
}

.comments-area .comment-list ol.children .comment-meta img {
	left: -45px;
	max-width: 60px;
}

.comments-area .comment-list ol.children .comment-body {
	margin-left: 47px;
	margin-top: 40px;
}

@media (max-width: 575px) {
	.comments-area .comment-list ol.children .comment-body {
		margin-left: 0;
		margin-top: 20px;
	}
}

.comment-body {
	margin-bottom: 3px;
	margin-left: 70px;
	margin-top: 45px;
	padding: 10px 0 20px 40px;
	position: relative;
}

@media (max-width: 575px) {
	.comment-body {
		margin-top: 20px;
		padding: 10px 20px 20px 20px;
	}
}

.comment-body ol,
.comment-body ol ol {
	padding-left: 20px;
}

.comment-meta {
	margin-bottom: 1em;
}

.comment-meta img {
	border: 5px solid #fff;
	border-radius: 50%;
	left: -70px;
	max-width: 80px;
	position: absolute;
	top: -1px;
}

.comment-meta .comment-author {
	color: #4c4c4c;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
}

.comment-meta .comment-metadata {
	display: inline-block;
	font-size: 16px;
}

@media (max-width: 575px) {
	.comment-meta .comment-metadata {
		display: block;
	}
}

@media (max-width: 575px) {
	.comment-meta .comment-metadata > a:before {
		display: none;
	}
}

.comment-meta .comment-metadata a {
	color: var(--colorMain3);
}

.comment-meta .comment-metadata a:hover {
	opacity: 0.7;
}

.comment-meta .comment-metadata a:before {
	color: #4c4c4c;
	content: "\f111";
	font-family: "FontAwesome";
	font-size: 5px;
	padding: 0 10px;
	position: relative;
	top: -4px;
}

.comment-meta b {
	font-weight: inherit;
}

@media (max-width: 575px) {
	.comment-body {
		margin-left: 0;
	}

	ol ol .comment-body {
		margin-left: 10px;
	}

	.comment-meta img {
		display: none;
	}
}

.reply {
	position: absolute;
	right: 0;
	top: 0;
}

@media (max-width: 575px) {
	.reply {
		top: 9px;
	}
}

.reply a {
	font-size: 0;
}

.reply a:before {
	color: #4c4c4c;
	content: "\f112";
	font-family: FontAwesome;
	font-size: 14px;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.reply a:hover:before {
	color: var(--colorMain);
}

.comment-content p {
	margin-bottom: 0.5em;
}

.no-comments,
.comment-awaiting-moderation {
	opacity: 0.7;
}

.comments-pagination {
	margin: 2em 0 3em;
}

/*comment respond form*/
.comment-form {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.comment-form p {
	margin-bottom: 24px;
	width: 100%;
}

.comment-form p.form-submit {
	margin-bottom: 0;
	margin-top: 10px;
}

.comment-form label {
	display: none;
}

.comment-form textarea,
.comment-form input {
	width: 100%;
}

.comment-form input[type=checkbox] {
	margin: 0;
	visibility: hidden;
}

@media (min-width: 992px) {
	.comment-form .comment-form-author,
	.comment-form .comment-form-email {
		width: 50%;
	}

	.comment-form .comment-form-author {
		padding-right: 20px;
	}
}

/* post formats */
.format-status.vertical-item.content-padding .item-content,
.format-quote.vertical-item.content-padding .item-content {
	padding: 0;
}

.format-status .entry-header,
.format-quote .entry-header {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	margin-top: 20px;
}

.format-status .entry-header .avatar,
.format-quote .entry-header .avatar {
	border-radius: 50%;
	bottom: auto;
	display: block;
	margin: 0 auto 8px;
	max-width: 120px;
	position: relative;
	right: auto;
	top: auto;
}

.format-status blockquote:before,
.format-quote blockquote:before {
	display: none;
}

.format-status .title,
.format-quote .title {
	margin-bottom: 22px;
}

.format-status .cat-links,
.format-quote .cat-links {
	margin-bottom: 5px;
}

.format-status.post .entry-title + .entry-meta,
.format-quote.post .entry-title + .entry-meta {
	margin: 0 0 25px;
}

.format-status .entry-date,
.format-quote .entry-date {
	margin-top: -7px;
}

.format-status .author-link a,
.format-status .date-link a,
.format-quote .author-link a,
.format-quote .date-link a {
	color: #fff;
}

.single .format-status .author-link a,
.single
.format-status .date-link a,
.single
.format-quote .author-link a,
.single
.format-quote .date-link a {
	color: #808080;
}

.format-status .author-link a:hover,
.format-status .date-link a:hover,
.format-quote .author-link a:hover,
.format-quote .date-link a:hover {
	color: var(--colorMain);
}

.format-status .entry-footer,
.format-quote .entry-footer {
	margin-bottom: 25px;
	margin-top: 28px;
}

.format-link .entry-header {
	margin-top: 14px;
}

.format-link .item-content .entry-content p > a {
	color: var(--colorMain3);
}

.format-link .item-content .entry-content p > a:hover {
	opacity: 0.6;
}

.format-link .post-meta {
	margin-top: 32px;
}

.format-chat .entry-content p {
	margin-bottom: 0.5em;
}

.format-chat .entry-content p:nth-child(2n) {
	padding: 0.4em 0;
}

.format-chat.post_color1 p:nth-child(2n) strong {
	color: var(--colorMain);
}

.format-chat.post_color2 p:nth-child(2n) strong {
	color: var(--colorMain2);
}

.format-chat.post_color3 p:nth-child(2n) strong {
	color: var(--colorMain8);
}

.format-chat .entry-content .post-meta {
	margin-top: 25px;
}

.format-quote {
	text-align: center;
}

.format-quote.cover-image .entry-header > i {
	display: inline-block;
	font-size: 2em;
	margin-bottom: 0.7em;
}

.format-quote blockquote {
	border: none;
	font-style: italic;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.format-quote blockquote cite {
	display: block;
	font-size: 16px;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.5;
	line-height: 1.6em;
	margin: 24px 0 0;
	text-transform: uppercase;
}

/* 
** Template Specific Styles
*/
#box_wrapper > section,
#box_wrapper > div > section {
	overflow: hidden;
}

#box_wrapper > section.page_topline,
#box_wrapper > section.page_toplogo,
#box_wrapper > section.overflow-visible,
#box_wrapper > div > section.overflow-visible {
	overflow: visible;
}

/*section with left slogan text and right background image*/
.dropdown-shopping-cart {
	font-weight: 700;
	position: relative;
}

.page_toplogo .dropdown-shopping-cart {
	margin-left: 24px;
}

.dropdown-shopping-cart i {
	font-size: 28px;
	padding-right: 14px;
}

.page_toplogo .dropdown-shopping-cart i {
	position: relative;
	top: 0.18em;
}

.dropdown-shopping-cart .badge {
	border-radius: 1em;
	left: 24px;
	padding: .28em .5em .2em;
	position: absolute;
}

.page_toplogo .dropdown-shopping-cart .badge {
	top: -0.3em;
}

.dropdown-shopping-cart:hover {
	color: inherit;
}

.dropdown-shopping-cart + .dropdown-menu {
	margin-top: 50px;
}

@media (min-width: 576px) {
	.dropdown-shopping-cart + .dropdown-menu {
		min-width: 430px;
	}
}

.page_title {
	position: relative;
}

.page_title h1,
.page_title h2 {
	line-height: 1;
	margin-bottom: 0.65em;
}

@media (min-width: 992px) {
	.page_title h1,
	.page_title h2 {
		font-size: 40px;
	}

	.page_title h1:last-child,
	.page_title h2:last-child {
		margin-bottom: 0;
	}
}

.page_title .small-title {
	margin-bottom: 0;
}

.page_title .small-title + .breadcrumb {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: none;
}

@media (min-width: 992px) {
	.page_title .title-inline {
		margin: 0;
	}

	.page_title .title-inline + .breadcrumb {
		border-left: 1px solid rgba(200, 200, 200, 0.35);
		margin-left: 30px;
		padding-left: 30px;
	}
}

.page_title .breadcrumb {
	line-height: 1.6;
}

.page_title [class*="container"] > .breadcrumb {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	padding: 0 15px;
	position: absolute;
	right: 15px;
}

.page_title_1 .breadcrumbs-wrap,
.page_title_5 .breadcrumbs-wrap {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	padding: 20px 0;
	position: absolute;
	width: 100%;
}

.page_title_1 .title,
.page_title_5 .title {
	color: #fff;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

@media (min-width: 992px) {
	.page_title_1 .title,
	.page_title_5 .title {
		font-size: 60px;
		margin-bottom: 20px !important;
		margin-top: 10px;
	}
}

.page_title_5 .breadcrumb {
	font-size: 16px;
	margin-top: 37px;
}

.page_map {
	height: 500px;
	text-align: center;
}

.page_map .marker {
	display: none;
}

.map_marker_description {
	max-width: 270px;
}

.map_marker_description h3 {
	line-height: 1;
	margin-bottom: 10px;
}

.map_marker_description img {
	max-width: 90% !important;
}

.gm-style .gm-style-iw {
	line-height: 1.6em;
	overflow: visible !important;
	text-align: center;
}

.gm-style .gm-style-iw > *:first-child {
	position: relative;
}

.gm-style .gm-style-iw:before {
	background: #fff;
	border-top: 2px solid var(--colorMain);
	bottom: -25px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	content: "";
	display: block;
	left: -16px;
	position: absolute;
	right: -16px;
	top: -25px;
}

.gm-style .gm-style-iw .icon-inline {
	display: inline-block;
	margin: 0.3em 0;
}

.gm-style .gm-style-iw .icon-inline .icon-styled {
	margin-right: 5px;
}

/*footer social buttons that hidden on half of their height*/
.page_footer {
	overflow: hidden;
	/*overriding Bootstrap Addons buttons*/
}

@media (min-width: 576px) {
	.page_footer a.border-icon:before,
	.page_footer a.bg-icon:before,
	.page_footer a.color-bg-icon:before {
		height: 40px;
		line-height: 40px;
		width: 40px;
	}
}

.page_footer .side-icon-box {
	margin: 0 0 20px;
}

.page_footer .side-icon-box > .icon-styled:first-child {
	margin-right: 0;
	position: relative;
	top: 0.5em;
}

.page_footer .side-icon-box .icon-styled + .media-body {
	margin-left: 20px;
}

.page_footer .col-md-12 .widget_social_buttons {
	margin-bottom: 0;
}

.page_footer .col-md-12 .widget_social_buttons a {
	margin: 0 4px 70px;
}

@media (min-width: 1200px) {
	.page_footer .col-md-12 .widget_social_buttons a {
		margin-bottom: 0;
		-webkit-transform: translateY(50%);
		    -ms-transform: translateY(50%);
		        transform: translateY(50%);
	}

	.page_footer .col-md-12 .widget_social_buttons a:hover {
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}

@media (min-width: 1200px) {
	.page_footer .bottom-includes {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
}

.page_footer .bottom-includes p {
	margin-bottom: 0;
}

.page_footer .bottom-includes p a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.page_footer .bottom-includes p i {
	color: var(--colorMain);
	font-size: 14px;
	margin-right: 9px;
}

#particles-js {
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.page_copyright {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.page_copyright .fs-16 {
	letter-spacing: 0.4em;
}

.item-hover-content {
	overflow: hidden;
	position: relative;
}

.item-hover-content .item-media {
	z-index: 2;
}

.item-hover-content .item-content {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	left: 0;
	position: absolute;
	right: 0;
}

.item-hover-content .item-content h4 {
	letter-spacing: 0.15em;
	line-height: 1;
	margin-bottom: 1.4em;
}

.item-hover-content .item-content h4 span {
	font-weight: 900;
}

@media (min-width: 1200px) {
	.item-hover-content.content-padding .item-content {
		padding: 54px 40px;
	}
}

.item-hover-content:hover {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	overflow: visible;
	z-index: 3;
}

.gallery-item.content-absolute {
	background: transparent;
	overflow: hidden;
	position: relative;
}

.gallery-item.content-absolute .item-content h4 {
	opacity: 0;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	z-index: 5;
}

.gallery-item.content-absolute:hover .item-content h4 {
	opacity: 1;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.form-error {
	color: #fb4f1b;
}

.rs-parallax-wrap.rev-button rs-mask-wrap {
	overflow: visible !important;
}

.rs-parallax-wrap.rev-button rs-mask-wrap .btn-borders:before {
	background-color: #218392;
	content: "";
	height: 2px;
	left: -26px;
	position: absolute;
	-webkit-transition: all 1s;
	transition: all 1s;
	width: 50px;
}

.rs-parallax-wrap.rev-button rs-mask-wrap .btn-borders:hover:before {
	left: -2px;
	opacity: 0.2;
	width: 102.5%;
}

/** custom classes for all elements */

@media (min-width: 1240px) {
	.negative-img-margin img {
		margin-top: -60px;
		z-index: 4;
	}
}

.negative-posts-margin .shortcode-posts {
	margin-top: -60px;
	z-index: 4;
}

@media (min-width: 1400px) {
	.mobile-overlay:before {
		display: none;
	}
}

.inline-list > ul {
	display: inline-block;
}

.inline-list > ul:first-child {
	margin-right: 40px;
}

.inline-list.inline-list2 > ul {
	display: inline-block;
}

.inline-list.inline-list2 > ul:first-child {
	margin-right: 20px;
}

@media (min-width: 1460px) {
	.inline-list.inline-list2 > ul:first-child {
		margin-right: 86px;
	}
}

.channel {
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	border: 1px solid rgba(76, 76, 76, 0.1);
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	height: 160px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
	margin: 0 auto;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: 270px;
}

@media (min-width: 992px) {
	.channel {
		height: 160px;
		width: 211px;
	}
}

@media (min-width: 1200px) {
	.channel {
		height: 160px;
		width: 270px;
	}
}

.channel:hover {
	cursor: pointer;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.35;
}

.overflow-visible {
	overflow: visible !important;
}

/* Revolution slider */
a.plans:hover > img {
	opacity: 1 !important;
}

/* Icon Box */
.icon-box.icon-v-center > * {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}

.icon-box.icon-v-center .box-heading {
	margin-bottom: 0;
}

.icon-box.icon-v-center .box-heading + div {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* Footer widgets */
.footer-special-widget .textwidget h4 {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px !important;
	margin-top: 43px;
	text-transform: uppercase;
}

.footer-special-widget .textwidget h4:first-child {
	margin-top: 0;
}

.footer-special-widget .textwidget p {
	margin-bottom: 0;
}

.footer-special-widget .textwidget p:last-child {
	margin-bottom: 0;
}

.footer-special-widget .textwidget i {
	margin-right: 5px;
}

/* Columns custom backgrounds */
.column-bg-1,
.column-bg-2,
.column-bg-3 {
	background-image: url("../img/column-bg-1.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.column-bg-1 .simple_link,
.column-bg-2 .simple_link,
.column-bg-3 .simple_link {
	font-size: 12px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}

.column-bg-2 {
	background-image: url("../img/column-bg-2.png");
}

.column-bg-3 {
	background-image: url("../img/column-bg-3.png");
}

@media (min-width: 576px) {
	.space-between {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
}

.italic {
	font-style: italic;
}

@media (min-width: 992px) {
	.mobile-overlay.section_overlay:after {
		display: none;
	}
}

/* Copyright override */
.page-template-full-width-no-footer .page_copyright {
	background-color: #fff !important;
	background-image: none !important;
	color: var(--darkgreyColor) !important;
}

@media (min-width: 1490px) {
	.image-absolute img {
		max-width: 130%;
	}
}
