@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?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 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: #707787;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: 1;
	color: #36404c;
}

h1 {
	font-size: 3em;
	margin-bottom: 0.45em;
	margin-top: 1.15em;
}

h2 {
	font-size: 2.5em;
	margin-bottom: 0.68em;
	margin-top: 1.15em;
}

h3 {
	font-size: 2.25em;
	margin-bottom: 0.67em;
	margin-top: 1.2em;
}

h4 {
	font-size: 1.85em;
	margin-bottom: 0.9em;
	margin-top: 1.5em;
}

h5 {
	font-size: 1.5em;
	margin-bottom: 1.3em;
	margin-top: 1.95em;
}

h6 {
	font-size: 1.25em;
	margin-bottom: 1.4em;
	margin-top: 2.2em;
}

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

	h2 {
		font-size: 2.4rem;
	}

	h3 {
		font-size: 2rem;
	}

	h4 {
		font-size: 1.7rem;
	}

	h5 {
		font-size: 1.4rem;
	}

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

ul,
ol {
	padding-left: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

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

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

a.text-primary:hover {
	color: #36404c;
}

blockquote {
	border: none;
	color: #707787;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	margin: 90px auto 28px;
	max-width: 780px;
	padding: 0;
	position: relative;
	text-align: center;
}

blockquote::before {
	background-color: var(--secondcolor);
	border-radius: 50%;
	content: "";
	height: 40px;
	left: 49%;
	position: absolute;
	top: -60px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px;
}

blockquote::after {
	color: #fff;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left: 49%;
	position: absolute;
	top: -54px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

blockquote footer cite {
	color: #36404c;
	display: flex;
	flex-direction: column;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	margin-top: 28px;
}

blockquote footer cite span {
	color: #707787;
	font-weight: normal;
	margin-top: 4px;
}

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

a > img {
	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: 1px !important;
}

hr {
	border-color: #ebeced;
	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 #ebeced;
	line-height: 1.42857143;
	padding: 18px 8px;
	text-align: center;
	vertical-align: middle;
}

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

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 #ebeced;
	border-top: 1px solid #ebeced;
	padding-bottom: 15px;
	padding-top: 14px;
}

.list-bordered.with-icon li {
	align-items: center;
	display: flex;
	padding-bottom: 19px;
	padding-top: 19px;
}

.list-bordered.with-icon li .fi {
	font-size: 40px;
	margin-right: 20px;
}

@media (max-width: 1199px) and (min-width: 992px) {
	.list-bordered.with-icon li.border-above-xl-none {
		border-top: none;
	}
}

@media (max-width: 767px) {
	.list-bordered.with-icon li.border-above-xl-none {
		border-top: none;
	}
}

.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-bordered {
	color: #707787;
}

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

.list-styled ul.color-darkgrey,
ul.list-styled.color-darkgrey {
	color: #36404c;
}

.list-styled ul.color-darkgrey li,
ul.list-styled.color-darkgrey li {
	font-weight: 400;
}

.list-styled ul li,
ul.list-styled li {
	color: #36404c;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	padding: 4px 0 6px 14px;
	position: relative;
}

.list-styled ul li:before,
ul.list-styled li:before {
	color: var(--maincolor);
	content: "\f111";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 4px;
	font-weight: 900;
	left: 2px;
	position: absolute;
	top: 4px;
}

ul.list-unstyled {
	color: #707787;
}

ul.list-unstyled li {
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	padding: 4px 0 6px 0px;
}

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

ol.list-num li {
	color: #36404c;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	padding: 4px 0 6px 31px;
	position: relative;
}

ol.list-num li:after {
	color: var(--maincolor);
	content: "0" counter(li) ".";
	counter-increment: li;
	left: 2px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

ul, li {
	list-style-position: inside;
}

.decor-underline {
	text-decoration: underline;
}

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,
.sppb-form-control {
	background-color: transparent;
	border: 3px solid #ebeced;
	border-radius: 0;
	color: #707787;
	font-size: 14px;
	font-weight: 400;
	height: 60px;
	line-height: 24px;
	padding-bottom: 11px;
	padding-left: 28px;
	padding-right: 30px;
	padding-top: 11px;
	width: 100%;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="number"]:focus,
input[type="number"]:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
.form-control:focus,
.form-control:active,
.sppb-form-control:focus,
.sppb-form-control:active {
	background-color: transparent;
	color: #707787;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 60px !important;
}

textarea,
textarea.sppb-form-control {
	height: auto !important;
}

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

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

input[type="submit"],
button {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	padding: 20px 10px;
	text-align: center;
	text-transform: capitalize;
	transition: all .3s ease-in-out;
}

input[type="submit"]:hover,
button:hover {
	color: var(--maincolor);
}

.ls-wrapper .slider-btn i {margin-left: .5rem !important; font-size: 12px;}

#sp-top .sppb-btn,
#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: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	min-width: 200px;
	padding: 9px 15px;
	text-align: center;
	text-transform: none;
	cursor: pointer;
	white-space: normal;
}

#sp-top .sppb-btn.sppb-btn-primary,
#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,
.ls-wrapper .slider-btn {
	background-color: var(--maincolor);
	border: 3px solid var(--maincolor);
	color: #fff;
}

#sp-top .sppb-btn.sppb-btn-primary:hover,
#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: transparent;
	color: var(--maincolor);
}

#sp-top .sppb-btn.sppb-btn-secondary,
#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 {
	background-color: var(--secondcolor);
	border: 3px solid var(--secondcolor);
	color: #fff;
}

#sp-top .sppb-btn.sppb-btn-secondary:hover,
#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-color: transparent;
color: var(--secondcolor);
}

#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,
.sppb-addon-optin-forms .sppb-optin-form-details-wrap:not(:empty){
	padding: 0px;
}

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

/* 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-46 {
	font-size: 46px;
}

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

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

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

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

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

[class^="divider-"] {
  height: 0;
}

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

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

.color-darkgrey {
	color: #111516;
}
.color-dark {
	border-color: #303944;
	color: #303944;
}

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

.excerpt {
font-size: 20px;
font-weight: 400;
}

.bold {
    font-weight: 700;
	text-transform: capitalize;
}

.sppb-divider {
    display: block;
}


.small-text {
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.presentation {
	height: 160px;
	position: fixed !important;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all .5s ease-in-out;
	z-index: 999 !important;
}

.presentation .sppb-modal-selector {
	background-color: var(--maincolor);
	bottom: 0;
	color: #fff;
	cursor: pointer;
	left: 0;
	padding: 10px;
	position: absolute;
	text-align: center;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
	transition: all .3s ease-in-out;
	width: 160px;
}

.special-heading {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1.15;
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
}

.special-heading.underline {
	padding-bottom: 26px;
}

.special-heading.underline::after {
	background-color: var(--maincolor);
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 30px;
}

.bg-maincolor {
	background-color: var(--maincolor);
}

/* HEADER */ 

#sp-header {
	height: auto;
	box-shadow: none;
	transition: all 0.5s ease-in-out;
	padding-bottom: 0px;
	padding-top: 0px;
}

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

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

#sp-header .logo {
	height: auto;
}

#sp-header .logo a .logo-image,
#sp-header .logo a .logo-image-phone {
	display: inline-block;
	max-height: 100px;
	transition: all 0.3s ease-in-out 0s;
	height: auto;
}

#sp-header.header-sticky .logo a .logo-image,
#sp-header.header-sticky .logo a .logo-image-phone {
	max-height: 60px;
}

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

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

.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
text-decoration: none;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.8px;
margin: 0 25px;
line-height: 14px;
padding-bottom: 53px;
padding-left: 0;
padding-right: 0;
padding-top: 53px;
transition-duration: 0.15s;
}

#sp-header.header-sticky .sp-megamenu-parent > li > a {
    padding-bottom: 33px;
    padding-top: 33px;
}


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

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

body.ltr .sp-megamenu-parent > li.sp-has-child > a::after, body.ltr .sp-megamenu-parent > li.sp-has-child > span::after {
	margin-left: 3px;
}

@media (max-width: 1501px) {
	.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
	padding-left: 20px;
	padding-right: 20px;
	margin: 0;
}
}
@media (max-width: 1200px) {
	.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
	padding-left: 15px;
	padding-right: 15px;
}
.sp-megamenu-parent > li.sp-has-child > a::after {display: none !important;}
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
	list-style: none;
	margin-top: -15px !important;
	min-width: 13.9em;
	padding: 0;
	padding-bottom: 28px;
	padding-top: 28px;
	text-align: left;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
padding-left: 40px;
padding-right: 40px;
}

.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;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.8px;
	line-height: 30px;
	padding: 5px 1.1em;
	padding-left: 0;
	padding-right: 0;
}

.sp-megamenu-parent .sp-mega-group > li > a {
	font-size: 16px;
	font-weight: 700 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 10px;
	padding-left: 40px !important;
	text-transform: uppercase;
}

/* */

/* PAGE TITLE */

.sp-page-title {
	padding: 135px 0 135px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
}

.sp-page-title:before {
	background-color: #36404c;
	opacity: 0.3;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.sp-page-title .container {position: relative; z-index: 2;}

.sp-page-title .sp-page-title-heading {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 0.35em;
	text-transform: capitalize;
	word-wrap: break-word;
}

.sp-page-title .breadcrumb {
	margin: 0;
	position: relative;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.breadcrumb li {
    padding: 0;
	margin-right: 20px;
	line-height: 1.5;
	min-height: auto;
}
.breadcrumb li.float-left {margin-right: 0 !important;}

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

.breadcrumb-item + .breadcrumb-item:before {
	content: "/";
	font-weight: 900;
	padding-right: 20px;
	font-size: 11px;
}

.sp-page-title .breadcrumb > .active {
	color: #fff;
	font-weight: 500;
	opacity: 0.9;
}

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



/* 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: 120px;
	padding-bottom: 120px;
	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 */

.featherlight {
  top: 10%;
}

.featherlight .featherlight-content {
  max-height: 95%;
  max-width: 55%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent none repeat scroll 0 0;
}

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

.sp-simpleportfolio .sp-simpleportfolio-filter > ul {
	padding-top: 0;	
	padding-bottom: 45px;
}

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

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
	color: #707787;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.7px;
	line-height: 30px;
	padding: 0 26px;
	text-transform: uppercase;
	background: none;
}


.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a {
	background: none;
	color: var(--maincolor);
}

.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li:hover > a {
	background: none;
	color: var(--maincolor);
}

.sp-simpleportfolio-item {text-align: center;}

.sp-simpleportfolio-item .item-media {
	overflow: hidden;
	position: relative;
}

.sp-simpleportfolio-item .item-media img {
	width: 100%;
}

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

.sp-simpleportfolio-item .media-links::before {
background-color: rgba(54, 64, 76, 0.6);
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
-webkit-transform: perspective(100px) rotateY(-120deg);
transform: perspective(100px) rotateY(-120deg);
-webkit-transform-origin: right center 0;
transform-origin: right center 0;
-webkit-transform-style: flat;
transform-style: flat;
transition: opacity .2s ease-in-out, -webkit-transform .5s ease-in-out;
transition: transform .5s ease-in-out, opacity .2s ease-in-out;
transition: transform .5s ease-in-out, opacity .2s ease-in-out, -webkit-transform .5s ease-in-out;
}

.sp-simpleportfolio-item:hover .media-links::before {
	opacity: 0.9;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.sp-simpleportfolio-item .item-content {
	bottom: 50%;
	left: 0;
	padding: 15px;
	position: absolute;
	right: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	z-index: 2;
}

.sp-simpleportfolio-item .links-wrap a {
	border: 2px solid #fff;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	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-item .links-wrap a:hover {
	background-color: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff !important;
}

.sp-simpleportfolio-item:hover .links-wrap a {
	filter: alpha(opacity=100);
	opacity: 1;
	top: 0;
}

.sp-simpleportfolio-item .links-wrap a::before {
	content: "\f002";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-weight: 700;
}

.sp-simpleportfolio-item .links-wrap a.link-anchor {
	transition-delay: 0.1s;
}

.sp-simpleportfolio-item .links-wrap a.link-anchor::before {
	content: "\f0c1";
}

.sp-simpleportfolio-item .links-wrap a + a {
	margin-left: 6px;
}

.sp-simpleportfolio-item .portfolio-title {
max-height: 42px;
overflow: hidden;
font-size: 20px;
font-weight: 400;
margin-top: 20px;
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
transition: all 0.15s ease-in-out;
}

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

.sp-simpleportfolio-item .portfolio-title a {
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
    color: #fff;
}

.sp-simpleportfolio-item .portfolio-title a:hover {
    color: var(--maincolor);
}

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


.sp-simpleportfolio .item-content2 {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	border-color: transparent;
	padding: 25px;
}

.sp-simpleportfolio-item .sp-simpleportfolio-tags {
background-color: var(--maincolor);
color: #fff;
display: inline-block;
font-size: 12px;
font-weight: 500;
margin-bottom: 5px;
min-width: 80px;
padding: 0.35em 0.5em 0.35em;
text-align: center;
text-transform: capitalize;
line-height: 1;
}

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

/* */

/* BLOG */

.article-list .article {
	padding: 0;
	border: 0px solid #f5f5f5;
	border-radius: 0;
	position: relative;
	border-color: transparent;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

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

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

.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 {
	padding: 60px;
}

.article-list .article .article-header h1, .article-list .article .article-header h2 {
margin-top: 10px;
margin-bottom: 20px;
font-size: 1.85em;
font-weight: 500;
line-height: 1;
text-transform: capitalize;
letter-spacing: 0;
}

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

.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 .item-meta {
	color: #707787;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.article .item-meta .windstripe-article-info span:not(.published) {display: none;}
.article .cat-links .windstripe-article-info span:not(.category-name) {display: none;}

.cat-links {line-height: 1; margin: 0 0 17px;}
.cat-links a {
	background-color: var(--maincolor);
	color: #fff;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 5px;
	min-width: 80px;
	padding: 0.35em 0.5em 0.35em;
	text-align: center;
	text-transform: capitalize;
	line-height: 1;
}

.article-info > span:first-child {
    border-radius: 0 5em 5em 0;
}

.article-info > span a {
	color: #36404c;
}

.article-info > span:hover a {
	color: var(--maincolor);
}

.article-info > span:hover {background-color: #031221; color: var(--maincolor);}

.article-info > span:not(:last-child), .article-info > span:not(:last-child) {
	margin-right: 10px;
}

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

.article-info > span i {
	font-size: 16px;
	margin-right: 5px;
	position: relative;
}

.article-introtext .excerpt {font-size: 16px; margin-bottom: 0;}

.article-list .article .article-intro-image a:after {
	background-color: rgba(54, 64, 76, 0.6);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: perspective(100px) rotateY(-120deg);
	transform: perspective(100px) rotateY(-120deg);
	-webkit-transform-origin: right center 0;
	transform-origin: right center 0;
	-webkit-transform-style: flat;
	transform-style: flat;
	transition: opacity .2s ease-in-out, -webkit-transform .5s ease-in-out;
	transition: transform .5s ease-in-out, opacity .2s ease-in-out;
	transition: transform .5s ease-in-out, opacity .2s ease-in-out, -webkit-transform .5s ease-in-out;
}
.article-list .article .article-intro-image:hover a:after{
	opacity: 0.9;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

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

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

#sp-left .sp-module ul > li > a, #sp-right .sp-module ul > li > a {
	display: inline-block;
	padding: 0;
	line-height: 24px;
}

/* SINGLE POST */

.article-details {
	border-color: transparent;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
position: relative;
}

.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 {
	padding: 55px 60px;
}

.single-article-content .article-header {display: none;}

.article-details .windstripe-article-info {
	color: #707787;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.article-details .windstripe-article-info > span {
	margin-right: 30px;
}

.article-details .windstripe-article-info > span a {
	color: #707787;
}

.article-details .gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px;
}

.article-details .gallery-item {
	padding: 0 7px;
	width: 50%;
}

.author-bio {
	margin-top: 60px;
}

.author-bio.box-shadow {
	border-color: transparent;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.cover-image {
padding-left: 60px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}

.cover-image > img {
	width: 100%;
}

.author-bio .content {
	padding: 60px;
}

.author-bio .content {
	margin-top: -7px;
}

.font-weight-regular {
	font-weight: 500 !important;
}

.letter-sp-normal {
	letter-spacing: 0;
}

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

/* */

/* SHOP */

.j2store-single-product {
	margin-bottom: 60px;
	border: 0px solid #e1e1e1;
	position: relative;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

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

.j2store-single-product .product-title {
letter-spacing: 0;
padding-left: 0;
padding-right: 0;
font-size: 1.6em;
line-height: 1;
margin: 1.2em 0 0.8em;
text-transform: none;
}

.product-price-container {
display: block;
font-size: 16px;
color: #36404c;
display: block;
font-weight: 700;
margin: 1em 0 1.5em;
opacity: 0.65;
}

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

.product-price-container .strike {
	color: #36404c;
	opacity: 0.7;
	padding-right: 1em;
}

.product-price-container .sale-price {
color: #36404c;
font-weight: 700;
font-size: 16px;
}

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

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

.j2store-addtocart-form .sppb-btn {
	min-width: 150px !important;
	line-height: 1.4 !important;
	padding: 9px 15px !important;
}

.j2store-addtocart-form a:before {
    content: "\f291";
    display: inline-block;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-size: 16px;
    left: -0.5em;
    line-height: 0;
    position: relative;
    top: 0.1em;
}


/* Single Product */


.j2store-product-main-image {
	margin-bottom: 0;
	width: 100%;
}

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 -5px;
overflow: hidden;
position: static;
margin-bottom: 0;
margin-top: 5px;
}

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

.product-title-simple {
font-size: 26px;
line-height: 1;
    margin-bottom: 20px !important;
}

.product-sdesc ul.list-styled {padding: 20px 0;}

.product-sdesc ul.list-styled li {
    padding-left: 25px;
}

.type-product .j2store-addtocart-form-simple {
	margin: 20px 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: 16px;
	font-weight: 400;
	margin-bottom: 5px;
	color: #36404c;
}

.options select {
height: 60px;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: "";
width: 100%;
background-color: transparent;
border: none;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
color: #36404c;
font-size: 12px;
font-weight: 600;
padding-bottom: 11px;
padding-left: 28px;
padding-right: 30px;
padding-top: 11px;
width: 100%;
}

.select_container {
	position: relative;
}

.select_container::before {
	background-color: #fff;
	bottom: 3px;
	content: "";
	display: inline-block;
	pointer-events: none;
	position: absolute;
	right: 3px;
	top: 3px;
	width: 45px;
}
.select_container::after {
	color: var(--maincolor);
	content: "\f078";
	font-family: "Font Awesome 5 Free", sans-serif;
	font-size: 10px;
	font-weight: 900;
	pointer-events: none;
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

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

#sp-component .simple.detail.bs3 .j2store-addtocart-form-simple .sppb-btn {
	min-width: 150px;
}

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

.product-qty input[type="text"], .product-qty input[type="number"] {
	display: inline;
	width: auto !important;
	text-align: center;
	margin: 0px;
	text-align: center;
	border-radius: 0;
	background-color: transparent;
	border: 3px solid #ebeced;
	border-radius: 0;
	color: #707787;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	padding-bottom: 11px!important;
	padding-top: 11px!important;
	width: 100%;
	-moz-appearance: textfield;
	max-width: 4.5em;
	padding-left: 20px!important;
	padding-right: 20px!important;
	height: 42px;
}

.product-qty input[type="text"]:focus, .product-qty input[type="number"]:focus {box-shadow: none;}

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

.woocommerce-tabs ul.nav-tabs {
	border-bottom: 0px solid #e5e5e5;
	position: relative;
	z-index: 2;
}

.woocommerce-tabs ul.nav-tabs li {
text-align: center;
}

.woocommerce-tabs ul.nav-tabs li a {	
	line-height: 1;
	background-color: var(--maincolor);
	color: #fff;
min-width: unset;
padding: 22px 35px;
  border: none;
border-radius: 0;
font-size: 16px;
font-weight: 400;
margin-right: 2px;
}

.woocommerce-tabs ul.nav-tabs li a:hover,
.woocommerce-tabs ul.nav-tabs li a.active {
  background: #fff;
color: #707787;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

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

.woocommerce-tabs .tab-content {
background-color: #fff;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
padding: 53px 60px;
position: relative;
  margin-top: 18px;
}


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

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

.related.products > h2 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: unset;
	line-height: 1;
	margin-bottom: 1.9em;
}

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

.crosssell-product .j2store-single-product .sppb-btn { line-height: 1.4 !important; min-width: 150px !important;}

.crosssell-product .j2store-single-product .sppb-btn:before {
    content: "\f291";
    display: inline-block;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-size: 16px;
    left: -0.5em;
    line-height: 0;
    position: relative;
    top: 0.1em;
}

.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: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	min-width: 200px;
	padding: 9px 15px;
	text-align: center;
	text-transform: none;
	cursor: pointer;
	white-space: normal;
	background-color: var(--maincolor) !important;
	border: 3px solid var(--maincolor);
	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: transparent !important;
	color: var(--maincolor) !important;
}

.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 br {
	display: block;
margin-bottom: 10px;
}

.view-checkout #j2store-checkout input[type="text"], 
.view-checkout #j2store-checkout input[type="email"], 
.view-checkout #j2store-checkout input[type="url"], 
.view-checkout #j2store-checkout input[type="password"], 
.view-checkout #j2store-checkout input[type="search"], 
.view-checkout #j2store-checkout input[type="tel"], 
.view-checkout #j2store-checkout input[type="number"], 
.view-checkout #j2store-checkout .form-control, 
.view-checkout #j2store-checkout .sppb-form-control {
	background-color: transparent;
	border: 3px solid #ebeced;
	border-radius: 0;
	color: #707787;
	font-size: 14px;
	font-weight: 400;
	height: 60px;
	line-height: 24px;
	padding-bottom: 11px;
	padding-left: 28px;
	padding-right: 30px;
	padding-top: 11px;
	width: 100%;
} {
	background-color: transparent;
	border: 3px solid #ebeced;
	border-radius: 0;
	color: #707787;
	font-size: 14px;
	font-weight: 400;
	height: 60px;
	line-height: 24px;
	padding-bottom: 11px;
	padding-left: 28px;
	padding-right: 30px;
	padding-top: 11px;
	width: 100%;
}

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


/* */

/* PAGINATION */

.pagination {
	display: block;
	padding-left: 0;
	list-style: none;
	border-radius: 0;
	margin-top: 35px;
	text-align: center;
}

.page-link {
	position: relative;
	display: block;
	background-color: #fff;
	border: 1px solid #e4ebe8;
	border-radius: 100% !important;
	color: #7a998c;
	display: inline-block;
	height: 2.5em;
	letter-spacing: 0;
	line-height: 1;
	margin-left: 0;
	margin-right: 4px;
	min-width: 2.5em;
	padding: 0.6em 0.4em 0.3em;
	text-align: center;
}

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

.page-item.active .page-link {
	z-index: 1;
	background-color: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff;
}

.page-link:hover {
	z-index: 2;
	text-decoration: none;
	background-color: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff;
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}




/* 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;}


/* */


/* IMPORT FLATICON */


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

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	@font-face {
		font-family: "Flaticon";
		src: url("../fonts/flaticon/Flaticon.svg#Flaticon") format("svg");
	}
}

.fi:before {
	display: inline-block;
	font-family: "Flaticon";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	-moz-osx-font-smoothing: grayscale;
	text-decoration: inherit;
	text-rendering: optimizeLegibility;
	text-transform: none;
}

.flaticon-badge:before {
	content: "\f100";
}

.flaticon-balance:before {
	content: "\f101";
}

.flaticon-balloons:before {
	content: "\f102";
}

.flaticon-bar-chart:before {
	content: "\f103";
}

.flaticon-calendar:before {
	content: "\f104";
}

.flaticon-candidates:before {
	content: "\f105";
}

.flaticon-capitol:before {
	content: "\f106";
}

.flaticon-checking:before {
	content: "\f107";
}

.flaticon-debate:before {
	content: "\f108";
}

.flaticon-flag:before {
	content: "\f109";
}

.flaticon-garlands:before {
	content: "\f10a";
}

.flaticon-handshake:before {
	content: "\f10b";
}

.flaticon-leaflet:before {
	content: "\f10c";
}

.flaticon-line-chart:before {
	content: "\f10d";
}

.flaticon-megaphone:before {
	content: "\f10e";
}

.flaticon-newspaper:before {
	content: "\f10f";
}

.flaticon-oath:before {
	content: "\f110";
}

.flaticon-pie-chart:before {
	content: "\f111";
}

.flaticon-poll:before {
	content: "\f112";
}

.flaticon-rating:before {
	content: "\f113";
}

.flaticon-search:before {
	content: "\f114";
}

.flaticon-speech:before {
	content: "\f115";
}

.flaticon-statistics:before {
	content: "\f116";
}

.flaticon-suit:before {
	content: "\f117";
}

.flaticon-television:before {
	content: "\f118";
}

.flaticon-tie:before {
	content: "\f119";
}

.flaticon-top-hat:before {
	content: "\f11a";
}

.flaticon-vote:before {
	content: "\f11b";
}

.flaticon-vote-1:before {
	content: "\f11c";
}

.flaticon-voting:before {
	content: "\f11d";
}



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

@media (min-width: 320px) {#sp-top3  .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-top3  .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-top3  .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-top3 .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-top3  .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;
}
