@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--first-font: 'Outfit', sans-serif;
	--second-font: 'Poppins', sans-serif;
	--theme-color: #FF0303;
	--second-color: #FF6B6B;
	--third-color: #B30202;
	--chartreuse-color: #FFE5E5;
	--border-color: #FFB3B3;
	--black: #000000;
	--white: #ffffff;
	--grey-color: #C6C6C6;
	--section-bg: #1a0000;
	--section-bg-second: linear-gradient(180deg, #1a0000 0%, rgba(0, 0, 0, 0) 100%);
	--theme-shadow: 0px 12px 29px rgba(255, 3, 3, 0.28);
	--gradient-color: linear-gradient(270deg, #FF0303 0%, #141414 100%);
	--h1: normal 600 51px/1.2 var(--second-font);
	--h2: normal 600 41px/1.2 var(--second-font);
	--h3: normal 600 26px/1.2 var(--second-font);
	--h4: normal 600 22px/1.2 var(--second-font);
	--h5: normal 600 18px/1.2 var(--second-font);
	--h6: normal 600 14px/1.2 var(--second-font);
	--common-text: normal 400 14px/1.4 var(--first-font);
}

*,
:after,
:before {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	text-decoration: inherit;
	vertical-align: inherit;
}

html {
	outline: none;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

body {
	color: var(--black);
	font: var(--common-text);
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: var(--white);
	overflow-x: hidden;
}

body,
html {
	scrollbar-width: none;
}

body::-webkit-scrollbar {
	display: none;
}

body::-moz-scrollbar {
	display: none;
}

svg,
img {
	max-width: 100%;
	display: block;
}

a,
.btn,
button {
	cursor: pointer;
	text-decoration: none;
	outline: none;
	box-shadow: none;
	color: inherit;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	display: inline-block;
}

a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
	text-decoration: none;
	-webkit-text-decoration-skip: objects;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

::-webkit-input-placeholder {
	color: var(--black);
}

:-ms-input-placeholder {
	color: var(--black);
}

::placeholder {
	color: var(--black);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
	vertical-align: baseline;
}

p,
li,
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
	font: var(--common-text);
}

h1,
.h1 {
	font: var(--h1);
}

h2,
.h2 {
	font: var(--h2);
}

h3,
.h3 {
	font: var(--h3);
}

h4,
.h4 {
	font: var(--h4);
}

h5,
.h5 {
	font: var(--h5);
}

h6,
.h6 {
	font: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.uppercase {
	text-transform: uppercase;
}

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

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

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

b {
	font-weight: bold;
	display: inline-block;
}

p:not(:last-of-type) {
	margin-bottom: 15px;
}

.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

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

.no-gutters {
	margin: 0 !important;
}

.row [class*="col-"] {
	padding: 0 15px;
}

.no-gutters [class*="col-"] {
	padding: 0;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.d-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.align-items-start {
	-ms-flex-align: start;
	align-items: flex-start;
}

.align-items-end {
	-ms-flex-align: end;
	align-items: flex-end;
}

.align-items-center {
	-ms-flex-align: center;
	align-items: center;
}

.justify-content-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.justify-content-between {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify-content-start {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.justify-content-center {
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-end {
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.direction-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.no-wrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.desk-only {
	display: none !important;
}

.mobile-only {
	display: block !important;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.66666667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.33333333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.66666667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.33333333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.66666667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.66666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.offset-1 {
	margin-left: 8.33333333%;
}

.offset-2 {
	margin-left: 16.66666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333333%;
}

.offset-5 {
	margin-left: 41.66666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333333%;
}

.offset-8 {
	margin-left: 66.66666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333333%;
}

.offset-11 {
	margin-left: 91.66666667%;
}

@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}

	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.33333333%;
	}

	.offset-sm-2 {
		margin-left: 16.66666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33333333%;
	}

	.offset-sm-5 {
		margin-left: 41.66666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33333333%;
	}

	.offset-sm-8 {
		margin-left: 66.66666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33333333%;
	}

	.offset-sm-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-md-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-md-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-md-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-md-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.33333333%;
	}

	.offset-md-2 {
		margin-left: 16.66666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33333333%;
	}

	.offset-md-5 {
		margin-left: 41.66666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33333333%;
	}

	.offset-md-8 {
		margin-left: 66.66666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33333333%;
	}

	.offset-md-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}

	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.33333333%;
	}

	.offset-lg-2 {
		margin-left: 16.66666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33333333%;
	}

	.offset-lg-5 {
		margin-left: 41.66666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33333333%;
	}

	.offset-lg-8 {
		margin-left: 66.66666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33333333%;
	}

	.offset-lg-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}

	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xl-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}

	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xxl-0 {
		margin-left: 0;
	}

	.offset-xxl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xxl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xxl-3 {
		margin-left: 25%;
	}

	.offset-xxl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xxl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xxl-6 {
		margin-left: 50%;
	}

	.offset-xxl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xxl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xxl-9 {
		margin-left: 75%;
	}

	.offset-xxl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xxl-11 {
		margin-left: 91.66666667%;
	}
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: var(--white);
	border: solid 1px var(--border-color);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	outline: none;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 10px 35px 10px 15px;
	width: 100%;
}

.nice-select:after {
	border-bottom: 2px solid var(--black);
	border-right: 2px solid var(--black);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: var(--border-color);
	color: var(--border-color);
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: var(--white);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 2;
	width: 100%;
	color: var(--black);
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
	color: var(--black);
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	list-style: none;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size: 13px;
	line-height: 1;
	padding: 10px 15px;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	color: var(--black);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: var(--second-color);
	color: var(--theme-color);
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: var(--black);
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
	outline: none;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-dots {
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.slick-dots li:not(:last-child) {
	margin-right: 5px;
}

.slick-dots li {
	display: flex;
	height: 10px;
	width: 10px;
	background: var(--white);
	border-radius: 100%;
	border: 1px solid var(--theme-color);
}

.slick-dots li.slick-active {
	background: var(--theme-color);
}

.slick-dots li button {
	display: none;
}

.slick-arrow {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	font-size: 0;
	border: 0;
	outline: none;
	z-index: 1;
	border-radius: 0;
	padding: 0;
	background-color: var(--theme-color);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slick-arrow:hover {
	background-color: var(--second-color);
}

.slick-arrow svg path {
	fill: var(--white);
}

.slick-arrow.slick-next {
	right: 0;
	left: auto;
}

.slick-arrow.slick-prev {
	right: auto;
	left: 0;
	-webkit-transform: translateY(-50%) scale(-1);
	-moz-transform: translateY(-50%) scale(-1);
	-ms-transform: translateY(-50%) scale(-1);
	-o-transform: translateY(-50%) scale(-1);
	transform: translateY(-50%) scale(-1);
}

.slick-arrow:focus,
.slick-arrow:hover {
	background-color: var(--second-color);
}

.slick-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
	background-color: transparent;
}

.slick-lightbox .slick-prev {
	left: 15px;
}

.slick-lightbox .slick-next {
	right: 15px;
}

.slick-lightbox-inner .slick-arrow {
	background: var(--white) url(../images/right-arrow.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.slick-lightbox-hide {
	opacity: 0;
}

.slick-lightbox-hide-init {
	position: absolute;
	top: -9999px;
	opacity: 0;
}

.slick-lightbox-inner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slick-lightbox-slick-item {
	text-align: center;
	overflow: hidden;
}

.slick-lightbox-slick-item:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
	display: block;
	text-align: center;
}

.slick-lightbox-slick-item-inner {
	display: inline-block;
	vertical-align: middle;
	max-width: 90%;
	max-height: 90%;
}

.slick-lightbox-slick-img {
	margin: 0 auto;
	display: block;
	max-width: 90%;
	max-height: 90%;
}

.slick-lightbox-slick-caption {
	margin: 10px 0 0;
	display: block;
	color: var(--white);
}

.slick-lightbox-close {
	position: absolute;
	top: 15px;
	right: 15px;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	padding: 0;
	border: none;
}

.slick-lightbox .close svg {
	height: 100%;
	width: 100%;
}

.slick-lightbox .close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--white);
	opacity: 1;
	background: transparent;
	border: none;
	height: 27px;
	width: 27px;
	padding: 0;
}

.open-lightbox {
	height: 50px;
	width: 50px;
	background: rgba(32, 30, 30, 0.49);
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.slide-arrow svg {
	height: 12px;
	width: 22px;
	margin: 0 auto;
}

.common-arrows .slick-arrow {
	width: 35px;
	height: 35px;
	background-color: var(--second-color);
}

.common-arrows .slide-arrow svg {
	height: 10px;
	width: 17px;
}

.common-arrows .slide-arrow svg path {
	fill: var(--white);
}

.btn {
	text-align: center;
	padding: 10px 20px;
	font-family: var(--first-font);
	color: var(--white);
	background-color: var(--second-color);
	box-shadow: none;
	appearance: none;
	outline: none;
	cursor: pointer;
	border: 1px solid var(--second-color);
	position: relative;
	border-radius: 0;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	border-radius: 25px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	flex: unset !important;
}

.btn svg {
	flex-shrink: 0;
	margin-left: 10px;
	height: auto;
	width: 20px;
}

.btn svg path {
	fill: var(--white);
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}

.btn:hover,
.btn:focus {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: var(--white);
}

.btn:focus svg path,
.btn:hover svg path {
	fill: var(--white);
}

.link-btn {
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	display: inline-flex;
	align-items: center;
	color: var(--theme-color);
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}

.link-btn svg {
	width: 17px;
	height: 17px;
	fill: var(--theme-color);
	margin-left: 13px;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}

.link-btn svg path {
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	fill: var(--theme-color);
}

.link-btn:hover {
	color: var(--second-color);
}

.link-btn:hover svg path {
	fill: var(--second-color);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--theme-color);
	background: transparent;
	color: var(--theme-color);
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
}

.btn-secondary svg {
	width: 20px;
	height: auto;
}

.btn-secondary svg path {
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
	fill: var(--theme-color);
}

.btn-secondary:hover {
	background: var(--second-color);
	color: var(--white);
	border-color: var(--second-color);
}

.btn-secondary:hover svg path {
	fill: var(--white);
}

.btn-secondary.white-btn svg path {
	fill: var(--white);
}

.btn-secondary.white-btn:hover {
	border: 1px solid var(--theme-color);
	color: var(--theme-color);
	background: var(--white);
}

.btn-secondary.white-btn:hover svg path {
	fill: var(--theme-color);
}



.btn.btn-white {
	background: var(--white);
	color: var(--theme-color);
	border-color: var(--white);
}

.btn.btn-white svg path {
	fill: var(--theme-color);
}

.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
	position: relative;
	border: 1px solid var(--border-color);
	display: block;
	width: 100%;
	padding: 15px 20px;
	background: transparent;
	font-size: 14px;
	line-height: 1;
	color: var(--black);
	height: auto;
}

textarea {
	resize: none;
}

form .row {
	margin: 0 -8px;
}

form .row [class*="col-"] {
	padding: 0 10px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
}

sup {
	top: -0.5em;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

.form-group label sup {
	color: red;
}

.checkbox-custom input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.checkbox-custom label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
}

.checkbox-custom label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid var(--theme-color);
	padding: 8px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 15px;
}

.checkbox-custom input:checked+label:before {
	background-color: var(--theme-color);
}

.checkbox-custom input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 7px;
	width: 5px;
	height: 9px;
	border: solid var(--white);
	border-width: 0px 1px 1px 0;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-62%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
}

.checkbox-custom label a {
	text-decoration: underline;
	font-weight: 600;
}

.radio-group input[type="radio"] {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
}

.radio-group label {
	cursor: pointer;
	position: relative;
	font-size: 12px;
	padding-left: 24px;
	color: var(--black);
}

.radio-group label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 2px solid var(--black);
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: border-color 400ms ease;
	-webkit-transition: border-color 400ms ease;
	-moz-transition: border-color 400ms ease;
	-ms-transition: border-color 400ms ease;
	-o-transition: border-color 400ms ease;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.radio-group label::after {
	content: "";
	position: absolute;
	width: 13px;
	height: 13px;
	background-color: var(--black);
	border: 2px solid var(--black);
	border-radius: 50%;
	top: 50%;
	left: 1px;
	transform: translateY(-50%) scale(0);
	transition: transform 400ms ease;
	right: auto;
	-webkit-transform: translateY(-50%) scale(0);
	-moz-transform: translateY(-50%) scale(0);
	-ms-transform: translateY(-50%) scale(0);
	-o-transform: translateY(-50%) scale(0);
	-webkit-transition: transform 400ms ease;
	-moz-transition: transform 400ms ease;
	-ms-transition: transform 400ms ease;
	-o-transition: transform 400ms ease;
}

.radio-group input[type="radio"]:checked+label::before {
	border-color: var(--black);
}

.radio-group input[type="radio"]:checked+label::after {
	transform: translateY(-50%) scale(0.55);
	-webkit-transform: translateY(-50%) scale(0.55);
	-moz-transform: translateY(-50%) scale(0.55);
	-ms-transform: translateY(-50%) scale(0.55);
	-o-transform: translateY(-50%) scale(0.55);
}

body.active-menu,
body.no-scroll {
	overflow: hidden;
}

.right-gliter {
	bottom: 0;
	right: 0;
}

.gliter-img {
	position: absolute;
	z-index: -1;
	height: 100%;
}

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

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

.section-title {
	margin-bottom: 40px;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.header-style-one {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 4;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	background: var(--white);
}

.header-style-one svg path {
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.header-style-one .header-top {
	padding: 0 30px;
	border-bottom: 1px solid var(--border-color);
}

.header-top-row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.header-style-one .logo-col {
	border-right: 1px solid var(--border-color);
	max-width: 162px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px 10px 0;
}

.header-style-one .logo-col a {
	display: block;
}

.header-style-one .search-form-wrapper {
	padding: 0 0 0 20px;
	max-width: 25.9%;
	width: 100%;
	display: flex;
	align-items: center;
}

.search-form-wrapper form {
	width: 100%;
}

.search-form-wrapper .form-inputs {
	display: flex;
	flex: 100%;
	width: 100%;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.header-style-one .search-form-wrapper .form-inputs input {
	padding: 10px 15px;
	width: 100%;
	border: 0;
}

.header-style-one .search-form-wrapper .btn {
	padding: 0;
	max-width: 50px;
	width: 100%;
	border: 0;
	background: transparent;
}

.search-form-wrapper .btn svg {
	margin: 0;
}

.search-form-wrapper .btn svg path {
	fill: var(--black);
}

.search-form-wrapper .nice-select {
	background: var(--theme-color);
	color: var(--white);
	max-width: 160px;
	width: 100%;
	border-color: transparent;
	line-height: 18px;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	-ms-border-radius: 35px;
	-o-border-radius: 35px;
}

.search-form-wrapper .nice-select .current {
	white-space: nowrap;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-form-wrapper .nice-select:after {
	border-color: var(--white);
}

.header-style-one .top-navigationbar {
	flex: 1;
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-style-one .top-navigationbar .menu-right li {
	position: relative;
}

.header-style-one .top-navigationbar .menu-right li .menu-dropdown {
	left: auto;
	right: 0;
}

.header-style-one .top-navigationbar .menu {
	flex: 1;
	border-right: 1px solid var(--border-color);
	padding-right: 20px;
}

.header-style-one .top-navigationbar .menu {
	display: flex;
	align-items: center;
}

.header-style-one .top-navigationbar .menu>li:not(:last-of-type) {
	margin-right: 30px;
}

.header-style-one .top-navigationbar .menu>li>a {
	padding: 25px 0;
	position: relative;
	height: 100%;
	font-weight: 400;
}

.header-style-one .top-navigationbar .menu>li.has-item>a,
.menu-right>li.has-item>a,
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a {
	padding-right: 20px;
}

.header-style-one li.has-item>a:after {
	border-bottom: 2px solid var(--black);
	border-right: 2px solid var(--black);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.header-style-one li.has-item:hover>a:after {
	transform: rotate(-136deg);
	-webkit-transform: rotate(-136deg);
	-moz-transform: rotate(-136deg);
	-ms-transform: rotate(-136deg);
	-o-transform: rotate(-136deg);
}

.header-style-one .menu-dropdown {
	position: absolute;
	top: 100%;
	transform-origin: top;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
	background: var(--white);
	border: 1px solid var(--border-color);
	opacity: 0;
	visibility: hidden;
	min-width: 220px;
	z-index: 2;
	padding: 20px;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.header-style-one li:hover .menu-dropdown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header-style-one li .menu-dropdown ul>li {
	margin-right: 0;
}

.header-style-one .menu-dropdown ul>li:not(:last-of-type) {
	margin-bottom: 10px;
}

.menu-right {
	padding: 0 0 0 20px;
	display: flex;
	align-items: center;
}

.menu-right:last-child .menu-dropdown {
	right: 0;
}

.menu-right li:not(:last-of-type) {
	margin-right: 30px;
}

.menu-right>li>a {
	display: inline-flex;
	align-items: center;
	position: relative;
	line-height: 1;
	padding: 25px 0;
}

.menu-right>li.search-header {
	display: none;
}

.menu-right li .icon {
	margin-right: 10px;
}

.menu-right li .icon svg {
	width: 15px;
	height: 15px;
}

.menu-right li .icon svg path {
	fill: var(--black);
}

.count {
	display: inline-block;
	width: 15px;
	height: 15px;
	font-size: 10px;
	background: var(--theme-color);
	color: var(--white);
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
	padding-right: 30px;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a {
	color: var(--white);
	text-transform: capitalize;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	padding: 15px 15px;
	position: relative;
	display: inline-flex;
	font-size: 14px;
	align-items: center;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a svg {
	margin-right: 10px;
}

.main-navigationbar li.has-item>a:after {
	border-color: var(--white);
}

.header-style-one .main-navigationbar .menu-items-col {
	flex: 1;
}

.main-navigationbar {
	display: flex;
	align-items: center;
	padding-right: 15px;
	background: var(--theme-color);
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
	width: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 0;
	background: transparent;
	border: 0;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu .mega-menu-inner {
	background: #0C0C0C;
	border: 1px solid #212121;
}

.megamenu-list {
	padding: 20px 0;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu .mega-menu-inner .row>li:first-child .megamenu-list {
	padding-left: 20px;
}

.header-style-one .megamenu-list>li span {
	margin-bottom: 15px;
	display: block;
	font-weight: 600;
	text-transform: capitalize;
}

.menu-dropdown.mega-menu .courses-card .courses-card-inner {
	border-left: 1px solid var(--border-color);
}

.header-style-one .menu-dropdown .dropdown-user-dtl {
	margin-bottom: 20px !important;
}

.dropdown-user-dtl .user-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
}

.dropdown-user-dtl .user-image img {
	width: 100%;
	object-fit: cover;
}

.dropdown-user-dtl .user-details {
	font-size: 14px;
	padding-left: 15px;
}

.header-style-one .menu-right li .menu-dropdown ul>li a {
	justify-content: flex-start;
	display: inline-flex;
	align-items: center;
}

.header-style-one .menu-right li .menu-dropdown ul>li a svg {
	margin-right: 10px;
	width: 17px;
	height: 17px;
}

.header-style-one .menu-right li .menu-dropdown ul>li a svg path {
	fill: var(--black);
}

.header-style-one .mobile-menu {
	display: none;
	position: relative;
	z-index: 1;
	width: 22px;
	height: 22px;
	margin: 0 0 0 20px;
}

.header-style-one .mobile-menu .mobile-menu-button {
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	padding: 0;
	text-align: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: transparent;
	border: none;
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.header-style-one .mobile-menu .mobile-menu-button div {
	width: 100%;
	height: 2px;
	margin: 4px 0;
	backface-visibility: hidden;
	background: var(--black);
}

.header-style-one .mobile-menu-bottom {
	display: none;
}

.main-navigationbar .menu-dropdown {
	padding: 20px 0;
}

.nav-course-categories .menu-dropdown>ul>li>a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.nav-course-categories .menu-dropdown li a svg {
	flex-shrink: 0;
	margin-left: 10px;
	height: auto;
	width: 10px;
}

.child-has-item .child-menu-dropdown {
	opacity: 0;
	overflow: hidden;
	transition: transform .5s ease 0s, opacity .6s ease 0s, max-height .6s step-end 0s, max-width .6s step-end 0s, padding .6s step-end 0s;
	transform: translate3d(70px, 0px, 0px);
	visibility: hidden;
	position: absolute;
	left: 100%;
	top: -1px;
	z-index: 5;
	padding: 20px;
	box-shadow: 0px 10px 40px rgb(0 0 0 / 5%);
	background: var(--white);
	border: 1px solid var(--border-color);
	margin: 0 !important;
	min-width: 250px;
}

.child-has-item:hover .child-menu-dropdown {
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
	overflow: visible;
	visibility: visible;
}

.header-style-one .profile-header .menu-dropdown {
	min-width: 262px;
}

.search-popup {
	position: fixed;
	background: rgb(0 0 0 / 69%);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 5;
	padding: 0 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.5s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.search-popup.active {
	opacity: 1;
	visibility: visible;
}

.search-popup .close-search {
	position: absolute;
	right: 50px;
	top: 50px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}

.search-popup .close-search svg {
	height: 100%;
	width: 100%;
}

.search-popup .search-form-wrapper {
	max-width: 1000px;
	width: 100%;
}

.search-popup .search-form-wrapper form {
	width: 100%;
}

.search-popup .search-form-wrapper .form-inputs {
	width: 100%;
	position: relative;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: 0;
}

.search-popup .search-form-wrapper input {
	padding: 15px 60px 15px 20px;
	background: var(--white);
}

.search-popup .search-form-wrapper .btn svg path {
	fill: var(--white);
}

.search-popup .search-form-wrapper .btn {
	position: absolute;
	right: 5px;
	top: 50%;
	width: 45px;
	padding: 0;
	height: calc(100% - 10px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.header-style-one .mobile-menu-bottom {
	display: none;
}

.mobile-menu-wrapper {
	position: fixed;
	z-index: 5;
	background: var(--white);
	top: 0;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translate(100%, 0px);
	-moz-transform: translate(100%, 0px);
	-ms-transform: translate(100%, 0px);
	-o-transform: translate(100%, 0px);
	transform: translate(100%, 0px);
	right: 0;
	width: 100%;
	max-width: 400px;
}

.mobile-menu-wrapper.active-menu {
	transform: translate(0%, 0px);
	-webkit-transform: translate(0%, 0px);
	-moz-transform: translate(0%, 0px);
	-ms-transform: translate(0%, 0px);
	-o-transform: translate(0%, 0px);
}

.mobile-menu-wrapper .menu-close-icon {
	text-align: right;
	padding: 15px 20px;
	background: var(--theme-color);
}

.mobile-menu-wrapper .menu-close-icon svg path {
	fill: var(--white);
}

.mobile-menu-wrapper .mobile-menu-bar>ul {
	height: calc(100vh - 48px);
	overflow: auto;
	padding: 10px 20px;
	background: var(--white);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg path {
	fill: var(--black);
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li {
	margin-top: 12px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
	font-size: 18px;
	color: var(--black);
	letter-spacing: 1px;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg {
	margin-left: auto;
	width: 14px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
	display: none;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .menu-open-arrow {
	display: none;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .close-menu-ioc {
	display: block;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul {
	margin: 12px 0 0 !important;
	padding-bottom: 0;
}

.acnav-list {
	display: none;
	padding: 0 0 10px 0;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li:not(:last-of-type) {
	margin-bottom: 8px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li a {
	font-size: 14px;
	line-height: 18px;
	text-transform: lowercase;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li:not(:last-of-type) {
	margin-bottom: 12px;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li.has-children.is-open .menu-open-arrow {
	display: none;
}

.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li.has-children.is-open .close-menu-ioc {
	display: block;
}

.home-banner-content-inner .h1 {
	margin-bottom: 30px;
}

.home-banner-content-inner .btn-group {
	margin-top: 30px;
}

.btn-group {
	margin-bottom: -15px;
}

.btn-group .btn {
	margin-bottom: 15px;
}

.btn-group .btn:not(:last-of-type) {
	margin-right: 15px;
}

.advance-search {
	min-height: 499px;
	padding-top: 40px;
}

.advance-search-back {
	max-width: 386px;
	width: 100%;
	position: relative;
	margin-left: auto;
	background: var(--chartreuse-color);
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	padding: 32px;
	margin-right: 40px;
}

.advance-search-back .advance-search-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.advance-search-image {
	margin: 0 -72px -72px 0;
	position: relative;
	padding-top: 122.44%;
}

.advance-search-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	width: 386px;
	height: 386px;
	border-radius: 96px;
	transform: rotate(-35.79deg);
	border: 1px solid var(--third-color);
}

.advance-search-back::after {
	content: '';
	position: absolute;
	top: auto;
	left: auto;
	right: -70px;
	bottom: -50px;
	z-index: -1;
	width: 307.55px;
	height: 307.55px;
	border-radius: 96px;
	overflow: hidden;
	transform: rotate(-150deg);
	border: 1px solid var(--theme-color);
	-webkit-border-radius: 96px;
	-moz-border-radius: 96px;
	-ms-border-radius: 96px;
	-o-border-radius: 96px;
}

.advance-search-form {
	position: relative;
	margin-top: -100px;
	max-width: 470px;
	width: 100%;
}

.advance-search-form .input-wrapper {
	display: flex;
	border: 1px solid var(--theme-color);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	position: relative;
	background: var(--white);
}

.advance-search-form .input-wrapper input {
	border: 0;
}

.advance-search-form .nice-select {
	background: var(--theme-color);
	color: var(--white);
	border: 0;
	display: flex;
	align-items: center;
	border-radius: 20px;
	max-width: 160px;
}

.advance-search-form .nice-select::after {
	border-color: var(--white);
}

.banner-left-side {
	min-height: 434px;
}

.home-banner-content {
	max-width: 500px;
}

.border-bottom {
	border-bottom: 1px solid var(--border-color);
}

.offer-announcement {
	background: var(--third-color);
	color: var(--white);
	padding: 12px 35px 12px 15px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	display: inline-block;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.offer-announcement p {
	flex: 1;
	padding-right: 10px;
}

.offer-announcement .link-btn {
	text-decoration: underline;
	color: var(--white);
	margin-left: 15px;
}

.offer-announcement .link-btn:hover {
	color: var(--theme-color);
}

.offer-announcement .link-btn:hover svg path {
	fill: var(--theme-color);
}

.offer-announcement a svg path {
	fill: var(--white);
}

.product-card:nth-child(even) .btn.cart-btn {
	background: var(--third-color);
	border-color: var(--third-color);
}

.product-card:nth-child(odd) .btn.cart-btn {
	background: var(--second-color);
	border-color: var(--second-color);
	color: var(--white);
}

.product-card:nth-child(odd) .btn.cart-btn svg path {
	fill: var(--white);

}

.product-center-slider .slick-center .product-card-inner .btn.cart-btn {
	background: var(--chartreuse-color);
	border-color: var(--chartreuse-color);
	color: var(--black);
}

.product-center-slider .slick-center .product-card-inner .btn.cart-btn svg path {
	fill: var(--black);
}

.product-card .btn.cart-btn:hover {
	background: var(--theme-color) !important;
	border-color: var(--theme-color) !important;
	color: var(--white) !important;
}

.product-card .btn.cart-btn:hover svg path {
	fill: var(--white) !important;
}

.section-title .section-title-left {
	max-width: 760px;
}

.section-title .section-title-left h2+p {
	margin-top: 26px;
}

.product-card {
	display: flex !important;
}

.product-card-inner {
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	width: 100%;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	color: var(--black);
	position: relative;
	background: var(--white);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.product-card-inner .product-img a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 72.5%;
}

.product-card-inner .product-img a img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	object-fit: cover;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.product-card-inner .subtitle-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 10px 17px;
}

.badge {
	text-align: center;
	font-weight: 600;
	font-size: 11px;
	padding: 5px 8px;
	background: var(--theme-color);
	color: var(--white);
	line-height: 1;
	letter-spacing: 1px;
	display: inline-block;
	border-radius: 10px;
}

.product-card-inner .subtitle-top .wishlist-btn {
	width: 30px;
	height: 30px;
	background: var(--white);
	padding: 0 !important;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border: 1px solid var(--second-color);
}

.product-card-inner .subtitle-top .wishlist-btn svg path {
	fill: var(--theme-color);
}

.product-card-inner .product-content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-content-top {
	margin-bottom: 20px;
	flex: 1;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.product-content-top .review-rating {
	margin-bottom: 15px;
}

.review-rating {
	display: flex;
	align-items: center;
	color: var(--theme-color);
}

.review-rating .review-star {
	margin: 0 5px;
}

.review-star .star-icon:not(:last-of-type) {
	margin-right: 2px;
}

.review-star .star-icon {
	display: block;
	position: relative;
}

.review-star .star-icon svg {
	width: 15px;
	height: 15px;
}

.review-star .star-icon svg path {
	fill: var(--theme-color);
}

.product-content-top h4 {
	margin-bottom: 20px;
	flex: 1;
}

.product-content-top h4 a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.product-content .course-detail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 -10px 0;
}

.product-card .price+.btn.cart-btn {
	margin-top: 15px;
}

.product-content .course-detail p {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	padding: 0px 10px 5px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.product-card .btn.cart-btn {
	width: 100%;
	text-align: center;
	justify-content: center;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.product-row .product-card {
	padding: 0 10px;
	margin-bottom: 20px;
}

.product-row {
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: -20px;
}

.product-content .course-detail p svg {
	width: 14px;
	height: 14px;
	margin-right: 10px;
}

.product-content .course-detail p svg path {
	fill: var(--black);
}

.product-center-slider .slick-list {
	padding: 0 10% 0px !important;
	overflow: unset;
}

.product-center-slider .slick-arrow.slick-prev {
	left: 10px;
}

.product-center-slider .slick-arrow.slick-next {
	right: 10px;
}

.product-center-slider .slick-center .product-card-inner {
	box-shadow: 0px 12px 45px rgba(82, 82, 82, 0.09);
}

.product-row .slick-track .slick-slide {
	height: auto;
}

.product-row .slick-track {
	display: flex;
}

section.border-bottom {
	position: relative;
}

section.border-bottom::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: auto;
	right: calc((100% - 1320px)/2.6666 + 1320px);
	width: 60px;
	height: 2px;
	background: var(--second-color);
}

.tabs li:not(:last-of-type) {
	margin-right: 30px;
}

.tabs li {
	padding: 0px 0px 25px 0px;
	position: relative;
	margin-bottom: -1px;
}

.tabs li.active {
	color: var(--second-color);
	text-shadow: 0 0 currentColor;
}

.tabs li::after {
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	right: auto;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--second-color);
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.tabs li.active::after {
	width: 60px;
}

.tab-nav-wrap {
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
}

.category-card-inner {
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	color: var(--black);
	position: relative;
	background: var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.category-card-inner .subtitle-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 10px 17px;
}

.category-card-inner .subtitle-top .wishlist-btn {
	width: 30px;
	height: 30px;
	background: var(--white);
	padding: 0 !important;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.category-card-inner .subtitle-top .wishlist-btn svg path {
	fill: var(--black);
}

.category-card-inner .category-img {
	padding: 15px;
}

.category-card-inner .category-img a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 45%;
}

.category-card-inner .category-img a img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	object-fit: contain;
	border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-ms-border-radius: 10px 10px 0px 0px;
	-o-border-radius: 10px 10px 0px 0px;
}

.category-card-inner .category-content {
	padding: 0 15px 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.category-card-inner h4 {
	margin-bottom: 20px;
}

.category-card-inner .btn {
	width: 100%;
	justify-content: space-between;
	margin-top: 15px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.category-card:nth-child(even) .category-card-inner .btn {
	background: var(--third-color);
	border-color: var(--third-color);
}

.product-card.course-skill:nth-child(even) .product-card-inner {
	background: var(--chartreuse-color);
	color: var(--black);
}

.product-card.course-skill:nth-child(odd) .product-card-inner {
	background: var(--third-color);
	color: var(--white);
}

.product-card.course-skill:nth-child(odd) .product-card-inner .product-content .course-detail p svg path {
	fill: var(--white);
}

.product-card.course-skill .product-card-inner .product-img>a {
	clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
	padding-top: 56.5%;
}

.product-card.course-skill .product-card-inner .btn.cart-btn {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

.product-card.course-skill .product-card-inner .btn.cart-btn svg path {
	fill: var(--black);
}

.university-logo {
	padding: 10px;
	background: var(--white);
	display: inline-block;
	max-width: 125px;
	width: 100%;
	margin-bottom: 15px;
	margin-top: -50px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
}

.university-logo img {
	display: block;
	margin: auto;
}

.product-card.course-skill .product-card-inner .university-logo {
	max-width: 72px;
	height: 70px;
}

.skills-right-inner .section-title,
.skills-left-inner .section-title {
	margin-bottom: 26px;
}

.skills-right-inner .btn-group,
.skills-left-inner .btn-group {
	margin-top: 26px;
}

.course-links h3 {
	margin-bottom: 20px;
	word-break: break-all;
}

.course-links ul li:not(:last-of-type) {
	margin-bottom: 8px;
}

.course-link-widget:nth-child(even) .course-links h3 {
	color: var(--third-color);
}

.course-link-widget:nth-child(odd) .course-links h3 {
	color: var(--second-color);
}

.product-card.course-degree .product-card-inner .product-img a {
	padding-top: 53.7%;
}

.product-card.course-degree .badge {
	background: var(--theme-color);
	color: var(--white);
	padding: 10px 10px;
}

.course-skills-section .skills-left-inner {
	max-width: 500px;
}

.course-skills-section .advance-search-back {
	background: var(--second-color);
}

.course-skills-section .advance-search-back::before {
	border-color: var(--chartreuse-color);
}

.blog-widget-inner {
	border: 1px solid var(--border-color);
	position: relative;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.blog-media {
	position: relative;
}

.blog-widget-inner .blog-media a {
	display: block;
	padding-top: 64.2%;
	position: relative;
}

.blog-widget-inner .blog-media a img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.blog-caption {
	padding: 17px 17px 17px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-widget-inner .captio-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px;
	color: var(--white);
}

.blog-caption .auth-name {
	display: inline-flex;
	align-items: center;
	color: var(--grey-color);
	font-weight: 600;
	margin-bottom: 10px;
}

.blog-caption .auth-name svg {
	margin-right: 10px;
}

.blog-caption .auth-name svg path {
	fill: var(--grey-color);
}

.blog-caption h4 {
	margin-bottom: 11px;
	flex: 1;
}

.blog-caption .blog-btn {
	width: 100%;
	margin-top: 15px;
	justify-content: space-between;
}


.blog-widget:nth-child(even) .btn.blog-btn {
	background: var(--chartreuse-color);
	color: var(--black);
	border-color: var(--chartreuse-color);
}

.blog-widget:nth-child(even) .btn.blog-btn svg path {
	fill: var(--black);
}

.blog-widget:nth-child(odd) .btn.blog-btn {
	background: var(--third-color);
	border-color: var(--third-color);
}

.newsletter-container {
	border: 1px solid var(--border-color);
	padding: 40px 15px;
	text-align: center;
}

.newsletter-container .section-title {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-container .section-title h2 {
	margin-bottom: 26px;
}

.newsletter-container .newsletter-form {
	max-width: 500px;
	margin: auto;
	text-align: left;
}

.newsletter-form .input-wrapper {
	margin-bottom: 20px;
	position: relative;
}

.newsletter-form .input-wrapper input {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	padding-right: 140px;
}

.newsletter-container .newsletter-form .input-wrapper .btn {
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	background: var(--theme-color);
	border-color: var(--theme-color);
}


.site-footer {
	border-top: 1px solid var(--border-color);
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer-col {
	width: 100%;
	flex: 1;
}

.footer-col:not(:first-of-type) {
	padding-left: 50px;
}

.footer-widget h3,
.footer-widget h4 {
	margin-bottom: 20px;
}

.footer-widget ul li:not(:last-of-type) {
	margin-bottom: 8px;
}

.footer-col.footer-link-4 {
	flex: 0 0 290px;
	max-width: 290px;
}

.footer-subscribe-col {
	max-width: 423px;
	flex: 0 0 423px;
}

.site-footer .newsletter-form {
	margin-top: 25px;
}

.site-footer .newsletter-form .input-wrapper {
	display: flex;
	margin-bottom: 20px;
}

.site-footer .newsletter-form .btn {
	padding: 0;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	background: var(--theme-color);
	border-color: var(--theme-color);
}

.site-footer .newsletter-form .btn svg {
	margin: auto;
}

.site-footer .social-wrap {
	margin-top: 26px;
}

.site-footer .social-wrap h5 {
	margin-right: 15px;
}

.footer-list-social {
	display: flex;
	align-items: center;
}

.footer-widget .footer-list-social li:not(:last-of-type) {
	margin: 0 10px 0 0;
}

.footer-list-social li a {
	height: 32px;
	width: 32px;
	background: var(--theme-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.footer-list-social li a svg {
	height: 16px;
	width: 16px;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.footer-list-social li a svg path {
	fill: var(--white);
}

.footer-bottom {
	padding-bottom: 40px;
}

.policy-links li:not(:last-of-type) {
	margin-right: 22px;
}

.premium-courses,
.trending-courses-section {
	overflow: hidden;
}

.main-home-first-section,
.course-skills-section {
	overflow: hidden;
}

.post-slider .blog-widget {
	padding: 0 10px;
	height: auto;
}

.post-slider {
	margin: 0 -10px;
}

.post-slider .slick-track {
	display: flex;
}

.row.row-gap {
	margin-bottom: -30px;
}

.row.row-gap [class*="col-"] {
	margin-bottom: 30px;
}

.pdp-subtitles {
	margin-bottom: 20px;
}

.pdp-subtitles .subtitle {
	padding: 11px 15px;
	background: var(--second-color);
	margin-right: 15px;
	color: var(--white);
}

.pdp-subtitles .university-logo {
	max-width: 100px;
	margin: 0 15px 0 0;
}

.pdp-summery-top .section-title {
	margin-bottom: 26px;
}

.pdp-summery-top .btn {
	margin-top: 26px;
	max-width: 210px;
	width: 100%;
	justify-content: space-between;
}

.pdp-tab {
	margin-top: 40px;
	border-top: 1px solid var(--border-color);
}

.pdp-tab .tabs {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 30px;
}

.pdp-tab .tabs li {
	padding: 15px 0;
}

.pdp-tab .tab-content#tab-1 ul {
	margin-top: 30px;
	padding-left: 25px;
}

.pdp-tab .tab-content#tab-1 ul li:not(:last-of-type) {
	margin-bottom: 5px;
}

.pdp-tab .tab-content#tab-1 ul li {
	list-style: disc;
}

.pdp-tab .chapter-desk-card {
	margin-top: 25px;
}

.sub-title {
	margin-bottom: 20px;
}

.learning-card-row {
	margin: 0 -10px 20px;
}

.learning-card-row [class*="col-"] {
	margin-bottom: 15px;
	padding: 0 10px;
}

.learning-card {
	padding: 15px 18px 15px 40px;
	border: 1px solid var(--border-color);
	position: relative;
}

.learning-card svg {
	width: 17px;
	height: 17px;
	position: absolute;
	top: 17px;
	right: auto;
	left: 10px;
}

.learning-card svg path {
	fill: var(--second-color);
}

.summery-blocks {
	border: 1px solid var(--border-color);
	border-bottom: 0;
}

.summery-blocks ul {
	display: flex;
	flex-wrap: wrap;
}

.summery-blocks li {
	width: 50%;
	padding: 15px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
}

.summery-blocks li:nth-child(2n+1) {
	border-right: 1px solid var(--border-color);
}

.summery-blocks li .icon {
	margin-right: 15px;
}

.summery-blocks li span {
	display: block;
}

.pdp-main-media {
	position: relative;
	padding-top: 70%;
	overflow: hidden;
	width: 100%;
}

.pdp-thumb-media svg,
.pdp-thumb-media video,
.pdp-thumb-media iframe,
.pdp-thumb-media img,
.pdp-main-media svg,
.pdp-main-media video,
.pdp-main-media iframe,
.pdp-main-media img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.moovie_controls input[type=range] {
	border: 0;
	padding: 0;
}

.moovie_controls {
	align-items: center;
	opacity: 1 !important;
}

.moovie {
	border: 1px solid var(--border-color);
	font-family: var(--first-font);
	border-radius: 0;
}

.moovie_controls {
	background-color: var(--white) !important;
}

.player__button img {
	filter: invert(1) brightness(10);
	-webkit-filter: invert(1) brightness(10);
}

.moovie_currentime {
	color: var(--black) !important;
}

.moovie_submenu ul li:hover,
.player__button:hover,
.poster_button {
	background-color: var(--theme-color);
}

.topic_submenu:hover {
	background-color: transparent !important;
}

input[type=range]::-webkit-slider-runnable-track {
	background-color: var(--second-color);
}

.moovie_controls input[type=range]::-webkit-slider-thumb {
	background: var(--black) !important;
}

.moovie_controls input[type=range]::-moz-range-thumb {
	background: var(--black) !important;
}

.poster_center {
	opacity: 1 !important;
}

.description-left-side .btn,
.syllabus-left-side .btn,
.requirement-left-side .btn {
	margin-top: 26px;
}

.syllabus-list ol {
	counter-reset: li;
}

.syllabus-list li:not(:last-of-type) {
	margin-bottom: 15px;
}

.syllabus-list li {
	list-style: none;
	position: relative;
}

.syllabus-list li::before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	color: #fff;
	background: var(--theme-color);
	text-align: center;
	z-index: 1;
	line-height: 1;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.syllabus-list li:nth-child(even)::before {
	background: var(--second-color);
}

.syllabus-list li:nth-child(odd)::before {
	background: var(--chartreuse-color);
	color: var(--black);
}

.syllabus-card {
	padding: 15px 15px 15px 25px;
	border: 1px solid var(--theme-color);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.syllabus-card .left-side {
	flex: 1;
	padding-right: 30px;
}

.read-more-content {
	display: none;
	padding-top: 10px;
}

.syllabus-card .read-more {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
}

.syllabus-card .read-more::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	background: url('../images/bottom-arrow.svg') no-repeat center;
	background-size: 100%;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.syllabus-card .read-more.active::after {
	transform: rotate(180deg);
}

.duration {
	display: flex;
	align-items: center;
}

.duration svg {
	margin-right: 15px;
	width: 18px;
	height: 18px;
}

.duration p span {
	display: block;
	font-weight: 600;
}

.description-left-side,
.syllabus-left-side {
	padding-right: 50px;
}

.requirement-right-side ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

.requirement-right-side ul li {
	position: relative;
	padding-left: 20px;
}

.requirement-right-side ul li::before {
	content: "\2714\0020";
	position: absolute;
	left: 0;
	color: var(--second-color);
}

.educator-card-row {
	margin-bottom: -30px;
}

.educator-card-row>div {
	margin-bottom: 30px;
}

.educator-card .educator-card-inner {
	border: 1px solid var(--border-color);
}

.educator-image {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 64%;
}

.educator-image img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	object-fit: contain;
}

.educator-card-inner .badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}

.educator-caption {
	padding: 15px;
}

.educator-card-inner .review-rating {
	margin-bottom: 10px;
}

.educator-caption .educator-bottom {
	margin-top: 15px;
}

.educator-caption .educator-bottom .btn {
	margin-top: 20px;
	width: 100%;
	justify-content: space-between;
}

.review-left-side {
	padding-right: 50px;
}

.review-progress {
	padding-right: 100px;
}

.review-progress .review-rating {
	margin-top: 15px;
	margin-bottom: 15px;
}

.review-progress .review-counter {
	margin-left: 15px;
}

.review-progress .review-rating .review-star {
	margin: 0 0 5px;
}

.star-progress {
	display: flex;
	align-items: center;
}

.star-progress:not(:last-of-type) {
	margin-bottom: 10px;
}

.star-progress .progress {
	margin: 0 15px;
	flex: 1;
}

.star-progress span {	
    width: 20%;
}

.progress {
	height: 10px;
	overflow: hidden;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: var(--second-color);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}

.review-card:not(:last-of-type) {
	margin-bottom: 15px;
}

.review-card-inner {
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.review-card-inner .review-rating {
	margin-bottom: 15px;
}

.review-card-inner .abt-user {
	margin-top: 15px;
}

.abt-user {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.review-card-inner .abt-user p {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	font-weight: 600;
}

.review-card-inner .abt-user p svg {
	margin-right: 15px;
}

.review-card-inner .abt-user p svg path {
	fill: var(--black);
}

.show-more {
	margin-top: 20px;
}

.border-top {
	border-top: 1px solid var(--border-color);
}

.set {
	border: 1px solid var(--border-color);
}

.set:not(:last-of-type) {
	margin-bottom: 20px;
}

.set .acnav-label {
	padding: 15px 35px 15px 15px;
	position: relative;
	font-size: 14px;
	font-weight: 600;
	width: 100%;
}

.set .acnav-label:after {
	border-bottom: 2px solid var(--theme-color);
	border-right: 2px solid var(--theme-color);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.set .acnav-list {
	padding: 15px;
	border-top: 1px solid var(--border-color);
}

.faq-section .section-title {
	max-width: 500px;
}

.faq-section .section-title h2 {
	margin-bottom: 26px;
}

.chapter-links li:not(:last-of-type) {
	margin-bottom: 15px;
}

.chapter-links li a {
	display: inline-flex;
	align-items: center;
}

.chapter-links li a .link-icon {
	display: flex;
	width: 30px;
	height: 30px;
	position: relative;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 1;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	background: var(--theme-color);
}

.chapter-links li a .link-icon svg {
	width: 20px;
	height: 20px;
}

.chapter-links li a .link-icon svg path {
	fill: var(--white);
}

.user-review-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.abt-user .abt-usr-image {
	width: 50px;
	height: 50px;
	margin-right: 20px;
}

.abt-user .user-info .review-rating {
	margin-top: 10px;
	display: flex;
	align-items: center;
	line-height: 1;
}

.product-review ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.product-review ul li:not(:last-of-type) {
	margin-right: 15px;
	padding-right: 10px;
	border-right: 1px solid var(--border-color);
}

.product-review ul li {
	display: flex;
	align-items: center;
	line-height: 1;
}

.product-review ul li svg {
	width: 15px;
	height: 15px;
	margin-right: 15px;
}

.product-review ul li svg path {
	fill: var(--theme-color);
}

.review-rating.add-rating .review-star {
	margin-top: 0;
	margin-left: 15px;
}

.btn-ic {
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
	margin-left: 10px;
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.course-reviews-wrap {
	margin-top: 25px;
}

.course-reviews {
	padding: 15px;
	border: 1px solid var(--border-color);
}

.course-reviews-wrap .course-reviews:not(:last-of-type) {
	margin-bottom: 25px;
}

.courser-top-content {
	margin-bottom: 25px;
}

.course-review-profile {
	display: flex;
	align-items: center;
	margin-top: 25px;
}

.course-review-profile .course-review-profile-img {
	max-width: 80px;
	width: 100%;
}

.course-review-profile .user-info {
	flex: 1;
	padding-left: 15px;
}

.course-review-profile .user-info h4 {
	margin-bottom: 10px;
}

.recent-views-section {
	overflow: hidden;
}

.abt-user h4 {
	font-size: 16px;
}

.chapter-head {
	margin-bottom: 40px;
}

.container.offset-right {
	max-width: calc((100% - 1320px)/2 + 1320px);
	margin-left: auto;
	margin-right: 0;
}

.chapter-head .container.offset-right {
	padding-right: 0;
}

.chapter-head-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.chapter-head-block {
	padding: 15px 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	max-width: 20%;
	width: 100%;
	color: var(--white);
}

.page-btn-block {
	background: #192B59;
}

.prev-btn,
.next-btn {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
}

.back-btn svg,
.prev-btn svg {
	width: 25px;
	height: 25px;
	margin-right: 15px;
}

.course-progress {
	max-width: 40%;
	width: 100%;
	background: var(--third-color);
}

.prev-btn b,
.next-btn b {
	display: block;
}

.course-progress .progress {
	background: var(--white);
	flex: 100%;
	width: 100%;
	height: 5px;
	margin-top: 12px;
}

.course-progress .progress-bar {
	background: #18388B;
}

.course-progress .progress-left {
	flex: 1;
	padding-right: 20px;
}

.radial-progress {
	width: 60px;
	height: 60px;
	background: none;
	margin: 0 auto;
	box-shadow: none;
	position: relative;
}

.radial-progress:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid var(--white);
	position: absolute;
	top: 0;
	left: 0;
}

.radial-progress>span {
	width: 50%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1;
}

.radial-progress .progress-left {
	left: 0;
}

.radial-progress .progress-bar {
	width: 100%;
	height: 100%;
	background: none;
	border-width: 5px;
	border-style: solid;
	position: absolute;
	top: 0;
	border-color: var(--black);
}

.radial-progress .progress-left .progress-bar {
	left: 100%;
	border-top-right-radius: 75px;
	border-bottom-right-radius: 75px;
	border-left: 0;
	-webkit-transform-origin: center left;
	transform-origin: center left;
}

.radial-progress .progress-right {
	right: 0;
}

.radial-progress .progress-right .progress-bar {
	left: -100%;
	border-top-left-radius: 75px;
	border-bottom-left-radius: 75px;
	border-right: 0;
	-webkit-transform-origin: center right;
	transform-origin: center right;
}

.radial-progress .progress-value {
	display: flex;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	line-height: 20px;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 300;
}

.radial-progress .progress-value span {
	font-size: 12px;
	text-transform: uppercase;
}

.radial-progress[data-percentage="10"] .progress-right .progress-bar {
	animation: loading-1 1.5s linear forwards;
}

.radial-progress[data-percentage="10"] .progress-left .progress-bar {
	animation: 0;
}

.radial-progress[data-percentage="20"] .progress-right .progress-bar {
	animation: loading-2 1.5s linear forwards;
}

.radial-progress[data-percentage="20"] .progress-left .progress-bar {
	animation: 0;
}

.radial-progress[data-percentage="30"] .progress-right .progress-bar {
	animation: loading-3 1.5s linear forwards;
}

.radial-progress[data-percentage="30"] .progress-left .progress-bar {
	animation: 0;
}

.radial-progress[data-percentage="40"] .progress-right .progress-bar {
	animation: loading-4 1.5s linear forwards;
}

.radial-progress[data-percentage="40"] .progress-left .progress-bar {
	animation: 0;
}

.radial-progress[data-percentage="50"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
	animation: 0;
}

.radial-progress[data-percentage="60"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.radial-progress[data-percentage="60"] .progress-left .progress-bar {
	animation: loading-1 1.5s linear forwards 1.5s;
}

.radial-progress[data-percentage="70"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.radial-progress[data-percentage="70"] .progress-left .progress-bar {
	animation: loading-2 1.5s linear forwards 1.5s;
}

.radial-progress[data-percentage="80"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.radial-progress[data-percentage="80"] .progress-left .progress-bar {
	animation: loading-3 1.5s linear forwards 1.5s;
}

.radial-progress[data-percentage="90"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.radial-progress[data-percentage="90"] .progress-left .progress-bar {
	animation: loading-4 1.5s linear forwards 1.5s;
}

.radial-progress[data-percentage="100"] .progress-right .progress-bar {
	animation: loading-5 1.5s linear forwards;
}

.radial-progress[data-percentage="100"] .progress-left .progress-bar {
	animation: loading-5 1.5s linear forwards 1.5s;
}

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

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

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

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

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

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

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

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

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

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

.next-btn .svg-ic {
	transform: translateY(0%) scale(-1);
	margin-left: 15px;
}

.next-btn svg {
	width: 25px;
	height: 25px;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	color: var(--black);
}

.back-btn svg path {
	fill: var(--black);
}

.chapter-video-media {
	position: relative;
	padding-top: 59%;
	width: 100%;
	border: 1px solid var(--border-color);
}

.chapter-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.pdp-summery-accordian {
	counter-reset: li;
}

.pdp-summery-accordian li {
	position: relative;
}

.pdp-summery-accordian li::before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	top: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	color: #fff;
	background: var(--theme-color);
	text-align: center;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.pdp-summery-accordian li.set .acnav-label {
	padding-left: 55px;
}

.pdp-summery-accordian li.set.is-open,
.pdp-summery-accordian li.set.is-open .acnav-list {
	border-color: var(--second-color);
}

.pdp-summery-accordian li.set.is-open::before {
	background: var(--second-color);
}

.chapter-topics {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chapter-topics .checkbox-custom {
	flex: 1;
	padding-right: 10px;
}

.chapter-topics:not(:last-of-type) {
	margin-bottom: 10px;
}

.chapter-description-section .tabs-container {
	padding-right: 30px;
}

.share-course {
	position: relative;
}

.share-course li a {
	display: flex;
	align-items: center;
	padding: 15px 15px;
}

.chapter-description-section {
	overflow: hidden;
}

.share-course li:not(:last-of-type) a {
	border-right: 1px solid var(--border-color);
}

.share-course li:first-child a {
	border-left: 1px solid var(--border-color);
}

.share-course li a svg {
	margin-right: 15px;
}

.share-course li a svg path {
	fill: var(--black);
}

.chapter-description-section .pdp-tab {
	border: 0;
	margin-top: 0;
	position: relative;
}

.share-course::after {
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	width: 100vw;
	right: 0;
	left: 0;
	height: 1px;
	z-index: -1;
	background: var(--border-color);
}

.chapter-description-section .pdp-tab .tabs {
	position: relative;
}

.chapter-description-section .pdp-tab .tabs::before {
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	width: 100vw;
	right: auto;
	left: -100vw;
	height: 1px;
	z-index: -1;
	background: var(--border-color);
}

.course-download .title-wrap {
	margin: 10px 0 30px;
}

.course-download-card {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px;
	border: 1px solid var(--border-color);
}

.course-download-card:not(:last-of-type) {
	margin-bottom: 15px;
}

.course-download-card .course-image {
	width: 35px;
}

.course-download-card .corse-caption {
	flex: 1;
	padding-left: 25px;
	display: flex;
	justify-content: space-between;
}

.course-download-card .corse-caption .caption-left {
	flex: 1;
	padding-right: 25px;
}

.common-banner-section {
	padding: 70px 0;
	background: linear-gradient(0deg, #F3F3F3, #F3F3F3), linear-gradient(90.18deg, #0A215B 0.14%, rgba(10, 33, 91, 0) 99.86%), linear-gradient(270deg, #1E56E7 0%, #141414 100%);
	color: var(--black);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.user-profile {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.user-profile .user-image img {
	width: 100%;
	object-fit: cover;
}

.user-profile .user-image {
	width: 130px;
}

.user-profile .user-info-main {
	margin-left: 20px;
}

.user-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15px;
}

.user-tags li {
	line-height: 1;
}

.user-tags li:not(:last-of-type) {
	margin-right: 15px;
}

.common-banner-content .back-btn {
	margin-bottom: 26px;
}

.user-profile .review-rating {
	color: var(--black);
	margin-bottom: 10px;
}

.user-profile .review-star .star-icon svg path {
	fill: var(--black);
}

.about-tutor-section .tutor-right-side {
	margin-top: -290px;
}

.tutor-sub {
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.tutor-sub li {
	display: flex;
	align-items: center;
}

.tutor-sub li:not(:last-of-type) {
	padding-right: 15px;
}

.tutor-sub li .icon {
	margin-right: 15px;
}

.about-tutor-section {
	padding-top: 40px;
	position: relative;
	z-index: 1;
}

.about-tutor .section-title {
	margin-top: 26px;
	margin-bottom: 26px;
}

.tutor-sub li span {
	display: block;
	font-weight: 600;
}

.more-from-tutor {
	position: relative;
	overflow: hidden;
}

.product-search-bar {
	margin-top: -60px;
}

.product-search-bar form {
	padding: 20px;
	background: var(--white);
	border: 1px solid var(--border-color);
	position: relative;
	z-index: 1;
}

.product-search-bar form .row [class*="col-"] {
	margin-top: 15px;
}

.product-search-bar .input-wrapper>label {
	display: block;
	margin-bottom: 15px;
}

.product-search-drop-dwn .select {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border: solid 1px var(--border-color);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	outline: none;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 16px 35px 16px 15px;
	width: 100%;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

.product-search-drop-dwn .search-tags {
	background-color: var(--white);
	box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
	box-sizing: border-box;
	margin-top: 4px;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999999;
	width: 100% !important;
	display: none;
	padding-top: 10px;
}

.product-search-drop-dwn .select::after {
	content: '';
	border-bottom: 2px solid var(--black);
	border-right: 2px solid var(--black);
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.product-search-bar form .btn {
	height: 100%;
	width: 44px;
	padding: 0;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.product-search-bar form .btn svg {
	width: 20px;
	height: 20px;
	margin: auto;
}

.flex-input-wrap {
	display: flex;
}

.product-search-drop-dwn {
	position: relative;
	width: 100%;
}

.product-search-drop-dwn .search-tags li {
	font-size: 13px;
	line-height: 1;
	padding: 0 15px 10px;
}

.product-search-bar form .row {
	margin-top: -15px;
}

.popular-tags {
	margin-top: 30px;
}

.popular-tags p {
	margin-right: 10px;
	margin-bottom: 10px;
}

.popular-tags .badge:not(:last-of-type) {
	margin-right: 10px;
}

.popular-tags .badge {
	margin-bottom: 10px;
}

.product-list-row {
	margin-top: 50px;
}

.product-widget:not(:last-of-type) {
	margin-bottom: 20px;
}

.product-widget>.pro-itm {
	border: 1px solid var(--border-color);
}

.product-widget>.pro-itm>.acnav-label {
	font-weight: 600;
	padding: 12px 12px;
	text-transform: uppercase;
	display: flex;
	border-bottom: 1px solid var(--border-color);
	justify-content: space-between;
	align-items: center;
}

.product-widget>.pro-itm>.pro-itm-inner {
	padding: 12px 12px;
}

.product-widget>.pro-itm>.pro-itm-inner li:not(:last-of-type) {
	margin-bottom: 10px;
}

.product-filter-right-column .product-card {
	padding: 0 10px 20px;
}

.common-banner-section.product-list-page {
	padding: 70px 0 110px;
}

.overlay.active,
.cartOpen .overlay::after {
	content: " ";
	z-index: 4;
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
}

/* cart page */
.cart-tble-list {
	counter-reset: li;
	padding-left: 13px;
}

.cart-tble-list li {
	position: relative;
}

.cart-tble-list .cart-item:not(:last-of-type) {
	margin-bottom: 20px;
}

.cart-tble-list li::before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--second-color);
	text-align: center;
	z-index: 1;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.cart-tble-list .cart-item .cart-item-inner {
	border: 1px solid var(--border-color);
	display: flex;
}

.cart-tble-list .cart-item .cart-item-inner {
	border: 1px solid var(--border-color);
	display: flex;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.cart-item-inner .product-image {
	width: 100%;
	max-width: 160px;
}

.cart-item-inner .product-image a {
	display: block;
}

.cart-item-inner .product-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.product-cart-summry {
	padding: 15px 20px;
	flex: 1;
	display: flex;
	align-items: center;
}

.product-cart-summry .name {
	max-width: 50%;
	flex: 0 0 50%;
}

.product-cart-summry .name a {
	margin-bottom: 15px;
}

.product-cart-summry>div:not(:first-of-type) {
	padding-left: 20px;
}

.qty-spinner-wrap {
	max-width: 120px;
	width: 100%;
}

.qty-spinner {
	border: 1px solid var(--border-color);
	display: flex;
	max-width: 100px;
	height: 30px;
	width: 100%;
}

.qty-spinner button {
	background: var(--second-color);
	padding: 0;
	margin: 0;
	border: 0;
	flex: 1;
}

.qty-spinner input {
	border: 0;
	flex: 1;
	width: 29px;
	padding: 0;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	margin: 0;
}

.qty-spinner button svg {
	margin: auto;
	height: 10px;
	width: 10px;
}

.qty-spinner button svg path {
	fill: var(--white);
}

.product-cart-summry .delete-icon {
	vertical-align: middle;
	width: 40px;
	height: 40px;
	display: inline-block;
	background: var(--second-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.product-cart-summry .delete-icon svg {
	max-width: 20px;
	width: 100%;
	height: 20px;
}

.product-cart-summry .delete-icon svg path {
	fill: var(--white);
}

.product-cart-summry .cart-remove {
	flex: 1;
}

.cart-summery {
	border: 1px solid var(--border-color);
	padding: 20px;
}

.cart-summery ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.cart-summery .btn {
	padding: 15px 10px;
	width: 100%;
	margin-top: 20px;
}

.login-form {
	margin-top: 40px;
}

.login-form p {
	flex: 1;
}

.login-form .submit-btn {
	margin: 0 15px 0 0;
}

.login-form p a {
	color: var(--second-color);
}

.login-left-side {
	padding-right: 90px;
}

.form-footer {
	margin-top: 25px;
}

.blog-filter-right-column .blog-widget {
	padding: 0 10px 20px;
}

.aticleleftbar ul {
	padding-left: 25px;
	margin-top: 25px;
	margin-bottom: 40px;
}

.blog-desk-card {
	position: relative;
	padding: 15px 15px 15px 45px;
	border: 1px solid var(--theme-color);
}

.blog-desk-card:not(:last-of-type) {
	margin-bottom: 15px;
}

.blog-desk-card svg {
	position: absolute;
	top: 15px;
	left: 10px;
	width: 15px;
	height: 15px;
}

.aticleleftbar .blog-video-wrap {
	margin-top: 26px;
}

.aticleleftbar .section-title {
	margin-bottom: 26px;
}

.aticleleftbar .main-blog-video {
	margin-top: 26px;
	margin-bottom: 26px;
}

.aticleleftbar .article-img {
	width: 100%;
	margin: 15px 0;
}

.articlerightbar .blog-widget:not(:last-of-type) {
	margin-bottom: 30px;
}

.blog-cat {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.blog-cat li:not(:last-of-type) {
	margin-right: 10px;
}

.blog-cat li {
	padding: 10px 20px;
	color: var(--theme-color);
	background: transparent;
	font-size: 13px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
}

.blog-cat li.active {
	background: var(--theme-color);
	color: var(--white);
}

.blog-cat li svg {
	margin-right: 10px;
}

.blog-cat li svg path {
	fill: var(--theme-color);
}

.common-banner-section.blog-banner {
	position: relative;
	z-index: 1;
}

.common-banner-section.blog-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(89.64deg, #F3F3F3 34.38%, rgba(243, 243, 243, 0) 99.68%);
	z-index: -1;
}

.aticleleftbar ul li {
	list-style: disc;
	margin-bottom: 10px;
}

.product-card-inner .subtitle-top .wishlist-btn.active {
	background: var(--third-color);
}

.product-card-inner .subtitle-top .wishlist-btn.active svg path {
	fill: var(--white);
}

.modal-popup {
	position: fixed;
	background: rgb(0 0 0 / 82%);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 5;
	padding: 30px 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
	transition: all ease-in-out 0.5s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.modal-popup.active,
.modal-popup.in {
	opacity: 1;
	visibility: visible;
}

.modal-dialog-inner {
	max-width: 800px;
	width: 100%;
}

.modal-backdrop.in {
	display: none;
}

button.close {
	position: absolute;
	top: 20px;
	left: auto;
	right: 15px;
	border: 0;
	background: transparent;
	opacity: 1;
}

.close svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

button.close svg path {
	fill: var(--theme-color);
}

.modal-dialog-inner.lg-dialog {
	max-width: 1200px;
}

.popup-content {
	background: var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: var(--theme-shadow);
}

.popup-content .popup-header {
	padding: 15px 45px 15px 15px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 20px;
	position: relative;
}

.modal-popup .close-button {
	position: absolute;
	top: 20px;
	left: auto;
	right: 15px;
}

.modal-popup .close-button svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.modal-popup .close-button svg path {
	fill: var(--theme-color);
}

.modal-body {
	padding: 15px;
}

.moda-form-container:not(:last-of-type) {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
}

.form-container-title {
	margin-bottom: 26px;
}

.modal-body form label {
	margin-bottom: 10px;
	display: block;
}

.upload-btn-wrapper {
	position: relative;
	display: inline-block;
}

.modal-body .upload-btn-wrapper {
	display: block;
}

.file-upload.btn {
	width: 100%;
	display: flex;
	margin-bottom: 0;
	height: 48px;
	z-index: 1;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.file-upload.btn svg {
	margin-right: 15px;
	margin-left: 0;
}

.upload-btn-wrapper input[type=file] {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	bottom: 0;
}

.modal-body form .form-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.form-footer {
	margin-top: 25px;
}

.rate {
	display: inline-flex;
	align-items: center;
	flex-direction: row-reverse;
}

.rate input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.rate label {
	width: 1.125rem;
	height: 1.125rem;
	position: relative;
	cursor: pointer;
	transition: .3s;
}

.rate label:not(:first-child) {
	margin-right: .375rem;
	margin-bottom: 0;
}

.rate label::before {
	position: absolute;
	content: url("data:image/svg+xml,%3Csvg t='1584099080940' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='9773' width='18px' height='18px' fill='%23A9B1BC' %3E%3Cpath d='M686.153143 573.732571l174.884571-169.691429-241.152-35.401143-108.032-218.258286-108.032 218.258286-241.152 35.401143 174.884571 169.691429-41.691429 240.566857 215.990857-113.737143 215.405714 113.737143zM987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 28.598857-23.405714 28.598857-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='9774' %3E%3C/path%3E%3C/svg %3E");
	transition: .3s;
}

.rate label::after {
	position: absolute;
	z-index: 1;
	content: url("data:image/svg+xml,%3Csvg t='1584099189586' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='10117' fill='%23fcbb42' width='18px' height='18px'%3E%3Cpath d='M987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 11.995429-5.997714 20.260571t-17.408 8.265143q-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='10118'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0;
	transition: .3s;
}

.rate input:checked~label::after {
	opacity: 1;
}

.rate input:checked~label::before {
	opacity: 0;
}

.modal-body form .input-wrapper:not(:last-of-type) {
	margin-bottom: 20px;
}

.rate label:hover::after {
	transform: scale(1.2);
}

.course-skill .review-star {
	margin-bottom: 15px;
}

/* 11-26-2022 */
.reg-lbl {
	font-size: 14px;
	margin-right: 10px;
}

.reg-lbl-wrap {
	margin-top: 30px;
}

.add-cart {
	margin-top: 10px;
}

.card-price,
.price {
	display: flex;
	align-items: center;
	font-size: 18px;
	margin-top: 15px;
}

.card-price h3,
.price h3 {
	margin-bottom: 0;
}

.card-price del,
.price del {
	text-decoration: line-through;
}


.login-page {
	overflow-x: hidden;
}

.aboutus-content h4 {
	margin-bottom: 20px;
}

.newsletter-section .newsletter-container .newsletter-form .input-wrapper .btn {
	color: var(--white);
}

.newsletter-section .newsletter-container .newsletter-form .input-wrapper .btn svg path {
	fill: var(--white);
}

.payment-method {
	padding: 20px 30px;
	box-shadow: 1px 0px 15.4815px rgb(0 0 0 / 8%);
	border-radius: 10px;
	position: relative;
}

.payment-title {
	margin-bottom: 20px;
}

.payment-image {
	flex: 1;
	justify-content: flex-end;
}

.payment-image img:not(:last-of-type) {
	margin-right: 5px;
}

.payment-image img {
	max-width: 50px;
	width: 100%;
}

.payment-method:not(:last-of-type) {
	margin-bottom: 30px;
}

.payment-method-form {
	margin-top: 30px;
}

.payment-method .payment-image.extra-size img {
	max-width: 90px;
}

.coupon-form {
	border: 1px solid var(--border-color);
	margin-bottom: 30px;
}

.coupon-form .coupon-header {
	border-bottom: 1px solid var(--border-color);
	padding: 10px;
}

.mini-cart-header h4,
.coupon-form h4 {
	font-weight: normal;
}

.coupon-body {
	padding: 15px;
}

.coupon-body form .btn-wrapper {
	margin-top: 15px;
	text-align: right;
}

.mini-cart {
	border: 1px solid var(--border-color);
}

.mini-cart .mini-cart-header {
	border-bottom: 1px solid var(--border-color);
	padding: 10px;
}

.mini-cart-header {
	margin-bottom: 15px;
}

.mini-cart .mini-cart-has-item {
	padding: 0 15px 0;
}

.mini-cart-item:not(:last-of-type) {
	margin-bottom: 15px;
}

.mini-cart-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid var(--border-color);
}

.mini-cart-image {
	width: 80px;
	display: flex;
	align-items: center;
	background: var(--second-color);
}

.mini-cart-image a {
	display: block;
	position: relative;
	padding-top: 88%;
	width: 100%;
}

.mini-cart-image a img {
	top: 0;
	width: 100%;
	object-fit: scale-down;
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
}

.mini-cart-details {
	flex: 1;
	width: 100%;
	padding: 10px 10px 10px 15px;
}

.mini-cart-title {
	margin-bottom: 8px;
	font-weight: 600;
}

.mini-cart-title a {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.remove_item svg {
	width: 15px;
	height: 15px;
}

.remove_item svg path {
	fill: #d12525;
}

.mini-cart-footer {
	padding: 20px 0 0;
}

.mini-cart-footer .u-save {
	font-weight: 500;
	font-size: 17px;
	line-height: 22px;
	display: flex;
	color: var(--theme-color);
	margin-bottom: 30px;
}

.mini-cart-footer-total-row {
	font-size: 16px;
	line-height: 1.2;
	margin: 0 0 15px;
	background: #ECECEC;
	padding: 15px 0;
	color: var(--black);
}

.mini-cart-footer-total-row div {
	padding: 0 10px;
}

.site-footer .footer-logo.footer-col img {
	width: 100%;
	max-width: 150px;
}

.footer-col.footer-link.footer-link-1 ul {
	display: flex;
}

.footer-widget ul li:not(:last-of-type) {
	margin-bottom: 0;
	margin-right: 20px;
}

.site-footer .footer-link.footer-link-2 ul {
	display: flex;
}

.site-footer .footer-link.footer-link-2 ul li a {
	width: 30px;
	height: 30px;
	background: var(--theme-color);
	line-height: 30px;
	text-align: center;
	border-radius: 31px;
	color: var(--white);
}

.site-footer .footer-link.footer-link-2 ul li a i {
	transition: all 0.5s;
}

.site-footer .footer-link.footer-link-2 ul li a:hover {
	background: var(--second-color);
}

.site-footer .footer-link.footer-link-2 ul li a:hover i {
	color: var(--white);
}

/* empty page css */
.empty-image {
	max-width: 250px;
	width: 100%;
	margin: 0 auto 40px;
}

.empty-detail-wrap {
	text-align: center;
}

.empty-content .section-title {
	margin-bottom: 26px;
}

.empty-content .btn {
	margin-top: 26px;
}

.read-more-content .right-side {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.read-more-content .right-side:not(:last-of-type) {
	margin-bottom: 10px;
}

.active-language {
	color: var(--second-color);
}

#card-element {
	padding: 15px 20px;
	border: 1px solid var(--border-color);
	margin-bottom: 15px;
}

.wishlist-btn.add_to_wishlist.wishlist_btn,
.wishlist-btn.remove_from_wishlist {
	background: var(--second-color) !important;
}

.wishlist-btn.add_to_wishlist.wishlist_btn svg path,
.wishlist-btn.remove_from_wishlist svg path {
	fill: var(--white) !important;
}

.btn-danger.btn {
	color: #fff;
	background-color: #d9534f;
	border-color: #d43f3a;
}

.product-content .course-detail+.btn {
	margin-top: 15px;
}

@media (hover: hover) {
	.product-card-inner .subtitle-top .wishlist-btn:hover {
		background: var(--second-color);
	}

	.product-card-inner .subtitle-top .wishlist-btn:hover svg path {
		fill: var(--white);
	}

	.category-card:nth-child(even) .category-card-inner .btn:hover {
		background: var(--theme-color) !important;
		border-color: var(--theme-color) !important;
	}

	.blog-widget .btn.blog-btn:hover {
		background: var(--theme-color) !important;
		border-color: var(--theme-color) !important;
		color: var(--white) !important;
	}

	.blog-widget .btn.blog-btn:hover svg path {
		fill: var(--white) !important;
	}

	.footer-widget ul li a:hover,
	.policy-links li a:hover {
		color: var(--second-color);
	}

	.footer-list-social li a:hover {
		background: var(--second-color);
	}

	.header-style-one .top-navigationbar .menu>li:hover>a {
		color: var(--second-color);
	}

	.header-style-one .top-navigationbar .menu>li:hover>a::after {
		border-color: var(--second-color);
	}

	.header-style-one .menu-dropdown ul>li:hover>a {
		color: var(--second-color);
	}

	.nav-course-categories .menu-dropdown li:hover>a>svg path {
		fill: var(--second-color);
	}

	.header-style-one .menu-right li .menu-dropdown ul>li:hover a svg path {
		fill: var(--second-color);
	}

	.course-link-widget:nth-child(odd) .course-links ul li a:hover {
		color: var(--second-color);
	}

	.course-link-widget:nth-child(even) .course-links ul li a:hover {
		color: var(--third-color);
	}

	.newsletter-container .newsletter-form .input-wrapper .btn:hover,
	.site-footer .newsletter-form .btn:hover {
		background: var(--third-color);
		border-color: var(--third-color);
	}
}

.description {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}