/* =Import Required styles
========================================================================================*/
@import url(normalize.css);

:root {

	/* Site global colours */
	--primary: #3d3d3d;
	/* Primary color */
	--secondary: #0037ff;
	/* Secondary color */
	--tertiary: #10ad51;
	/* Tertiary color */
	--quaternary: #f1f1f1;
	/* Quaternary color */
	--dark: #3d3d3d;
	/* Body text color */
	--black: #000000;
	/* Black color */
	--white: #ffffff;
	/* White color */
	--light: #f1f1f1;
	/* Blockquote background or lighter */
	--gray: #6f6f6f;
	/* Gray color */

	/* Color Shades */
	--light400: #f5f5f6;
	--light300: #cecece;
	--light200: #b4b4b4;

	--primary400: #d73522;
	--primary600: #fb3621;

	--secondary400: #0030df;
	--secondary600: #1145ff;

	/* Heading and body font sizes */
	--body-font: 16px;
	--body-lineheight: 1.45;
	--h1: 44px;
	--h2: 44px;
	--h3: 38px;
	--h4: 30px;
	--h5: 24px;
	--h6: 16px;

	--wrap: 1440px;
	--wrapspace: 30px;


	/* Site global fonts */
	--font-primary: 'Poppins', Arial, Helvetica, sans-serif;
	/* For heading font */
	--font-secondary: 'Poppins', Arial, Helvetica, sans-serif;
	/* For body font */

	--headerHeight: 107px;
	--appHeight: 100vh;
}

/* =Box Sizing 
========================================================================================*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
input[type="button"],
input[type="submit"],
button {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* =Deafult Tag & General Classes
========================================================================================*/
html,
body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	font-smoothing: antialiased;
	/* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

body {
	font: var(--body-font)/var(--body-lineheight) var(--font-primary);
	color: var(--dark);
}

body:not(.login) {
	padding-top: calc(var(--headerHeight));

}

img {
	vertical-align: top;
	border: 0;
}

a,
input[type="button"],
input[type="submit"],
button,
table th,
table td {
	-webkit-transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
	transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
}

.allanim,
#mainmenu li a:after {
	-webkit-transition: all 350ms cubic-bezier(0, .34, .74, .99);
	transition: all 350ms cubic-bezier(0, .34, .74, .99);
}

a {
	color: var(--dark);
	text-decoration: none;
	transition: all 350ms cubic-bezier(0, .34, .74, .99);
}

a:hover {
	text-decoration: none;
	color: var(--tertiary);
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	a:active {
		background-color: transparent;
	}
}

code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px;
}

strong {
	font-weight: bold;
}

small,
.small {
	font-size: 85%;
}

sub,
sup {
	font-size: 80%
}

p {
	margin: 0 0 20px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	line-height: 1.3;
	margin: 0 0 10px;
	font-weight: 300;
}

h1,
h2 {
	font-size: var(--h2);
}

h3 {
	font-size: var(--h3);
}

h4 {
	font-size: var(--h4);
}

h5 {
	font-size: var(--h5);
}

h6 {
	font-size: var(--h6);
}

ul li {
	line-height: 24px;
}

.cf:after,
.wrap:after {
	content: "";
	display: table;
	clear: both;
}

.nodisplay {
	display: none;
}

.nodisplay_strict {
	display: none !important;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

:focus {
	outline: none;
}

.text_cont p {
	padding: 0 0 10px 0;
}

.nopad p,
p.nopad {
	padding: 0;
}

.cols {
	margin-left: -20px;
	margin-right: -20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cols .col {
	padding-left: 20px;
	padding-right: 20px;
}

.cols1 .col {
	width: 100%
}

.cols2 .col {
	width: 50%
}

.cols3 .col {
	width: 33.333333333333%;
}

.cols4 .col {
	width: 25%;
}

/* =Blockquote & highlight
========================================================================================*/
blockquote {
	border-left: solid 6px var(--light);
	margin-left: 0;
	padding-left: 15px;
}

blockquote small {
	font-size: 85%;
	display: block;
	color: var(--gray);
	padding: 5px 0 0 0;
	font-style: italic;
}

.highlight,
mark {
	background: #fffd64;
}

/* =Text Size, color & Custom list style
========================================================================================*/
.text-bigger {
	font-size: 22px;
}

.text-big {
	font-size: 20px;
}

.text-small {
	font-size: 12px;
}

.text-muted {
	color: var(--gray);
}

.text-primary {
	color: var(--primary);
}

.text-secondary {
	color: var(--secondary);
}

.bg-muted {
	background: #777;
}

.bg-primary {
	background: var(--primary);
}

.bg-secondary {
	background: var(--secondary);
}

.text-lc {
	text-transform: lowercase;
}

.text-uc {
	text-transform: uppercase;
}

.has-show {
	display: block !important;
}

.has-hide {
	display: none !important;
}

.has-error {
	padding: 4px 12px 0;
	display: block;
	color: var(--primary);
	font-size: 14px;
}

input.has-error {
	border: solid 1px var(--primary) !important;
}

.tall-space {
	margin: 45px 0;
}

.medium-space {
	margin: 20px 0;
}

.custom-arrow-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.custom-arrow-list li {
	position: relative;
	padding-left: 20px;
}

.custom-arrow-list li:before {
	content: '';
	border: solid 2px var(--gray);
	border-left: 0;
	border-top: 0;
	position: absolute;
	left: 1px;
	top: 9px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 7px;
	height: 7px;
}

/* =Divider Width
========================================================================================*/
hr {
	border: 0;
	border-bottom: solid 1px var(--light);
	margin: 20px 0;
	position: relative;
	width: 100%;
}

hr:before {
	background: var(--gray);
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	position: absolute;
	width: 40px;
}

.dashed-border {
	border-bottom-style: dashed
}

.dotted-border {
	border-bottom-style: dotted;
}

.double-border {
	border-bottom-style: double;
	border-bottom-width: 3px;
}

.double-border:before {
	height: 3px;
}

/* =Drop Caps
========================================================================================*/
p.drop-caps:first-child:first-letter {
	float: left;
	font-size: 75px;
	line-height: 60px;
	padding: 4px;
	margin-right: 5px;
	margin-top: 5px;
	font-family: Georgia;
}

p.drop-caps.secundary:first-child:first-letter {
	background-color: var(--primary);
	color: var(--white);
	padding: 6px;
	margin-right: 11px;
	border-radius: 4px;
}

/* =Image Caps
========================================================================================*/
.image-block {
	padding: 25px 0;
}

.image-block:after {
	display: table;
	clear: both;
	content: '';
}

.image-block figure {
	width: 33.33333%;
	float: left;
	position: relative;
	border: solid 1px var(--light);
	padding: 5px;
	background: var(--white);
	margin: 0 20px 10px 0;
}

.image-block figure img {
	width: 100%;
	height: auto;
}

.image-block.right-align figure {
	float: right;
	margin: 0 0 10px 20px;
}

.image-block figcaption {
	display: block;
	font-weight: 700;
	position: absolute;
	left: 5px;
	right: 5px;
	bottom: 5px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.40);
	padding: 13px 10px;
	color: var(--white);
	text-align: center;
	line-height: 1.25;
}

.image-block h3 {
	margin-bottom: 20px;
}

/* =Section Caps
========================================================================================*/
.section-block {
	padding: 25px 0;
	background: var(--white);
}

/* =Layout Width
========================================================================================*/
#wrapper {}

.wrap {
	max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
	width: 100%;
	margin: 0 auto;
	padding-left: var(--wrapspace);
	padding-right: var(--wrapspace);
}

#main {
	padding: 0;
}

#primary {
	float: left;
	width: 700px;
}

#sidebar {
	float: right;
	width: 200px;
}

.one-column {
	width: auto !important;
	float: none !important;
}


/* =Common-Page (common classes for all pages)
========================================================================================*/
#header {
	background: var(--white);
	padding: 18px 0;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 111;
}

.header-row {
	display: flex;
	align-items: center;
	padding: 0 30px;
	justify-content: space-between;
}

#logo {
	width: 222px;
	position: relative;
	transition: all 250ms cubic-bezier(0, .34, .74, .99);
}

#logo img {
	max-width: 100%;
	height: 70px;
	object-fit: contain;
	width: auto;
}

#mainmenu {
	font-size: 14px;
	margin-left: auto;
}

#mainmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

#mainmenu li {
	line-height: 30px;
}

#mainmenu>ul>li {
	margin: 0 0 0 35px;
	font-weight: bold;
	text-transform: uppercase;
}

#mainmenu li a {
	text-decoration: none;
	padding: 0;
	display: block;
	color: var(--white);
	position: relative;
}

#mainmenu li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--primary);
	top: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#mainmenu li a:hover:after,
#mainmenu li.active a a:after {
	width: 100%;
}

/* Header Sticky Style */

#footer {
	background: var(--light);
	padding: 30px 0;
	font-size: 14px;
}

.footer-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.fmenu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.fmenu li {
	margin-right: 35px;
}

.fmenu li:last-child {
	margin-right: 0;
}

.fmenu li a {
	color: var(--gray);
}

.fmenu li a:hover,
.fmenu li.active a {
	text-decoration: none;
	color: var(--primary);
}

.copyright {
	margin: 0 0 0 auto;
}


/* =Default Banner (common banner for all pages)
========================================================================================*/
.default-banner {
	background-color: var(--gray);
	color: var(--white);
	text-align: center;
	position: relative;
	z-index: 1;
}

.default-banner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0.6;
	z-index: -1;
	backdrop-filter: blur(20px);
}

.default-banner-row {
	padding: 80px 0;
	backdrop-filter: blur(10px);
}

.default-banner-box h1,
.default-banner-box h2 {
	font-weight: 500;
	margin: 0;
}


/* = On scroll animations
========================================================================================*/
.ani-element {
	opacity: 0;
	position: relative;
	transition: opacity 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), transform 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), top 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9);
}

.ani-element.show {
	opacity: 1;
}

.ani-element.up {
	transform: translateY(48px);
}

.ani-element.up.show {
	transform: translateY(0);
}

.ani-element.down {
	transform: translateY(-48px);
}

.ani-element.down.show {
	transform: translateY(0);
}

.ani-element.left {
	transform: translateX(48px);
}

.ani-element.left.show {
	transform: translateX(0);
}

.ani-element.right {
	transform: translateX(-48px);
}

.ani-element.right.show {
	transform: translateX(0);
}

/* Delays */
.delay-1 {
	-webkit-transition-delay: 30ms;
	-o-transition-delay: 30ms;
	transition-delay: 30ms;
}

.delay-2 {
	-webkit-transition-delay: 60ms;
	-o-transition-delay: 60ms;
	transition-delay: 60ms;
}

.delay-3 {
	-webkit-transition-delay: 90ms;
	-o-transition-delay: 90ms;
	transition-delay: 90ms;
}

.delay-4 {
	-webkit-transition-delay: 120ms;
	-o-transition-delay: 120ms;
	transition-delay: 120ms;
}

.delay-5 {
	-webkit-transition-delay: 150ms;
	-o-transition-delay: 150ms;
	transition-delay: 150ms;
}

.delay-6 {
	-webkit-transition-delay: 180ms;
	-o-transition-delay: 180ms;
	transition-delay: 180ms;
}

.delay-7 {
	-webkit-transition-delay: 210ms;
	-o-transition-delay: 210ms;
	transition-delay: 210ms;
}

.delay-8 {
	-webkit-transition-delay: 240ms;
	-o-transition-delay: 240ms;
	transition-delay: 240ms;
}

.delay-9 {
	-webkit-transition-delay: 270ms;
	-o-transition-delay: 270ms;
	transition-delay: 270ms;
}

.delay-10 {
	-webkit-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.delay-11 {
	-webkit-transition-delay: 330ms;
	-o-transition-delay: 330ms;
	transition-delay: 330ms;
}

.delay-12 {
	-webkit-transition-delay: 360ms;
	-o-transition-delay: 360ms;
	transition-delay: 360ms;
}

.delay-13 {
	-webkit-transition-delay: 390ms;
	-o-transition-delay: 390ms;
	transition-delay: 390ms;
}

.delay-14 {
	-webkit-transition-delay: 420ms;
	-o-transition-delay: 420ms;
	transition-delay: 420ms;
}

.delay-15 {
	-webkit-transition-delay: 450ms;
	-o-transition-delay: 450ms;
	transition-delay: 450ms;
}

.delay-16 {
	-webkit-transition-delay: 480ms;
	-o-transition-delay: 480ms;
	transition-delay: 480ms;
}

.delay-17 {
	-webkit-transition-delay: 510ms;
	-o-transition-delay: 510ms;
	transition-delay: 510ms;
}

.delay-18 {
	-webkit-transition-delay: 540ms;
	-o-transition-delay: 540ms;
	transition-delay: 540ms;
}

.delay-19 {
	-webkit-transition-delay: 570ms;
	-o-transition-delay: 570ms;
	transition-delay: 570ms;
}

.delay-20 {
	-webkit-transition-delay: 30ms;
	-o-transition-delay: 30ms;
	transition-delay: 30ms;
}


/* =Home-Page (only homepage used classes)
========================================================================================*/
.sprites {
	background-image: url(../images/bgi/sprites.svg);
}

.sp-after:after {
	background-image: url(../images/bgi/sprites.svg);
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-left: 10px;
	content: '';
	vertical-align: middle;
}

.sp-before:before {
	background-image: url(../images/bgi/sprites.svg);
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 10px;
	content: '';
	vertical-align: middle;
}

/* =Form Style
========================================================================================*/
button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	vertical-align: middle;
}

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
input[type="submit"],
input[type="button"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}

button,
input {
	line-height: normal;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
	background: var(--light400);
	padding: 4px 24px;
	height: 52px;
	line-height: 1.55;
	border: solid 1px var(--light400);
	color: var(--dark);
	width: 100%;
	font-family: var(--font-secondary);
	-moz-transition: border-color 200ms ease-in;
	-webkit-transition: border-color 200ms ease-in;
	transition: border-color 200ms ease-in;
	border-radius: 10px;
}

input[type="text"].input-lg,
input[type="password"].input-lg,
input[type="email"].input-lg,
input[type="tel"].input-lg,
input[type="search"].input-lg,
input[type="url"].input-lg {
	height: 58px;
}

input[type="text"].input-sm,
input[type="password"].input-sm,
input[type="email"].input-sm,
input[type="tel"].input-sm,
input[type="search"].input-sm,
input[type="url"].input-sm {
	height: 38px;
}

textarea {
	width: 100%;
	height: 160px;
	overflow: auto;
	resize: vertical;
	padding: 10px 15px;
	font-family: var(--font-secondary)
}

select {
	padding: 12px 42px 12px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
	background: none;
	line-height: 1.25;
	border-radius: 0;
}

select::-ms-expand {
	display: none;
}

.custom-select {
	display: block;
	margin: 0;
	position: relative;
	background: var(--white);
}

.custom-select:after {
	content: '';
	border-top: solid 6px var(--gray);
	border-right: solid 6px transparent;
	border-left: solid 6px transparent;
	position: absolute;
	right: 18px;
	top: 50%;
	margin-top: -3px;
	pointer-events: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
	border: solid 1px var(--gray);
}

input::-moz-focus-inner,
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="button"],
input[type="submit"],
button {
	background: var(--primary);
	color: var(--white);
	border: 0;
	cursor: pointer;
	width: auto;
	overflow: visible;
	padding: 13px 45px;
	vertical-align: middle;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.25;
	font-family: var(--font-secondary);
	font-weight: bold;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
	background: var(--primary400);
	color: var(--white);
}

input[type="checkbox"],
input[type="radio"] {
	margin: 4px 8px 0;
	vertical-align: top;
}

::-webkit-input-placeholder {
	opacity: 0.5;
}

::-moz-placeholder {
	opacity: 0.5;
}

:-ms-input-placeholder {
	opacity: 0.5;
}

:-moz-placeholder {
	opacity: 0.5;
}

.checkbox,
.radio {
	position: relative;
	float: left;
	margin-right: 20px;
	cursor: pointer;
}

.form-block .form-group .checkbox label,
.form-block .form-group .radio label {
	padding: 0;
	padding-left: 26px;
	display: block;
	line-height: 1.1;
}

.checkbox input,
.radio input {
	top: 0;
	left: 0;
	z-index: 1;
	cursor: pointer;
	opacity: 0;
	position: absolute;
}

.checkbox .input-helper,
.radio .input-helper {
	position: absolute;
	left: 0;
	top: 0;
	height: 18px;
	width: 18px;
}

.checkbox input:checked+.input-helper:before,
.radio input:checked+.input-helper:before {
	border-color: var(--primary);
}

.checkbox input:disabled+.input-helper,
.radio input:disabled+.input-helper,
.checkbox input:disabled~span,
.radio input:disabled~span {
	opacity: 0.45;
}

.checkbox .input-helper:before,
.radio .input-helper:before,
.checkbox .input-helper:after,
.radio .input-helper:after {
	position: absolute;
	content: "";
	transition: all 200ms;
}

.checkbox .input-helper:before,
.radio .input-helper:before {
	left: 0;
	border: 1px solid var(--light300);
}

.checkbox input {
	width: 18px;
	height: 18px;
	margin: 0;
}

.checkbox input:checked+.input-helper:before {
	background-color: var(--primary);
}

.checkbox input:checked+.input-helper:before {
	background-color: var(--primary);
}

.checkbox input:checked+.input-helper:after {
	transform: scale(1);
	opacity: 1;
}

.checkbox .input-helper:before {
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	color: var(--white);
}

.checkbox .input-helper:after {
	content: '\2713';
	font-size: 11px;
	left: 4px;
	top: 4px;
	font-weight: 600;
	color: var(--white);
	transform: scale(0);
	opacity: 0;
	line-height: 1;
}

.radio input {
	width: 18px;
	height: 18px;
	margin: 0;
}

.radio input:checked+.input-helper:after {
	transform: scale(1);
}

.radio .input-helper:before {
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.radio .input-helper:after {
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	background: var(--primary);
	border-radius: 50%;
	top: 5px;
	left: 5px;
	transform: scale(0);
}


/* =BreadCrumbs
========================================================================================*/
.breadcrumbs {
	padding: 10px 0;
	background: var(--light);
	border-bottom: solid 1px var(--light400);
	font-size: 14px;
	color: var(--gray);
}

.breadcrumbs ul {
	display: inline;
	margin: 0 0 0 5px;
	padding: 0;
}

.breadcrumbs li {
	display: inline-block;
	margin: 0 0 0 20px;
	position: relative;
}

.breadcrumbs li:before {
	content: '';
	border-left: solid 4px var(--gray);
	border-bottom: solid 4px transparent;
	border-top: solid 4px transparent;
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	left: -14px;
	top: 50%;
	margin-top: -4px;
}

.breadcrumbs li a {
	color: var(--gray);
	text-decoration: none;
}

.breadcrumbs li a:hover {
	color: var(--primary);
}

/* =Form list
========================================================================================*/
.form-block {
	margin: 10px 0;
}

.form-group {
	padding: 10px 0;
	position: relative;
}

.form-group:after {
	clear: both;
	content: '';
	display: table;
}

.formlist .form-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.forgot-link {
	float: right;
}

.form-block .form-group label {
	display: inline-block;
	padding: 0 0 5px;
}

.form-inline .form-group label {
	float: left;
	width: 30%;
	padding: 10px 10px 10px 0;
	line-height: 1.5
}

.form-inline .form-group .field-box {
	width: 70%;
	float: left;
}

/* =Common button CSS
========================================================================================*/
.button {
	background-color: var(--dark);
	font-size: 16px;
	border-radius: 10px;
	color: var(--white);
	display: inline-block;
	line-height: 1.2;
	padding: 13px 30px;
	vertical-align: bottom;
	font-weight: 500;
	text-align: center;
	display: flex;
	align-items: center;
	min-height: 56px;
}

.button:hover {
	background-color: var(--black);
	text-decoration: none;
	color: var(--white);
}

.button.btn-lg,
input[type="submit"].btn-lg,
input[type="button"].btn-lg,
button.btn-lg {
	padding: 16px 35px;
	font-size: 18px;
}

.button.btn-sm,
input[type="submit"].btn-sm,
input[type="button"].btn-sm,
button.btn-sm {
	padding: 10px 25px;
	font-size: 14px;
}

.button.btn-xs,
input[type="submit"].btn-xs,
input[type="button"].btn-xs,
button.btn-xs {
	padding: 8px 20px;
	font-size: 12px;
}

.button.btn-lightgray,
input[type="submit"].btn-lightgray,
input[type="button"].btn-lightgray,
button.btn-lightgray {
	background: var(--light200);
	color: var(--white);
}

.button.btn-lightgray:hover,
input[type="submit"].btn-lightgray:hover,
input[type="button"].btn-lightgray:hover,
button.btn-lightgray:hover {
	background: var(--gray);
}

.button.btn-secondary,
input[type="submit"].btn-secondary,
input[type="button"].btn-secondary,
button.btn-secondary {
	background: var(--secondary);
	color: var(--white);
}

.button.btn-secondary:hover,
input[type="submit"].btn-secondary:hover,
input[type="button"].btn-secondary:hover,
button.btn-secondary:hover {
	background: var(--secondary400);
}

.button.btn-outline,
input[type="submit"].btn-outline,
input[type="button"].btn-outline,
button.btn-outline {
	background: var(--white);
	border: solid 2px var(--primary);
	color: var(--primary);
}

.button.btn-outline:hover,
input[type="submit"].btn-outline:hover,
input[type="button"].btn-outline:hover,
button.btn-outline:hover {
	background: var(--primary);
	color: var(--white);
}

.button.btn-lg.btn-outline,
input[type="submit"].btn-lg.btn-outline,
input[type="button"].btn-lg.btn-outline {
	padding: 14px 35px;
}

.button.btn-outline,
input[type="submit"].btn-outline,
input[type="button"].btn-outline {
	padding: 11px 30px;
}

.button.btn-sm.btn-outline,
input[type="submit"].btn-sm.btn-outline,
input[type="button"].btn-sm.btn-outline {
	padding: 8px 25px;
}

.button.btn-xs.btn-outline,
input[type="submit"].btn-xs.btn-outline,
input[type="button"].btn-xs.btn-outline {
	padding: 6px 20px;
}

.button.btn-block {
	display: block;
}

/* .buttonset .button { margin: 10px 7px; text-align: center; width: 160px; padding-left:10px !important; padding-right:10px !important; } */
.buttonset .col {
	width: auto !important;
}

.buttonset .button {
	margin: 5px 0 10px;
}

/* =Table CSS
========================================================================================*/
table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ddd;
}

table {
	width: 100%;
	margin-bottom: 30px;
}

table th,
table td {
	padding: 14px 15px;
	line-height: 1.32;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

table th {
	background: #ececec;
	font-weight: 700;
	padding: 17px 15px;
	font-size: 16px;
}

table tr:hover td {
	background: #fbfbfb;
}

table tr.selected td {
	background: #fbfbfb;
}

table thead th {
	vertical-align: middle;
}

table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
	border-top: 0;
}

/* =tabnav CSS
========================================================================================*/
.tabnav {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	border: solid 1px #e9edee;
	display: flex;
	flex-wrap: wrap;
}

.tabnav li {
	position: relative;
	margin: 0;
	width: 25%;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

.tabnav li:first-child {
	margin: 0;
}

.tabnav li h2 {
	margin: 0;
	font-size: 15px;
}

.tabnav li a {
	display: block;
	padding: 16px 5px;
	text-decoration: none;
	color: #505061;
	line-height: 1.25;
	background: #e9edee;
	margin-bottom: -1px;
	border-left: solid 1px #dde1e2;
}

.tabnav li:first-child a {
	border-left: 0;
}

.tabnav li.active a,
.tabnav li a:hover {
	background-color: #fff;
	color: var(--primary)
}

.tabnav li.active a:after {
	display: block;
}

.tab-container {
	padding: 20px;
	border: solid 1px #e9edee;
	border-top: 0;
}

.tabcontent .quicklist li,
.tabcontent .quicklist {
	margin: 0;
}

.tabcontent {
	display: none;
}

.tabcontent p {
	color: #666;
	margin: 20px 0 0;
}

.tabcontent p:first-child {
	margin-top: 0;
}

.tabcontent p a,
.accordion-data p a {
	color: #7f97ae;
	text-decoration: underline;
}

.tabcontent p a:hover,
.accordion-data p a:hover {
	color: #00305d
}

.tabcontent h4 {
	margin: 0 0 15px;
}

/* =Accordian CSS
========================================================================================*/
.accordion-databox .accordion-row {}

.accordion-databox .accordion-row:first-child {
	border-top: 0;
}

.accordion-databox .accordion-row h5 {
	cursor: pointer;
	margin: 0;
	background: #f3f3f3;
	color: #555;
	position: relative;
	padding: 16px 54px 16px 16px;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.accordion-databox .accordion-row h5:before {
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	width: 54px;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.08);
}

.accordion-databox .accordion-row h5:after {
	content: '';
	position: absolute;
	right: 18px;
	top: 50%;
	margin-top: -4px;
	border-top: solid 8px #818181;
	border-left: solid 8px transparent;
	border-right: solid 8px transparent;
	z-index: 2
}

.accordion-databox .accordion-row h5.open {
	color: #272c2f;
}

.accordion-databox .accordion-row h5.open:after {
	border-top: 0;
	border-bottom: solid 8px #272c2f;
}

.accordion-data {
	display: none;
	padding: 15px 0;
}

.accordion-data p {
	padding: 0 6px;
	margin: 20px 0 0;
}

.accordion-data p:first-child {
	margin-top: 0;
}

/* =Alertbox CSS
========================================================================================*/
.alert {
	padding: 16px 16px 16px 55px;
	margin: 20px 0;
	color: #454545;
	position: relative;
}

.alert:before {
	position: absolute;
	content: '';
	left: 15px;
	top: 15px;
	width: 24px;
	height: 24px;
	background: url(../images/bgi/sprites.svg) no-repeat 0 0;
}

.alert-notification {
	background-color: #fff0f4;
	border: solid 1px #db524c;
	color: #db524c;
}

.alert-notification:before {
	background-position: 0 0;
}

.alert-info {
	background-color: #e8f6ff;
	border: solid 1px #0082d5;
	color: #0082d5;
}

.alert-info:before {
	background-position: -26px 0;
}

.alert-warning {
	background-color: #fef4ec;
	border: solid 1px #ff9948;
	color: #ff9948;
}

.alert-warning:before {
	background-position: -52px 0;
}

.alert-success {
	background-color: #edfff6;
	border: solid 1px #04be5b;
	color: #04be5b;
}

.alert-success:before {
	background-position: -79px 0;
}

.alert-normal {
	background-color: #efefef;
	border: solid 1px #999;
	padding-left: 16px;
	color: #555;
}

.alert-normal:before {
	display: none;
}

/* =Default page CSS
========================================================================================*/
.heading-listblock {
	padding: 20px 0;
}

.heading-listblock p,
.heading-listblock blockquote {
	margin: 0 0 35px;
}

.heading-listblock p:last-child {
	margin-bottom: 0;
}

.heading-listblock .paragraph-block p {
	margin: 0 0 20px;
}

.list-block ul,
.list-block ol {
	padding-left: 22px;
	margin-left: -5px;
}

.list-block ul li,
.list-block ol li {
	margin: 5px 0;
}

.list-block ul.custom-arrow-list {
	margin: 0;
	padding: 0;
}


/* =Homepage CSS 
========================================================================================*/

.min-vh-100 {
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
}

.image-part {
	flex: 0 0 auto;
	width: 58.33333%;
}

.image-part.small {
	flex: 0 0 auto;
	width: 38.33333%;
}

.content-part {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 auto;
	width: 41.66667%;
}

.content-part.large {
	width: 61.66667%;
}

.oxyy-login-register .hero-wrap {
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
}

.oxyy-login-register .hero-wrap .hero-mask {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	transition: background-image 300ms ease-in 200ms;
	background-attachment: scroll;
}

.content-box:last-child {
	margin-top: auto !important;
	margin-bottom: auto !important;
	padding-top: 0;
}

.content-box {
	width: calc(100% - 100px);
	padding: 30px;
}

.logo-box {
	display: block;
}

a.logo {
	display: block;
}

.logo-box .logo img {
	width: auto;
	height: 70px;
	object-fit: contain;
	object-position: left center;
}

.login-form h3 {
	font-weight: 500;
	margin-bottom: 20px;
}

.login-form .button {
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
	width: 100%;
	padding: 0.8rem 2.6rem;
	margin-top: 15px;
	font-size: 20px;
}

.remember-me {
	margin: 10px 0;
}

.remember-me .checkbox {
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.hero-content {
	position: relative;
	width: calc(100% - 100px);
	padding: 0 30px;
	margin: 30px auto 0;
	z-index: 1;
}

.hero-content h1 {
	font-weight: 700;
	color: var(--white);
	font-size: 22px;
	margin-bottom: 20px;
}

#profile a {
	display: flex;
	align-items: center;
	grid-gap: 10px;

}

#profile a span {
	font-weight: 500;
	font-size: 16px;
}

#profile a figure img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 50%;
}


figure {
	margin: 0;
}

#profile {
	position: relative;
}

#profile ul {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 0;
	top: calc(100% + 20px);
	background-color: var(--white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	min-width: 200px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	display: none;

}


#profile ul li a {
	padding: 10px 20px;
}

#profile ul li a:hover {
	text-decoration: none;
	background: var(--light);
	color: var(--black);
}

#profile ul li.logout a {
	/* background: var(--light); */
}



.course-boxes {
	display: grid;
	grid-template-columns: 2fr 2fr;
	grid-gap: 40px;
}

.course-list-content {
	position: relative;
	z-index: 1;
	background: #ffffff;
	box-shadow: 5px 15px 45px rgba(22, 27, 45, 0.05);
	border-radius: 6px;
	display: flex;
	flex-wrap: wrap;
	/*padding-left: 222px;*/
}

.course-list-content .course-img {
	position: absolute;
	left: 0;
	top: 0;
	max-width: 222px;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	overflow: hidden;
}

.course-img a {
	display: block;
	height: 100%;
}

.course-img a:hover img {
	transform: scale(1.10);
}

.course-list-content .course-img img {
	width: 101%;
	height: 101%;
	object-fit: cover;
	border-radius: 6px;
	transition: all 250ms ease-out;
}

.course-list-content .course-content-list {
	flex: 1;
	padding: 20px 40px;
	overflow: hidden;
}

.course-list-content .course-content-list .course-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	align-items: center;
}

.course-list-content .course-content-list .course-meta .category {
	display: flex;
	gap: 20px;
}

.course-list-content .course-content-list .course-meta .category .cat-1 span {
	border-radius: 6px;
	padding: 10px 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #245d51;
	background: rgba(36, 93, 81, 0.1);
	display: block;
}

.course-list-content .course-content-list .course-meta .price {
	font-weight: 500;
	font-size: 20px;
	line-height: 29px;
	color: green;
}

.course-list-content .course-content-list .course-list-title {
	border-bottom: 1px solid rgba(80, 80, 80, 0.2);
	padding-bottom: 15px;
}

.course-list-content .course-content-list .course-list-title p {
	margin: 10px 0 0;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.course-list-content .course-content-list .course-list-title a {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 0;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}

.course-list-content .course-content-list .course-meta-bottom {
	padding-top: 15px;
	display: flex;
	justify-content: space-between;
}

.course-list-content .course-content-list .course-meta-bottom span {
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	display: flex;
	align-items: center;
}

.course-list-content .course-content-list .course-meta-bottom span img {
	margin-right: 8px;
	margin-top: -1px;
}

.section-row {
	padding: 50px 0;
}
.card {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background: #fff;
    padding: 20px;
    font-size: .875rem;
    box-shadow: 0px 0px 18px #758aac1f;
    position: relative;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: 1fr min-content;
}
@media (min-width: 1200px) {
	.card--full[_ngcontent-sc123] {
		padding: 1.25rem;
	}
}

.test-info {
	display: grid;
	gap: 15px;
	z-index: 1;
}

.badge {
	background-color: green;
	padding: 2px 10px;
	border-radius: 5px;
	color: var(--white);
	display: inline-flex;
}

.cta-area {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	gap: .5rem;
	white-space: nowrap;
	z-index: 1;
}

.cta-area a {
	min-height: auto;
}

.test-info h5 {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.test-info__summary {
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.test-info__summary>div {
	display: flex;
	align-items: center;
	grid-gap: 4px;
	line-height: 1;
}

.test-info__summary>div img {
	width: 15px;
	height: 15px;
	opacity: 0.5;
}

.responsive-table {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}

/* Profile Page */
.profile-box {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 20px;
}

.profile-sidebar {
	width: 100%;
}

.profile-sidebar ul {
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
	width: calc(100% + 40px);
}

.profile-sidebar ul li {
	border-bottom: 1px solid var(--light);
	text-align: left;
}

.profile-sidebar ul li:last-child {
	border-bottom: 0;
}

.profile-sidebar ul li:first-child {
	border-top: 1px solid var(--light);
}

.profile-sidebar ul li a {
	padding: 10px 20px;
	display: flex;
}

.profile-sidebar ul li a:hover {
	background: var(--light);
	text-decoration:none;
}

.profile-sidebar ul li.active a {
	background: var(--light);
	text-decoration:none;
}

.profile-sidebar ul li.active a:hover {
	color: currentColor;
	text-decoration:none;
}

.profile-box>div {
	border: 1px solid var(--light);
	padding: 40px 20px;
	display: flex;
	flex: 1;
}

.profile-sidebar {
	max-width: 300px;
	width: 100%;
	padding-bottom: 0 !important;
}

.profile-sidebar figure img {
	width: 120px;
	height: 120px;
	border: 2px solid var(--tertiary);
	border-radius: 50%;
}

.profile-sidebar figure {
	text-align: center;
	margin: 0 auto 20px;
}

.profile-sidebar {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.profile-sidebar h5 {
	font-weight: 500;
	font-size: 18px;
	margin: 0;
}

.profile-sidebar h6 {
	margin-top: 5px;
	font-weight: 400;
	font-size: 14px;
	opacity: 0.8;
}

.profile-info {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 20px;
	width: 100%;
}

.profile-info li {
	display: flex;
	align-items: center;
	grid-gap: 20px;
	width: 100%;
}

.profile-info li input {
	/* border: 0; */
	border: 1px solid transparent !important;
	width: auto;
	padding: 5px 10px;
	height: auto;
	min-width: auto;
	border: 0;
	border-radius: 0;
	background: transparent;

}

.profile-info li input::placeholder {
	opacity: 1;
}

.profile-info li input:focus {
	/* border: 0; */
	border-color: var(--light) !important;
}

.profile-box .profile-details {
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 20px;
}

.profile-box .profile-details h2 {
	font-size: 26px;
	font-weight: 500;
	margin: 0;
}

.profile-info li span:not(.edit-form) {
	min-width: 120px;
	font-weight: 600;
}

.edit-form {
	display: flex;
	align-items: center;
}

.edit-form img {
	cursor: pointer;
}

label.error {
	position: absolute;
	bottom: -16px;
	right: 0;
	color: red;
}

.nav-menu {
	display: flex;
}

.nav-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.nav-menu ul li {
	margin-left: 20px;
}

.nav-menu ul li a {
	text-decoration: none;
	padding: 10px 15px;
	display: block;
}


.menu-toggle {
	display: none;
	cursor: pointer;
	font-size: 24px;
}

@media (max-width: 767px) {
	.menu-toggle {
		display: block;
		order: 1;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #333;
		display: none;
		flex-direction: column;
	}

	.nav-menu ul {
		flex-direction: column;
		width: 100%;
	}

	.nav-menu ul li {
		margin: 0;
		border-top: 1px solid #444;
		margin: 0 !important;
	}


	.nav-menu ul li a {
		padding: 10px 20px;
		text-align: left;
		color: #fff;
	}

	.nav-menu.open {
		display: flex;
	}
}

.w-100 {
	width: 100% !important;
}




.material_html {
	width: 100%;
}

.card {
	border: 0;
	background-color: transparent;
	/*padding-top: 210px;*/
	width: 100%;
	margin-bottom: 10px;
}

.card-header {
	padding: .75rem 1.25rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, .03);
	border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-header:first-child {
	border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.material_html .card .card-header {
	padding: 0;
}

.material_html .card .card-header {
	padding: 0;
}

.material_html .card .card-header h5 {
	margin-top: 0;
}

.material_html .card .card-header h5 button {
	margin: 0;
	padding: 20px 50px 20px 27px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	border-radius: 0;
	border: none;
	color: #4c4c4c;
	text-align: left;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
	background: var(--tertiary);
}

.material_html .card .card-header h5 button:hover {
	text-decoration: none;
}

.btn-link.focus,
.btn-link:focus {
	text-decoration: none !important;
}

.material_html .card .card-header h5 button::after {
	content: "";
	background-image: none;
	font-size: 14px;
	right: 50px;
	position: absolute;
	top: 47px;
	left: auto;
	width: 10px;
	height: 10px;
	border-left: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: transform .2s ease-in-out;
}

.material_html .card .card-header h5 button:not(.collapsed)::after {
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
	top: 47px;
}

.material_html h5 button[aria-expanded=true],
.material_html h5 button[aria-expanded=false] {
	background-color: var(--color-purple);
	color: #fff !important;
}

.material_html .lecture-accordion {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
}

.material_html .card-body {
	padding: 18px 25px 22px;
	border-top: 1px solid #ddd;
	border-radius: 0 0 20px 0;
}

.material_html .lecture-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.material_html .lecture-item p {
	margin: 0;
}

.material_html .lecture-item p i {
	color: var(--color-purple);
	font-size: 20px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

.material_html .lecture-item {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.material_html .lecture-item:last-child {
	margin-bottom: 0;
}

.material_html .lecture-item span {
	display: inline-block;
	color: #ff4f1e;
}


/* Course Listing */
.course-filter-list {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 50px 0 50px;
}

.course-filter-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	grid-gap: 15px;
	flex-wrap: wrap;
	max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
	width: 100%;
	margin: 0 auto;
	padding-left: var(--wrapspace);
	padding-right: var(--wrapspace);
}

.course-filter-list ul li {
	display: flex;
	align-items: center;
}

.project-wrap {
	/* margin-top: -235px;*/
}

.course-filter-list ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 40px;
	min-height: 60px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, .41);
	position: relative;
	border-radius: 50px;
	background: #fff;
}

.course-filter-list ul li a .topic-number {
	position: absolute;
	right: 20px;
	top: 6px;
	font-size: 12px;
	opacity: 0.5;
}

.course-filter-list ul li a.active {
	background: var(--tertiary);
	color: #fff;
}

.course-filter-list ul li a:hover {
	background: var(--tertiary);
	color: #fff;
	    text-decoration: none
}

.course-filter-list+.section-row {
	padding-top: 40px;
}