@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* GENERAL */

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

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

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

body {
	color: #707070;
	transition: 0.5s ease-in-out;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	line-height: 24px;
	position: relative;
}

body:before {
	background: -webkit-linear-gradient(left, #000 1px, transparent 1px) 1px 0, transparent;
	background: linear-gradient(90deg, #000 1px, transparent 1px) 1px 0, transparent;
	background-size: 130px 1px;
	content: "";
	height: 100%;
	opacity: 0.05;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 1000;
}

@media (min-width: 768px) {
	body:before {
		background-size: 193px 1px;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #141414;
	font-family: "Montserrat", sans-serif;
	-webkit-font-feature-settings: "lnum" 1;
	font-feature-settings: "lnum" 1;
	font-variant-numeric: lining-nums;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.65em;
	margin-top: 0.65em;
	word-break: break-word;
}

h1 {
	font-size: 70px;
	margin-bottom: 0.16em;
	margin-top: 1.2em;
}

h2 {
	font-size: 60px;
	margin-bottom: 0.15em;
	margin-top: 1.23em;
}

h3 {
	font-size: 50px;
	margin-bottom: 0.1em;
	margin-top: 1.33em;
}

h4 {
	font-size: 40px;
	margin-bottom: 0.19em;
	margin-top: 1.35em;
}

h5 {
	font-size: 30px;
	margin-bottom: 0.49em;
	margin-top: 1.85em;
}

h6 {
	font-size: 20px;
	margin-bottom: 1em;
	margin-top: 2.9em;
}

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

	h2 {
		font-size: 2.8rem;
	}

	h3 {
		font-size: 2.4rem;
	}

	h4 {
		font-size: 2rem;
	}

	h5 {
		font-size: 1.7rem;
	}

	h6 {
		font-size: 1.3rem;
	}
}

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: 24px;
}

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: #000;
}

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

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

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
	color: inherit;
}
h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover {
	color: var(--maincolor);
}

blockquote {
	font-style: italic;
	margin: 27px 0;
	max-width: 100%;
	padding: 0;
	text-align: center;
}

@media (min-width: 768px) {
	blockquote {
		align-items: center;
		-webkit-box-align: center;
		display: -webkit-box;
		display: flex;
		padding: 0 0 0 60px;
		text-align: left;
	}
}

blockquote .quote-author {
	flex-shrink: 0;
	margin-right: 30px;
	position: relative;
}

@media (max-width: 767px) {
	blockquote .quote-author {
		display: inline-block;
		margin-bottom: 25px;
		margin-right: 0;
	}
}

blockquote .quote-author:before {
	background-color: var(--maincolor);
	content: "";
	height: 37px;
	left: -23px;
	-webkit-mask: url(../images/quote-mark.png) no-repeat center/contain;
	position: absolute;
	top: -4px;
	width: 47px;
}

blockquote footer {
	font-style: normal;
	margin-top: 22px;
}

blockquote footer h6 {
	margin-bottom: 0;
}

blockquote.blockquote2 {
	color: #000;
	display: block;
	font-size: 20px;
	font-style: italic;
	margin: 25px 0;
	padding-left: 40px;
	position: relative;
	text-align: left;
}

@media (min-width: 768px) {
	blockquote.blockquote2 {
		margin: 45px 0 36px;
		max-width: 80%;
	}
}

blockquote.blockquote2:before {
	background-color: var(--maincolor);
	content: "";
	height: 26px;
	left: -8px;
	-webkit-mask: url(../images/quote-mark.png) no-repeat center/contain;
	position: absolute;
	top: 4px;
	width: 36px;
}

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;
	-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}

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

hr {
	border-color: #e6ecef;
	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 #e6ecef;
	line-height: 1.42857143;
	padding: 13px 8px;
	vertical-align: top;
}

table th {
	color: #000;
	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;
}

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(0, 0, 0, 0.2);
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	padding-bottom: 8px;
	padding-top: 7px;
}

.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;
}

ul.list-styled li:first-child,
ol.list-styled li:first-child {
	padding-top: 0;
}

ul.list-styled li:last-child,
ol.list-styled li:last-child {
	padding-bottom: 0;
}

.list-styled ul,
ul.list-styled {
	color: #707070;
	list-style: none;
	padding: 0;
}

.list-styled ul li,
ul.list-styled li {
	padding: 5px 0 6px;
	position: relative;
}

.list-styled ul li:before,
ul.list-styled li:before {
	color: var(--maincolor);
	content: "\e90b";
	font-family: "icomoon";
	font-size: 14px;
	padding-right: 19px;
	position: relative;
	top: 1px;
}

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

.list-styled ol li,
ol.list-styled li {
	padding: 6px 0 6px 41px;
}

.list-styled ol li:before,
ol.list-styled li:before {
	color: var(--maincolor);
	content: counter(li, decimal-leading-zero) ".";
	counter-increment: li;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	left: 16px;
	position: absolute;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select,
.sppb-form-control {
	background-color: transparent;
	border: 1px solid #e6ecef;
	border-radius: 0;
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	height: 50px;
	padding-bottom: 9px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 8px;
	width: 100%;
}

textarea,
textarea.sppb-form-control {
	height: auto;
	padding-bottom: 14px;
	padding-top: 15px;
}

form.fw_form_fw_form .form-group {
	position: relative;
}

form.fw_form_fw_form .form-group i {
	color: var(--maincolor);
	font-size: 14px;
	left: auto;
	position: absolute;
	right: 23px;
	top: 19px !important;
}

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

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

input[type="submit"],
button:not([class*="btn-"]) {
	background: transparent;
	border: 1px solid #000;
	color: #000;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	padding: 19px 36px;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input[type="submit"]:hover,
button:not([class*="btn-"]):hover {
	color: rgba(0, 0, 0, 0.8);
}

#sp-header .sppb-btn,
#sp-component .sppb-btn,
#sp-footer .sppb-btn,
#sp-left .sppb-btn,
#sp-right .sppb-btn,
.btn,
.sppb-btn,
.ls-wrapper .slider-btn {
	border-radius: 50px;
	border-width: 1px;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
	padding: 12px 23px;
	position: relative;
	text-transform: none;
	color: #fff;
	cursor: pointer;
	white-space: normal;
}

#sp-header .sppb-btn.sppb-btn-primary,
#sp-component .sppb-btn.sppb-btn-primary,
#sp-footer .sppb-btn.sppb-btn-primary,
.btn.btn-primary,
.sppb-btn.sppb-btn-primary {
	background-color: var(--maincolor);
	border-color: var(--maincolor);
}

#sp-header .sppb-btn.sppb-btn-primary:hover,
#sp-component .sppb-btn.sppb-btn-primary:hover,
#sp-footer .sppb-btn.sppb-btn-primary:hover,
.btn.btn-primary:hover,
.sppb-btn.sppb-btn-primary:hover{
	background-color: #141414;
	border-color: #141414;
}


#sp-header .sppb-btn.sppb-btn-secondary,
#sp-component .sppb-btn.sppb-btn-secondary,
#sp-footer .sppb-btn.sppb-btn-secondary,
.sppb-btn.sppb-btn-secondary {
	border-color: #e6ecef;
	color: #141414;
}

#sp-header .sppb-btn.sppb-btn-secondary:hover,
#sp-component .sppb-btn.sppb-btn-secondary:hover,
#sp-footer .sppb-btn.sppb-btn-secondary:hover,
.sppb-btn.sppb-btn-secondary:hover {
background: var(--maincolor);
border-color: var(--maincolor);
color: #fff;
}

#sp-header .sppb-btn.sppb-btn-success,
#sp-component .sppb-btn.sppb-btn-success,
#sp-footer .sppb-btn.sppb-btn-success,
.btn.btn-success,
.sppb-btn.sppb-btn-success {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}

#sp-header .sppb-btn.sppb-btn-info,
#sp-component .sppb-btn.sppb-btn-info,
#sp-footer .sppb-btn.sppb-btn-info,
.btn.btn-info,
.sppb-btn.sppb-btn-info {
color: #fff;
background-color: #17a2b8;
border-color: #17a2b8;
}


#sp-header .sppb-btn.sppb-btn-warning,
#sp-component .sppb-btn.sppb-btn-warning,
#sp-footer .sppb-btn.sppb-btn-warning,
.btn.btn-warning,
.sppb-btn.sppb-btn-warning {
color: #212529;
background-color: #ffc107;
border-color: #ffc107;
}

#sp-header .sppb-btn.sppb-btn-danger,
#sp-component .sppb-btn.sppb-btn-danger,
#sp-footer .sppb-btn.sppb-btn-danger,
.btn.btn-danger,
.sppb-btn.sppb-btn-danger {
color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}

#sp-header .sppb-btn.sppb-btn-dark,
#sp-component .sppb-btn.sppb-btn-dark,
#sp-footer .sppb-btn.sppb-btn-dark,
.btn.btn-dark,
.sppb-btn.sppb-btn-dark {
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}


#sp-header .sppb-btn.sppb-btn-link,
#sp-component .sppb-btn.sppb-btn-link,
#sp-footer .sppb-btn.sppb-btn-link,
.btn.btn-link,
.sppb-btn.sppb-btn-link {
	color: #111516;
	text-decoration: underline;
}

.sppb-btn.sppb-btn-link {
	padding: 0 !important;
	min-width: auto !important;
}


.sppb-addon-optin-forms {
	padding: 0px;
}

#sp-footer {
	font-size: inherit;
}

/* text helpers */
.fs-10 {
	font-size: 10px;
}

.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-30 {
	font-size: 30px;
}

.fs-32 {
	font-size: 32px;
}

.fs-36 {
	font-size: 36px;
}

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

.fs-45 {
	font-size: 45px;
}

.fs-50 {
	font-size: 50px;
}

.fs-56 {
	font-size: 56px;
}

.fs-60 {
	font-size: 60px;
}

.fw-100 {
	font-weight: 100;
}

.fw-300,
.thin {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-700,
.bolder {
	font-weight: 700;
}

.fw-900,
.bold {
	font-weight: 900;
}


.divider-0 {
	margin-top: 0;
}

.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-35 {
	margin-top: 35px;
}

.divider-40 {
	margin-top: 40px;
}

.divider-45 {
	margin-top: 45px;
}

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

.divider-55 {
	margin-top: 55px;
}

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

.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;
}

.divider-170 {
	margin-top: 170px;
}

.divider-180 {
	margin-top: 180px;
}

.divider-200 {
	margin-top: 200px;
}

.divider-270 {
	margin-top: 270px;
}

@media (min-width: 576px) {
	.divider-sm-0 {
		margin-top: 0;
	}

	.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-35 {
		margin-top: 35px;
	}

	.divider-sm-40 {
		margin-top: 40px;
	}

	.divider-sm-45 {
		margin-top: 45px;
	}

	.divider-sm-50 {
		margin-top: 50px;
	}

	.divider-sm-55 {
		margin-top: 55px;
	}

	.divider-sm-60 {
		margin-top: 60px;
	}

	.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;
	}

	.divider-sm-170 {
		margin-top: 170px;
	}

	.divider-sm-180 {
		margin-top: 180px;
	}

	.divider-sm-200 {
		margin-top: 200px;
	}

	.divider-sm-270 {
		margin-top: 270px;
	}
}

@media (min-width: 768px) {
	.divider-md-0 {
		margin-top: 0;
	}

	.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-35 {
		margin-top: 35px;
	}

	.divider-md-40 {
		margin-top: 40px;
	}

	.divider-md-45 {
		margin-top: 45px;
	}

	.divider-md-50 {
		margin-top: 50px;
	}

	.divider-md-55 {
		margin-top: 55px;
	}

	.divider-md-60 {
		margin-top: 60px;
	}

	.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;
	}

	.divider-md-170 {
		margin-top: 170px;
	}

	.divider-md-180 {
		margin-top: 180px;
	}

	.divider-md-200 {
		margin-top: 200px;
	}

	.divider-md-270 {
		margin-top: 270px;
	}
}

@media (min-width: 992px) {
	.divider-lg-0 {
		margin-top: 0;
	}

	.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-35 {
		margin-top: 35px;
	}

	.divider-lg-40 {
		margin-top: 40px;
	}

	.divider-lg-45 {
		margin-top: 45px;
	}

	.divider-lg-50 {
		margin-top: 50px;
	}

	.divider-lg-55 {
		margin-top: 55px;
	}

	.divider-lg-60 {
		margin-top: 60px;
	}

	.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;
	}

	.divider-lg-170 {
		margin-top: 170px;
	}

	.divider-lg-180 {
		margin-top: 180px;
	}

	.divider-lg-200 {
		margin-top: 200px;
	}

	.divider-lg-270 {
		margin-top: 270px;
	}
}

@media (min-width: 1200px) {
	.divider-xl-0 {
		margin-top: 0;
	}

	.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-35 {
		margin-top: 35px;
	}

	.divider-xl-40 {
		margin-top: 40px;
	}

	.divider-xl-45 {
		margin-top: 45px;
	}

	.divider-xl-50 {
		margin-top: 50px;
	}

	.divider-xl-55 {
		margin-top: 55px;
	}

	.divider-xl-60 {
		margin-top: 60px;
	}

	.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;
	}

	.divider-xl-170 {
		margin-top: 170px;
	}

	.divider-xl-180 {
		margin-top: 180px;
	}

	.divider-xl-200 {
		margin-top: 200px;
	}

	.divider-xl-270 {
		margin-top: 270px;
	}
}

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

.sp-scroll-up {
	background: var(--maincolor);
}

.color-darkgrey {
	color: #111516;
}

.color-dark {
	border-color: #141414;
	color: #141414;
}

.z-index2 {z-index: 2 !important;}

.excerpt {
	color: #000;
	font-size: 20px;
}

.overflow-hidden {overflow: hidden !important;}
.overflow-visible {overflow: visible !important;}

@media (max-width: 992px) {
.section-color-full {
	background-color: #000 !important;
	padding-bottom: 100px !important;
	padding-top: 100px !important;
}
}

/* HEADER */ 

#sp-header {
	height: auto;
	box-shadow: none;
	transition: none;
	transition: 0.5s ease-in-out;
	position: absolute;
  background: transparent;
}

#sp-header.header-sticky {
	background: #000;
	box-shadow: 0 2px 15px 0 rgba(100, 100, 100, 0.05);
	opacity: 0.98;
	transition: 0.5s ease-in-out;
}

#sp-header > .row {
-ms-flex-align: center !important;
align-items: center !important;	
}

.logo-image, .logo-image-phone {
	height: auto !important;
	max-height: 29px;
}

.sp-megamenu-parent {
	text-align: center;
	float: none;
}

.sp-megamenu-parent > li {text-align: left;}

.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
	font-weight: 300;
	position: relative;
	padding-left: 22px;
	padding-right: 22px;
	font-size: 20px;
	line-height: 14px;
	padding-bottom: 32px;
	padding-top: 32px;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
}

@media (max-width: 1280px) {
.sp-megamenu-parent > li > a {
	padding-left: 16px;
	padding-right: 16px;
}
}

@media (max-width: 1200px) {
.sp-megamenu-parent > li > a {
	padding-left: 5px;
	padding-right: 5px;
	font-size: 16px;
}
}

@media (max-width: 1022px) {
.sp-megamenu-parent > li > a {
	font-size: 15px;
}
}

.sp-megamenu-parent > li.active > a {
	font-weight: 300;
}

body.ltr .sp-megamenu-parent > li.sp-has-child > a::after, body.ltr .sp-megamenu-parent > li.sp-has-child > span::after {
	display: none;
}

.sp-megamenu-parent > li:first-child > a {padding-left: 0;}
.sp-megamenu-parent > li:last-child > a {padding-right: 0;}


.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 50px;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 16px 0 17px;
	text-decoration: none;
	-webkit-transition-property: color, background-color, border-color, padding-top, padding-bottom;
	transition-property: color, background-color, border-color, padding-top, padding-bottom;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:before {
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 5px;
	padding-right: 11px;
	position: relative;
	top: -4px;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:last-child > a{
	margin-bottom: 0;
}

.sp-megamenu-parent .sp-mega-group > li > a {
display: block;
font-size: 18px;
line-height: 18px;
margin-bottom: 4px;
padding-bottom: 13px;
padding-top: 13px;
color: #fff;
text-transform: capitalize;
}

body.ltr .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a::after {
	float: none;
}


@media (min-width: 992px) {

.offcanvas-overlay {
	background: transparent;
}

.offcanvas-menu .offcanvas-inner .sp-module ul.menu {
	display: none;
}

.offcanvas-menu {
	background-color: #262c31;
	width: 400px;
}

.offcanvas-menu .offcanvas-inner {
	padding: 41px 58px 60px;
}

body.ltr.offcanvs-position-right.offcanvas-active .body-wrapper {
	right: 0;
}

body.ltr.offcanvs-position-right .offcanvas-menu {
	right: -400px;
}
}

#sp-logo-section {
    position: relative;
    left: 0;
    top: 0;
    z-index: 9;
}

/* */

/* PAGE TITLE */

.sp-page-title {
	padding: 145px 0 85px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: scroll;
	position: relative;
}


.sp-page-title:before {
	bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000;
    opacity: 0.6;
}
.sp-page-title .container {
	position: relative;
	z-index: 2;
}

.sp-page-title .sp-page-title-heading {
	font-weight: 400;
	line-height: 1.2;
	margin-top: -2px;
	font-size: 50px;
	margin-bottom: 38px;
	color: var(--maincolor);
}

.sp-page-title .breadcrumb {
	margin: 0;
	line-height: 1.6;
	font-size: 16px;
	padding-bottom: 0;
	position: relative;
}

.breadcrumb li {
    padding: 0;
	line-height: 1;
	min-height: auto;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
}
.breadcrumb li.float-left {margin-right: 0 !important;}

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

.breadcrumb-item + .breadcrumb-item:before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 12px;
	padding-left: 12px;
}

.sp-page-title .breadcrumb > .active span {
	background-color: var(--maincolor);
	border-radius: 50px;
	padding: 4px 11px;
	color: #fff;
}

.breadcrumb li a:hover {color: var(--maincolor);}

/* */

#sp-header.header-sticky ~ section#sp-main-body {
	padding-top: 0;
}

.com-spsimpleportfolio #sp-main-body,
.com-content #sp-main-body,
.com-j2store #sp-main-body {
	padding: 150px 0;
}


.com-spsimpleportfolio #sp-header.header-sticky ~ section#sp-main-body,
.com-content #sp-header.header-sticky ~ section#sp-main-body,
.com-j2store #sp-header.header-sticky ~ section#sp-main-body {
	padding-top: 150px;
}

.sppb-addon-single-image-container {color: transparent; font-size: 0;}

.step:hover .sppb-addon-content:before,
.step:hover .sppb-addon-title  {
	opacity: 1 !important;
}

.s-overlay {
	overflow: hidden;
}

.s-overlay:before {
	background-color: #111516;
	opacity: 0.9;
height: 3000px;
left: 0;
right: auto;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 46%;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

@media (max-width: 992px) {
	.s-overlay:before {
	-webkit-transform: none;
	transform: none;
	width: 100%;
}
}

/* SIDEBAR */

.sidebar-class  .sppb-row-container {width: 100% !important; }
.sidebar-class.com-sppagebuilder #sp-main-body {margin: 0 auto;}
@media (min-width: 768px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 750px;}
}
@media (min-width: 992px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 970px;}
}
@media (min-width: 1200px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 1170px;}
}

.com-sppagebuilder #sp-right, .com-sppagebuilder #sp-left {
	padding-top: 160px;
	padding-bottom: 160px;
	position: relative;
}

#sp-left .sp-module, #sp-right .sp-module {
	margin-top: 70px;
	border: 0px solid #f3f3f3;
	padding: 0;
	border-radius: 0px;
}

#sp-left .sp-module ul > li, #sp-right .sp-module ul > li {
	display: block;
	border-bottom: 0px solid #f3f3f3;
}

/* */

/* PORTFOLIO */

.sp-simpleportfolio .sp-simpleportfolio-filter {
	text-align: center;
	margin-bottom: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul {
	text-align: center;
	margin-bottom: 53px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li {
	float: none;
	display: inline-block;
	margin: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
	display: block;
	background: none;
	color: #707070;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	margin: 0 15px;
	padding: 0;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a:after {
	background-color: #707070;
	bottom: 2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	width: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a {
	display: block;
	background: none;
	color: #707070;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	margin: 0 15px;
	padding: 0;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}


.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a:after,
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li:hover > a:after {
    width: 100%;
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li:hover > a {
color: #141414;
}


.com-spsimpleportfolio.gallery-full #sp-main-body .container {max-width: 100%;}

.sp-simpleportfolio .sp-simpleportfolio-item {
	float: left;
	padding: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.sp-simpleportfolio .media-links {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.sp-simpleportfolio .media-links::before {
	background-color: var(--maincolor);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.2s linear;
}

.sp-simpleportfolio .media-links a.abs-link {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.sp-simpleportfolio .media-links a.abs-link:before {
	color: #000;
	content: "+";
	font-size: 48px;
	height: 50px;
	left: 50%;
	line-height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 50px;
}

.sp-simpleportfolio .sp-simpleportfolio-item:hover .media-links:before {
	opacity: 0.7;
}

.sp-simpleportfolio .sp-simpleportfolio-item:hover .media-links a.abs-link {
    opacity: 1;
}


.sp-simpleportfolio .icons-link 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;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
	width: 60px;
	z-index: 5;
}

.sp-simpleportfolio .icons-link a.link-zoom {
background-color: #1f232b;
border-color: #1f232b;
color: #fff;
}

.sp-simpleportfolio .icons-link a.link-view {
	background-color: #fff;
	border-color: #fff;
	color: #1f232b;
	transition-delay: 0.1s;
}

.sp-simpleportfolio .icons-link a:hover {
	background-color: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff;
	opacity: 1;
}


.sp-simpleportfolio .sp-simpleportfolio-overlay-wrapper:hover .media-links div {
	filter: alpha(opacity=100);
	opacity: 1;
}

.sp-simpleportfolio .sp-simpleportfolio-overlay-wrapper:hover .icons-link a {
	filter: alpha(opacity=100);
	opacity: 1;
	top: 0;
}

.sp-simpleportfolio .item-content2 {
	padding: 19px 20px 19px;
	text-align: center;
	border-color: transparent;
}

.sp-simpleportfolio .item-content2 h6 {
	margin-bottom: 15px;
}

.sp-simpleportfolio .item-content2 .tagcloud {
    border: 1px solid #e6ecef;
    display: inline-block;
    margin: 0 5px 10px 0;
    padding: 2px 14px;
}

.sppb-image-carousel-layout1 .sppb-carousel-extended-content-wrap, .sppb-image-carousel-layout1 .sppb-carousel-extended-item img, .sppb-image-carousel-layout1 .sppb-carousel-extended-item-overlay {
	border-radius: 0;
}

.sp-simpleportfolio .item-content {
	align-items: center;
	background: rgba(38, 44, 49, 0.5);
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all 0.3s ease;
	z-index: 2;
	text-align: center;
}

.sp-simpleportfolio .sp-simpleportfolio-item:hover .item-content {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.portfolio-title {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 29px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
	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;
}

.sp-simpleportfolio .sp-simpleportfolio-item:hover .item-content .portfolio-title {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.portfolio-title > a:hover {color: var(--maincolor);}

.small-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6em;
	text-transform: capitalize;
}

.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {
	background: rgba(233, 194, 13, 0.5);
}


.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay h6 {
	color: #fff;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay h6:hover {color: #141414;}

/* */

/* BLOG */

.article-list .article {
	padding: 0;
	border: 0px solid #f5f5f5;
	border-radius: 0;
	position: relative;
}

.article-list .col-md-12 .article {margin-bottom: 0px;}

.article-list .row > .col-md-12 + .col-md-12 {margin-top: 100px;}

.article-list .article .article-intro-image, .article-list .article .article-featured-video, .article-list .article .article-featured-audio, .article-list .article .article-feature-gallery {
	margin: 0;
	border-radius: 0;
	border-bottom: 0px solid #f5f5f5;
	overflow: hidden;
	position: relative;
}

.article-list .article .article-intro-image img, .article-list .article .article-featured-video img, .article-list .article .article-featured-audio img, .article-list .article .article-feature-gallery img {
	border-radius: 0;
	width: 100%;
}

.article-body {
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
	padding: 51px 59px 49px;
}

.blog-grid .article-body {
    padding: 24px 20px 30px;
}

.article-list .article .article-header h1, .article-list .article .article-header h2 {
text-transform: none;
font-weight: 400;
letter-spacing: 0;
margin-top: 0;
padding-bottom: 0;
font-size: 40px;
line-height: 1;
margin: 0 0 29px;
text-transform: none;
}

.blog-grid .article-list .article .article-header h1, .blog-grid .article-list .article .article-header h2{
    font-size: 20px;
    margin-bottom: 13px;
}

.article-list .article .article-header h1 a, .article-list .article .article-header h2 a {
	color: #141414;
}

.article-list .article .article-header h1 a:hover, .article-list .article .article-header h2 a:hover, .article-list .article .article-header h1 a:active, .article-list .article .article-header h2 a:active, .article-list .article .article-header h1 a:focus, .article-list .article .article-header h2 a:focus {
	color: var(--maincolor);
}

.article-info span.category-name a {
	display: inline-block;
	font-weight: 400;
	letter-spacing: 0;
	text-align: center;
	color: #fff !important;
background-color: var(--maincolor);
border: 1px solid var(--maincolor);
display: inline-block;
font-size: 16px !important;
line-height: 1;
margin: 0 4px 4px 0;
padding: 1px 6px;
}


.article-info span.category-name a:hover {
background-color: transparent;
border-color: #e6ecef;
color: #141414 !important;
}

.article .entry-meta {
    line-height: 1;
    margin-bottom: 24px;
    margin-top: 6px;
    padding-top: 0;
}

.article-info {
	margin-bottom: 0;
}

.article-info > span {
	margin-right: 18px;
}

.article-info > span i {
    font-size: 14px;
    margin-right: 6px;
}

.article-info > span.createdby,
.article-info > span.published {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 11px;
	line-height: 1;
}

.article-info > span + span::before {
	display: none;
}

.blog-grid .article-info {
	display: none;
}

.article-list .article .readmore a {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	margin-top: 35px;
	display: block;
}

.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .readmore a:focus {
	color: var(--maincolor);
}


.article-list .article .article-intro-image a:after {
	background-color: #111516;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.2s linear;
}
.article-list .article .article-intro-image:hover a:after{
	opacity: 0.6;
}

.article-list .article .article-intro-image a:hover > img {
	opacity: 1;
}

/* SINGLE POST */

.article-details .article-full-image {
	text-align: center;
	margin-bottom: 0;
}

.article-details .article-full-image img {
	display: block;
	border-radius: 0;
	width: 100%;
}

.single-article-content {
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
	margin-top: 0;
	padding: 54px 60px 42px;
}

.single-meta-share {
	display: flex;
	justify-content: space-between;
}

.article-details .article-ratings-social-share {
	padding: 0;
	border-top: 0px solid #f5f5f5;
	border-bottom: 0px solid #f5f5f5;
	margin-bottom: 0;
}

.article-social-share {
	float: none;
	display: inline-block;
}

.share_buttons > span {
	color: #707070;
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 11px;
	line-height: 1;
	margin-right: 10px;
}

.article-social-share .social-share-icon ul li:not(:last-child) {
	margin-right: 10px;
}

.article-social-share .social-share-icon ul li a {
	border: 0px solid #ededed;
	height: auto;
	text-align: center;
	width: auto;
	display: inline-block;
	color: #707070;
	font-size: 15px;
	line-height: 1;
}

.article-social-share .social-share-icon ul li a:hover, .article-social-share .social-share-icon ul li a:focus {
	color: var(--maincolor);
}

.article-details .article-info {
	display: block;
}

.article-details .article-info {
	margin-bottom: 0;
}

.article-details .article-header h1, .article-details .article-header h2 {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 0;
	padding-top: 20px;
	position: relative;
}

.alignleft {
	float: left;
	margin: 10px 40px 30px 0;
}

.article-details blockquote {
    padding-left: 19px;
}

ul.theme-styled {
    color: #777a7c;
    line-height: 34px;
    list-style: none;
    margin-bottom: 1em !important;
    padding: 0;
}

ul.theme-styled li {
    border: none !important;
    padding: 0 !important;
    position: relative;
}

ul.theme-styled li::before {
    color: var(--maincolor);
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
    font-size: 16px;
    padding-right: 9px;
    position: relative;
}


.article-details .article-author-information {
	padding-top: 0;
	margin-top: 5.8em;
	border-top: 0px solid #f5f5f5;
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
	padding: 54px 60px 42px;
}

.author-bio-inner {	
margin-left: auto;
	margin-right: auto;
	max-width: 770px;
	display: flex;
}

.author-bio-inner .author-img {
	flex-shrink: 0;
	margin-right: 40px;
}

.article-details .article-author-information img {
    width: 100%;
	border-radius: 50%;
	max-width: 120px;
	overflow: hidden;

}

.article-details .article-author-information .author-bio {
    padding: 0;
}

.article-details .article-author-information .author-bio h5 {
	font-size: 30px;
	font-family: "Montserrat", sans-serif;
font-feature-settings: "lnum" 1;
font-variant-numeric: lining-nums;
font-weight: bold;
letter-spacing: -0.05em;
line-height: 1.2;
word-break: break-word;
	margin-bottom: 30px;
	margin-top: 0;
}

.author-website {
	margin-top: 30px;
	color: #262c31;
}

.author-website strong {margin-right: 5px;}

.article-details .article-featured-video, .article-details .article-featured-audio, .article-details .article-feature-gallery {
	margin-bottom: 0;
}

/* */

/* SHOP */

.j2store-single-product {
	margin-bottom: 30px;
	border: 0px solid #e1e1e1;
	position: relative;
	text-align: left;
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
}

.j2store-thumbnail-image {background: #000;}

.j2store-single-product:hover .j2store-thumbnail-image img {opacity: .6;}

.product-wrap {
	background-color: #fff;
	padding: 36px 20px 40px;
	text-align: center;
}

.j2store-single-product .product-title {
font-size: 20px;
font-weight: 400;
letter-spacing: 0;
line-height: 1.1;
margin: 0 0 0.15em;
padding-left: 0;
padding-right: 0;
text-transform: none;
}

.product-price-container {
display: block;
font-size: 16px;
color: #141414;
font-weight: 400;
margin: 13px 0 0;
}

.base-price, .sale-price {
	line-height: 1.9;
	display: inline-block;
}

.product-price-container .strike {
	text-decoration: line-through;
	font-size: 16px;
	color: #707070;
	font-weight: 400;
	padding-right: 1em;
}

.product-price-container .sale-price {
	font-size: 16px;
	font-weight: 400;
}

.discount-percentage {
	background-color: var(--maincolor);
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	left: 27px;
	line-height: 1;
	position: absolute;
	top: 26px;
	z-index: 2;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 24px;
}

.j2store-addtocart-form {
	margin-top: 15px;
}

.j2store-addtocart-form .sppb-btn {padding: 10px 29px !important;}

/* Single Product */


.j2store-product-main-image {
	margin-bottom: 0;
	width: 100%;
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
}

ul.additional-image-list {
list-style: none;
margin: 0;
padding: 0;
color: transparent;
font-size: 0;
line-height: 0;
position: absolute;
text-align: center;
width: 100%;
margin: 1px -1px;
overflow: hidden;
position: static;
margin-bottom: 0;
}

.additional-image-list li {
	float: left;
	margin: 0 0 1px;
	padding: 0 0 0 1px;
	width: 20%;
	display: block;
	cursor: pointer;
}

.product-title-simple {
	display: block;
	font-size: 20px;
	margin-bottom: 1em;
	margin-top: 26px;
}

.product-simple-title-price .sale-price {
	color: var(--maincolor);
	font-size: 18px;
	font-weight: 700;;
}

.product-sku {
	margin-top: 6px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 24px;
	margin-top: 7px;
	position: relative;
}

.product-sku .sku {
	color: var(--maincolor);
	font-weight: 300;
	margin-left: 5px;
}

.product-sdesc ul.list-styled li {
    padding: 5px 0 4px;
}

.type-product .j2store-addtocart-form-simple {
	margin: 1.2em 0 0;
}

.type-product .j2store-addtocart-form-simple:before {
    border-top: 1px solid #b2b2b2;
    content: "";
    display: block;
    margin-bottom: 26px;
    position: relative;
}


.type-product .options {
	display: flex;
	justify-content: space-between;
}

.options .option {
	position: relative;
	width: 100%;
}

.options .option + .option {
	padding-left: 15px;
}

.options b {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #262c31;
}

.options select {
background-color: #f4f4f4;
border: none;
border-radius: 5px;
color: #777a7c;
font-size: 16px;
font-weight: 400;
height: 60px;
outline: none;
padding: 10px 30px 9px 20px;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: "";
width: 100%;
text-align: center;
}

.type-product .j2store-add-to-cart {
	border-top: 1px solid #b2b2b2;
	display: block;
	margin-top: 25px;
	position: relative;
	padding-top: 25px;
}


.options .option select:not(.form-control):focus {
    background-color: #eef3f5;
}

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

#sp-component .simple.detail.bs3 .j2store-addtocart-form-simple .sppb-btn {
	position: relative;
	top: -1px;
	width: auto;
	margin-top: 0px;
	background: var(--maincolor) !important;
	color: #fff !important;
	padding: 15px !important;
	border: 2px solid var(--maincolor) !important;
	font-weight: 300;
}

#sp-component .simple.detail.bs3 .j2store-addtocart-form-simple .sppb-btn:hover {
	background: #fff !important;
	color: var(--maincolor) !important;
}


.product-qty input[type="text"], .product-qty input[type="number"] {
	display: inline;
	height: 50px;
	padding: 0 !important;
	width: auto !important;
	text-align: center;
	margin: 0px;
	-moz-appearance: textfield;
	background-color: #eef3f5;
	border: none;
	color: #111516;
	line-height: 60px;
	max-width: 80px;
	padding-left: 30px !important;
	padding-right: 30px !important;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	border-radius: 0;
}

.j2store-addtocart-form-simple .sppb-btn {
	position: relative;
	top: -1px;
	width: auto;
	margin-top: 40px;
}

.woocommerce-tabs {
	clear: both;
	margin-bottom: 4em;
	margin-top: 100px;
}

.woocommerce-tabs ul.nav-tabs {
border-bottom: none;
list-style: none;
margin-bottom: 1px;
padding-left: 0;
position: relative;
z-index: 1;
display: flex;
line-height: 1.9;
}

.woocommerce-tabs ul.nav-tabs li {
border-bottom: none;
display: flex;
padding: 0;
position: relative;
z-index: 1;
}

.woocommerce-tabs ul.nav-tabs li + li {
	border-top: none;
}

.woocommerce-tabs ul.nav-tabs li a {	
	background: #f4f4f4;
	color: #141414;
	display: block;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: -1px;
	margin-right: 5px;
	padding: 17px 44px;
}

.woocommerce-tabs ul.nav-tabs li a:hover {
background: #f4f4f4;
color: var(--maincolor);
}

.tab-content > .active.fade:not(.show) {
	opacity: 1;
}

.woocommerce-tabs .tab-content {
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 44px 40px 42px;
}


.sppb-btn-primary.focus, .sppb-btn-primary:focus {
	color: #fff;
	box-shadow: none !important;
}

.related, .upsells, .cross-sells {
	margin-top: 74px;
}

.related > h2, .upsells > h2, .cross-sells > h2 {
color: #141414;
font-size: 40px;
line-height: 1;
margin-bottom: 40px;
word-wrap: break-word;
text-align: left;
}

.cross-sells .j2store-single-product {
	margin-bottom: 30px;
	border: 1px solid #e1e1e1;
	position: relative;
	text-align: center;
}

.crosssell-product .j2store-single-product .sppb-btn {margin-top: 15px !important;}

.related .j2store-single-product img {width: 100%;}




/* CART */

.j2store-single-product-view input.j2store-cart-button,
.view-carts .j2store-cart-buttons .buttons-left input,
.view-carts .buttons-right a,
#button-account,
#button-login,
#button-guest,
#button-payment-method,
#bank_form input,
.view-carts .buttons-right a:hover,
.view-carts .buttons-right a:active,
.view-carts .buttons-right a:focus,
.view-checkout input.btn {
	border-radius: 50px;
	border-width: 1px;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
	padding: 12px 23px;
	position: relative;
	text-transform: none;
	color: #fff;
	cursor: pointer;
	white-space: normal;
	background-color: var(--maincolor) !important;
	color: #fff !important;
}



.view-carts .buttons-right a,
.j2store-single-product-view input.j2store-cart-button:hover,
.j2store-single-product-view input.j2store-cart-button:focus,
.j2store-single-product-view input.j2store-cart-button:active,
.view-carts .j2store-cart-buttons .buttons-left input:hover,
.view-carts .j2store-cart-buttons .buttons-left input:active,
.view-carts .j2store-cart-buttons .buttons-left input:focus,
#button-account:hover,
#button-account:active,
#button-account:focus,
#button-login:hover,
#button-login:active,
#button-login:focus,
#button-guest:hover,
#button-guest:active,
#button-guest:focus,
#button-payment-method:hover,
#button-payment-method:active,
#button-payment-method:focus,
#bank_form input:hover,
#bank_form input:active,
#bank_form input:focus,
.payment input:hover,
.payment input:active,
.payment input:focus,
.buttons input:hover,
.buttons input:active,
.buttons input:focus,
.view-checkout input.btn:hover,
.view-checkout input.btn:active,
.view-checkout input.btn:focus {
background-color: #141414 !important;
color: #fff !important;
border-color: transparent;
}

.view-carts .j2store-cart-buttons .buttons-left .cart-continue-shopping-button input,
#button-login,
#button-login:hover,
#button-guest,
#button-guest:hover,
#button-payment-method,
#button-payment-method:hover,
#bank_form input,
#bank_form input:hover,
#button-account,
#button-account:hover {margin-left: 0;}

.j2store-remove,
.j2store-remove:hover {
height: 50px;
padding-left: 10px !important;
padding-right: 10px !important;
line-height: 50px;
max-width: 80px;
min-width: auto;
margin-bottom: 0 !important;
padding-top: 0;
padding-bottom: 0;
margin-top: -2px;
}

.view-carts input[type="number"]:not(.form-control):focus {
	background-color: #eef3f5;
}

#onCheckoutPayment_wrapper .payment-plugin-image-label {padding-right: 5px;}

.customer-note {margin-bottom: 20px;}

.customer-note textarea {
	height: auto !important;
	width: auto !important;
}

.view-checkout .checkout-content .left label input,
.view-checkout .checkout-content .shipping-make-same input {
	width: inherit;
	height: inherit;
	margin-right: 7px;
	display: inline-block;
}

.view-checkout .checkout-content .shipping-make-same input {width: auto !important;}

.view-checkout #sp-main-body h2,
.view-checkout #sp-main-body h3 {
	font-size: 24px;
	padding: 10px 0 15px 0;
}

.view-myprofile #sp-main-body ul > li > a {margin: 5px 20px 15px 0; display: inline-block;}

.view-myprofile #sp-main-body label {display: block;}

.view-checkout input.btn {width: unset !important; margin-top: 0; border: none !important;}

.view-checkout textarea {
    height: auto !important;
}

.btn:active, .btn:focus {
	box-shadow: none !important;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
	display: inline-block;
}

#bank_form input {margin-top: 20px;}

.view-checkout .j2store.checkout h1 {display: none;}

.j2store-cart .row-fluid .span6 {padding-top: 60px;}


/* J2Store Module */

.j2store-module-product {
margin-bottom: 30px;
padding: 0 15px;
position: relative;
text-align: center;	
}

.product-inner {
	border: 1px solid #e1e1e1;
	position: relative;
}

.j2store-module-product h2 {
    font-size: 21px;
    margin-bottom: 0;
}

.j2store-module-product .sppb-btn.sppb-btn-primary:before {background-color: #fff !important;}
.j2store-module-product .sppb-btn.sppb-btn-primary {background-color: var(--maincolor) !important;}


/* */

/*
** Steps
*/
.steps {
	counter-reset: step;
	display: -webkit-box;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
}

@media (max-width: 991px) {
	.steps {
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		flex-direction: column;
	}
}

@media (min-width: 992px) {
	.steps .step {
		width: 33.333%;
	}
}

.steps .step + .step {
	margin-top: 40px;
}

@media (min-width: 992px) {
	.steps .step + .step {
		margin-left: 35px;
		margin-top: 0;
	}
}

.steps .step.active .step-media:after,
.steps .step.active .step-title,
.steps .step.active .step-content {
	opacity: 1;
}

.steps .step-title:before {
	color: #e9c20d;
	content: "0" counter(step) ".";
	counter-increment: step;
	margin-bottom: 2px;
}

.steps .step-media {
	align-items: center;
	-webkit-box-align: center;
	display: -webkit-box;
	display: flex;
	padding-bottom: 20px;
	position: relative;
}

.steps .step-media:before,
.steps .step-media:after {
	background-color: #707070;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	opacity: 1;
	position: absolute;
	right: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	width: 115%;
}

.steps .step-media:after {
	background-color: #e9c20d;
	bottom: -2px;
	height: 3px;
	opacity: 0;
	z-index: 1;
}

.steps .step-img {
	margin-right: 20px;
}

.steps .step-img img {
	border-radius: 50%;
	max-width: 70px;
}

.steps .step-title {
	color: #fff;
	font-size: 30px;
	opacity: .5;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.steps .step-content {
	opacity: .5;
	padding-left: 90px;
	padding-top: 15px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.steps-alt {
	-webkit-box-pack: justify;
	counter-reset: step;
	justify-content: space-between;
	position: relative;
	text-align: center;
}

@media (max-width: 767px) {
	.steps-alt > * + * {
		margin-top: 35px;
	}
}

@media (min-width: 768px) {
	.steps-alt {
		display: -webkit-box;
		display: flex;
	}

	.steps-alt:after {
		background-color: #707070;
		content: "";
		height: 1px;
		left: 50%;
		-webkit-mask: url("../img/step-line.png");
		position: absolute;
		top: 18%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-transition: all 0.3s linear;
		transition: all 0.3s linear;
		width: calc(100% - 126px);
	}
}

.steps-alt .ico-step {
	-webkit-box-flex: 0;
	display: inline-block;
	flex: 0 0 9%;
	margin-right: 0;
	position: relative;
}

@media (min-width: 768px) {
	.steps-alt .ico-step {
		margin: 0;
		top: 7px;
	}
}

.steps-alt .step {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.steps-alt .step {
		width: 21%;
	}
}

.steps-alt .step:hover .step-dot i {
	border-color: #141414;
	color: #e9c20d;
}

.steps-alt .step:hover .step-content p:before {
	color: #141414;
}

.steps-alt .step .step-dot {
	position: relative;
}

.steps-alt .step .step-dot i {
	background-color: #fff;
	border: 1px solid #707070;
	border-radius: 50%;
	color: #141414;
	font-size: 10px;
	padding: 14px;
	-webkit-transition: .5s;
	transition: .5s;
}

.steps-alt .step .step-content P:before {
	content: "0" counter(step);
	counter-increment: step;
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 2px;
	-webkit-transition: .5s;
	transition: .5s;
}


.map-section svg {
	height: 200px;
	width: 100%;
}

@media (min-width: 768px) {
	.map-section svg {
		height: 400px;
		width: 500px;
	}
}

@media (min-width: 992px) {
	.map-section svg {
		height: 500px;
		width: 700px;
	}
}

.map-section .jvectormap-zoomout,
.map-section .jvectormap-zoomin {
	display: none;
}

.jvectormap-tip {
	background: #fff;
	box-shadow: 0 1px 8px 0px rgba(0, 0, 0, 0.1);
	color: #141414;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	max-width: 240px;
	padding: 10px 40px;
	position: absolute;
	-webkit-transform: translateY(-20px) translateX(15%);
	transform: translateY(-20px) translateX(15%);
}


/* IMPORT ICOMOON */


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

[class^="ico-"], [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: flex;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-support:before {
    content: "\e900";
}
.ico-shield:before {
    content: "\e901";
}
.ico-plug:before {
    content: "\e902";
}
.ico-play-button:before {
    content: "\e903";
}
.ico-phone:before {
    content: "\e904";
}
.ico-location:before {
    content: "\e905";
}
.ico-listening:before {
    content: "\e906";
}
.ico-phone-alt:before {
    content: "\e907";
}
.ico-house:before {
    content: "\e908";
}
.ico-footprint:before {
    content: "\e909";
}
.ico-conversation:before {
    content: "\e90a";
}
.ico-check:before {
    content: "\e90b";
}
.ico-bbb:before {
    content: "\e90c";
}
.ico-award:before {
    content: "\e90d";
}
.ico-arrow-right:before {
    content: "\e90e";
}
.ico-arrow-left:before {
    content: "\e917";
}
.ico-play-alt:before {
    content: "\e90f";
}
.ico-share:before {
    content: "\e910";
}
.ico-edit:before {
    content: "\e911";
}
.ico-calendar:before {
    content: "\e912";
}
.ico-clock:before {
    content: "\e913";
}
.ico-clock-alt:before {
    content: "\e914";
}
.ico-location-alt:before {
    content: "\e915";
}
.ico-mail:before {
    content: "\e916";
}
.ico-finish:before {
    content: "\e918";
}
.ico-start:before {
    content: "\e919";
}
.ico-trash:before {
    content: "\e91a";
}


@media (min-width: 320px) {#sp-footer  .sppb-container-inner {max-width: 400px;width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 576px) {#sp-footer  .sppb-container-inner {max-width: 540px;width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 768px) {#sp-footer  .sppb-container-inner {max-width: 720px;width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 992px) {#sp-footer .sppb-container-inner {max-width: 960px;width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-footer  .sppb-container-inner {max-width: 1140px;width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;}}


/* J4 Optimization */

.sp-megamenu-wrapper, #sp-header > .container > .container-inner > .row > div > .sp-column,
#sp-header > .row > div > .sp-column  {display: block !important;}

#sp-header .sp-module {
	margin-left: 0px !important; 
}

.offcanvas-menu > .d-flex {
	padding: 0 !important;
}

.offcanvas-menu > .d-flex > .logo,
.breadcrumb .float-start {
	display: none !important;
}

.burger-icon > span {
	background-color: #fff;
}
.text-start,
.text-left {
 text-align:left!important
}
.text-end,
.text-right {
 text-align:right!important
}
@media (min-width:576px) {
 .text-sm-start,
.text-sm-left {
  text-align:left!important
 }
 .text-sm-end,
.text-sm-right {
  text-align:right!important
 }
 .text-sm-center {
  text-align:center!important
 }
}
@media (min-width:768px) {
 .text-md-start,
.text-md-left {
  text-align:left!important
 }
 .text-md-end,
.text-md-right {
  text-align:right!important
 }
 .text-md-center {
  text-align:center!important
 }
}
@media (min-width:992px) {
 .text-lg-start,
.text-lg-left {
  text-align:left!important
 }
 .text-lg-end,
.text-lg-right {
  text-align:right!important
 }
 .text-lg-center {
  text-align:center!important
 }
}
@media (min-width:1200px) {
 .text-xl-start,
.text-xl-left {
  text-align:left!important
 }
 .text-xl-end,
.text-xl-right {
  text-align:right!important
 }
 .text-xl-center {
  text-align:center!important
 }
}

.sp-page-title {
	position: relative;
}

.media {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.media-body {
	-ms-flex: 1;
	flex: 1;
}

@media (min-width: 1400px) {#sp-footer  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-banner  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-bottom1  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-top3  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.contained-row  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.sppb-row-container {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.sp-slider .sppb-container {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

a[class*="fa-"]::before,
ul.list-styled li::before {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900 !important;
}

a[class*="fa-"]::before, a[class*="fa-"] > i {
	font-family: "Font Awesome 5 Brands" !important;
	font-weight: 400 !important;
}


